2 * r8169.c: RealTek 8169/8168/8101 ethernet driver.
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.
8 * See MAINTAINERS file for support contact information.
11 #include <linux/module.h>
12 #include <linux/moduleparam.h>
13 #include <linux/pci.h>
14 #include <linux/netdevice.h>
15 #include <linux/etherdevice.h>
16 #include <linux/clk.h>
17 #include <linux/delay.h>
18 #include <linux/ethtool.h>
19 #include <linux/phy.h>
20 #include <linux/if_vlan.h>
21 #include <linux/crc32.h>
25 #include <linux/tcp.h>
26 #include <linux/interrupt.h>
27 #include <linux/dma-mapping.h>
28 #include <linux/pm_runtime.h>
29 #include <linux/firmware.h>
30 #include <linux/prefetch.h>
31 #include <linux/ipv6.h>
32 #include <net/ip6_checksum.h>
34 #define MODULENAME "r8169"
36 #define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
37 #define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
38 #define FIRMWARE_8168E_1 "rtl_nic/rtl8168e-1.fw"
39 #define FIRMWARE_8168E_2 "rtl_nic/rtl8168e-2.fw"
40 #define FIRMWARE_8168E_3 "rtl_nic/rtl8168e-3.fw"
41 #define FIRMWARE_8168F_1 "rtl_nic/rtl8168f-1.fw"
42 #define FIRMWARE_8168F_2 "rtl_nic/rtl8168f-2.fw"
43 #define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
44 #define FIRMWARE_8402_1 "rtl_nic/rtl8402-1.fw"
45 #define FIRMWARE_8411_1 "rtl_nic/rtl8411-1.fw"
46 #define FIRMWARE_8411_2 "rtl_nic/rtl8411-2.fw"
47 #define FIRMWARE_8106E_1 "rtl_nic/rtl8106e-1.fw"
48 #define FIRMWARE_8106E_2 "rtl_nic/rtl8106e-2.fw"
49 #define FIRMWARE_8168G_2 "rtl_nic/rtl8168g-2.fw"
50 #define FIRMWARE_8168G_3 "rtl_nic/rtl8168g-3.fw"
51 #define FIRMWARE_8168H_1 "rtl_nic/rtl8168h-1.fw"
52 #define FIRMWARE_8168H_2 "rtl_nic/rtl8168h-2.fw"
53 #define FIRMWARE_8107E_1 "rtl_nic/rtl8107e-1.fw"
54 #define FIRMWARE_8107E_2 "rtl_nic/rtl8107e-2.fw"
56 #define R8169_MSG_DEFAULT \
57 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
59 #define TX_SLOTS_AVAIL(tp) \
60 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
62 /* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
63 #define TX_FRAGS_READY_FOR(tp,nr_frags) \
64 (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
66 /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
67 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
68 static const int multicast_filter_limit = 32;
70 #define TX_DMA_BURST 7 /* Maximum PCI burst, '7' is unlimited */
71 #define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
73 #define R8169_REGS_SIZE 256
74 #define R8169_RX_BUF_SIZE (SZ_16K - 1)
75 #define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
76 #define NUM_RX_DESC 256U /* Number of Rx descriptor registers */
77 #define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
78 #define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
80 #define RTL8169_TX_TIMEOUT (6*HZ)
82 /* write/read MMIO register */
83 #define RTL_W8(tp, reg, val8) writeb((val8), tp->mmio_addr + (reg))
84 #define RTL_W16(tp, reg, val16) writew((val16), tp->mmio_addr + (reg))
85 #define RTL_W32(tp, reg, val32) writel((val32), tp->mmio_addr + (reg))
86 #define RTL_R8(tp, reg) readb(tp->mmio_addr + (reg))
87 #define RTL_R16(tp, reg) readw(tp->mmio_addr + (reg))
88 #define RTL_R32(tp, reg) readl(tp->mmio_addr + (reg))
91 RTL_GIGA_MAC_VER_01 = 0,
142 RTL_GIGA_MAC_NONE = 0xff,
145 #define JUMBO_1K ETH_DATA_LEN
146 #define JUMBO_4K (4*1024 - ETH_HLEN - 2)
147 #define JUMBO_6K (6*1024 - ETH_HLEN - 2)
148 #define JUMBO_7K (7*1024 - ETH_HLEN - 2)
149 #define JUMBO_9K (9*1024 - ETH_HLEN - 2)
151 static const struct {
154 } rtl_chip_infos[] = {
156 [RTL_GIGA_MAC_VER_01] = {"RTL8169" },
157 [RTL_GIGA_MAC_VER_02] = {"RTL8169s" },
158 [RTL_GIGA_MAC_VER_03] = {"RTL8110s" },
159 [RTL_GIGA_MAC_VER_04] = {"RTL8169sb/8110sb" },
160 [RTL_GIGA_MAC_VER_05] = {"RTL8169sc/8110sc" },
161 [RTL_GIGA_MAC_VER_06] = {"RTL8169sc/8110sc" },
163 [RTL_GIGA_MAC_VER_07] = {"RTL8102e" },
164 [RTL_GIGA_MAC_VER_08] = {"RTL8102e" },
165 [RTL_GIGA_MAC_VER_09] = {"RTL8102e" },
166 [RTL_GIGA_MAC_VER_10] = {"RTL8101e" },
167 [RTL_GIGA_MAC_VER_11] = {"RTL8168b/8111b" },
168 [RTL_GIGA_MAC_VER_12] = {"RTL8168b/8111b" },
169 [RTL_GIGA_MAC_VER_13] = {"RTL8101e" },
170 [RTL_GIGA_MAC_VER_14] = {"RTL8100e" },
171 [RTL_GIGA_MAC_VER_15] = {"RTL8100e" },
172 [RTL_GIGA_MAC_VER_16] = {"RTL8101e" },
173 [RTL_GIGA_MAC_VER_17] = {"RTL8168b/8111b" },
174 [RTL_GIGA_MAC_VER_18] = {"RTL8168cp/8111cp" },
175 [RTL_GIGA_MAC_VER_19] = {"RTL8168c/8111c" },
176 [RTL_GIGA_MAC_VER_20] = {"RTL8168c/8111c" },
177 [RTL_GIGA_MAC_VER_21] = {"RTL8168c/8111c" },
178 [RTL_GIGA_MAC_VER_22] = {"RTL8168c/8111c" },
179 [RTL_GIGA_MAC_VER_23] = {"RTL8168cp/8111cp" },
180 [RTL_GIGA_MAC_VER_24] = {"RTL8168cp/8111cp" },
181 [RTL_GIGA_MAC_VER_25] = {"RTL8168d/8111d", FIRMWARE_8168D_1},
182 [RTL_GIGA_MAC_VER_26] = {"RTL8168d/8111d", FIRMWARE_8168D_2},
183 [RTL_GIGA_MAC_VER_27] = {"RTL8168dp/8111dp" },
184 [RTL_GIGA_MAC_VER_28] = {"RTL8168dp/8111dp" },
185 [RTL_GIGA_MAC_VER_29] = {"RTL8105e", FIRMWARE_8105E_1},
186 [RTL_GIGA_MAC_VER_30] = {"RTL8105e", FIRMWARE_8105E_1},
187 [RTL_GIGA_MAC_VER_31] = {"RTL8168dp/8111dp" },
188 [RTL_GIGA_MAC_VER_32] = {"RTL8168e/8111e", FIRMWARE_8168E_1},
189 [RTL_GIGA_MAC_VER_33] = {"RTL8168e/8111e", FIRMWARE_8168E_2},
190 [RTL_GIGA_MAC_VER_34] = {"RTL8168evl/8111evl", FIRMWARE_8168E_3},
191 [RTL_GIGA_MAC_VER_35] = {"RTL8168f/8111f", FIRMWARE_8168F_1},
192 [RTL_GIGA_MAC_VER_36] = {"RTL8168f/8111f", FIRMWARE_8168F_2},
193 [RTL_GIGA_MAC_VER_37] = {"RTL8402", FIRMWARE_8402_1 },
194 [RTL_GIGA_MAC_VER_38] = {"RTL8411", FIRMWARE_8411_1 },
195 [RTL_GIGA_MAC_VER_39] = {"RTL8106e", FIRMWARE_8106E_1},
196 [RTL_GIGA_MAC_VER_40] = {"RTL8168g/8111g", FIRMWARE_8168G_2},
197 [RTL_GIGA_MAC_VER_41] = {"RTL8168g/8111g" },
198 [RTL_GIGA_MAC_VER_42] = {"RTL8168g/8111g", FIRMWARE_8168G_3},
199 [RTL_GIGA_MAC_VER_43] = {"RTL8106e", FIRMWARE_8106E_2},
200 [RTL_GIGA_MAC_VER_44] = {"RTL8411", FIRMWARE_8411_2 },
201 [RTL_GIGA_MAC_VER_45] = {"RTL8168h/8111h", FIRMWARE_8168H_1},
202 [RTL_GIGA_MAC_VER_46] = {"RTL8168h/8111h", FIRMWARE_8168H_2},
203 [RTL_GIGA_MAC_VER_47] = {"RTL8107e", FIRMWARE_8107E_1},
204 [RTL_GIGA_MAC_VER_48] = {"RTL8107e", FIRMWARE_8107E_2},
205 [RTL_GIGA_MAC_VER_49] = {"RTL8168ep/8111ep" },
206 [RTL_GIGA_MAC_VER_50] = {"RTL8168ep/8111ep" },
207 [RTL_GIGA_MAC_VER_51] = {"RTL8168ep/8111ep" },
216 static const struct pci_device_id rtl8169_pci_tbl[] = {
217 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
218 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
219 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8161), 0, 0, RTL_CFG_1 },
220 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
221 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
222 { PCI_DEVICE(PCI_VENDOR_ID_NCUBE, 0x8168), 0, 0, RTL_CFG_1 },
223 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
224 { PCI_VENDOR_ID_DLINK, 0x4300,
225 PCI_VENDOR_ID_DLINK, 0x4b10, 0, 0, RTL_CFG_1 },
226 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
227 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
228 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
229 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
230 { PCI_VENDOR_ID_LINKSYS, 0x1032,
231 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
233 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
237 MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
239 static int use_dac = -1;
245 MAC0 = 0, /* Ethernet hardware address. */
247 MAR0 = 8, /* Multicast filter. */
248 CounterAddrLow = 0x10,
249 CounterAddrHigh = 0x14,
250 TxDescStartAddrLow = 0x20,
251 TxDescStartAddrHigh = 0x24,
252 TxHDescStartAddrLow = 0x28,
253 TxHDescStartAddrHigh = 0x2c,
262 #define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
263 #define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
266 #define RX128_INT_EN (1 << 15) /* 8111c and later */
267 #define RX_MULTI_EN (1 << 14) /* 8111c only */
268 #define RXCFG_FIFO_SHIFT 13
269 /* No threshold before first PCI xfer */
270 #define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
271 #define RX_EARLY_OFF (1 << 11)
272 #define RXCFG_DMA_SHIFT 8
273 /* Unlimited maximum PCI burst. */
274 #define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
281 #define PME_SIGNAL (1 << 5) /* 8168c and later */
293 #define RTL_COALESCE_MASK 0x0f
294 #define RTL_COALESCE_SHIFT 4
295 #define RTL_COALESCE_T_MAX (RTL_COALESCE_MASK)
296 #define RTL_COALESCE_FRAME_MAX (RTL_COALESCE_MASK << 2)
298 RxDescAddrLow = 0xe4,
299 RxDescAddrHigh = 0xe8,
300 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
302 #define NoEarlyTx 0x3f /* Max value : no early transmit. */
304 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
306 #define TxPacketMax (8064 >> 7)
307 #define EarlySize 0x27
310 FuncEventMask = 0xf4,
311 FuncPresetState = 0xf8,
316 FuncForceEvent = 0xfc,
319 enum rtl8168_8101_registers {
322 #define CSIAR_FLAG 0x80000000
323 #define CSIAR_WRITE_CMD 0x80000000
324 #define CSIAR_BYTE_ENABLE 0x0000f000
325 #define CSIAR_ADDR_MASK 0x00000fff
328 #define EPHYAR_FLAG 0x80000000
329 #define EPHYAR_WRITE_CMD 0x80000000
330 #define EPHYAR_REG_MASK 0x1f
331 #define EPHYAR_REG_SHIFT 16
332 #define EPHYAR_DATA_MASK 0xffff
334 #define PFM_EN (1 << 6)
335 #define TX_10M_PS_EN (1 << 7)
337 #define FIX_NAK_1 (1 << 4)
338 #define FIX_NAK_2 (1 << 3)
341 #define NOW_IS_OOB (1 << 7)
342 #define TX_EMPTY (1 << 5)
343 #define RX_EMPTY (1 << 4)
344 #define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
345 #define EN_NDP (1 << 3)
346 #define EN_OOB_RESET (1 << 2)
347 #define LINK_LIST_RDY (1 << 1)
349 #define EFUSEAR_FLAG 0x80000000
350 #define EFUSEAR_WRITE_CMD 0x80000000
351 #define EFUSEAR_READ_CMD 0x00000000
352 #define EFUSEAR_REG_MASK 0x03ff
353 #define EFUSEAR_REG_SHIFT 8
354 #define EFUSEAR_DATA_MASK 0xff
356 #define PFM_D3COLD_EN (1 << 6)
359 enum rtl8168_registers {
364 #define ERIAR_FLAG 0x80000000
365 #define ERIAR_WRITE_CMD 0x80000000
366 #define ERIAR_READ_CMD 0x00000000
367 #define ERIAR_ADDR_BYTE_ALIGN 4
368 #define ERIAR_TYPE_SHIFT 16
369 #define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
370 #define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
371 #define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
372 #define ERIAR_OOB (0x02 << ERIAR_TYPE_SHIFT)
373 #define ERIAR_MASK_SHIFT 12
374 #define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
375 #define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
376 #define ERIAR_MASK_0100 (0x4 << ERIAR_MASK_SHIFT)
377 #define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
378 #define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
379 EPHY_RXER_NUM = 0x7c,
380 OCPDR = 0xb0, /* OCP GPHY access */
381 #define OCPDR_WRITE_CMD 0x80000000
382 #define OCPDR_READ_CMD 0x00000000
383 #define OCPDR_REG_MASK 0x7f
384 #define OCPDR_GPHY_REG_SHIFT 16
385 #define OCPDR_DATA_MASK 0xffff
387 #define OCPAR_FLAG 0x80000000
388 #define OCPAR_GPHY_WRITE_CMD 0x8000f060
389 #define OCPAR_GPHY_READ_CMD 0x0000f060
391 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
392 MISC = 0xf0, /* 8168e only. */
393 #define TXPLA_RST (1 << 29)
394 #define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
395 #define PWM_EN (1 << 22)
396 #define RXDV_GATED_EN (1 << 19)
397 #define EARLY_TALLY_EN (1 << 16)
400 enum rtl_register_content {
401 /* InterruptStatusBits */
405 TxDescUnavail = 0x0080,
429 /* TXPoll register p.5 */
430 HPQ = 0x80, /* Poll cmd on the high prio queue */
431 NPQ = 0x40, /* Poll cmd on the low prio queue */
432 FSWInt = 0x01, /* Forced software interrupt */
436 Cfg9346_Unlock = 0xc0,
441 AcceptBroadcast = 0x08,
442 AcceptMulticast = 0x04,
444 AcceptAllPhys = 0x01,
445 #define RX_CONFIG_ACCEPT_MASK 0x3f
448 TxInterFrameGapShift = 24,
449 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
451 /* Config1 register p.24 */
454 Speed_down = (1 << 4),
458 PMEnable = (1 << 0), /* Power Management Enable */
460 /* Config2 register p. 25 */
461 ClkReqEn = (1 << 7), /* Clock Request Enable */
462 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
463 PCI_Clock_66MHz = 0x01,
464 PCI_Clock_33MHz = 0x00,
466 /* Config3 register p.25 */
467 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
468 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
469 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
470 Rdy_to_L23 = (1 << 1), /* L23 Enable */
471 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
473 /* Config4 register */
474 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
476 /* Config5 register p.27 */
477 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
478 MWF = (1 << 5), /* Accept Multicast wakeup frame */
479 UWF = (1 << 4), /* Accept Unicast wakeup frame */
481 LanWake = (1 << 1), /* LanWake enable/disable */
482 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
483 ASPM_en = (1 << 0), /* ASPM enable */
486 EnableBist = (1 << 15), // 8168 8101
487 Mac_dbgo_oe = (1 << 14), // 8168 8101
488 Normal_mode = (1 << 13), // unused
489 Force_half_dup = (1 << 12), // 8168 8101
490 Force_rxflow_en = (1 << 11), // 8168 8101
491 Force_txflow_en = (1 << 10), // 8168 8101
492 Cxpl_dbg_sel = (1 << 9), // 8168 8101
493 ASF = (1 << 8), // 8168 8101
494 PktCntrDisable = (1 << 7), // 8168 8101
495 Mac_dbgo_sel = 0x001c, // 8168
500 #define INTT_MASK GENMASK(1, 0)
501 INTT_0 = 0x0000, // 8168
502 INTT_1 = 0x0001, // 8168
503 INTT_2 = 0x0002, // 8168
504 INTT_3 = 0x0003, // 8168
506 /* rtl8169_PHYstatus */
517 TBILinkOK = 0x02000000,
519 /* ResetCounterCommand */
522 /* DumpCounterCommand */
525 /* magic enable v2 */
526 MagicPacket_v2 = (1 << 16), /* Wake up when receives a Magic Packet */
530 /* First doubleword. */
531 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
532 RingEnd = (1 << 30), /* End of descriptor ring */
533 FirstFrag = (1 << 29), /* First segment of a packet */
534 LastFrag = (1 << 28), /* Final segment of a packet */
538 enum rtl_tx_desc_bit {
539 /* First doubleword. */
540 TD_LSO = (1 << 27), /* Large Send Offload */
541 #define TD_MSS_MAX 0x07ffu /* MSS value */
543 /* Second doubleword. */
544 TxVlanTag = (1 << 17), /* Add VLAN tag */
547 /* 8169, 8168b and 810x except 8102e. */
548 enum rtl_tx_desc_bit_0 {
549 /* First doubleword. */
550 #define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
551 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
552 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
553 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
556 /* 8102e, 8168c and beyond. */
557 enum rtl_tx_desc_bit_1 {
558 /* First doubleword. */
559 TD1_GTSENV4 = (1 << 26), /* Giant Send for IPv4 */
560 TD1_GTSENV6 = (1 << 25), /* Giant Send for IPv6 */
561 #define GTTCPHO_SHIFT 18
562 #define GTTCPHO_MAX 0x7fU
564 /* Second doubleword. */
565 #define TCPHO_SHIFT 18
566 #define TCPHO_MAX 0x3ffU
567 #define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
568 TD1_IPv6_CS = (1 << 28), /* Calculate IPv6 checksum */
569 TD1_IPv4_CS = (1 << 29), /* Calculate IPv4 checksum */
570 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
571 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
574 enum rtl_rx_desc_bit {
576 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
577 PID0 = (1 << 17), /* Protocol ID bit 0/2 */
579 #define RxProtoUDP (PID1)
580 #define RxProtoTCP (PID0)
581 #define RxProtoIP (PID1 | PID0)
582 #define RxProtoMask RxProtoIP
584 IPFail = (1 << 16), /* IP checksum failed */
585 UDPFail = (1 << 15), /* UDP/IP checksum failed */
586 TCPFail = (1 << 14), /* TCP/IP checksum failed */
587 RxVlanTag = (1 << 16), /* VLAN tag available */
590 #define RsvdMask 0x3fffc000
591 #define CPCMD_QUIRK_MASK (Normal_mode | RxVlan | RxChkSum | INTT_MASK)
608 u8 __pad[sizeof(void *) - sizeof(u32)];
611 struct rtl8169_counters {
618 __le32 tx_one_collision;
619 __le32 tx_multi_collision;
627 struct rtl8169_tc_offsets {
630 __le32 tx_multi_collision;
635 RTL_FLAG_TASK_ENABLED = 0,
636 RTL_FLAG_TASK_SLOW_PENDING,
637 RTL_FLAG_TASK_RESET_PENDING,
641 struct rtl8169_stats {
644 struct u64_stats_sync syncp;
647 struct rtl8169_private {
648 void __iomem *mmio_addr; /* memory map physical address */
649 struct pci_dev *pci_dev;
650 struct net_device *dev;
651 struct napi_struct napi;
654 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
655 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
657 struct rtl8169_stats rx_stats;
658 struct rtl8169_stats tx_stats;
659 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
660 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
661 dma_addr_t TxPhyAddr;
662 dma_addr_t RxPhyAddr;
663 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
664 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
668 const struct rtl_coalesce_info *coalesce_info;
672 void (*write)(struct rtl8169_private *, int, int);
673 int (*read)(struct rtl8169_private *, int);
677 void (*enable)(struct rtl8169_private *);
678 void (*disable)(struct rtl8169_private *);
681 void (*hw_start)(struct rtl8169_private *tp);
682 bool (*tso_csum)(struct rtl8169_private *, struct sk_buff *, u32 *);
685 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
687 struct work_struct work;
690 unsigned supports_gmii:1;
691 struct mii_bus *mii_bus;
692 dma_addr_t counters_phys_addr;
693 struct rtl8169_counters *counters;
694 struct rtl8169_tc_offsets tc_offset;
698 const struct firmware *fw;
700 #define RTL_VER_SIZE 32
702 char version[RTL_VER_SIZE];
704 struct rtl_fw_phy_action {
709 #define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
714 MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
715 MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
716 module_param(use_dac, int, 0);
717 MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
718 module_param_named(debug, debug.msg_enable, int, 0);
719 MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
720 MODULE_LICENSE("GPL");
721 MODULE_FIRMWARE(FIRMWARE_8168D_1);
722 MODULE_FIRMWARE(FIRMWARE_8168D_2);
723 MODULE_FIRMWARE(FIRMWARE_8168E_1);
724 MODULE_FIRMWARE(FIRMWARE_8168E_2);
725 MODULE_FIRMWARE(FIRMWARE_8168E_3);
726 MODULE_FIRMWARE(FIRMWARE_8105E_1);
727 MODULE_FIRMWARE(FIRMWARE_8168F_1);
728 MODULE_FIRMWARE(FIRMWARE_8168F_2);
729 MODULE_FIRMWARE(FIRMWARE_8402_1);
730 MODULE_FIRMWARE(FIRMWARE_8411_1);
731 MODULE_FIRMWARE(FIRMWARE_8411_2);
732 MODULE_FIRMWARE(FIRMWARE_8106E_1);
733 MODULE_FIRMWARE(FIRMWARE_8106E_2);
734 MODULE_FIRMWARE(FIRMWARE_8168G_2);
735 MODULE_FIRMWARE(FIRMWARE_8168G_3);
736 MODULE_FIRMWARE(FIRMWARE_8168H_1);
737 MODULE_FIRMWARE(FIRMWARE_8168H_2);
738 MODULE_FIRMWARE(FIRMWARE_8107E_1);
739 MODULE_FIRMWARE(FIRMWARE_8107E_2);
741 static inline struct device *tp_to_dev(struct rtl8169_private *tp)
743 return &tp->pci_dev->dev;
746 static void rtl_lock_work(struct rtl8169_private *tp)
748 mutex_lock(&tp->wk.mutex);
751 static void rtl_unlock_work(struct rtl8169_private *tp)
753 mutex_unlock(&tp->wk.mutex);
756 static void rtl_tx_performance_tweak(struct rtl8169_private *tp, u16 force)
758 pcie_capability_clear_and_set_word(tp->pci_dev, PCI_EXP_DEVCTL,
759 PCI_EXP_DEVCTL_READRQ, force);
763 bool (*check)(struct rtl8169_private *);
767 static void rtl_udelay(unsigned int d)
772 static bool rtl_loop_wait(struct rtl8169_private *tp, const struct rtl_cond *c,
773 void (*delay)(unsigned int), unsigned int d, int n,
778 for (i = 0; i < n; i++) {
780 if (c->check(tp) == high)
783 netif_err(tp, drv, tp->dev, "%s == %d (loop: %d, delay: %d).\n",
784 c->msg, !high, n, d);
788 static bool rtl_udelay_loop_wait_high(struct rtl8169_private *tp,
789 const struct rtl_cond *c,
790 unsigned int d, int n)
792 return rtl_loop_wait(tp, c, rtl_udelay, d, n, true);
795 static bool rtl_udelay_loop_wait_low(struct rtl8169_private *tp,
796 const struct rtl_cond *c,
797 unsigned int d, int n)
799 return rtl_loop_wait(tp, c, rtl_udelay, d, n, false);
802 static bool rtl_msleep_loop_wait_high(struct rtl8169_private *tp,
803 const struct rtl_cond *c,
804 unsigned int d, int n)
806 return rtl_loop_wait(tp, c, msleep, d, n, true);
809 static bool rtl_msleep_loop_wait_low(struct rtl8169_private *tp,
810 const struct rtl_cond *c,
811 unsigned int d, int n)
813 return rtl_loop_wait(tp, c, msleep, d, n, false);
816 #define DECLARE_RTL_COND(name) \
817 static bool name ## _check(struct rtl8169_private *); \
819 static const struct rtl_cond name = { \
820 .check = name ## _check, \
824 static bool name ## _check(struct rtl8169_private *tp)
826 static bool rtl_ocp_reg_failure(struct rtl8169_private *tp, u32 reg)
828 if (reg & 0xffff0001) {
829 netif_err(tp, drv, tp->dev, "Invalid ocp reg %x!\n", reg);
835 DECLARE_RTL_COND(rtl_ocp_gphy_cond)
837 return RTL_R32(tp, GPHY_OCP) & OCPAR_FLAG;
840 static void r8168_phy_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
842 if (rtl_ocp_reg_failure(tp, reg))
845 RTL_W32(tp, GPHY_OCP, OCPAR_FLAG | (reg << 15) | data);
847 rtl_udelay_loop_wait_low(tp, &rtl_ocp_gphy_cond, 25, 10);
850 static u16 r8168_phy_ocp_read(struct rtl8169_private *tp, u32 reg)
852 if (rtl_ocp_reg_failure(tp, reg))
855 RTL_W32(tp, GPHY_OCP, reg << 15);
857 return rtl_udelay_loop_wait_high(tp, &rtl_ocp_gphy_cond, 25, 10) ?
858 (RTL_R32(tp, GPHY_OCP) & 0xffff) : ~0;
861 static void r8168_mac_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
863 if (rtl_ocp_reg_failure(tp, reg))
866 RTL_W32(tp, OCPDR, OCPAR_FLAG | (reg << 15) | data);
869 static u16 r8168_mac_ocp_read(struct rtl8169_private *tp, u32 reg)
871 if (rtl_ocp_reg_failure(tp, reg))
874 RTL_W32(tp, OCPDR, reg << 15);
876 return RTL_R32(tp, OCPDR);
879 #define OCP_STD_PHY_BASE 0xa400
881 static void r8168g_mdio_write(struct rtl8169_private *tp, int reg, int value)
884 tp->ocp_base = value ? value << 4 : OCP_STD_PHY_BASE;
888 if (tp->ocp_base != OCP_STD_PHY_BASE)
891 r8168_phy_ocp_write(tp, tp->ocp_base + reg * 2, value);
894 static int r8168g_mdio_read(struct rtl8169_private *tp, int reg)
896 if (tp->ocp_base != OCP_STD_PHY_BASE)
899 return r8168_phy_ocp_read(tp, tp->ocp_base + reg * 2);
902 static void mac_mcu_write(struct rtl8169_private *tp, int reg, int value)
905 tp->ocp_base = value << 4;
909 r8168_mac_ocp_write(tp, tp->ocp_base + reg, value);
912 static int mac_mcu_read(struct rtl8169_private *tp, int reg)
914 return r8168_mac_ocp_read(tp, tp->ocp_base + reg);
917 DECLARE_RTL_COND(rtl_phyar_cond)
919 return RTL_R32(tp, PHYAR) & 0x80000000;
922 static void r8169_mdio_write(struct rtl8169_private *tp, int reg, int value)
924 RTL_W32(tp, PHYAR, 0x80000000 | (reg & 0x1f) << 16 | (value & 0xffff));
926 rtl_udelay_loop_wait_low(tp, &rtl_phyar_cond, 25, 20);
928 * According to hardware specs a 20us delay is required after write
929 * complete indication, but before sending next command.
934 static int r8169_mdio_read(struct rtl8169_private *tp, int reg)
938 RTL_W32(tp, PHYAR, 0x0 | (reg & 0x1f) << 16);
940 value = rtl_udelay_loop_wait_high(tp, &rtl_phyar_cond, 25, 20) ?
941 RTL_R32(tp, PHYAR) & 0xffff : ~0;
944 * According to hardware specs a 20us delay is required after read
945 * complete indication, but before sending next command.
952 DECLARE_RTL_COND(rtl_ocpar_cond)
954 return RTL_R32(tp, OCPAR) & OCPAR_FLAG;
957 static void r8168dp_1_mdio_access(struct rtl8169_private *tp, int reg, u32 data)
959 RTL_W32(tp, OCPDR, data | ((reg & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
960 RTL_W32(tp, OCPAR, OCPAR_GPHY_WRITE_CMD);
961 RTL_W32(tp, EPHY_RXER_NUM, 0);
963 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 1000, 100);
966 static void r8168dp_1_mdio_write(struct rtl8169_private *tp, int reg, int value)
968 r8168dp_1_mdio_access(tp, reg,
969 OCPDR_WRITE_CMD | (value & OCPDR_DATA_MASK));
972 static int r8168dp_1_mdio_read(struct rtl8169_private *tp, int reg)
974 r8168dp_1_mdio_access(tp, reg, OCPDR_READ_CMD);
977 RTL_W32(tp, OCPAR, OCPAR_GPHY_READ_CMD);
978 RTL_W32(tp, EPHY_RXER_NUM, 0);
980 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 1000, 100) ?
981 RTL_R32(tp, OCPDR) & OCPDR_DATA_MASK : ~0;
984 #define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
986 static void r8168dp_2_mdio_start(struct rtl8169_private *tp)
988 RTL_W32(tp, 0xd0, RTL_R32(tp, 0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
991 static void r8168dp_2_mdio_stop(struct rtl8169_private *tp)
993 RTL_W32(tp, 0xd0, RTL_R32(tp, 0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
996 static void r8168dp_2_mdio_write(struct rtl8169_private *tp, int reg, int value)
998 r8168dp_2_mdio_start(tp);
1000 r8169_mdio_write(tp, reg, value);
1002 r8168dp_2_mdio_stop(tp);
1005 static int r8168dp_2_mdio_read(struct rtl8169_private *tp, int reg)
1009 r8168dp_2_mdio_start(tp);
1011 value = r8169_mdio_read(tp, reg);
1013 r8168dp_2_mdio_stop(tp);
1018 static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
1020 tp->mdio_ops.write(tp, location, val);
1023 static int rtl_readphy(struct rtl8169_private *tp, int location)
1025 return tp->mdio_ops.read(tp, location);
1028 static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1030 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1033 static void rtl_w0w1_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
1037 val = rtl_readphy(tp, reg_addr);
1038 rtl_writephy(tp, reg_addr, (val & ~m) | p);
1041 DECLARE_RTL_COND(rtl_ephyar_cond)
1043 return RTL_R32(tp, EPHYAR) & EPHYAR_FLAG;
1046 static void rtl_ephy_write(struct rtl8169_private *tp, int reg_addr, int value)
1048 RTL_W32(tp, EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1049 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1051 rtl_udelay_loop_wait_low(tp, &rtl_ephyar_cond, 10, 100);
1056 static u16 rtl_ephy_read(struct rtl8169_private *tp, int reg_addr)
1058 RTL_W32(tp, EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1060 return rtl_udelay_loop_wait_high(tp, &rtl_ephyar_cond, 10, 100) ?
1061 RTL_R32(tp, EPHYAR) & EPHYAR_DATA_MASK : ~0;
1064 DECLARE_RTL_COND(rtl_eriar_cond)
1066 return RTL_R32(tp, ERIAR) & ERIAR_FLAG;
1069 static void rtl_eri_write(struct rtl8169_private *tp, int addr, u32 mask,
1072 BUG_ON((addr & 3) || (mask == 0));
1073 RTL_W32(tp, ERIDR, val);
1074 RTL_W32(tp, ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1076 rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 100);
1079 static u32 rtl_eri_read(struct rtl8169_private *tp, int addr, int type)
1081 RTL_W32(tp, ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1083 return rtl_udelay_loop_wait_high(tp, &rtl_eriar_cond, 100, 100) ?
1084 RTL_R32(tp, ERIDR) : ~0;
1087 static void rtl_w0w1_eri(struct rtl8169_private *tp, int addr, u32 mask, u32 p,
1092 val = rtl_eri_read(tp, addr, type);
1093 rtl_eri_write(tp, addr, mask, (val & ~m) | p, type);
1096 static u32 r8168dp_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1098 RTL_W32(tp, OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1099 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 100, 20) ?
1100 RTL_R32(tp, OCPDR) : ~0;
1103 static u32 r8168ep_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1105 return rtl_eri_read(tp, reg, ERIAR_OOB);
1108 static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1110 switch (tp->mac_version) {
1111 case RTL_GIGA_MAC_VER_27:
1112 case RTL_GIGA_MAC_VER_28:
1113 case RTL_GIGA_MAC_VER_31:
1114 return r8168dp_ocp_read(tp, mask, reg);
1115 case RTL_GIGA_MAC_VER_49:
1116 case RTL_GIGA_MAC_VER_50:
1117 case RTL_GIGA_MAC_VER_51:
1118 return r8168ep_ocp_read(tp, mask, reg);
1125 static void r8168dp_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1128 RTL_W32(tp, OCPDR, data);
1129 RTL_W32(tp, OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1130 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 100, 20);
1133 static void r8168ep_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1136 rtl_eri_write(tp, reg, ((u32)mask & 0x0f) << ERIAR_MASK_SHIFT,
1140 static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
1142 switch (tp->mac_version) {
1143 case RTL_GIGA_MAC_VER_27:
1144 case RTL_GIGA_MAC_VER_28:
1145 case RTL_GIGA_MAC_VER_31:
1146 r8168dp_ocp_write(tp, mask, reg, data);
1148 case RTL_GIGA_MAC_VER_49:
1149 case RTL_GIGA_MAC_VER_50:
1150 case RTL_GIGA_MAC_VER_51:
1151 r8168ep_ocp_write(tp, mask, reg, data);
1159 static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
1161 rtl_eri_write(tp, 0xe8, ERIAR_MASK_0001, cmd, ERIAR_EXGMAC);
1163 ocp_write(tp, 0x1, 0x30, 0x00000001);
1166 #define OOB_CMD_RESET 0x00
1167 #define OOB_CMD_DRIVER_START 0x05
1168 #define OOB_CMD_DRIVER_STOP 0x06
1170 static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
1172 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
1175 DECLARE_RTL_COND(rtl_ocp_read_cond)
1179 reg = rtl8168_get_ocp_reg(tp);
1181 return ocp_read(tp, 0x0f, reg) & 0x00000800;
1184 DECLARE_RTL_COND(rtl_ep_ocp_read_cond)
1186 return ocp_read(tp, 0x0f, 0x124) & 0x00000001;
1189 DECLARE_RTL_COND(rtl_ocp_tx_cond)
1191 return RTL_R8(tp, IBISR0) & 0x20;
1194 static void rtl8168ep_stop_cmac(struct rtl8169_private *tp)
1196 RTL_W8(tp, IBCR2, RTL_R8(tp, IBCR2) & ~0x01);
1197 rtl_msleep_loop_wait_high(tp, &rtl_ocp_tx_cond, 50, 2000);
1198 RTL_W8(tp, IBISR0, RTL_R8(tp, IBISR0) | 0x20);
1199 RTL_W8(tp, IBCR0, RTL_R8(tp, IBCR0) & ~0x01);
1202 static void rtl8168dp_driver_start(struct rtl8169_private *tp)
1204 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
1205 rtl_msleep_loop_wait_high(tp, &rtl_ocp_read_cond, 10, 10);
1208 static void rtl8168ep_driver_start(struct rtl8169_private *tp)
1210 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_START);
1211 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1212 rtl_msleep_loop_wait_high(tp, &rtl_ep_ocp_read_cond, 10, 10);
1215 static void rtl8168_driver_start(struct rtl8169_private *tp)
1217 switch (tp->mac_version) {
1218 case RTL_GIGA_MAC_VER_27:
1219 case RTL_GIGA_MAC_VER_28:
1220 case RTL_GIGA_MAC_VER_31:
1221 rtl8168dp_driver_start(tp);
1223 case RTL_GIGA_MAC_VER_49:
1224 case RTL_GIGA_MAC_VER_50:
1225 case RTL_GIGA_MAC_VER_51:
1226 rtl8168ep_driver_start(tp);
1234 static void rtl8168dp_driver_stop(struct rtl8169_private *tp)
1236 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
1237 rtl_msleep_loop_wait_low(tp, &rtl_ocp_read_cond, 10, 10);
1240 static void rtl8168ep_driver_stop(struct rtl8169_private *tp)
1242 rtl8168ep_stop_cmac(tp);
1243 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_STOP);
1244 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1245 rtl_msleep_loop_wait_low(tp, &rtl_ep_ocp_read_cond, 10, 10);
1248 static void rtl8168_driver_stop(struct rtl8169_private *tp)
1250 switch (tp->mac_version) {
1251 case RTL_GIGA_MAC_VER_27:
1252 case RTL_GIGA_MAC_VER_28:
1253 case RTL_GIGA_MAC_VER_31:
1254 rtl8168dp_driver_stop(tp);
1256 case RTL_GIGA_MAC_VER_49:
1257 case RTL_GIGA_MAC_VER_50:
1258 case RTL_GIGA_MAC_VER_51:
1259 rtl8168ep_driver_stop(tp);
1267 static bool r8168dp_check_dash(struct rtl8169_private *tp)
1269 u16 reg = rtl8168_get_ocp_reg(tp);
1271 return !!(ocp_read(tp, 0x0f, reg) & 0x00008000);
1274 static bool r8168ep_check_dash(struct rtl8169_private *tp)
1276 return !!(ocp_read(tp, 0x0f, 0x128) & 0x00000001);
1279 static bool r8168_check_dash(struct rtl8169_private *tp)
1281 switch (tp->mac_version) {
1282 case RTL_GIGA_MAC_VER_27:
1283 case RTL_GIGA_MAC_VER_28:
1284 case RTL_GIGA_MAC_VER_31:
1285 return r8168dp_check_dash(tp);
1286 case RTL_GIGA_MAC_VER_49:
1287 case RTL_GIGA_MAC_VER_50:
1288 case RTL_GIGA_MAC_VER_51:
1289 return r8168ep_check_dash(tp);
1301 static void rtl_write_exgmac_batch(struct rtl8169_private *tp,
1302 const struct exgmac_reg *r, int len)
1305 rtl_eri_write(tp, r->addr, r->mask, r->val, ERIAR_EXGMAC);
1310 DECLARE_RTL_COND(rtl_efusear_cond)
1312 return RTL_R32(tp, EFUSEAR) & EFUSEAR_FLAG;
1315 static u8 rtl8168d_efuse_read(struct rtl8169_private *tp, int reg_addr)
1317 RTL_W32(tp, EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1319 return rtl_udelay_loop_wait_high(tp, &rtl_efusear_cond, 100, 300) ?
1320 RTL_R32(tp, EFUSEAR) & EFUSEAR_DATA_MASK : ~0;
1323 static u16 rtl_get_events(struct rtl8169_private *tp)
1325 return RTL_R16(tp, IntrStatus);
1328 static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1330 RTL_W16(tp, IntrStatus, bits);
1334 static void rtl_irq_disable(struct rtl8169_private *tp)
1336 RTL_W16(tp, IntrMask, 0);
1340 static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1342 RTL_W16(tp, IntrMask, bits);
1345 #define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1346 #define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1347 #define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1349 static void rtl_irq_enable_all(struct rtl8169_private *tp)
1351 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1354 static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
1356 rtl_irq_disable(tp);
1357 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
1358 RTL_R8(tp, ChipCmd);
1361 static void rtl_link_chg_patch(struct rtl8169_private *tp)
1363 struct net_device *dev = tp->dev;
1364 struct phy_device *phydev = dev->phydev;
1366 if (!netif_running(dev))
1369 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1370 tp->mac_version == RTL_GIGA_MAC_VER_38) {
1371 if (phydev->speed == SPEED_1000) {
1372 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1374 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1376 } else if (phydev->speed == SPEED_100) {
1377 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1379 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1382 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1384 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1387 /* Reset packet filter */
1388 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
1390 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
1392 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1393 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1394 if (phydev->speed == SPEED_1000) {
1395 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1397 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1400 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1402 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1405 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1406 if (phydev->speed == SPEED_10) {
1407 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x4d02,
1409 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_0011, 0x0060,
1412 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000,
1418 #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1420 static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1425 options = RTL_R8(tp, Config1);
1426 if (!(options & PMEnable))
1429 options = RTL_R8(tp, Config3);
1430 if (options & LinkUp)
1431 wolopts |= WAKE_PHY;
1432 switch (tp->mac_version) {
1433 case RTL_GIGA_MAC_VER_34 ... RTL_GIGA_MAC_VER_38:
1434 case RTL_GIGA_MAC_VER_40 ... RTL_GIGA_MAC_VER_51:
1435 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
1436 wolopts |= WAKE_MAGIC;
1439 if (options & MagicPacket)
1440 wolopts |= WAKE_MAGIC;
1444 options = RTL_R8(tp, Config5);
1446 wolopts |= WAKE_UCAST;
1448 wolopts |= WAKE_BCAST;
1450 wolopts |= WAKE_MCAST;
1455 static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1457 struct rtl8169_private *tp = netdev_priv(dev);
1460 wol->supported = WAKE_ANY;
1461 wol->wolopts = tp->saved_wolopts;
1462 rtl_unlock_work(tp);
1465 static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
1467 unsigned int i, tmp;
1468 static const struct {
1473 { WAKE_PHY, Config3, LinkUp },
1474 { WAKE_UCAST, Config5, UWF },
1475 { WAKE_BCAST, Config5, BWF },
1476 { WAKE_MCAST, Config5, MWF },
1477 { WAKE_ANY, Config5, LanWake },
1478 { WAKE_MAGIC, Config3, MagicPacket }
1482 RTL_W8(tp, Cfg9346, Cfg9346_Unlock);
1484 switch (tp->mac_version) {
1485 case RTL_GIGA_MAC_VER_34 ... RTL_GIGA_MAC_VER_38:
1486 case RTL_GIGA_MAC_VER_40 ... RTL_GIGA_MAC_VER_51:
1487 tmp = ARRAY_SIZE(cfg) - 1;
1488 if (wolopts & WAKE_MAGIC)
1504 tmp = ARRAY_SIZE(cfg);
1508 for (i = 0; i < tmp; i++) {
1509 options = RTL_R8(tp, cfg[i].reg) & ~cfg[i].mask;
1510 if (wolopts & cfg[i].opt)
1511 options |= cfg[i].mask;
1512 RTL_W8(tp, cfg[i].reg, options);
1515 switch (tp->mac_version) {
1516 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1517 options = RTL_R8(tp, Config1) & ~PMEnable;
1519 options |= PMEnable;
1520 RTL_W8(tp, Config1, options);
1523 options = RTL_R8(tp, Config2) & ~PME_SIGNAL;
1525 options |= PME_SIGNAL;
1526 RTL_W8(tp, Config2, options);
1530 RTL_W8(tp, Cfg9346, Cfg9346_Lock);
1533 static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1535 struct rtl8169_private *tp = netdev_priv(dev);
1536 struct device *d = tp_to_dev(tp);
1538 if (wol->wolopts & ~WAKE_ANY)
1541 pm_runtime_get_noresume(d);
1545 tp->saved_wolopts = wol->wolopts;
1547 if (pm_runtime_active(d))
1548 __rtl8169_set_wol(tp, tp->saved_wolopts);
1550 rtl_unlock_work(tp);
1552 device_set_wakeup_enable(d, tp->saved_wolopts);
1554 pm_runtime_put_noidle(d);
1559 static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1561 return rtl_chip_infos[tp->mac_version].fw_name;
1564 static void rtl8169_get_drvinfo(struct net_device *dev,
1565 struct ethtool_drvinfo *info)
1567 struct rtl8169_private *tp = netdev_priv(dev);
1568 struct rtl_fw *rtl_fw = tp->rtl_fw;
1570 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1571 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
1572 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
1573 if (!IS_ERR_OR_NULL(rtl_fw))
1574 strlcpy(info->fw_version, rtl_fw->version,
1575 sizeof(info->fw_version));
1578 static int rtl8169_get_regs_len(struct net_device *dev)
1580 return R8169_REGS_SIZE;
1583 static netdev_features_t rtl8169_fix_features(struct net_device *dev,
1584 netdev_features_t features)
1586 struct rtl8169_private *tp = netdev_priv(dev);
1588 if (dev->mtu > TD_MSS_MAX)
1589 features &= ~NETIF_F_ALL_TSO;
1591 if (dev->mtu > JUMBO_1K &&
1592 tp->mac_version > RTL_GIGA_MAC_VER_06)
1593 features &= ~NETIF_F_IP_CSUM;
1598 static int rtl8169_set_features(struct net_device *dev,
1599 netdev_features_t features)
1601 struct rtl8169_private *tp = netdev_priv(dev);
1606 rx_config = RTL_R32(tp, RxConfig);
1607 if (features & NETIF_F_RXALL)
1608 rx_config |= (AcceptErr | AcceptRunt);
1610 rx_config &= ~(AcceptErr | AcceptRunt);
1612 RTL_W32(tp, RxConfig, rx_config);
1614 if (features & NETIF_F_RXCSUM)
1615 tp->cp_cmd |= RxChkSum;
1617 tp->cp_cmd &= ~RxChkSum;
1619 if (features & NETIF_F_HW_VLAN_CTAG_RX)
1620 tp->cp_cmd |= RxVlan;
1622 tp->cp_cmd &= ~RxVlan;
1624 RTL_W16(tp, CPlusCmd, tp->cp_cmd);
1625 RTL_R16(tp, CPlusCmd);
1627 rtl_unlock_work(tp);
1632 static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
1634 return (skb_vlan_tag_present(skb)) ?
1635 TxVlanTag | swab16(skb_vlan_tag_get(skb)) : 0x00;
1638 static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
1640 u32 opts2 = le32_to_cpu(desc->opts2);
1642 if (opts2 & RxVlanTag)
1643 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2 & 0xffff));
1646 static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1649 struct rtl8169_private *tp = netdev_priv(dev);
1650 u32 __iomem *data = tp->mmio_addr;
1655 for (i = 0; i < R8169_REGS_SIZE; i += 4)
1656 memcpy_fromio(dw++, data++, 4);
1657 rtl_unlock_work(tp);
1660 static u32 rtl8169_get_msglevel(struct net_device *dev)
1662 struct rtl8169_private *tp = netdev_priv(dev);
1664 return tp->msg_enable;
1667 static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1669 struct rtl8169_private *tp = netdev_priv(dev);
1671 tp->msg_enable = value;
1674 static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1681 "tx_single_collisions",
1682 "tx_multi_collisions",
1690 static int rtl8169_get_sset_count(struct net_device *dev, int sset)
1694 return ARRAY_SIZE(rtl8169_gstrings);
1700 DECLARE_RTL_COND(rtl_counters_cond)
1702 return RTL_R32(tp, CounterAddrLow) & (CounterReset | CounterDump);
1705 static bool rtl8169_do_counters(struct rtl8169_private *tp, u32 counter_cmd)
1707 dma_addr_t paddr = tp->counters_phys_addr;
1710 RTL_W32(tp, CounterAddrHigh, (u64)paddr >> 32);
1711 RTL_R32(tp, CounterAddrHigh);
1712 cmd = (u64)paddr & DMA_BIT_MASK(32);
1713 RTL_W32(tp, CounterAddrLow, cmd);
1714 RTL_W32(tp, CounterAddrLow, cmd | counter_cmd);
1716 return rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000);
1719 static bool rtl8169_reset_counters(struct rtl8169_private *tp)
1722 * Versions prior to RTL_GIGA_MAC_VER_19 don't support resetting the
1725 if (tp->mac_version < RTL_GIGA_MAC_VER_19)
1728 return rtl8169_do_counters(tp, CounterReset);
1731 static bool rtl8169_update_counters(struct rtl8169_private *tp)
1734 * Some chips are unable to dump tally counters when the receiver
1737 if ((RTL_R8(tp, ChipCmd) & CmdRxEnb) == 0)
1740 return rtl8169_do_counters(tp, CounterDump);
1743 static bool rtl8169_init_counter_offsets(struct rtl8169_private *tp)
1745 struct rtl8169_counters *counters = tp->counters;
1749 * rtl8169_init_counter_offsets is called from rtl_open. On chip
1750 * versions prior to RTL_GIGA_MAC_VER_19 the tally counters are only
1751 * reset by a power cycle, while the counter values collected by the
1752 * driver are reset at every driver unload/load cycle.
1754 * To make sure the HW values returned by @get_stats64 match the SW
1755 * values, we collect the initial values at first open(*) and use them
1756 * as offsets to normalize the values returned by @get_stats64.
1758 * (*) We can't call rtl8169_init_counter_offsets from rtl_init_one
1759 * for the reason stated in rtl8169_update_counters; CmdRxEnb is only
1760 * set at open time by rtl_hw_start.
1763 if (tp->tc_offset.inited)
1766 /* If both, reset and update fail, propagate to caller. */
1767 if (rtl8169_reset_counters(tp))
1770 if (rtl8169_update_counters(tp))
1773 tp->tc_offset.tx_errors = counters->tx_errors;
1774 tp->tc_offset.tx_multi_collision = counters->tx_multi_collision;
1775 tp->tc_offset.tx_aborted = counters->tx_aborted;
1776 tp->tc_offset.inited = true;
1781 static void rtl8169_get_ethtool_stats(struct net_device *dev,
1782 struct ethtool_stats *stats, u64 *data)
1784 struct rtl8169_private *tp = netdev_priv(dev);
1785 struct device *d = tp_to_dev(tp);
1786 struct rtl8169_counters *counters = tp->counters;
1790 pm_runtime_get_noresume(d);
1792 if (pm_runtime_active(d))
1793 rtl8169_update_counters(tp);
1795 pm_runtime_put_noidle(d);
1797 data[0] = le64_to_cpu(counters->tx_packets);
1798 data[1] = le64_to_cpu(counters->rx_packets);
1799 data[2] = le64_to_cpu(counters->tx_errors);
1800 data[3] = le32_to_cpu(counters->rx_errors);
1801 data[4] = le16_to_cpu(counters->rx_missed);
1802 data[5] = le16_to_cpu(counters->align_errors);
1803 data[6] = le32_to_cpu(counters->tx_one_collision);
1804 data[7] = le32_to_cpu(counters->tx_multi_collision);
1805 data[8] = le64_to_cpu(counters->rx_unicast);
1806 data[9] = le64_to_cpu(counters->rx_broadcast);
1807 data[10] = le32_to_cpu(counters->rx_multicast);
1808 data[11] = le16_to_cpu(counters->tx_aborted);
1809 data[12] = le16_to_cpu(counters->tx_underun);
1812 static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1816 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1822 * Interrupt coalescing
1824 * > 1 - the availability of the IntrMitigate (0xe2) register through the
1825 * > 8169, 8168 and 810x line of chipsets
1827 * 8169, 8168, and 8136(810x) serial chipsets support it.
1829 * > 2 - the Tx timer unit at gigabit speed
1831 * The unit of the timer depends on both the speed and the setting of CPlusCmd
1832 * (0xe0) bit 1 and bit 0.
1835 * bit[1:0] \ speed 1000M 100M 10M
1836 * 0 0 320ns 2.56us 40.96us
1837 * 0 1 2.56us 20.48us 327.7us
1838 * 1 0 5.12us 40.96us 655.4us
1839 * 1 1 10.24us 81.92us 1.31ms
1842 * bit[1:0] \ speed 1000M 100M 10M
1843 * 0 0 5us 2.56us 40.96us
1844 * 0 1 40us 20.48us 327.7us
1845 * 1 0 80us 40.96us 655.4us
1846 * 1 1 160us 81.92us 1.31ms
1849 /* rx/tx scale factors for one particular CPlusCmd[0:1] value */
1850 struct rtl_coalesce_scale {
1855 /* rx/tx scale factors for all CPlusCmd[0:1] cases */
1856 struct rtl_coalesce_info {
1858 struct rtl_coalesce_scale scalev[4]; /* each CPlusCmd[0:1] case */
1861 /* produce (r,t) pairs with each being in series of *1, *8, *8*2, *8*2*2 */
1862 #define rxtx_x1822(r, t) { \
1865 {{(r)*8*2, (t)*8*2}}, \
1866 {{(r)*8*2*2, (t)*8*2*2}}, \
1868 static const struct rtl_coalesce_info rtl_coalesce_info_8169[] = {
1869 /* speed delays: rx00 tx00 */
1870 { SPEED_10, rxtx_x1822(40960, 40960) },
1871 { SPEED_100, rxtx_x1822( 2560, 2560) },
1872 { SPEED_1000, rxtx_x1822( 320, 320) },
1876 static const struct rtl_coalesce_info rtl_coalesce_info_8168_8136[] = {
1877 /* speed delays: rx00 tx00 */
1878 { SPEED_10, rxtx_x1822(40960, 40960) },
1879 { SPEED_100, rxtx_x1822( 2560, 2560) },
1880 { SPEED_1000, rxtx_x1822( 5000, 5000) },
1885 /* get rx/tx scale vector corresponding to current speed */
1886 static const struct rtl_coalesce_info *rtl_coalesce_info(struct net_device *dev)
1888 struct rtl8169_private *tp = netdev_priv(dev);
1889 struct ethtool_link_ksettings ecmd;
1890 const struct rtl_coalesce_info *ci;
1893 rc = phy_ethtool_get_link_ksettings(dev, &ecmd);
1897 for (ci = tp->coalesce_info; ci->speed != 0; ci++) {
1898 if (ecmd.base.speed == ci->speed) {
1903 return ERR_PTR(-ELNRNG);
1906 static int rtl_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
1908 struct rtl8169_private *tp = netdev_priv(dev);
1909 const struct rtl_coalesce_info *ci;
1910 const struct rtl_coalesce_scale *scale;
1914 } coal_settings [] = {
1915 { &ec->rx_max_coalesced_frames, &ec->rx_coalesce_usecs },
1916 { &ec->tx_max_coalesced_frames, &ec->tx_coalesce_usecs }
1917 }, *p = coal_settings;
1921 memset(ec, 0, sizeof(*ec));
1923 /* get rx/tx scale corresponding to current speed and CPlusCmd[0:1] */
1924 ci = rtl_coalesce_info(dev);
1928 scale = &ci->scalev[tp->cp_cmd & INTT_MASK];
1930 /* read IntrMitigate and adjust according to scale */
1931 for (w = RTL_R16(tp, IntrMitigate); w; w >>= RTL_COALESCE_SHIFT, p++) {
1932 *p->max_frames = (w & RTL_COALESCE_MASK) << 2;
1933 w >>= RTL_COALESCE_SHIFT;
1934 *p->usecs = w & RTL_COALESCE_MASK;
1937 for (i = 0; i < 2; i++) {
1938 p = coal_settings + i;
1939 *p->usecs = (*p->usecs * scale->nsecs[i]) / 1000;
1942 * ethtool_coalesce says it is illegal to set both usecs and
1945 if (!*p->usecs && !*p->max_frames)
1952 /* choose appropriate scale factor and CPlusCmd[0:1] for (speed, nsec) */
1953 static const struct rtl_coalesce_scale *rtl_coalesce_choose_scale(
1954 struct net_device *dev, u32 nsec, u16 *cp01)
1956 const struct rtl_coalesce_info *ci;
1959 ci = rtl_coalesce_info(dev);
1961 return ERR_CAST(ci);
1963 for (i = 0; i < 4; i++) {
1964 u32 rxtx_maxscale = max(ci->scalev[i].nsecs[0],
1965 ci->scalev[i].nsecs[1]);
1966 if (nsec <= rxtx_maxscale * RTL_COALESCE_T_MAX) {
1968 return &ci->scalev[i];
1972 return ERR_PTR(-EINVAL);
1975 static int rtl_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
1977 struct rtl8169_private *tp = netdev_priv(dev);
1978 const struct rtl_coalesce_scale *scale;
1982 } coal_settings [] = {
1983 { ec->rx_max_coalesced_frames, ec->rx_coalesce_usecs },
1984 { ec->tx_max_coalesced_frames, ec->tx_coalesce_usecs }
1985 }, *p = coal_settings;
1989 scale = rtl_coalesce_choose_scale(dev,
1990 max(p[0].usecs, p[1].usecs) * 1000, &cp01);
1992 return PTR_ERR(scale);
1994 for (i = 0; i < 2; i++, p++) {
1998 * accept max_frames=1 we returned in rtl_get_coalesce.
1999 * accept it not only when usecs=0 because of e.g. the following scenario:
2001 * - both rx_usecs=0 & rx_frames=0 in hardware (no delay on RX)
2002 * - rtl_get_coalesce returns rx_usecs=0, rx_frames=1
2003 * - then user does `ethtool -C eth0 rx-usecs 100`
2005 * since ethtool sends to kernel whole ethtool_coalesce
2006 * settings, if we do not handle rx_usecs=!0, rx_frames=1
2007 * we'll reject it below in `frames % 4 != 0`.
2009 if (p->frames == 1) {
2013 units = p->usecs * 1000 / scale->nsecs[i];
2014 if (p->frames > RTL_COALESCE_FRAME_MAX || p->frames % 4)
2017 w <<= RTL_COALESCE_SHIFT;
2019 w <<= RTL_COALESCE_SHIFT;
2020 w |= p->frames >> 2;
2025 RTL_W16(tp, IntrMitigate, swab16(w));
2027 tp->cp_cmd = (tp->cp_cmd & ~INTT_MASK) | cp01;
2028 RTL_W16(tp, CPlusCmd, tp->cp_cmd);
2029 RTL_R16(tp, CPlusCmd);
2031 rtl_unlock_work(tp);
2036 static const struct ethtool_ops rtl8169_ethtool_ops = {
2037 .get_drvinfo = rtl8169_get_drvinfo,
2038 .get_regs_len = rtl8169_get_regs_len,
2039 .get_link = ethtool_op_get_link,
2040 .get_coalesce = rtl_get_coalesce,
2041 .set_coalesce = rtl_set_coalesce,
2042 .get_msglevel = rtl8169_get_msglevel,
2043 .set_msglevel = rtl8169_set_msglevel,
2044 .get_regs = rtl8169_get_regs,
2045 .get_wol = rtl8169_get_wol,
2046 .set_wol = rtl8169_set_wol,
2047 .get_strings = rtl8169_get_strings,
2048 .get_sset_count = rtl8169_get_sset_count,
2049 .get_ethtool_stats = rtl8169_get_ethtool_stats,
2050 .get_ts_info = ethtool_op_get_ts_info,
2051 .nway_reset = phy_ethtool_nway_reset,
2052 .get_link_ksettings = phy_ethtool_get_link_ksettings,
2053 .set_link_ksettings = phy_ethtool_set_link_ksettings,
2056 static void rtl8169_get_mac_version(struct rtl8169_private *tp,
2060 * The driver currently handles the 8168Bf and the 8168Be identically
2061 * but they can be identified more specifically through the test below
2064 * (RTL_R32(tp, TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
2066 * Same thing for the 8101Eb and the 8101Ec:
2068 * (RTL_R32(tp, TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
2070 static const struct rtl_mac_info {
2075 /* 8168EP family. */
2076 { 0x7cf00000, 0x50200000, RTL_GIGA_MAC_VER_51 },
2077 { 0x7cf00000, 0x50100000, RTL_GIGA_MAC_VER_50 },
2078 { 0x7cf00000, 0x50000000, RTL_GIGA_MAC_VER_49 },
2081 { 0x7cf00000, 0x54100000, RTL_GIGA_MAC_VER_46 },
2082 { 0x7cf00000, 0x54000000, RTL_GIGA_MAC_VER_45 },
2085 { 0x7cf00000, 0x5c800000, RTL_GIGA_MAC_VER_44 },
2086 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42 },
2087 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2088 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2091 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
2092 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2093 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2096 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
2097 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2098 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2101 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
2102 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
2104 /* 8168DP family. */
2105 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2106 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
2107 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
2110 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
2111 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
2112 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
2113 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2114 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
2115 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
2116 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
2119 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2120 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2121 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2124 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
2125 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
2126 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2127 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
2128 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2129 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2130 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2131 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
2132 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
2133 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
2134 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
2135 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2136 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
2137 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2138 /* FIXME: where did these entries come from ? -- FR */
2139 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2140 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2143 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2144 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2145 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2146 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2147 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2148 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2151 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
2153 const struct rtl_mac_info *p = mac_info;
2156 reg = RTL_R32(tp, TxConfig);
2157 while ((reg & p->mask) != p->val)
2159 tp->mac_version = p->mac_version;
2161 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2162 dev_notice(tp_to_dev(tp),
2163 "unknown MAC, using family default\n");
2164 tp->mac_version = default_version;
2165 } else if (tp->mac_version == RTL_GIGA_MAC_VER_42) {
2166 tp->mac_version = tp->supports_gmii ?
2167 RTL_GIGA_MAC_VER_42 :
2168 RTL_GIGA_MAC_VER_43;
2169 } else if (tp->mac_version == RTL_GIGA_MAC_VER_45) {
2170 tp->mac_version = tp->supports_gmii ?
2171 RTL_GIGA_MAC_VER_45 :
2172 RTL_GIGA_MAC_VER_47;
2173 } else if (tp->mac_version == RTL_GIGA_MAC_VER_46) {
2174 tp->mac_version = tp->supports_gmii ?
2175 RTL_GIGA_MAC_VER_46 :
2176 RTL_GIGA_MAC_VER_48;
2180 static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2182 netif_dbg(tp, drv, tp->dev, "mac_version = 0x%02x\n", tp->mac_version);
2190 static void rtl_writephy_batch(struct rtl8169_private *tp,
2191 const struct phy_reg *regs, int len)
2194 rtl_writephy(tp, regs->reg, regs->val);
2199 #define PHY_READ 0x00000000
2200 #define PHY_DATA_OR 0x10000000
2201 #define PHY_DATA_AND 0x20000000
2202 #define PHY_BJMPN 0x30000000
2203 #define PHY_MDIO_CHG 0x40000000
2204 #define PHY_CLEAR_READCOUNT 0x70000000
2205 #define PHY_WRITE 0x80000000
2206 #define PHY_READCOUNT_EQ_SKIP 0x90000000
2207 #define PHY_COMP_EQ_SKIPN 0xa0000000
2208 #define PHY_COMP_NEQ_SKIPN 0xb0000000
2209 #define PHY_WRITE_PREVIOUS 0xc0000000
2210 #define PHY_SKIPN 0xd0000000
2211 #define PHY_DELAY_MS 0xe0000000
2215 char version[RTL_VER_SIZE];
2221 #define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2223 static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2225 const struct firmware *fw = rtl_fw->fw;
2226 struct fw_info *fw_info = (struct fw_info *)fw->data;
2227 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2228 char *version = rtl_fw->version;
2231 if (fw->size < FW_OPCODE_SIZE)
2234 if (!fw_info->magic) {
2235 size_t i, size, start;
2238 if (fw->size < sizeof(*fw_info))
2241 for (i = 0; i < fw->size; i++)
2242 checksum += fw->data[i];
2246 start = le32_to_cpu(fw_info->fw_start);
2247 if (start > fw->size)
2250 size = le32_to_cpu(fw_info->fw_len);
2251 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2254 memcpy(version, fw_info->version, RTL_VER_SIZE);
2256 pa->code = (__le32 *)(fw->data + start);
2259 if (fw->size % FW_OPCODE_SIZE)
2262 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2264 pa->code = (__le32 *)fw->data;
2265 pa->size = fw->size / FW_OPCODE_SIZE;
2267 version[RTL_VER_SIZE - 1] = 0;
2274 static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2275 struct rtl_fw_phy_action *pa)
2280 for (index = 0; index < pa->size; index++) {
2281 u32 action = le32_to_cpu(pa->code[index]);
2282 u32 regno = (action & 0x0fff0000) >> 16;
2284 switch(action & 0xf0000000) {
2289 case PHY_CLEAR_READCOUNT:
2291 case PHY_WRITE_PREVIOUS:
2296 if (regno > index) {
2297 netif_err(tp, ifup, tp->dev,
2298 "Out of range of firmware\n");
2302 case PHY_READCOUNT_EQ_SKIP:
2303 if (index + 2 >= pa->size) {
2304 netif_err(tp, ifup, tp->dev,
2305 "Out of range of firmware\n");
2309 case PHY_COMP_EQ_SKIPN:
2310 case PHY_COMP_NEQ_SKIPN:
2312 if (index + 1 + regno >= pa->size) {
2313 netif_err(tp, ifup, tp->dev,
2314 "Out of range of firmware\n");
2320 netif_err(tp, ifup, tp->dev,
2321 "Invalid action 0x%08x\n", action);
2330 static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2332 struct net_device *dev = tp->dev;
2335 if (!rtl_fw_format_ok(tp, rtl_fw)) {
2336 netif_err(tp, ifup, dev, "invalid firmware\n");
2340 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2346 static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2348 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2349 struct mdio_ops org, *ops = &tp->mdio_ops;
2353 predata = count = 0;
2354 org.write = ops->write;
2355 org.read = ops->read;
2357 for (index = 0; index < pa->size; ) {
2358 u32 action = le32_to_cpu(pa->code[index]);
2359 u32 data = action & 0x0000ffff;
2360 u32 regno = (action & 0x0fff0000) >> 16;
2365 switch(action & 0xf0000000) {
2367 predata = rtl_readphy(tp, regno);
2384 ops->write = org.write;
2385 ops->read = org.read;
2386 } else if (data == 1) {
2387 ops->write = mac_mcu_write;
2388 ops->read = mac_mcu_read;
2393 case PHY_CLEAR_READCOUNT:
2398 rtl_writephy(tp, regno, data);
2401 case PHY_READCOUNT_EQ_SKIP:
2402 index += (count == data) ? 2 : 1;
2404 case PHY_COMP_EQ_SKIPN:
2405 if (predata == data)
2409 case PHY_COMP_NEQ_SKIPN:
2410 if (predata != data)
2414 case PHY_WRITE_PREVIOUS:
2415 rtl_writephy(tp, regno, predata);
2431 ops->write = org.write;
2432 ops->read = org.read;
2435 static void rtl_release_firmware(struct rtl8169_private *tp)
2437 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2438 release_firmware(tp->rtl_fw->fw);
2441 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
2444 static void rtl_apply_firmware(struct rtl8169_private *tp)
2446 struct rtl_fw *rtl_fw = tp->rtl_fw;
2448 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
2449 if (!IS_ERR_OR_NULL(rtl_fw))
2450 rtl_phy_write_fw(tp, rtl_fw);
2453 static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2455 if (rtl_readphy(tp, reg) != val)
2456 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2458 rtl_apply_firmware(tp);
2461 static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
2463 static const struct phy_reg phy_reg_init[] = {
2525 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2528 static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
2530 static const struct phy_reg phy_reg_init[] = {
2536 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2539 static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
2541 struct pci_dev *pdev = tp->pci_dev;
2543 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2544 (pdev->subsystem_device != 0xe000))
2547 rtl_writephy(tp, 0x1f, 0x0001);
2548 rtl_writephy(tp, 0x10, 0xf01b);
2549 rtl_writephy(tp, 0x1f, 0x0000);
2552 static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
2554 static const struct phy_reg phy_reg_init[] = {
2594 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2596 rtl8169scd_hw_phy_config_quirk(tp);
2599 static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
2601 static const struct phy_reg phy_reg_init[] = {
2649 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2652 static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
2654 static const struct phy_reg phy_reg_init[] = {
2659 rtl_writephy(tp, 0x1f, 0x0001);
2660 rtl_patchphy(tp, 0x16, 1 << 0);
2662 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2665 static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
2667 static const struct phy_reg phy_reg_init[] = {
2673 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2676 static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
2678 static const struct phy_reg phy_reg_init[] = {
2686 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2689 static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
2691 static const struct phy_reg phy_reg_init[] = {
2697 rtl_writephy(tp, 0x1f, 0x0000);
2698 rtl_patchphy(tp, 0x14, 1 << 5);
2699 rtl_patchphy(tp, 0x0d, 1 << 5);
2701 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2704 static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
2706 static const struct phy_reg phy_reg_init[] = {
2726 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2728 rtl_patchphy(tp, 0x14, 1 << 5);
2729 rtl_patchphy(tp, 0x0d, 1 << 5);
2730 rtl_writephy(tp, 0x1f, 0x0000);
2733 static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
2735 static const struct phy_reg phy_reg_init[] = {
2753 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2755 rtl_patchphy(tp, 0x16, 1 << 0);
2756 rtl_patchphy(tp, 0x14, 1 << 5);
2757 rtl_patchphy(tp, 0x0d, 1 << 5);
2758 rtl_writephy(tp, 0x1f, 0x0000);
2761 static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
2763 static const struct phy_reg phy_reg_init[] = {
2775 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2777 rtl_patchphy(tp, 0x16, 1 << 0);
2778 rtl_patchphy(tp, 0x14, 1 << 5);
2779 rtl_patchphy(tp, 0x0d, 1 << 5);
2780 rtl_writephy(tp, 0x1f, 0x0000);
2783 static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
2785 rtl8168c_3_hw_phy_config(tp);
2788 static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
2790 static const struct phy_reg phy_reg_init_0[] = {
2791 /* Channel Estimation */
2812 * Enhance line driver power
2821 * Can not link to 1Gbps with bad cable
2822 * Decrease SNR threshold form 21.07dB to 19.04dB
2831 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
2835 * Fine Tune Switching regulator parameter
2837 rtl_writephy(tp, 0x1f, 0x0002);
2838 rtl_w0w1_phy(tp, 0x0b, 0x0010, 0x00ef);
2839 rtl_w0w1_phy(tp, 0x0c, 0xa200, 0x5d00);
2841 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
2842 static const struct phy_reg phy_reg_init[] = {
2852 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2854 val = rtl_readphy(tp, 0x0d);
2856 if ((val & 0x00ff) != 0x006c) {
2857 static const u32 set[] = {
2858 0x0065, 0x0066, 0x0067, 0x0068,
2859 0x0069, 0x006a, 0x006b, 0x006c
2863 rtl_writephy(tp, 0x1f, 0x0002);
2866 for (i = 0; i < ARRAY_SIZE(set); i++)
2867 rtl_writephy(tp, 0x0d, val | set[i]);
2870 static const struct phy_reg phy_reg_init[] = {
2878 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2881 /* RSET couple improve */
2882 rtl_writephy(tp, 0x1f, 0x0002);
2883 rtl_patchphy(tp, 0x0d, 0x0300);
2884 rtl_patchphy(tp, 0x0f, 0x0010);
2886 /* Fine tune PLL performance */
2887 rtl_writephy(tp, 0x1f, 0x0002);
2888 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
2889 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
2891 rtl_writephy(tp, 0x1f, 0x0005);
2892 rtl_writephy(tp, 0x05, 0x001b);
2894 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
2896 rtl_writephy(tp, 0x1f, 0x0000);
2899 static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
2901 static const struct phy_reg phy_reg_init_0[] = {
2902 /* Channel Estimation */
2923 * Enhance line driver power
2932 * Can not link to 1Gbps with bad cable
2933 * Decrease SNR threshold form 21.07dB to 19.04dB
2942 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
2944 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
2945 static const struct phy_reg phy_reg_init[] = {
2956 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2958 val = rtl_readphy(tp, 0x0d);
2959 if ((val & 0x00ff) != 0x006c) {
2960 static const u32 set[] = {
2961 0x0065, 0x0066, 0x0067, 0x0068,
2962 0x0069, 0x006a, 0x006b, 0x006c
2966 rtl_writephy(tp, 0x1f, 0x0002);
2969 for (i = 0; i < ARRAY_SIZE(set); i++)
2970 rtl_writephy(tp, 0x0d, val | set[i]);
2973 static const struct phy_reg phy_reg_init[] = {
2981 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2984 /* Fine tune PLL performance */
2985 rtl_writephy(tp, 0x1f, 0x0002);
2986 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
2987 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
2989 /* Switching regulator Slew rate */
2990 rtl_writephy(tp, 0x1f, 0x0002);
2991 rtl_patchphy(tp, 0x0f, 0x0017);
2993 rtl_writephy(tp, 0x1f, 0x0005);
2994 rtl_writephy(tp, 0x05, 0x001b);
2996 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
2998 rtl_writephy(tp, 0x1f, 0x0000);
3001 static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
3003 static const struct phy_reg phy_reg_init[] = {
3059 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3062 static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
3064 static const struct phy_reg phy_reg_init[] = {
3074 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3075 rtl_patchphy(tp, 0x0d, 1 << 5);
3078 static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
3080 static const struct phy_reg phy_reg_init[] = {
3081 /* Enable Delay cap */
3087 /* Channel estimation fine tune */
3096 /* Update PFM & 10M TX idle timer */
3108 rtl_apply_firmware(tp);
3110 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3112 /* DCO enable for 10M IDLE Power */
3113 rtl_writephy(tp, 0x1f, 0x0007);
3114 rtl_writephy(tp, 0x1e, 0x0023);
3115 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
3116 rtl_writephy(tp, 0x1f, 0x0000);
3118 /* For impedance matching */
3119 rtl_writephy(tp, 0x1f, 0x0002);
3120 rtl_w0w1_phy(tp, 0x08, 0x8000, 0x7f00);
3121 rtl_writephy(tp, 0x1f, 0x0000);
3123 /* PHY auto speed down */
3124 rtl_writephy(tp, 0x1f, 0x0007);
3125 rtl_writephy(tp, 0x1e, 0x002d);
3126 rtl_w0w1_phy(tp, 0x18, 0x0050, 0x0000);
3127 rtl_writephy(tp, 0x1f, 0x0000);
3128 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
3130 rtl_writephy(tp, 0x1f, 0x0005);
3131 rtl_writephy(tp, 0x05, 0x8b86);
3132 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
3133 rtl_writephy(tp, 0x1f, 0x0000);
3135 rtl_writephy(tp, 0x1f, 0x0005);
3136 rtl_writephy(tp, 0x05, 0x8b85);
3137 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
3138 rtl_writephy(tp, 0x1f, 0x0007);
3139 rtl_writephy(tp, 0x1e, 0x0020);
3140 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x1100);
3141 rtl_writephy(tp, 0x1f, 0x0006);
3142 rtl_writephy(tp, 0x00, 0x5a00);
3143 rtl_writephy(tp, 0x1f, 0x0000);
3144 rtl_writephy(tp, 0x0d, 0x0007);
3145 rtl_writephy(tp, 0x0e, 0x003c);
3146 rtl_writephy(tp, 0x0d, 0x4007);
3147 rtl_writephy(tp, 0x0e, 0x0000);
3148 rtl_writephy(tp, 0x0d, 0x0000);
3151 static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3154 addr[0] | (addr[1] << 8),
3155 addr[2] | (addr[3] << 8),
3156 addr[4] | (addr[5] << 8)
3158 const struct exgmac_reg e[] = {
3159 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3160 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3161 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3162 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3165 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3168 static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3170 static const struct phy_reg phy_reg_init[] = {
3171 /* Enable Delay cap */
3180 /* Channel estimation fine tune */
3197 rtl_apply_firmware(tp);
3199 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3201 /* For 4-corner performance improve */
3202 rtl_writephy(tp, 0x1f, 0x0005);
3203 rtl_writephy(tp, 0x05, 0x8b80);
3204 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
3205 rtl_writephy(tp, 0x1f, 0x0000);
3207 /* PHY auto speed down */
3208 rtl_writephy(tp, 0x1f, 0x0004);
3209 rtl_writephy(tp, 0x1f, 0x0007);
3210 rtl_writephy(tp, 0x1e, 0x002d);
3211 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
3212 rtl_writephy(tp, 0x1f, 0x0002);
3213 rtl_writephy(tp, 0x1f, 0x0000);
3214 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
3216 /* improve 10M EEE waveform */
3217 rtl_writephy(tp, 0x1f, 0x0005);
3218 rtl_writephy(tp, 0x05, 0x8b86);
3219 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
3220 rtl_writephy(tp, 0x1f, 0x0000);
3222 /* Improve 2-pair detection performance */
3223 rtl_writephy(tp, 0x1f, 0x0005);
3224 rtl_writephy(tp, 0x05, 0x8b85);
3225 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
3226 rtl_writephy(tp, 0x1f, 0x0000);
3229 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0003, 0x0000, ERIAR_EXGMAC);
3230 rtl_writephy(tp, 0x1f, 0x0005);
3231 rtl_writephy(tp, 0x05, 0x8b85);
3232 rtl_w0w1_phy(tp, 0x06, 0x2000, 0x0000);
3233 rtl_writephy(tp, 0x1f, 0x0004);
3234 rtl_writephy(tp, 0x1f, 0x0007);
3235 rtl_writephy(tp, 0x1e, 0x0020);
3236 rtl_w0w1_phy(tp, 0x15, 0x0100, 0x0000);
3237 rtl_writephy(tp, 0x1f, 0x0002);
3238 rtl_writephy(tp, 0x1f, 0x0000);
3239 rtl_writephy(tp, 0x0d, 0x0007);
3240 rtl_writephy(tp, 0x0e, 0x003c);
3241 rtl_writephy(tp, 0x0d, 0x4007);
3242 rtl_writephy(tp, 0x0e, 0x0006);
3243 rtl_writephy(tp, 0x0d, 0x0000);
3246 rtl_writephy(tp, 0x1f, 0x0003);
3247 rtl_w0w1_phy(tp, 0x19, 0x0001, 0x0000);
3248 rtl_w0w1_phy(tp, 0x10, 0x0400, 0x0000);
3249 rtl_writephy(tp, 0x1f, 0x0000);
3250 rtl_writephy(tp, 0x1f, 0x0005);