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/delay.h>
17 #include <linux/ethtool.h>
18 #include <linux/mii.h>
19 #include <linux/if_vlan.h>
20 #include <linux/crc32.h>
23 #include <linux/tcp.h>
24 #include <linux/interrupt.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/firmware.h>
28 #include <linux/pci-aspm.h>
29 #include <linux/prefetch.h>
30 #include <linux/ipv6.h>
31 #include <net/ip6_checksum.h>
36 #define RTL8169_VERSION "2.3LK-NAPI"
37 #define MODULENAME "r8169"
38 #define PFX MODULENAME ": "
40 #define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
41 #define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
42 #define FIRMWARE_8168E_1 "rtl_nic/rtl8168e-1.fw"
43 #define FIRMWARE_8168E_2 "rtl_nic/rtl8168e-2.fw"
44 #define FIRMWARE_8168E_3 "rtl_nic/rtl8168e-3.fw"
45 #define FIRMWARE_8168F_1 "rtl_nic/rtl8168f-1.fw"
46 #define FIRMWARE_8168F_2 "rtl_nic/rtl8168f-2.fw"
47 #define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
48 #define FIRMWARE_8402_1 "rtl_nic/rtl8402-1.fw"
49 #define FIRMWARE_8411_1 "rtl_nic/rtl8411-1.fw"
50 #define FIRMWARE_8411_2 "rtl_nic/rtl8411-2.fw"
51 #define FIRMWARE_8106E_1 "rtl_nic/rtl8106e-1.fw"
52 #define FIRMWARE_8106E_2 "rtl_nic/rtl8106e-2.fw"
53 #define FIRMWARE_8168G_2 "rtl_nic/rtl8168g-2.fw"
54 #define FIRMWARE_8168G_3 "rtl_nic/rtl8168g-3.fw"
55 #define FIRMWARE_8168H_1 "rtl_nic/rtl8168h-1.fw"
56 #define FIRMWARE_8168H_2 "rtl_nic/rtl8168h-2.fw"
57 #define FIRMWARE_8107E_1 "rtl_nic/rtl8107e-1.fw"
58 #define FIRMWARE_8107E_2 "rtl_nic/rtl8107e-2.fw"
61 #define assert(expr) \
63 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
64 #expr,__FILE__,__func__,__LINE__); \
66 #define dprintk(fmt, args...) \
67 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
69 #define assert(expr) do {} while (0)
70 #define dprintk(fmt, args...) do {} while (0)
71 #endif /* RTL8169_DEBUG */
73 #define R8169_MSG_DEFAULT \
74 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
76 #define TX_SLOTS_AVAIL(tp) \
77 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
79 /* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
80 #define TX_FRAGS_READY_FOR(tp,nr_frags) \
81 (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
83 /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
84 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
85 static const int multicast_filter_limit
= 32;
87 #define MAX_READ_REQUEST_SHIFT 12
88 #define TX_DMA_BURST 7 /* Maximum PCI burst, '7' is unlimited */
89 #define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
91 #define R8169_REGS_SIZE 256
92 #define R8169_NAPI_WEIGHT 64
93 #define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
94 #define NUM_RX_DESC 256U /* Number of Rx descriptor registers */
95 #define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
96 #define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
98 #define RTL8169_TX_TIMEOUT (6*HZ)
99 #define RTL8169_PHY_TIMEOUT (10*HZ)
101 /* write/read MMIO register */
102 #define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
103 #define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
104 #define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
105 #define RTL_R8(reg) readb (ioaddr + (reg))
106 #define RTL_R16(reg) readw (ioaddr + (reg))
107 #define RTL_R32(reg) readl (ioaddr + (reg))
110 RTL_GIGA_MAC_VER_01
= 0,
161 RTL_GIGA_MAC_NONE
= 0xff,
164 enum rtl_tx_desc_version
{
169 #define JUMBO_1K ETH_DATA_LEN
170 #define JUMBO_4K (4*1024 - ETH_HLEN - 2)
171 #define JUMBO_6K (6*1024 - ETH_HLEN - 2)
172 #define JUMBO_7K (7*1024 - ETH_HLEN - 2)
173 #define JUMBO_9K (9*1024 - ETH_HLEN - 2)
175 #define _R(NAME,TD,FW,SZ,B) { \
183 static const struct {
185 enum rtl_tx_desc_version txd_version
;
189 } rtl_chip_infos
[] = {
191 [RTL_GIGA_MAC_VER_01
] =
192 _R("RTL8169", RTL_TD_0
, NULL
, JUMBO_7K
, true),
193 [RTL_GIGA_MAC_VER_02
] =
194 _R("RTL8169s", RTL_TD_0
, NULL
, JUMBO_7K
, true),
195 [RTL_GIGA_MAC_VER_03
] =
196 _R("RTL8110s", RTL_TD_0
, NULL
, JUMBO_7K
, true),
197 [RTL_GIGA_MAC_VER_04
] =
198 _R("RTL8169sb/8110sb", RTL_TD_0
, NULL
, JUMBO_7K
, true),
199 [RTL_GIGA_MAC_VER_05
] =
200 _R("RTL8169sc/8110sc", RTL_TD_0
, NULL
, JUMBO_7K
, true),
201 [RTL_GIGA_MAC_VER_06
] =
202 _R("RTL8169sc/8110sc", RTL_TD_0
, NULL
, JUMBO_7K
, true),
204 [RTL_GIGA_MAC_VER_07
] =
205 _R("RTL8102e", RTL_TD_1
, NULL
, JUMBO_1K
, true),
206 [RTL_GIGA_MAC_VER_08
] =
207 _R("RTL8102e", RTL_TD_1
, NULL
, JUMBO_1K
, true),
208 [RTL_GIGA_MAC_VER_09
] =
209 _R("RTL8102e", RTL_TD_1
, NULL
, JUMBO_1K
, true),
210 [RTL_GIGA_MAC_VER_10
] =
211 _R("RTL8101e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
212 [RTL_GIGA_MAC_VER_11
] =
213 _R("RTL8168b/8111b", RTL_TD_0
, NULL
, JUMBO_4K
, false),
214 [RTL_GIGA_MAC_VER_12
] =
215 _R("RTL8168b/8111b", RTL_TD_0
, NULL
, JUMBO_4K
, false),
216 [RTL_GIGA_MAC_VER_13
] =
217 _R("RTL8101e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
218 [RTL_GIGA_MAC_VER_14
] =
219 _R("RTL8100e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
220 [RTL_GIGA_MAC_VER_15
] =
221 _R("RTL8100e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
222 [RTL_GIGA_MAC_VER_16
] =
223 _R("RTL8101e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
224 [RTL_GIGA_MAC_VER_17
] =
225 _R("RTL8168b/8111b", RTL_TD_0
, NULL
, JUMBO_4K
, false),
226 [RTL_GIGA_MAC_VER_18
] =
227 _R("RTL8168cp/8111cp", RTL_TD_1
, NULL
, JUMBO_6K
, false),
228 [RTL_GIGA_MAC_VER_19
] =
229 _R("RTL8168c/8111c", RTL_TD_1
, NULL
, JUMBO_6K
, false),
230 [RTL_GIGA_MAC_VER_20
] =
231 _R("RTL8168c/8111c", RTL_TD_1
, NULL
, JUMBO_6K
, false),
232 [RTL_GIGA_MAC_VER_21
] =
233 _R("RTL8168c/8111c", RTL_TD_1
, NULL
, JUMBO_6K
, false),
234 [RTL_GIGA_MAC_VER_22
] =
235 _R("RTL8168c/8111c", RTL_TD_1
, NULL
, JUMBO_6K
, false),
236 [RTL_GIGA_MAC_VER_23
] =
237 _R("RTL8168cp/8111cp", RTL_TD_1
, NULL
, JUMBO_6K
, false),
238 [RTL_GIGA_MAC_VER_24
] =
239 _R("RTL8168cp/8111cp", RTL_TD_1
, NULL
, JUMBO_6K
, false),
240 [RTL_GIGA_MAC_VER_25
] =
241 _R("RTL8168d/8111d", RTL_TD_1
, FIRMWARE_8168D_1
,
243 [RTL_GIGA_MAC_VER_26
] =
244 _R("RTL8168d/8111d", RTL_TD_1
, FIRMWARE_8168D_2
,
246 [RTL_GIGA_MAC_VER_27
] =
247 _R("RTL8168dp/8111dp", RTL_TD_1
, NULL
, JUMBO_9K
, false),
248 [RTL_GIGA_MAC_VER_28
] =
249 _R("RTL8168dp/8111dp", RTL_TD_1
, NULL
, JUMBO_9K
, false),
250 [RTL_GIGA_MAC_VER_29
] =
251 _R("RTL8105e", RTL_TD_1
, FIRMWARE_8105E_1
,
253 [RTL_GIGA_MAC_VER_30
] =
254 _R("RTL8105e", RTL_TD_1
, FIRMWARE_8105E_1
,
256 [RTL_GIGA_MAC_VER_31
] =
257 _R("RTL8168dp/8111dp", RTL_TD_1
, NULL
, JUMBO_9K
, false),
258 [RTL_GIGA_MAC_VER_32
] =
259 _R("RTL8168e/8111e", RTL_TD_1
, FIRMWARE_8168E_1
,
261 [RTL_GIGA_MAC_VER_33
] =
262 _R("RTL8168e/8111e", RTL_TD_1
, FIRMWARE_8168E_2
,
264 [RTL_GIGA_MAC_VER_34
] =
265 _R("RTL8168evl/8111evl",RTL_TD_1
, FIRMWARE_8168E_3
,
267 [RTL_GIGA_MAC_VER_35
] =
268 _R("RTL8168f/8111f", RTL_TD_1
, FIRMWARE_8168F_1
,
270 [RTL_GIGA_MAC_VER_36
] =
271 _R("RTL8168f/8111f", RTL_TD_1
, FIRMWARE_8168F_2
,
273 [RTL_GIGA_MAC_VER_37
] =
274 _R("RTL8402", RTL_TD_1
, FIRMWARE_8402_1
,
276 [RTL_GIGA_MAC_VER_38
] =
277 _R("RTL8411", RTL_TD_1
, FIRMWARE_8411_1
,
279 [RTL_GIGA_MAC_VER_39
] =
280 _R("RTL8106e", RTL_TD_1
, FIRMWARE_8106E_1
,
282 [RTL_GIGA_MAC_VER_40
] =
283 _R("RTL8168g/8111g", RTL_TD_1
, FIRMWARE_8168G_2
,
285 [RTL_GIGA_MAC_VER_41
] =
286 _R("RTL8168g/8111g", RTL_TD_1
, NULL
, JUMBO_9K
, false),
287 [RTL_GIGA_MAC_VER_42
] =
288 _R("RTL8168g/8111g", RTL_TD_1
, FIRMWARE_8168G_3
,
290 [RTL_GIGA_MAC_VER_43
] =
291 _R("RTL8106e", RTL_TD_1
, FIRMWARE_8106E_2
,
293 [RTL_GIGA_MAC_VER_44
] =
294 _R("RTL8411", RTL_TD_1
, FIRMWARE_8411_2
,
296 [RTL_GIGA_MAC_VER_45
] =
297 _R("RTL8168h/8111h", RTL_TD_1
, FIRMWARE_8168H_1
,
299 [RTL_GIGA_MAC_VER_46
] =
300 _R("RTL8168h/8111h", RTL_TD_1
, FIRMWARE_8168H_2
,
302 [RTL_GIGA_MAC_VER_47
] =
303 _R("RTL8107e", RTL_TD_1
, FIRMWARE_8107E_1
,
305 [RTL_GIGA_MAC_VER_48
] =
306 _R("RTL8107e", RTL_TD_1
, FIRMWARE_8107E_2
,
308 [RTL_GIGA_MAC_VER_49
] =
309 _R("RTL8168ep/8111ep", RTL_TD_1
, NULL
,
311 [RTL_GIGA_MAC_VER_50
] =
312 _R("RTL8168ep/8111ep", RTL_TD_1
, NULL
,
314 [RTL_GIGA_MAC_VER_51
] =
315 _R("RTL8168ep/8111ep", RTL_TD_1
, NULL
,
326 static const struct pci_device_id rtl8169_pci_tbl
[] = {
327 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8129), 0, 0, RTL_CFG_0
},
328 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8136), 0, 0, RTL_CFG_2
},
329 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8167), 0, 0, RTL_CFG_0
},
330 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8168), 0, 0, RTL_CFG_1
},
331 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8169), 0, 0, RTL_CFG_0
},
332 { PCI_VENDOR_ID_DLINK
, 0x4300,
333 PCI_VENDOR_ID_DLINK
, 0x4b10, 0, 0, RTL_CFG_1
},
334 { PCI_DEVICE(PCI_VENDOR_ID_DLINK
, 0x4300), 0, 0, RTL_CFG_0
},
335 { PCI_DEVICE(PCI_VENDOR_ID_DLINK
, 0x4302), 0, 0, RTL_CFG_0
},
336 { PCI_DEVICE(PCI_VENDOR_ID_AT
, 0xc107), 0, 0, RTL_CFG_0
},
337 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0
},
338 { PCI_VENDOR_ID_LINKSYS
, 0x1032,
339 PCI_ANY_ID
, 0x0024, 0, 0, RTL_CFG_0
},
341 PCI_ANY_ID
, 0x2410, 0, 0, RTL_CFG_2
},
345 MODULE_DEVICE_TABLE(pci
, rtl8169_pci_tbl
);
347 static int rx_buf_sz
= 16383;
348 static int use_dac
= -1;
354 MAC0
= 0, /* Ethernet hardware address. */
356 MAR0
= 8, /* Multicast filter. */
357 CounterAddrLow
= 0x10,
358 CounterAddrHigh
= 0x14,
359 TxDescStartAddrLow
= 0x20,
360 TxDescStartAddrHigh
= 0x24,
361 TxHDescStartAddrLow
= 0x28,
362 TxHDescStartAddrHigh
= 0x2c,
371 #define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
372 #define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
375 #define RX128_INT_EN (1 << 15) /* 8111c and later */
376 #define RX_MULTI_EN (1 << 14) /* 8111c only */
377 #define RXCFG_FIFO_SHIFT 13
378 /* No threshold before first PCI xfer */
379 #define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
380 #define RX_EARLY_OFF (1 << 11)
381 #define RXCFG_DMA_SHIFT 8
382 /* Unlimited maximum PCI burst. */
383 #define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
390 #define PME_SIGNAL (1 << 5) /* 8168c and later */
401 RxDescAddrLow
= 0xe4,
402 RxDescAddrHigh
= 0xe8,
403 EarlyTxThres
= 0xec, /* 8169. Unit of 32 bytes. */
405 #define NoEarlyTx 0x3f /* Max value : no early transmit. */
407 MaxTxPacketSize
= 0xec, /* 8101/8168. Unit of 128 bytes. */
409 #define TxPacketMax (8064 >> 7)
410 #define EarlySize 0x27
413 FuncEventMask
= 0xf4,
414 FuncPresetState
= 0xf8,
419 FuncForceEvent
= 0xfc,
422 enum rtl8110_registers
{
428 enum rtl8168_8101_registers
{
431 #define CSIAR_FLAG 0x80000000
432 #define CSIAR_WRITE_CMD 0x80000000
433 #define CSIAR_BYTE_ENABLE 0x0f
434 #define CSIAR_BYTE_ENABLE_SHIFT 12
435 #define CSIAR_ADDR_MASK 0x0fff
436 #define CSIAR_FUNC_CARD 0x00000000
437 #define CSIAR_FUNC_SDIO 0x00010000
438 #define CSIAR_FUNC_NIC 0x00020000
439 #define CSIAR_FUNC_NIC2 0x00010000
442 #define EPHYAR_FLAG 0x80000000
443 #define EPHYAR_WRITE_CMD 0x80000000
444 #define EPHYAR_REG_MASK 0x1f
445 #define EPHYAR_REG_SHIFT 16
446 #define EPHYAR_DATA_MASK 0xffff
448 #define PFM_EN (1 << 6)
449 #define TX_10M_PS_EN (1 << 7)
451 #define FIX_NAK_1 (1 << 4)
452 #define FIX_NAK_2 (1 << 3)
455 #define NOW_IS_OOB (1 << 7)
456 #define TX_EMPTY (1 << 5)
457 #define RX_EMPTY (1 << 4)
458 #define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
459 #define EN_NDP (1 << 3)
460 #define EN_OOB_RESET (1 << 2)
461 #define LINK_LIST_RDY (1 << 1)
463 #define EFUSEAR_FLAG 0x80000000
464 #define EFUSEAR_WRITE_CMD 0x80000000
465 #define EFUSEAR_READ_CMD 0x00000000
466 #define EFUSEAR_REG_MASK 0x03ff
467 #define EFUSEAR_REG_SHIFT 8
468 #define EFUSEAR_DATA_MASK 0xff
470 #define PFM_D3COLD_EN (1 << 6)
473 enum rtl8168_registers
{
478 #define ERIAR_FLAG 0x80000000
479 #define ERIAR_WRITE_CMD 0x80000000
480 #define ERIAR_READ_CMD 0x00000000
481 #define ERIAR_ADDR_BYTE_ALIGN 4
482 #define ERIAR_TYPE_SHIFT 16
483 #define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
484 #define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
485 #define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
486 #define ERIAR_OOB (0x02 << ERIAR_TYPE_SHIFT)
487 #define ERIAR_MASK_SHIFT 12
488 #define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
489 #define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
490 #define ERIAR_MASK_0100 (0x4 << ERIAR_MASK_SHIFT)
491 #define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
492 #define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
493 EPHY_RXER_NUM
= 0x7c,
494 OCPDR
= 0xb0, /* OCP GPHY access */
495 #define OCPDR_WRITE_CMD 0x80000000
496 #define OCPDR_READ_CMD 0x00000000
497 #define OCPDR_REG_MASK 0x7f
498 #define OCPDR_GPHY_REG_SHIFT 16
499 #define OCPDR_DATA_MASK 0xffff
501 #define OCPAR_FLAG 0x80000000
502 #define OCPAR_GPHY_WRITE_CMD 0x8000f060
503 #define OCPAR_GPHY_READ_CMD 0x0000f060
505 RDSAR1
= 0xd0, /* 8168c only. Undocumented on 8168dp */
506 MISC
= 0xf0, /* 8168e only. */
507 #define TXPLA_RST (1 << 29)
508 #define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
509 #define PWM_EN (1 << 22)
510 #define RXDV_GATED_EN (1 << 19)
511 #define EARLY_TALLY_EN (1 << 16)
514 enum rtl_register_content
{
515 /* InterruptStatusBits */
519 TxDescUnavail
= 0x0080,
543 /* TXPoll register p.5 */
544 HPQ
= 0x80, /* Poll cmd on the high prio queue */
545 NPQ
= 0x40, /* Poll cmd on the low prio queue */
546 FSWInt
= 0x01, /* Forced software interrupt */
550 Cfg9346_Unlock
= 0xc0,
555 AcceptBroadcast
= 0x08,
556 AcceptMulticast
= 0x04,
558 AcceptAllPhys
= 0x01,
559 #define RX_CONFIG_ACCEPT_MASK 0x3f
562 TxInterFrameGapShift
= 24,
563 TxDMAShift
= 8, /* DMA burst value (0-7) is shift this many bits */
565 /* Config1 register p.24 */
568 Speed_down
= (1 << 4),
572 PMEnable
= (1 << 0), /* Power Management Enable */
574 /* Config2 register p. 25 */
575 ClkReqEn
= (1 << 7), /* Clock Request Enable */
576 MSIEnable
= (1 << 5), /* 8169 only. Reserved in the 8168. */
577 PCI_Clock_66MHz
= 0x01,
578 PCI_Clock_33MHz
= 0x00,
580 /* Config3 register p.25 */
581 MagicPacket
= (1 << 5), /* Wake up when receives a Magic Packet */
582 LinkUp
= (1 << 4), /* Wake up when the cable connection is re-established */
583 Jumbo_En0
= (1 << 2), /* 8168 only. Reserved in the 8168b */
584 Rdy_to_L23
= (1 << 1), /* L23 Enable */
585 Beacon_en
= (1 << 0), /* 8168 only. Reserved in the 8168b */
587 /* Config4 register */
588 Jumbo_En1
= (1 << 1), /* 8168 only. Reserved in the 8168b */
590 /* Config5 register p.27 */
591 BWF
= (1 << 6), /* Accept Broadcast wakeup frame */
592 MWF
= (1 << 5), /* Accept Multicast wakeup frame */
593 UWF
= (1 << 4), /* Accept Unicast wakeup frame */
595 LanWake
= (1 << 1), /* LanWake enable/disable */
596 PMEStatus
= (1 << 0), /* PME status can be reset by PCI RST# */
597 ASPM_en
= (1 << 0), /* ASPM enable */
600 TBIReset
= 0x80000000,
601 TBILoopback
= 0x40000000,
602 TBINwEnable
= 0x20000000,
603 TBINwRestart
= 0x10000000,
604 TBILinkOk
= 0x02000000,
605 TBINwComplete
= 0x01000000,
608 EnableBist
= (1 << 15), // 8168 8101
609 Mac_dbgo_oe
= (1 << 14), // 8168 8101
610 Normal_mode
= (1 << 13), // unused
611 Force_half_dup
= (1 << 12), // 8168 8101
612 Force_rxflow_en
= (1 << 11), // 8168 8101
613 Force_txflow_en
= (1 << 10), // 8168 8101
614 Cxpl_dbg_sel
= (1 << 9), // 8168 8101
615 ASF
= (1 << 8), // 8168 8101
616 PktCntrDisable
= (1 << 7), // 8168 8101
617 Mac_dbgo_sel
= 0x001c, // 8168
622 INTT_0
= 0x0000, // 8168
623 INTT_1
= 0x0001, // 8168
624 INTT_2
= 0x0002, // 8168
625 INTT_3
= 0x0003, // 8168
627 /* rtl8169_PHYstatus */
638 TBILinkOK
= 0x02000000,
640 /* ResetCounterCommand */
643 /* DumpCounterCommand */
646 /* magic enable v2 */
647 MagicPacket_v2
= (1 << 16), /* Wake up when receives a Magic Packet */
651 /* First doubleword. */
652 DescOwn
= (1 << 31), /* Descriptor is owned by NIC */
653 RingEnd
= (1 << 30), /* End of descriptor ring */
654 FirstFrag
= (1 << 29), /* First segment of a packet */
655 LastFrag
= (1 << 28), /* Final segment of a packet */
659 enum rtl_tx_desc_bit
{
660 /* First doubleword. */
661 TD_LSO
= (1 << 27), /* Large Send Offload */
662 #define TD_MSS_MAX 0x07ffu /* MSS value */
664 /* Second doubleword. */
665 TxVlanTag
= (1 << 17), /* Add VLAN tag */
668 /* 8169, 8168b and 810x except 8102e. */
669 enum rtl_tx_desc_bit_0
{
670 /* First doubleword. */
671 #define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
672 TD0_TCP_CS
= (1 << 16), /* Calculate TCP/IP checksum */
673 TD0_UDP_CS
= (1 << 17), /* Calculate UDP/IP checksum */
674 TD0_IP_CS
= (1 << 18), /* Calculate IP checksum */
677 /* 8102e, 8168c and beyond. */
678 enum rtl_tx_desc_bit_1
{
679 /* First doubleword. */
680 TD1_GTSENV4
= (1 << 26), /* Giant Send for IPv4 */
681 TD1_GTSENV6
= (1 << 25), /* Giant Send for IPv6 */
682 #define GTTCPHO_SHIFT 18
683 #define GTTCPHO_MAX 0x7fU
685 /* Second doubleword. */
686 #define TCPHO_SHIFT 18
687 #define TCPHO_MAX 0x3ffU
688 #define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
689 TD1_IPv6_CS
= (1 << 28), /* Calculate IPv6 checksum */
690 TD1_IPv4_CS
= (1 << 29), /* Calculate IPv4 checksum */
691 TD1_TCP_CS
= (1 << 30), /* Calculate TCP/IP checksum */
692 TD1_UDP_CS
= (1 << 31), /* Calculate UDP/IP checksum */
695 enum rtl_rx_desc_bit
{
697 PID1
= (1 << 18), /* Protocol ID bit 1/2 */
698 PID0
= (1 << 17), /* Protocol ID bit 2/2 */
700 #define RxProtoUDP (PID1)
701 #define RxProtoTCP (PID0)
702 #define RxProtoIP (PID1 | PID0)
703 #define RxProtoMask RxProtoIP
705 IPFail
= (1 << 16), /* IP checksum failed */
706 UDPFail
= (1 << 15), /* UDP/IP checksum failed */
707 TCPFail
= (1 << 14), /* TCP/IP checksum failed */
708 RxVlanTag
= (1 << 16), /* VLAN tag available */
711 #define RsvdMask 0x3fffc000
728 u8 __pad
[sizeof(void *) - sizeof(u32
)];
732 RTL_FEATURE_WOL
= (1 << 0),
733 RTL_FEATURE_MSI
= (1 << 1),
734 RTL_FEATURE_GMII
= (1 << 2),
737 struct rtl8169_counters
{
744 __le32 tx_one_collision
;
745 __le32 tx_multi_collision
;
753 struct rtl8169_tc_offsets
{
756 __le32 tx_multi_collision
;
761 RTL_FLAG_TASK_ENABLED
,
762 RTL_FLAG_TASK_SLOW_PENDING
,
763 RTL_FLAG_TASK_RESET_PENDING
,
764 RTL_FLAG_TASK_PHY_PENDING
,
768 struct rtl8169_stats
{
771 struct u64_stats_sync syncp
;
774 struct rtl8169_private
{
775 void __iomem
*mmio_addr
; /* memory map physical address */
776 struct pci_dev
*pci_dev
;
777 struct net_device
*dev
;
778 struct napi_struct napi
;
782 u32 cur_rx
; /* Index into the Rx descriptor buffer of next Rx pkt. */
783 u32 cur_tx
; /* Index into the Tx descriptor buffer of next Rx pkt. */
785 struct rtl8169_stats rx_stats
;
786 struct rtl8169_stats tx_stats
;
787 struct TxDesc
*TxDescArray
; /* 256-aligned Tx descriptor ring */
788 struct RxDesc
*RxDescArray
; /* 256-aligned Rx descriptor ring */
789 dma_addr_t TxPhyAddr
;
790 dma_addr_t RxPhyAddr
;
791 void *Rx_databuff
[NUM_RX_DESC
]; /* Rx data buffers */
792 struct ring_info tx_skb
[NUM_TX_DESC
]; /* Tx data buffers */
793 struct timer_list timer
;
799 void (*write
)(struct rtl8169_private
*, int, int);
800 int (*read
)(struct rtl8169_private
*, int);
803 struct pll_power_ops
{
804 void (*down
)(struct rtl8169_private
*);
805 void (*up
)(struct rtl8169_private
*);
809 void (*enable
)(struct rtl8169_private
*);
810 void (*disable
)(struct rtl8169_private
*);
814 void (*write
)(struct rtl8169_private
*, int, int);
815 u32 (*read
)(struct rtl8169_private
*, int);
818 int (*set_speed
)(struct net_device
*, u8 aneg
, u16 sp
, u8 dpx
, u32 adv
);
819 int (*get_settings
)(struct net_device
*, struct ethtool_cmd
*);
820 void (*phy_reset_enable
)(struct rtl8169_private
*tp
);
821 void (*hw_start
)(struct net_device
*);
822 unsigned int (*phy_reset_pending
)(struct rtl8169_private
*tp
);
823 unsigned int (*link_ok
)(void __iomem
*);
824 int (*do_ioctl
)(struct rtl8169_private
*tp
, struct mii_ioctl_data
*data
, int cmd
);
825 bool (*tso_csum
)(struct rtl8169_private
*, struct sk_buff
*, u32
*);
828 DECLARE_BITMAP(flags
, RTL_FLAG_MAX
);
830 struct work_struct work
;
835 struct mii_if_info mii
;
836 dma_addr_t counters_phys_addr
;
837 struct rtl8169_counters
*counters
;
838 struct rtl8169_tc_offsets tc_offset
;
843 const struct firmware
*fw
;
845 #define RTL_VER_SIZE 32
847 char version
[RTL_VER_SIZE
];
849 struct rtl_fw_phy_action
{
854 #define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
859 MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
860 MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
861 module_param(use_dac
, int, 0);
862 MODULE_PARM_DESC(use_dac
, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
863 module_param_named(debug
, debug
.msg_enable
, int, 0);
864 MODULE_PARM_DESC(debug
, "Debug verbosity level (0=none, ..., 16=all)");
865 MODULE_LICENSE("GPL");
866 MODULE_VERSION(RTL8169_VERSION
);
867 MODULE_FIRMWARE(FIRMWARE_8168D_1
);
868 MODULE_FIRMWARE(FIRMWARE_8168D_2
);
869 MODULE_FIRMWARE(FIRMWARE_8168E_1
);
870 MODULE_FIRMWARE(FIRMWARE_8168E_2
);
871 MODULE_FIRMWARE(FIRMWARE_8168E_3
);
872 MODULE_FIRMWARE(FIRMWARE_8105E_1
);
873 MODULE_FIRMWARE(FIRMWARE_8168F_1
);
874 MODULE_FIRMWARE(FIRMWARE_8168F_2
);
875 MODULE_FIRMWARE(FIRMWARE_8402_1
);
876 MODULE_FIRMWARE(FIRMWARE_8411_1
);
877 MODULE_FIRMWARE(FIRMWARE_8411_2
);
878 MODULE_FIRMWARE(FIRMWARE_8106E_1
);
879 MODULE_FIRMWARE(FIRMWARE_8106E_2
);
880 MODULE_FIRMWARE(FIRMWARE_8168G_2
);
881 MODULE_FIRMWARE(FIRMWARE_8168G_3
);
882 MODULE_FIRMWARE(FIRMWARE_8168H_1
);
883 MODULE_FIRMWARE(FIRMWARE_8168H_2
);
884 MODULE_FIRMWARE(FIRMWARE_8107E_1
);
885 MODULE_FIRMWARE(FIRMWARE_8107E_2
);
887 static void rtl_lock_work(struct rtl8169_private
*tp
)
889 mutex_lock(&tp
->wk
.mutex
);
892 static void rtl_unlock_work(struct rtl8169_private
*tp
)
894 mutex_unlock(&tp
->wk
.mutex
);
897 static void rtl_tx_performance_tweak(struct pci_dev
*pdev
, u16 force
)
899 pcie_capability_clear_and_set_word(pdev
, PCI_EXP_DEVCTL
,
900 PCI_EXP_DEVCTL_READRQ
, force
);
904 bool (*check
)(struct rtl8169_private
*);
908 static void rtl_udelay(unsigned int d
)
913 static bool rtl_loop_wait(struct rtl8169_private
*tp
, const struct rtl_cond
*c
,
914 void (*delay
)(unsigned int), unsigned int d
, int n
,
919 for (i
= 0; i
< n
; i
++) {
921 if (c
->check(tp
) == high
)
924 netif_err(tp
, drv
, tp
->dev
, "%s == %d (loop: %d, delay: %d).\n",
925 c
->msg
, !high
, n
, d
);
929 static bool rtl_udelay_loop_wait_high(struct rtl8169_private
*tp
,
930 const struct rtl_cond
*c
,
931 unsigned int d
, int n
)
933 return rtl_loop_wait(tp
, c
, rtl_udelay
, d
, n
, true);
936 static bool rtl_udelay_loop_wait_low(struct rtl8169_private
*tp
,
937 const struct rtl_cond
*c
,
938 unsigned int d
, int n
)
940 return rtl_loop_wait(tp
, c
, rtl_udelay
, d
, n
, false);
943 static bool rtl_msleep_loop_wait_high(struct rtl8169_private
*tp
,
944 const struct rtl_cond
*c
,
945 unsigned int d
, int n
)
947 return rtl_loop_wait(tp
, c
, msleep
, d
, n
, true);
950 static bool rtl_msleep_loop_wait_low(struct rtl8169_private
*tp
,
951 const struct rtl_cond
*c
,
952 unsigned int d
, int n
)
954 return rtl_loop_wait(tp
, c
, msleep
, d
, n
, false);
957 #define DECLARE_RTL_COND(name) \
958 static bool name ## _check(struct rtl8169_private *); \
960 static const struct rtl_cond name = { \
961 .check = name ## _check, \
965 static bool name ## _check(struct rtl8169_private *tp)
967 static bool rtl_ocp_reg_failure(struct rtl8169_private
*tp
, u32 reg
)
969 if (reg
& 0xffff0001) {
970 netif_err(tp
, drv
, tp
->dev
, "Invalid ocp reg %x!\n", reg
);
976 DECLARE_RTL_COND(rtl_ocp_gphy_cond
)
978 void __iomem
*ioaddr
= tp
->mmio_addr
;
980 return RTL_R32(GPHY_OCP
) & OCPAR_FLAG
;
983 static void r8168_phy_ocp_write(struct rtl8169_private
*tp
, u32 reg
, u32 data
)
985 void __iomem
*ioaddr
= tp
->mmio_addr
;
987 if (rtl_ocp_reg_failure(tp
, reg
))
990 RTL_W32(GPHY_OCP
, OCPAR_FLAG
| (reg
<< 15) | data
);
992 rtl_udelay_loop_wait_low(tp
, &rtl_ocp_gphy_cond
, 25, 10);
995 static u16
r8168_phy_ocp_read(struct rtl8169_private
*tp
, u32 reg
)
997 void __iomem
*ioaddr
= tp
->mmio_addr
;
999 if (rtl_ocp_reg_failure(tp
, reg
))
1002 RTL_W32(GPHY_OCP
, reg
<< 15);
1004 return rtl_udelay_loop_wait_high(tp
, &rtl_ocp_gphy_cond
, 25, 10) ?
1005 (RTL_R32(GPHY_OCP
) & 0xffff) : ~0;
1008 static void r8168_mac_ocp_write(struct rtl8169_private
*tp
, u32 reg
, u32 data
)
1010 void __iomem
*ioaddr
= tp
->mmio_addr
;
1012 if (rtl_ocp_reg_failure(tp
, reg
))
1015 RTL_W32(OCPDR
, OCPAR_FLAG
| (reg
<< 15) | data
);
1018 static u16
r8168_mac_ocp_read(struct rtl8169_private
*tp
, u32 reg
)
1020 void __iomem
*ioaddr
= tp
->mmio_addr
;
1022 if (rtl_ocp_reg_failure(tp
, reg
))
1025 RTL_W32(OCPDR
, reg
<< 15);
1027 return RTL_R32(OCPDR
);
1030 #define OCP_STD_PHY_BASE 0xa400
1032 static void r8168g_mdio_write(struct rtl8169_private
*tp
, int reg
, int value
)
1035 tp
->ocp_base
= value
? value
<< 4 : OCP_STD_PHY_BASE
;
1039 if (tp
->ocp_base
!= OCP_STD_PHY_BASE
)
1042 r8168_phy_ocp_write(tp
, tp
->ocp_base
+ reg
* 2, value
);
1045 static int r8168g_mdio_read(struct rtl8169_private
*tp
, int reg
)
1047 if (tp
->ocp_base
!= OCP_STD_PHY_BASE
)
1050 return r8168_phy_ocp_read(tp
, tp
->ocp_base
+ reg
* 2);
1053 static void mac_mcu_write(struct rtl8169_private
*tp
, int reg
, int value
)
1056 tp
->ocp_base
= value
<< 4;
1060 r8168_mac_ocp_write(tp
, tp
->ocp_base
+ reg
, value
);
1063 static int mac_mcu_read(struct rtl8169_private
*tp
, int reg
)
1065 return r8168_mac_ocp_read(tp
, tp
->ocp_base
+ reg
);
1068 DECLARE_RTL_COND(rtl_phyar_cond
)
1070 void __iomem
*ioaddr
= tp
->mmio_addr
;
1072 return RTL_R32(PHYAR
) & 0x80000000;
1075 static void r8169_mdio_write(struct rtl8169_private
*tp
, int reg
, int value
)
1077 void __iomem
*ioaddr
= tp
->mmio_addr
;
1079 RTL_W32(PHYAR
, 0x80000000 | (reg
& 0x1f) << 16 | (value
& 0xffff));
1081 rtl_udelay_loop_wait_low(tp
, &rtl_phyar_cond
, 25, 20);
1083 * According to hardware specs a 20us delay is required after write
1084 * complete indication, but before sending next command.
1089 static int r8169_mdio_read(struct rtl8169_private
*tp
, int reg
)
1091 void __iomem
*ioaddr
= tp
->mmio_addr
;
1094 RTL_W32(PHYAR
, 0x0 | (reg
& 0x1f) << 16);
1096 value
= rtl_udelay_loop_wait_high(tp
, &rtl_phyar_cond
, 25, 20) ?
1097 RTL_R32(PHYAR
) & 0xffff : ~0;
1100 * According to hardware specs a 20us delay is required after read
1101 * complete indication, but before sending next command.
1108 DECLARE_RTL_COND(rtl_ocpar_cond
)
1110 void __iomem
*ioaddr
= tp
->mmio_addr
;
1112 return RTL_R32(OCPAR
) & OCPAR_FLAG
;
1115 static void r8168dp_1_mdio_access(struct rtl8169_private
*tp
, int reg
, u32 data
)
1117 void __iomem
*ioaddr
= tp
->mmio_addr
;
1119 RTL_W32(OCPDR
, data
| ((reg
& OCPDR_REG_MASK
) << OCPDR_GPHY_REG_SHIFT
));
1120 RTL_W32(OCPAR
, OCPAR_GPHY_WRITE_CMD
);
1121 RTL_W32(EPHY_RXER_NUM
, 0);
1123 rtl_udelay_loop_wait_low(tp
, &rtl_ocpar_cond
, 1000, 100);
1126 static void r8168dp_1_mdio_write(struct rtl8169_private
*tp
, int reg
, int value
)
1128 r8168dp_1_mdio_access(tp
, reg
,
1129 OCPDR_WRITE_CMD
| (value
& OCPDR_DATA_MASK
));
1132 static int r8168dp_1_mdio_read(struct rtl8169_private
*tp
, int reg
)
1134 void __iomem
*ioaddr
= tp
->mmio_addr
;
1136 r8168dp_1_mdio_access(tp
, reg
, OCPDR_READ_CMD
);
1139 RTL_W32(OCPAR
, OCPAR_GPHY_READ_CMD
);
1140 RTL_W32(EPHY_RXER_NUM
, 0);
1142 return rtl_udelay_loop_wait_high(tp
, &rtl_ocpar_cond
, 1000, 100) ?
1143 RTL_R32(OCPDR
) & OCPDR_DATA_MASK
: ~0;
1146 #define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1148 static void r8168dp_2_mdio_start(void __iomem
*ioaddr
)
1150 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT
);
1153 static void r8168dp_2_mdio_stop(void __iomem
*ioaddr
)
1155 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT
);
1158 static void r8168dp_2_mdio_write(struct rtl8169_private
*tp
, int reg
, int value
)
1160 void __iomem
*ioaddr
= tp
->mmio_addr
;
1162 r8168dp_2_mdio_start(ioaddr
);
1164 r8169_mdio_write(tp
, reg
, value
);
1166 r8168dp_2_mdio_stop(ioaddr
);
1169 static int r8168dp_2_mdio_read(struct rtl8169_private
*tp
, int reg
)
1171 void __iomem
*ioaddr
= tp
->mmio_addr
;
1174 r8168dp_2_mdio_start(ioaddr
);
1176 value
= r8169_mdio_read(tp
, reg
);
1178 r8168dp_2_mdio_stop(ioaddr
);
1183 static void rtl_writephy(struct rtl8169_private
*tp
, int location
, u32 val
)
1185 tp
->mdio_ops
.write(tp
, location
, val
);
1188 static int rtl_readphy(struct rtl8169_private
*tp
, int location
)
1190 return tp
->mdio_ops
.read(tp
, location
);
1193 static void rtl_patchphy(struct rtl8169_private
*tp
, int reg_addr
, int value
)
1195 rtl_writephy(tp
, reg_addr
, rtl_readphy(tp
, reg_addr
) | value
);
1198 static void rtl_w0w1_phy(struct rtl8169_private
*tp
, int reg_addr
, int p
, int m
)
1202 val
= rtl_readphy(tp
, reg_addr
);
1203 rtl_writephy(tp
, reg_addr
, (val
& ~m
) | p
);
1206 static void rtl_mdio_write(struct net_device
*dev
, int phy_id
, int location
,
1209 struct rtl8169_private
*tp
= netdev_priv(dev
);
1211 rtl_writephy(tp
, location
, val
);
1214 static int rtl_mdio_read(struct net_device
*dev
, int phy_id
, int location
)
1216 struct rtl8169_private
*tp
= netdev_priv(dev
);
1218 return rtl_readphy(tp
, location
);
1221 DECLARE_RTL_COND(rtl_ephyar_cond
)
1223 void __iomem
*ioaddr
= tp
->mmio_addr
;
1225 return RTL_R32(EPHYAR
) & EPHYAR_FLAG
;
1228 static void rtl_ephy_write(struct rtl8169_private
*tp
, int reg_addr
, int value
)
1230 void __iomem
*ioaddr
= tp
->mmio_addr
;
1232 RTL_W32(EPHYAR
, EPHYAR_WRITE_CMD
| (value
& EPHYAR_DATA_MASK
) |
1233 (reg_addr
& EPHYAR_REG_MASK
) << EPHYAR_REG_SHIFT
);
1235 rtl_udelay_loop_wait_low(tp
, &rtl_ephyar_cond
, 10, 100);
1240 static u16
rtl_ephy_read(struct rtl8169_private
*tp
, int reg_addr
)
1242 void __iomem
*ioaddr
= tp
->mmio_addr
;
1244 RTL_W32(EPHYAR
, (reg_addr
& EPHYAR_REG_MASK
) << EPHYAR_REG_SHIFT
);
1246 return rtl_udelay_loop_wait_high(tp
, &rtl_ephyar_cond
, 10, 100) ?
1247 RTL_R32(EPHYAR
) & EPHYAR_DATA_MASK
: ~0;
1250 DECLARE_RTL_COND(rtl_eriar_cond
)
1252 void __iomem
*ioaddr
= tp
->mmio_addr
;
1254 return RTL_R32(ERIAR
) & ERIAR_FLAG
;
1257 static void rtl_eri_write(struct rtl8169_private
*tp
, int addr
, u32 mask
,
1260 void __iomem
*ioaddr
= tp
->mmio_addr
;
1262 BUG_ON((addr
& 3) || (mask
== 0));
1263 RTL_W32(ERIDR
, val
);
1264 RTL_W32(ERIAR
, ERIAR_WRITE_CMD
| type
| mask
| addr
);
1266 rtl_udelay_loop_wait_low(tp
, &rtl_eriar_cond
, 100, 100);
1269 static u32
rtl_eri_read(struct rtl8169_private
*tp
, int addr
, int type
)
1271 void __iomem
*ioaddr
= tp
->mmio_addr
;
1273 RTL_W32(ERIAR
, ERIAR_READ_CMD
| type
| ERIAR_MASK_1111
| addr
);
1275 return rtl_udelay_loop_wait_high(tp
, &rtl_eriar_cond
, 100, 100) ?
1276 RTL_R32(ERIDR
) : ~0;
1279 static void rtl_w0w1_eri(struct rtl8169_private
*tp
, int addr
, u32 mask
, u32 p
,
1284 val
= rtl_eri_read(tp
, addr
, type
);
1285 rtl_eri_write(tp
, addr
, mask
, (val
& ~m
) | p
, type
);
1288 static u32
r8168dp_ocp_read(struct rtl8169_private
*tp
, u8 mask
, u16 reg
)
1290 void __iomem
*ioaddr
= tp
->mmio_addr
;
1292 RTL_W32(OCPAR
, ((u32
)mask
& 0x0f) << 12 | (reg
& 0x0fff));
1293 return rtl_udelay_loop_wait_high(tp
, &rtl_ocpar_cond
, 100, 20) ?
1294 RTL_R32(OCPDR
) : ~0;
1297 static u32
r8168ep_ocp_read(struct rtl8169_private
*tp
, u8 mask
, u16 reg
)
1299 return rtl_eri_read(tp
, reg
, ERIAR_OOB
);
1302 static u32
ocp_read(struct rtl8169_private
*tp
, u8 mask
, u16 reg
)
1304 switch (tp
->mac_version
) {
1305 case RTL_GIGA_MAC_VER_27
:
1306 case RTL_GIGA_MAC_VER_28
:
1307 case RTL_GIGA_MAC_VER_31
:
1308 return r8168dp_ocp_read(tp
, mask
, reg
);
1309 case RTL_GIGA_MAC_VER_49
:
1310 case RTL_GIGA_MAC_VER_50
:
1311 case RTL_GIGA_MAC_VER_51
:
1312 return r8168ep_ocp_read(tp
, mask
, reg
);
1319 static void r8168dp_ocp_write(struct rtl8169_private
*tp
, u8 mask
, u16 reg
,
1322 void __iomem
*ioaddr
= tp
->mmio_addr
;
1324 RTL_W32(OCPDR
, data
);
1325 RTL_W32(OCPAR
, OCPAR_FLAG
| ((u32
)mask
& 0x0f) << 12 | (reg
& 0x0fff));
1326 rtl_udelay_loop_wait_low(tp
, &rtl_ocpar_cond
, 100, 20);
1329 static void r8168ep_ocp_write(struct rtl8169_private
*tp
, u8 mask
, u16 reg
,
1332 rtl_eri_write(tp
, reg
, ((u32
)mask
& 0x0f) << ERIAR_MASK_SHIFT
,
1336 static void ocp_write(struct rtl8169_private
*tp
, u8 mask
, u16 reg
, u32 data
)
1338 switch (tp
->mac_version
) {
1339 case RTL_GIGA_MAC_VER_27
:
1340 case RTL_GIGA_MAC_VER_28
:
1341 case RTL_GIGA_MAC_VER_31
:
1342 r8168dp_ocp_write(tp
, mask
, reg
, data
);
1344 case RTL_GIGA_MAC_VER_49
:
1345 case RTL_GIGA_MAC_VER_50
:
1346 case RTL_GIGA_MAC_VER_51
:
1347 r8168ep_ocp_write(tp
, mask
, reg
, data
);
1355 static void rtl8168_oob_notify(struct rtl8169_private
*tp
, u8 cmd
)
1357 rtl_eri_write(tp
, 0xe8, ERIAR_MASK_0001
, cmd
, ERIAR_EXGMAC
);
1359 ocp_write(tp
, 0x1, 0x30, 0x00000001);
1362 #define OOB_CMD_RESET 0x00
1363 #define OOB_CMD_DRIVER_START 0x05
1364 #define OOB_CMD_DRIVER_STOP 0x06
1366 static u16
rtl8168_get_ocp_reg(struct rtl8169_private
*tp
)
1368 return (tp
->mac_version
== RTL_GIGA_MAC_VER_31
) ? 0xb8 : 0x10;
1371 DECLARE_RTL_COND(rtl_ocp_read_cond
)
1375 reg
= rtl8168_get_ocp_reg(tp
);
1377 return ocp_read(tp
, 0x0f, reg
) & 0x00000800;
1380 DECLARE_RTL_COND(rtl_ep_ocp_read_cond
)
1382 return ocp_read(tp
, 0x0f, 0x124) & 0x00000001;
1385 DECLARE_RTL_COND(rtl_ocp_tx_cond
)
1387 void __iomem
*ioaddr
= tp
->mmio_addr
;
1389 return RTL_R8(IBISR0
) & 0x02;
1392 static void rtl8168ep_stop_cmac(struct rtl8169_private
*tp
)
1394 void __iomem
*ioaddr
= tp
->mmio_addr
;
1396 RTL_W8(IBCR2
, RTL_R8(IBCR2
) & ~0x01);
1397 rtl_msleep_loop_wait_low(tp
, &rtl_ocp_tx_cond
, 50, 2000);
1398 RTL_W8(IBISR0
, RTL_R8(IBISR0
) | 0x20);
1399 RTL_W8(IBCR0
, RTL_R8(IBCR0
) & ~0x01);
1402 static void rtl8168dp_driver_start(struct rtl8169_private
*tp
)
1404 rtl8168_oob_notify(tp
, OOB_CMD_DRIVER_START
);
1405 rtl_msleep_loop_wait_high(tp
, &rtl_ocp_read_cond
, 10, 10);
1408 static void rtl8168ep_driver_start(struct rtl8169_private
*tp
)
1410 ocp_write(tp
, 0x01, 0x180, OOB_CMD_DRIVER_START
);
1411 ocp_write(tp
, 0x01, 0x30, ocp_read(tp
, 0x01, 0x30) | 0x01);
1412 rtl_msleep_loop_wait_high(tp
, &rtl_ep_ocp_read_cond
, 10, 10);
1415 static void rtl8168_driver_start(struct rtl8169_private
*tp
)
1417 switch (tp
->mac_version
) {
1418 case RTL_GIGA_MAC_VER_27
:
1419 case RTL_GIGA_MAC_VER_28
:
1420 case RTL_GIGA_MAC_VER_31
:
1421 rtl8168dp_driver_start(tp
);
1423 case RTL_GIGA_MAC_VER_49
:
1424 case RTL_GIGA_MAC_VER_50
:
1425 case RTL_GIGA_MAC_VER_51
:
1426 rtl8168ep_driver_start(tp
);
1434 static void rtl8168dp_driver_stop(struct rtl8169_private
*tp
)
1436 rtl8168_oob_notify(tp
, OOB_CMD_DRIVER_STOP
);
1437 rtl_msleep_loop_wait_low(tp
, &rtl_ocp_read_cond
, 10, 10);
1440 static void rtl8168ep_driver_stop(struct rtl8169_private
*tp
)
1442 rtl8168ep_stop_cmac(tp
);
1443 ocp_write(tp
, 0x01, 0x180, OOB_CMD_DRIVER_STOP
);
1444 ocp_write(tp
, 0x01, 0x30, ocp_read(tp
, 0x01, 0x30) | 0x01);
1445 rtl_msleep_loop_wait_low(tp
, &rtl_ep_ocp_read_cond
, 10, 10);
1448 static void rtl8168_driver_stop(struct rtl8169_private
*tp
)
1450 switch (tp
->mac_version
) {
1451 case RTL_GIGA_MAC_VER_27
:
1452 case RTL_GIGA_MAC_VER_28
:
1453 case RTL_GIGA_MAC_VER_31
:
1454 rtl8168dp_driver_stop(tp
);
1456 case RTL_GIGA_MAC_VER_49
:
1457 case RTL_GIGA_MAC_VER_50
:
1458 case RTL_GIGA_MAC_VER_51
:
1459 rtl8168ep_driver_stop(tp
);
1467 static int r8168dp_check_dash(struct rtl8169_private
*tp
)
1469 u16 reg
= rtl8168_get_ocp_reg(tp
);
1471 return (ocp_read(tp
, 0x0f, reg
) & 0x00008000) ? 1 : 0;
1474 static int r8168ep_check_dash(struct rtl8169_private
*tp
)
1476 return (ocp_read(tp
, 0x0f, 0x128) & 0x00000001) ? 1 : 0;
1479 static int r8168_check_dash(struct rtl8169_private
*tp
)
1481 switch (tp
->mac_version
) {
1482 case RTL_GIGA_MAC_VER_27
:
1483 case RTL_GIGA_MAC_VER_28
:
1484 case RTL_GIGA_MAC_VER_31
:
1485 return r8168dp_check_dash(tp
);
1486 case RTL_GIGA_MAC_VER_49
:
1487 case RTL_GIGA_MAC_VER_50
:
1488 case RTL_GIGA_MAC_VER_51
:
1489 return r8168ep_check_dash(tp
);
1501 static void rtl_write_exgmac_batch(struct rtl8169_private
*tp
,
1502 const struct exgmac_reg
*r
, int len
)
1505 rtl_eri_write(tp
, r
->addr
, r
->mask
, r
->val
, ERIAR_EXGMAC
);
1510 DECLARE_RTL_COND(rtl_efusear_cond
)
1512 void __iomem
*ioaddr
= tp
->mmio_addr
;
1514 return RTL_R32(EFUSEAR
) & EFUSEAR_FLAG
;
1517 static u8
rtl8168d_efuse_read(struct rtl8169_private
*tp
, int reg_addr
)
1519 void __iomem
*ioaddr
= tp
->mmio_addr
;
1521 RTL_W32(EFUSEAR
, (reg_addr
& EFUSEAR_REG_MASK
) << EFUSEAR_REG_SHIFT
);
1523 return rtl_udelay_loop_wait_high(tp
, &rtl_efusear_cond
, 100, 300) ?
1524 RTL_R32(EFUSEAR
) & EFUSEAR_DATA_MASK
: ~0;
1527 static u16
rtl_get_events(struct rtl8169_private
*tp
)
1529 void __iomem
*ioaddr
= tp
->mmio_addr
;
1531 return RTL_R16(IntrStatus
);
1534 static void rtl_ack_events(struct rtl8169_private
*tp
, u16 bits
)
1536 void __iomem
*ioaddr
= tp
->mmio_addr
;
1538 RTL_W16(IntrStatus
, bits
);
1542 static void rtl_irq_disable(struct rtl8169_private
*tp
)
1544 void __iomem
*ioaddr
= tp
->mmio_addr
;
1546 RTL_W16(IntrMask
, 0);
1550 static void rtl_irq_enable(struct rtl8169_private
*tp
, u16 bits
)
1552 void __iomem
*ioaddr
= tp
->mmio_addr
;
1554 RTL_W16(IntrMask
, bits
);
1557 #define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1558 #define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1559 #define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1561 static void rtl_irq_enable_all(struct rtl8169_private
*tp
)
1563 rtl_irq_enable(tp
, RTL_EVENT_NAPI
| tp
->event_slow
);
1566 static void rtl8169_irq_mask_and_ack(struct rtl8169_private
*tp
)
1568 void __iomem
*ioaddr
= tp
->mmio_addr
;
1570 rtl_irq_disable(tp
);
1571 rtl_ack_events(tp
, RTL_EVENT_NAPI
| tp
->event_slow
);
1575 static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private
*tp
)
1577 void __iomem
*ioaddr
= tp
->mmio_addr
;
1579 return RTL_R32(TBICSR
) & TBIReset
;
1582 static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private
*tp
)
1584 return rtl_readphy(tp
, MII_BMCR
) & BMCR_RESET
;
1587 static unsigned int rtl8169_tbi_link_ok(void __iomem
*ioaddr
)
1589 return RTL_R32(TBICSR
) & TBILinkOk
;
1592 static unsigned int rtl8169_xmii_link_ok(void __iomem
*ioaddr
)
1594 return RTL_R8(PHYstatus
) & LinkStatus
;
1597 static void rtl8169_tbi_reset_enable(struct rtl8169_private
*tp
)
1599 void __iomem
*ioaddr
= tp
->mmio_addr
;
1601 RTL_W32(TBICSR
, RTL_R32(TBICSR
) | TBIReset
);
1604 static void rtl8169_xmii_reset_enable(struct rtl8169_private
*tp
)
1608 val
= rtl_readphy(tp
, MII_BMCR
) | BMCR_RESET
;
1609 rtl_writephy(tp
, MII_BMCR
, val
& 0xffff);
1612 static void rtl_link_chg_patch(struct rtl8169_private
*tp
)
1614 void __iomem
*ioaddr
= tp
->mmio_addr
;
1615 struct net_device
*dev
= tp
->dev
;
1617 if (!netif_running(dev
))
1620 if (tp
->mac_version
== RTL_GIGA_MAC_VER_34
||
1621 tp
->mac_version
== RTL_GIGA_MAC_VER_38
) {
1622 if (RTL_R8(PHYstatus
) & _1000bpsF
) {
1623 rtl_eri_write(tp
, 0x1bc, ERIAR_MASK_1111
, 0x00000011,
1625 rtl_eri_write(tp
, 0x1dc, ERIAR_MASK_1111
, 0x00000005,
1627 } else if (RTL_R8(PHYstatus
) & _100bps
) {
1628 rtl_eri_write(tp
, 0x1bc, ERIAR_MASK_1111
, 0x0000001f,
1630 rtl_eri_write(tp
, 0x1dc, ERIAR_MASK_1111
, 0x00000005,
1633 rtl_eri_write(tp
, 0x1bc, ERIAR_MASK_1111
, 0x0000001f,
1635 rtl_eri_write(tp
, 0x1dc, ERIAR_MASK_1111
, 0x0000003f,
1638 /* Reset packet filter */
1639 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x00, 0x01,
1641 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x01, 0x00,
1643 } else if (tp
->mac_version
== RTL_GIGA_MAC_VER_35
||
1644 tp
->mac_version
== RTL_GIGA_MAC_VER_36
) {
1645 if (RTL_R8(PHYstatus
) & _1000bpsF
) {
1646 rtl_eri_write(tp
, 0x1bc, ERIAR_MASK_1111
, 0x00000011,
1648 rtl_eri_write(tp
, 0x1dc, ERIAR_MASK_1111
, 0x00000005,
1651 rtl_eri_write(tp
, 0x1bc, ERIAR_MASK_1111
, 0x0000001f,
1653 rtl_eri_write(tp
, 0x1dc, ERIAR_MASK_1111
, 0x0000003f,
1656 } else if (tp
->mac_version
== RTL_GIGA_MAC_VER_37
) {
1657 if (RTL_R8(PHYstatus
) & _10bps
) {
1658 rtl_eri_write(tp
, 0x1d0, ERIAR_MASK_0011
, 0x4d02,
1660 rtl_eri_write(tp
, 0x1dc, ERIAR_MASK_0011
, 0x0060,
1663 rtl_eri_write(tp
, 0x1d0, ERIAR_MASK_0011
, 0x0000,
1669 static void __rtl8169_check_link_status(struct net_device
*dev
,
1670 struct rtl8169_private
*tp
,
1671 void __iomem
*ioaddr
, bool pm
)
1673 if (tp
->link_ok(ioaddr
)) {
1674 rtl_link_chg_patch(tp
);
1675 /* This is to cancel a scheduled suspend if there's one. */
1677 pm_request_resume(&tp
->pci_dev
->dev
);
1678 netif_carrier_on(dev
);
1679 if (net_ratelimit())
1680 netif_info(tp
, ifup
, dev
, "link up\n");
1682 netif_carrier_off(dev
);
1683 netif_info(tp
, ifdown
, dev
, "link down\n");
1685 pm_schedule_suspend(&tp
->pci_dev
->dev
, 5000);
1689 static void rtl8169_check_link_status(struct net_device
*dev
,
1690 struct rtl8169_private
*tp
,
1691 void __iomem
*ioaddr
)
1693 __rtl8169_check_link_status(dev
, tp
, ioaddr
, false);
1696 #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1698 static u32
__rtl8169_get_wol(struct rtl8169_private
*tp
)
1700 void __iomem
*ioaddr
= tp
->mmio_addr
;
1704 options
= RTL_R8(Config1
);
1705 if (!(options
& PMEnable
))
1708 options
= RTL_R8(Config3
);
1709 if (options
& LinkUp
)
1710 wolopts
|= WAKE_PHY
;
1711 switch (tp
->mac_version
) {
1712 case RTL_GIGA_MAC_VER_34
:
1713 case RTL_GIGA_MAC_VER_35
:
1714 case RTL_GIGA_MAC_VER_36
:
1715 case RTL_GIGA_MAC_VER_37
:
1716 case RTL_GIGA_MAC_VER_38
:
1717 case RTL_GIGA_MAC_VER_40
:
1718 case RTL_GIGA_MAC_VER_41
:
1719 case RTL_GIGA_MAC_VER_42
:
1720 case RTL_GIGA_MAC_VER_43
:
1721 case RTL_GIGA_MAC_VER_44
:
1722 case RTL_GIGA_MAC_VER_45
:
1723 case RTL_GIGA_MAC_VER_46
:
1724 case RTL_GIGA_MAC_VER_47
:
1725 case RTL_GIGA_MAC_VER_48
:
1726 case RTL_GIGA_MAC_VER_49
:
1727 case RTL_GIGA_MAC_VER_50
:
1728 case RTL_GIGA_MAC_VER_51
:
1729 if (rtl_eri_read(tp
, 0xdc, ERIAR_EXGMAC
) & MagicPacket_v2
)
1730 wolopts
|= WAKE_MAGIC
;
1733 if (options
& MagicPacket
)
1734 wolopts
|= WAKE_MAGIC
;
1738 options
= RTL_R8(Config5
);
1740 wolopts
|= WAKE_UCAST
;
1742 wolopts
|= WAKE_BCAST
;
1744 wolopts
|= WAKE_MCAST
;
1749 static void rtl8169_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1751 struct rtl8169_private
*tp
= netdev_priv(dev
);
1755 wol
->supported
= WAKE_ANY
;
1756 wol
->wolopts
= __rtl8169_get_wol(tp
);
1758 rtl_unlock_work(tp
);
1761 static void __rtl8169_set_wol(struct rtl8169_private
*tp
, u32 wolopts
)
1763 void __iomem
*ioaddr
= tp
->mmio_addr
;
1764 unsigned int i
, tmp
;
1765 static const struct {
1770 { WAKE_PHY
, Config3
, LinkUp
},
1771 { WAKE_UCAST
, Config5
, UWF
},
1772 { WAKE_BCAST
, Config5
, BWF
},
1773 { WAKE_MCAST
, Config5
, MWF
},
1774 { WAKE_ANY
, Config5
, LanWake
},
1775 { WAKE_MAGIC
, Config3
, MagicPacket
}
1779 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
1781 switch (tp
->mac_version
) {
1782 case RTL_GIGA_MAC_VER_34
:
1783 case RTL_GIGA_MAC_VER_35
:
1784 case RTL_GIGA_MAC_VER_36
:
1785 case RTL_GIGA_MAC_VER_37
:
1786 case RTL_GIGA_MAC_VER_38
:
1787 case RTL_GIGA_MAC_VER_40
:
1788 case RTL_GIGA_MAC_VER_41
:
1789 case RTL_GIGA_MAC_VER_42
:
1790 case RTL_GIGA_MAC_VER_43
:
1791 case RTL_GIGA_MAC_VER_44
:
1792 case RTL_GIGA_MAC_VER_45
:
1793 case RTL_GIGA_MAC_VER_46
:
1794 case RTL_GIGA_MAC_VER_47
:
1795 case RTL_GIGA_MAC_VER_48
:
1796 case RTL_GIGA_MAC_VER_49
:
1797 case RTL_GIGA_MAC_VER_50
:
1798 case RTL_GIGA_MAC_VER_51
:
1799 tmp
= ARRAY_SIZE(cfg
) - 1;
1800 if (wolopts
& WAKE_MAGIC
)
1816 tmp
= ARRAY_SIZE(cfg
);
1820 for (i
= 0; i
< tmp
; i
++) {
1821 options
= RTL_R8(cfg
[i
].reg
) & ~cfg
[i
].mask
;
1822 if (wolopts
& cfg
[i
].opt
)
1823 options
|= cfg
[i
].mask
;
1824 RTL_W8(cfg
[i
].reg
, options
);
1827 switch (tp
->mac_version
) {
1828 case RTL_GIGA_MAC_VER_01
... RTL_GIGA_MAC_VER_17
:
1829 options
= RTL_R8(Config1
) & ~PMEnable
;
1831 options
|= PMEnable
;
1832 RTL_W8(Config1
, options
);
1835 options
= RTL_R8(Config2
) & ~PME_SIGNAL
;
1837 options
|= PME_SIGNAL
;
1838 RTL_W8(Config2
, options
);
1842 RTL_W8(Cfg9346
, Cfg9346_Lock
);
1845 static int rtl8169_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1847 struct rtl8169_private
*tp
= netdev_priv(dev
);
1852 tp
->features
|= RTL_FEATURE_WOL
;
1854 tp
->features
&= ~RTL_FEATURE_WOL
;
1855 __rtl8169_set_wol(tp
, wol
->wolopts
);
1857 rtl_unlock_work(tp
);
1859 device_set_wakeup_enable(&tp
->pci_dev
->dev
, wol
->wolopts
);
1864 static const char *rtl_lookup_firmware_name(struct rtl8169_private
*tp
)
1866 return rtl_chip_infos
[tp
->mac_version
].fw_name
;
1869 static void rtl8169_get_drvinfo(struct net_device
*dev
,
1870 struct ethtool_drvinfo
*info
)
1872 struct rtl8169_private
*tp
= netdev_priv(dev
);
1873 struct rtl_fw
*rtl_fw
= tp
->rtl_fw
;
1875 strlcpy(info
->driver
, MODULENAME
, sizeof(info
->driver
));
1876 strlcpy(info
->version
, RTL8169_VERSION
, sizeof(info
->version
));
1877 strlcpy(info
->bus_info
, pci_name(tp
->pci_dev
), sizeof(info
->bus_info
));
1878 BUILD_BUG_ON(sizeof(info
->fw_version
) < sizeof(rtl_fw
->version
));
1879 if (!IS_ERR_OR_NULL(rtl_fw
))
1880 strlcpy(info
->fw_version
, rtl_fw
->version
,
1881 sizeof(info
->fw_version
));
1884 static int rtl8169_get_regs_len(struct net_device
*dev
)
1886 return R8169_REGS_SIZE
;
1889 static int rtl8169_set_speed_tbi(struct net_device
*dev
,
1890 u8 autoneg
, u16 speed
, u8 duplex
, u32 ignored
)
1892 struct rtl8169_private
*tp
= netdev_priv(dev
);
1893 void __iomem
*ioaddr
= tp
->mmio_addr
;
1897 reg
= RTL_R32(TBICSR
);
1898 if ((autoneg
== AUTONEG_DISABLE
) && (speed
== SPEED_1000
) &&
1899 (duplex
== DUPLEX_FULL
)) {
1900 RTL_W32(TBICSR
, reg
& ~(TBINwEnable
| TBINwRestart
));
1901 } else if (autoneg
== AUTONEG_ENABLE
)
1902 RTL_W32(TBICSR
, reg
| TBINwEnable
| TBINwRestart
);
1904 netif_warn(tp
, link
, dev
,
1905 "incorrect speed setting refused in TBI mode\n");
1912 static int rtl8169_set_speed_xmii(struct net_device
*dev
,
1913 u8 autoneg
, u16 speed
, u8 duplex
, u32 adv
)
1915 struct rtl8169_private
*tp
= netdev_priv(dev
);
1916 int giga_ctrl
, bmcr
;
1919 rtl_writephy(tp
, 0x1f, 0x0000);
1921 if (autoneg
== AUTONEG_ENABLE
) {
1924 auto_nego
= rtl_readphy(tp
, MII_ADVERTISE
);
1925 auto_nego
&= ~(ADVERTISE_10HALF
| ADVERTISE_10FULL
|
1926 ADVERTISE_100HALF
| ADVERTISE_100FULL
);
1928 if (adv
& ADVERTISED_10baseT_Half
)
1929 auto_nego
|= ADVERTISE_10HALF
;
1930 if (adv
& ADVERTISED_10baseT_Full
)
1931 auto_nego
|= ADVERTISE_10FULL
;
1932 if (adv
& ADVERTISED_100baseT_Half
)
1933 auto_nego
|= ADVERTISE_100HALF
;
1934 if (adv
& ADVERTISED_100baseT_Full
)
1935 auto_nego
|= ADVERTISE_100FULL
;
1937 auto_nego
|= ADVERTISE_PAUSE_CAP
| ADVERTISE_PAUSE_ASYM
;
1939 giga_ctrl
= rtl_readphy(tp
, MII_CTRL1000
);
1940 giga_ctrl
&= ~(ADVERTISE_1000FULL
| ADVERTISE_1000HALF
);
1942 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1943 if (tp
->mii
.supports_gmii
) {
1944 if (adv
& ADVERTISED_1000baseT_Half
)
1945 giga_ctrl
|= ADVERTISE_1000HALF
;
1946 if (adv
& ADVERTISED_1000baseT_Full
)
1947 giga_ctrl
|= ADVERTISE_1000FULL
;
1948 } else if (adv
& (ADVERTISED_1000baseT_Half
|
1949 ADVERTISED_1000baseT_Full
)) {
1950 netif_info(tp
, link
, dev
,
1951 "PHY does not support 1000Mbps\n");
1955 bmcr
= BMCR_ANENABLE
| BMCR_ANRESTART
;
1957 rtl_writephy(tp
, MII_ADVERTISE
, auto_nego
);
1958 rtl_writephy(tp
, MII_CTRL1000
, giga_ctrl
);
1962 if (speed
== SPEED_10
)
1964 else if (speed
== SPEED_100
)
1965 bmcr
= BMCR_SPEED100
;
1969 if (duplex
== DUPLEX_FULL
)
1970 bmcr
|= BMCR_FULLDPLX
;
1973 rtl_writephy(tp
, MII_BMCR
, bmcr
);
1975 if (tp
->mac_version
== RTL_GIGA_MAC_VER_02
||
1976 tp
->mac_version
== RTL_GIGA_MAC_VER_03
) {
1977 if ((speed
== SPEED_100
) && (autoneg
!= AUTONEG_ENABLE
)) {
1978 rtl_writephy(tp
, 0x17, 0x2138);
1979 rtl_writephy(tp
, 0x0e, 0x0260);
1981 rtl_writephy(tp
, 0x17, 0x2108);
1982 rtl_writephy(tp
, 0x0e, 0x0000);
1991 static int rtl8169_set_speed(struct net_device
*dev
,
1992 u8 autoneg
, u16 speed
, u8 duplex
, u32 advertising
)
1994 struct rtl8169_private
*tp
= netdev_priv(dev
);
1997 ret
= tp
->set_speed(dev
, autoneg
, speed
, duplex
, advertising
);
2001 if (netif_running(dev
) && (autoneg
== AUTONEG_ENABLE
) &&
2002 (advertising
& ADVERTISED_1000baseT_Full
) &&
2003 !pci_is_pcie(tp
->pci_dev
)) {
2004 mod_timer(&tp
->timer
, jiffies
+ RTL8169_PHY_TIMEOUT
);
2010 static int rtl8169_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
2012 struct rtl8169_private
*tp
= netdev_priv(dev
);
2015 del_timer_sync(&tp
->timer
);
2018 ret
= rtl8169_set_speed(dev
, cmd
->autoneg
, ethtool_cmd_speed(cmd
),
2019 cmd
->duplex
, cmd
->advertising
);
2020 rtl_unlock_work(tp
);
2025 static netdev_features_t
rtl8169_fix_features(struct net_device
*dev
,
2026 netdev_features_t features
)
2028 struct rtl8169_private
*tp
= netdev_priv(dev
);
2030 if (dev
->mtu
> TD_MSS_MAX
)
2031 features
&= ~NETIF_F_ALL_TSO
;
2033 if (dev
->mtu
> JUMBO_1K
&&
2034 !rtl_chip_infos
[tp
->mac_version
].jumbo_tx_csum
)
2035 features
&= ~NETIF_F_IP_CSUM
;
2040 static void __rtl8169_set_features(struct net_device
*dev
,
2041 netdev_features_t features
)
2043 struct rtl8169_private
*tp
= netdev_priv(dev
);
2044 void __iomem
*ioaddr
= tp
->mmio_addr
;
2047 rx_config
= RTL_R32(RxConfig
);
2048 if (features
& NETIF_F_RXALL
)
2049 rx_config
|= (AcceptErr
| AcceptRunt
);
2051 rx_config
&= ~(AcceptErr
| AcceptRunt
);
2053 RTL_W32(RxConfig
, rx_config
);
2055 if (features
& NETIF_F_RXCSUM
)
2056 tp
->cp_cmd
|= RxChkSum
;
2058 tp
->cp_cmd
&= ~RxChkSum
;
2060 if (features
& NETIF_F_HW_VLAN_CTAG_RX
)
2061 tp
->cp_cmd
|= RxVlan
;
2063 tp
->cp_cmd
&= ~RxVlan
;
2065 tp
->cp_cmd
|= RTL_R16(CPlusCmd
) & ~(RxVlan
| RxChkSum
);
2067 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
2071 static int rtl8169_set_features(struct net_device
*dev
,
2072 netdev_features_t features
)
2074 struct rtl8169_private
*tp
= netdev_priv(dev
);
2076 features
&= NETIF_F_RXALL
| NETIF_F_RXCSUM
| NETIF_F_HW_VLAN_CTAG_RX
;
2079 if (features
^ dev
->features
)
2080 __rtl8169_set_features(dev
, features
);
2081 rtl_unlock_work(tp
);
2087 static inline u32
rtl8169_tx_vlan_tag(struct sk_buff
*skb
)
2089 return (skb_vlan_tag_present(skb
)) ?
2090 TxVlanTag
| swab16(skb_vlan_tag_get(skb
)) : 0x00;
2093 static void rtl8169_rx_vlan_tag(struct RxDesc
*desc
, struct sk_buff
*skb
)
2095 u32 opts2
= le32_to_cpu(desc
->opts2
);
2097 if (opts2
& RxVlanTag
)
2098 __vlan_hwaccel_put_tag(skb
, htons(ETH_P_8021Q
), swab16(opts2
& 0xffff));
2101 static int rtl8169_gset_tbi(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
2103 struct rtl8169_private
*tp
= netdev_priv(dev
);
2104 void __iomem
*ioaddr
= tp
->mmio_addr
;
2108 SUPPORTED_1000baseT_Full
| SUPPORTED_Autoneg
| SUPPORTED_FIBRE
;
2109 cmd
->port
= PORT_FIBRE
;
2110 cmd
->transceiver
= XCVR_INTERNAL
;
2112 status
= RTL_R32(TBICSR
);
2113 cmd
->advertising
= (status
& TBINwEnable
) ? ADVERTISED_Autoneg
: 0;
2114 cmd
->autoneg
= !!(status
& TBINwEnable
);
2116 ethtool_cmd_speed_set(cmd
, SPEED_1000
);
2117 cmd
->duplex
= DUPLEX_FULL
; /* Always set */
2122 static int rtl8169_gset_xmii(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
2124 struct rtl8169_private
*tp
= netdev_priv(dev
);
2126 return mii_ethtool_gset(&tp
->mii
, cmd
);
2129 static int rtl8169_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
2131 struct rtl8169_private
*tp
= netdev_priv(dev
);
2135 rc
= tp
->get_settings(dev
, cmd
);
2136 rtl_unlock_work(tp
);
2141 static void rtl8169_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
,
2144 struct rtl8169_private
*tp
= netdev_priv(dev
);
2145 u32 __iomem
*data
= tp
->mmio_addr
;
2150 for (i
= 0; i
< R8169_REGS_SIZE
; i
+= 4)
2151 memcpy_fromio(dw
++, data
++, 4);
2152 rtl_unlock_work(tp
);
2155 static u32
rtl8169_get_msglevel(struct net_device
*dev
)
2157 struct rtl8169_private
*tp
= netdev_priv(dev
);
2159 return tp
->msg_enable
;
2162 static void rtl8169_set_msglevel(struct net_device
*dev
, u32 value
)
2164 struct rtl8169_private
*tp
= netdev_priv(dev
);
2166 tp
->msg_enable
= value
;
2169 static const char rtl8169_gstrings
[][ETH_GSTRING_LEN
] = {
2176 "tx_single_collisions",
2177 "tx_multi_collisions",
2185 static int rtl8169_get_sset_count(struct net_device
*dev
, int sset
)
2189 return ARRAY_SIZE(rtl8169_gstrings
);
2195 DECLARE_RTL_COND(rtl_counters_cond
)
2197 void __iomem
*ioaddr
= tp
->mmio_addr
;
2199 return RTL_R32(CounterAddrLow
) & (CounterReset
| CounterDump
);
2202 static bool rtl8169_do_counters(struct net_device
*dev
, u32 counter_cmd
)
2204 struct rtl8169_private
*tp
= netdev_priv(dev
);
2205 void __iomem
*ioaddr
= tp
->mmio_addr
;
2206 dma_addr_t paddr
= tp
->counters_phys_addr
;
2210 RTL_W32(CounterAddrHigh
, (u64
)paddr
>> 32);
2211 cmd
= (u64
)paddr
& DMA_BIT_MASK(32);
2212 RTL_W32(CounterAddrLow
, cmd
);
2213 RTL_W32(CounterAddrLow
, cmd
| counter_cmd
);
2215 ret
= rtl_udelay_loop_wait_low(tp
, &rtl_counters_cond
, 10, 1000);
2217 RTL_W32(CounterAddrLow
, 0);
2218 RTL_W32(CounterAddrHigh
, 0);
2223 static bool rtl8169_reset_counters(struct net_device
*dev
)
2225 struct rtl8169_private
*tp
= netdev_priv(dev
);
2228 * Versions prior to RTL_GIGA_MAC_VER_19 don't support resetting the
2231 if (tp
->mac_version
< RTL_GIGA_MAC_VER_19
)
2234 return rtl8169_do_counters(dev
, CounterReset
);
2237 static bool rtl8169_update_counters(struct net_device
*dev
)
2239 struct rtl8169_private
*tp
= netdev_priv(dev
);
2240 void __iomem
*ioaddr
= tp
->mmio_addr
;
2243 * Some chips are unable to dump tally counters when the receiver
2246 if ((RTL_R8(ChipCmd
) & CmdRxEnb
) == 0)
2249 return rtl8169_do_counters(dev
, CounterDump
);
2252 static bool rtl8169_init_counter_offsets(struct net_device
*dev
)
2254 struct rtl8169_private
*tp
= netdev_priv(dev
);
2255 struct rtl8169_counters
*counters
= tp
->counters
;
2259 * rtl8169_init_counter_offsets is called from rtl_open. On chip
2260 * versions prior to RTL_GIGA_MAC_VER_19 the tally counters are only
2261 * reset by a power cycle, while the counter values collected by the
2262 * driver are reset at every driver unload/load cycle.
2264 * To make sure the HW values returned by @get_stats64 match the SW
2265 * values, we collect the initial values at first open(*) and use them
2266 * as offsets to normalize the values returned by @get_stats64.
2268 * (*) We can't call rtl8169_init_counter_offsets from rtl_init_one
2269 * for the reason stated in rtl8169_update_counters; CmdRxEnb is only
2270 * set at open time by rtl_hw_start.
2273 if (tp
->tc_offset
.inited
)
2276 /* If both, reset and update fail, propagate to caller. */
2277 if (rtl8169_reset_counters(dev
))
2280 if (rtl8169_update_counters(dev
))
2283 tp
->tc_offset
.tx_errors
= counters
->tx_errors
;
2284 tp
->tc_offset
.tx_multi_collision
= counters
->tx_multi_collision
;
2285 tp
->tc_offset
.tx_aborted
= counters
->tx_aborted
;
2286 tp
->tc_offset
.inited
= true;
2291 static void rtl8169_get_ethtool_stats(struct net_device
*dev
,
2292 struct ethtool_stats
*stats
, u64
*data
)
2294 struct rtl8169_private
*tp
= netdev_priv(dev
);
2295 struct rtl8169_counters
*counters
= tp
->counters
;
2299 rtl8169_update_counters(dev
);
2301 data
[0] = le64_to_cpu(counters
->tx_packets
);
2302 data
[1] = le64_to_cpu(counters
->rx_packets
);
2303 data
[2] = le64_to_cpu(counters
->tx_errors
);
2304 data
[3] = le32_to_cpu(counters
->rx_errors
);
2305 data
[4] = le16_to_cpu(counters
->rx_missed
);
2306 data
[5] = le16_to_cpu(counters
->align_errors
);
2307 data
[6] = le32_to_cpu(counters
->tx_one_collision
);
2308 data
[7] = le32_to_cpu(counters
->tx_multi_collision
);
2309 data
[8] = le64_to_cpu(counters
->rx_unicast
);
2310 data
[9] = le64_to_cpu(counters
->rx_broadcast
);
2311 data
[10] = le32_to_cpu(counters
->rx_multicast
);
2312 data
[11] = le16_to_cpu(counters
->tx_aborted
);
2313 data
[12] = le16_to_cpu(counters
->tx_underun
);
2316 static void rtl8169_get_strings(struct net_device
*dev
, u32 stringset
, u8
*data
)
2320 memcpy(data
, *rtl8169_gstrings
, sizeof(rtl8169_gstrings
));
2325 static const struct ethtool_ops rtl8169_ethtool_ops
= {
2326 .get_drvinfo
= rtl8169_get_drvinfo
,
2327 .get_regs_len
= rtl8169_get_regs_len
,
2328 .get_link
= ethtool_op_get_link
,
2329 .get_settings
= rtl8169_get_settings
,
2330 .set_settings
= rtl8169_set_settings
,
2331 .get_msglevel
= rtl8169_get_msglevel
,
2332 .set_msglevel
= rtl8169_set_msglevel
,
2333 .get_regs
= rtl8169_get_regs
,
2334 .get_wol
= rtl8169_get_wol
,
2335 .set_wol
= rtl8169_set_wol
,
2336 .get_strings
= rtl8169_get_strings
,
2337 .get_sset_count
= rtl8169_get_sset_count
,
2338 .get_ethtool_stats
= rtl8169_get_ethtool_stats
,
2339 .get_ts_info
= ethtool_op_get_ts_info
,
2342 static void rtl8169_get_mac_version(struct rtl8169_private
*tp
,
2343 struct net_device
*dev
, u8 default_version
)
2345 void __iomem
*ioaddr
= tp
->mmio_addr
;
2347 * The driver currently handles the 8168Bf and the 8168Be identically
2348 * but they can be identified more specifically through the test below
2351 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
2353 * Same thing for the 8101Eb and the 8101Ec:
2355 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
2357 static const struct rtl_mac_info
{
2362 /* 8168EP family. */
2363 { 0x7cf00000, 0x50200000, RTL_GIGA_MAC_VER_51
},
2364 { 0x7cf00000, 0x50100000, RTL_GIGA_MAC_VER_50
},
2365 { 0x7cf00000, 0x50000000, RTL_GIGA_MAC_VER_49
},
2368 { 0x7cf00000, 0x54100000, RTL_GIGA_MAC_VER_46
},
2369 { 0x7cf00000, 0x54000000, RTL_GIGA_MAC_VER_45
},
2372 { 0x7cf00000, 0x5c800000, RTL_GIGA_MAC_VER_44
},
2373 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42
},
2374 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41
},
2375 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40
},
2378 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38
},
2379 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36
},
2380 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35
},
2383 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34
},
2384 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33
},
2385 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32
},
2386 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33
},
2389 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26
},
2390 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25
},
2391 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26
},
2393 /* 8168DP family. */
2394 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27
},
2395 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28
},
2396 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31
},
2399 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24
},
2400 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23
},
2401 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18
},
2402 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24
},
2403 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19
},
2404 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20
},
2405 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21
},
2406 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22
},
2407 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22
},
2410 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12
},
2411 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17
},
2412 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17
},
2413 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11
},
2416 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39
},
2417 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39
},
2418 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37
},
2419 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30
},
2420 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30
},
2421 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29
},
2422 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30
},
2423 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09
},
2424 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09
},
2425 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08
},
2426 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08
},
2427 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07
},
2428 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07
},
2429 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13
},
2430 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10
},
2431 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16
},
2432 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09
},
2433 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09
},
2434 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16
},
2435 /* FIXME: where did these entries come from ? -- FR */
2436 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15
},
2437 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14
},
2440 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06
},
2441 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05
},
2442 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04
},
2443 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03
},
2444 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02
},
2445 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01
},
2448 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE
}
2450 const struct rtl_mac_info
*p
= mac_info
;
2453 reg
= RTL_R32(TxConfig
);
2454 while ((reg
& p
->mask
) != p
->val
)
2456 tp
->mac_version
= p
->mac_version
;
2458 if (tp
->mac_version
== RTL_GIGA_MAC_NONE
) {
2459 netif_notice(tp
, probe
, dev
,
2460 "unknown MAC, using family default\n");
2461 tp
->mac_version
= default_version
;
2462 } else if (tp
->mac_version
== RTL_GIGA_MAC_VER_42
) {
2463 tp
->mac_version
= tp
->mii
.supports_gmii
?
2464 RTL_GIGA_MAC_VER_42
:
2465 RTL_GIGA_MAC_VER_43
;
2466 } else if (tp
->mac_version
== RTL_GIGA_MAC_VER_45
) {
2467 tp
->mac_version
= tp
->mii
.supports_gmii
?
2468 RTL_GIGA_MAC_VER_45
:
2469 RTL_GIGA_MAC_VER_47
;
2470 } else if (tp
->mac_version
== RTL_GIGA_MAC_VER_46
) {
2471 tp
->mac_version
= tp
->mii
.supports_gmii
?
2472 RTL_GIGA_MAC_VER_46
:
2473 RTL_GIGA_MAC_VER_48
;
2477 static void rtl8169_print_mac_version(struct rtl8169_private
*tp
)
2479 dprintk("mac_version = 0x%02x\n", tp
->mac_version
);
2487 static void rtl_writephy_batch(struct rtl8169_private
*tp
,
2488 const struct phy_reg
*regs
, int len
)
2491 rtl_writephy(tp
, regs
->reg
, regs
->val
);
2496 #define PHY_READ 0x00000000
2497 #define PHY_DATA_OR 0x10000000
2498 #define PHY_DATA_AND 0x20000000
2499 #define PHY_BJMPN 0x30000000
2500 #define PHY_MDIO_CHG 0x40000000
2501 #define PHY_CLEAR_READCOUNT 0x70000000
2502 #define PHY_WRITE 0x80000000
2503 #define PHY_READCOUNT_EQ_SKIP 0x90000000
2504 #define PHY_COMP_EQ_SKIPN 0xa0000000
2505 #define PHY_COMP_NEQ_SKIPN 0xb0000000
2506 #define PHY_WRITE_PREVIOUS 0xc0000000
2507 #define PHY_SKIPN 0xd0000000
2508 #define PHY_DELAY_MS 0xe0000000
2512 char version
[RTL_VER_SIZE
];
2518 #define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2520 static bool rtl_fw_format_ok(struct rtl8169_private
*tp
, struct rtl_fw
*rtl_fw
)
2522 const struct firmware
*fw
= rtl_fw
->fw
;
2523 struct fw_info
*fw_info
= (struct fw_info
*)fw
->data
;
2524 struct rtl_fw_phy_action
*pa
= &rtl_fw
->phy_action
;
2525 char *version
= rtl_fw
->version
;
2528 if (fw
->size
< FW_OPCODE_SIZE
)
2531 if (!fw_info
->magic
) {
2532 size_t i
, size
, start
;
2535 if (fw
->size
< sizeof(*fw_info
))
2538 for (i
= 0; i
< fw
->size
; i
++)
2539 checksum
+= fw
->data
[i
];
2543 start
= le32_to_cpu(fw_info
->fw_start
);
2544 if (start
> fw
->size
)
2547 size
= le32_to_cpu(fw_info
->fw_len
);
2548 if (size
> (fw
->size
- start
) / FW_OPCODE_SIZE
)
2551 memcpy(version
, fw_info
->version
, RTL_VER_SIZE
);
2553 pa
->code
= (__le32
*)(fw
->data
+ start
);
2556 if (fw
->size
% FW_OPCODE_SIZE
)
2559 strlcpy(version
, rtl_lookup_firmware_name(tp
), RTL_VER_SIZE
);
2561 pa
->code
= (__le32
*)fw
->data
;
2562 pa
->size
= fw
->size
/ FW_OPCODE_SIZE
;
2564 version
[RTL_VER_SIZE
- 1] = 0;
2571 static bool rtl_fw_data_ok(struct rtl8169_private
*tp
, struct net_device
*dev
,
2572 struct rtl_fw_phy_action
*pa
)
2577 for (index
= 0; index
< pa
->size
; index
++) {
2578 u32 action
= le32_to_cpu(pa
->code
[index
]);
2579 u32 regno
= (action
& 0x0fff0000) >> 16;
2581 switch(action
& 0xf0000000) {
2586 case PHY_CLEAR_READCOUNT
:
2588 case PHY_WRITE_PREVIOUS
:
2593 if (regno
> index
) {
2594 netif_err(tp
, ifup
, tp
->dev
,
2595 "Out of range of firmware\n");
2599 case PHY_READCOUNT_EQ_SKIP
:
2600 if (index
+ 2 >= pa
->size
) {
2601 netif_err(tp
, ifup
, tp
->dev
,
2602 "Out of range of firmware\n");
2606 case PHY_COMP_EQ_SKIPN
:
2607 case PHY_COMP_NEQ_SKIPN
:
2609 if (index
+ 1 + regno
>= pa
->size
) {
2610 netif_err(tp
, ifup
, tp
->dev
,
2611 "Out of range of firmware\n");
2617 netif_err(tp
, ifup
, tp
->dev
,
2618 "Invalid action 0x%08x\n", action
);
2627 static int rtl_check_firmware(struct rtl8169_private
*tp
, struct rtl_fw
*rtl_fw
)
2629 struct net_device
*dev
= tp
->dev
;
2632 if (!rtl_fw_format_ok(tp
, rtl_fw
)) {
2633 netif_err(tp
, ifup
, dev
, "invalid firmware\n");
2637 if (rtl_fw_data_ok(tp
, dev
, &rtl_fw
->phy_action
))
2643 static void rtl_phy_write_fw(struct rtl8169_private
*tp
, struct rtl_fw
*rtl_fw
)
2645 struct rtl_fw_phy_action
*pa
= &rtl_fw
->phy_action
;
2646 struct mdio_ops org
, *ops
= &tp
->mdio_ops
;
2650 predata
= count
= 0;
2651 org
.write
= ops
->write
;
2652 org
.read
= ops
->read
;
2654 for (index
= 0; index
< pa
->size
; ) {
2655 u32 action
= le32_to_cpu(pa
->code
[index
]);
2656 u32 data
= action
& 0x0000ffff;
2657 u32 regno
= (action
& 0x0fff0000) >> 16;
2662 switch(action
& 0xf0000000) {
2664 predata
= rtl_readphy(tp
, regno
);
2681 ops
->write
= org
.write
;
2682 ops
->read
= org
.read
;
2683 } else if (data
== 1) {
2684 ops
->write
= mac_mcu_write
;
2685 ops
->read
= mac_mcu_read
;
2690 case PHY_CLEAR_READCOUNT
:
2695 rtl_writephy(tp
, regno
, data
);
2698 case PHY_READCOUNT_EQ_SKIP
:
2699 index
+= (count
== data
) ? 2 : 1;
2701 case PHY_COMP_EQ_SKIPN
:
2702 if (predata
== data
)
2706 case PHY_COMP_NEQ_SKIPN
:
2707 if (predata
!= data
)
2711 case PHY_WRITE_PREVIOUS
:
2712 rtl_writephy(tp
, regno
, predata
);
2728 ops
->write
= org
.write
;
2729 ops
->read
= org
.read
;
2732 static void rtl_release_firmware(struct rtl8169_private
*tp
)
2734 if (!IS_ERR_OR_NULL(tp
->rtl_fw
)) {
2735 release_firmware(tp
->rtl_fw
->fw
);
2738 tp
->rtl_fw
= RTL_FIRMWARE_UNKNOWN
;
2741 static void rtl_apply_firmware(struct rtl8169_private
*tp
)
2743 struct rtl_fw
*rtl_fw
= tp
->rtl_fw
;
2745 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
2746 if (!IS_ERR_OR_NULL(rtl_fw
))
2747 rtl_phy_write_fw(tp
, rtl_fw
);
2750 static void rtl_apply_firmware_cond(struct rtl8169_private
*tp
, u8 reg
, u16 val
)
2752 if (rtl_readphy(tp
, reg
) != val
)
2753 netif_warn(tp
, hw
, tp
->dev
, "chipset not ready for firmware\n");
2755 rtl_apply_firmware(tp
);
2758 static void rtl8169s_hw_phy_config(struct rtl8169_private
*tp
)
2760 static const struct phy_reg phy_reg_init
[] = {
2822 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2825 static void rtl8169sb_hw_phy_config(struct rtl8169_private
*tp
)
2827 static const struct phy_reg phy_reg_init
[] = {
2833 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2836 static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private
*tp
)
2838 struct pci_dev
*pdev
= tp
->pci_dev
;
2840 if ((pdev
->subsystem_vendor
!= PCI_VENDOR_ID_GIGABYTE
) ||
2841 (pdev
->subsystem_device
!= 0xe000))
2844 rtl_writephy(tp
, 0x1f, 0x0001);
2845 rtl_writephy(tp
, 0x10, 0xf01b);
2846 rtl_writephy(tp
, 0x1f, 0x0000);
2849 static void rtl8169scd_hw_phy_config(struct rtl8169_private
*tp
)
2851 static const struct phy_reg phy_reg_init
[] = {
2891 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2893 rtl8169scd_hw_phy_config_quirk(tp
);
2896 static void rtl8169sce_hw_phy_config(struct rtl8169_private
*tp
)
2898 static const struct phy_reg phy_reg_init
[] = {
2946 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2949 static void rtl8168bb_hw_phy_config(struct rtl8169_private
*tp
)
2951 static const struct phy_reg phy_reg_init
[] = {
2956 rtl_writephy(tp
, 0x1f, 0x0001);
2957 rtl_patchphy(tp
, 0x16, 1 << 0);
2959 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2962 static void rtl8168bef_hw_phy_config(struct rtl8169_private
*tp
)
2964 static const struct phy_reg phy_reg_init
[] = {
2970 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2973 static void rtl8168cp_1_hw_phy_config(struct rtl8169_private
*tp
)
2975 static const struct phy_reg phy_reg_init
[] = {
2983 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2986 static void rtl8168cp_2_hw_phy_config(struct rtl8169_private
*tp
)
2988 static const struct phy_reg phy_reg_init
[] = {
2994 rtl_writephy(tp
, 0x1f, 0x0000);
2995 rtl_patchphy(tp
, 0x14, 1 << 5);
2996 rtl_patchphy(tp
, 0x0d, 1 << 5);
2998 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3001 static void rtl8168c_1_hw_phy_config(struct rtl8169_private
*tp
)
3003 static const struct phy_reg phy_reg_init
[] = {
3023 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3025 rtl_patchphy(tp
, 0x14, 1 << 5);
3026 rtl_patchphy(tp
, 0x0d, 1 << 5);
3027 rtl_writephy(tp
, 0x1f, 0x0000);
3030 static void rtl8168c_2_hw_phy_config(struct rtl8169_private
*tp
)
3032 static const struct phy_reg phy_reg_init
[] = {
3050 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3052 rtl_patchphy(tp
, 0x16, 1 << 0);
3053 rtl_patchphy(tp
, 0x14, 1 << 5);
3054 rtl_patchphy(tp
, 0x0d, 1 << 5);
3055 rtl_writephy(tp
, 0x1f, 0x0000);
3058 static void rtl8168c_3_hw_phy_config(struct rtl8169_private
*tp
)
3060 static const struct phy_reg phy_reg_init
[] = {
3072 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3074 rtl_patchphy(tp
, 0x16, 1 << 0);
3075 rtl_patchphy(tp
, 0x14, 1 << 5);
3076 rtl_patchphy(tp
, 0x0d, 1 << 5);
3077 rtl_writephy(tp
, 0x1f, 0x0000);
3080 static void rtl8168c_4_hw_phy_config(struct rtl8169_private
*tp
)
3082 rtl8168c_3_hw_phy_config(tp
);
3085 static void rtl8168d_1_hw_phy_config(struct rtl8169_private
*tp
)
3087 static const struct phy_reg phy_reg_init_0
[] = {
3088 /* Channel Estimation */
3109 * Enhance line driver power
3118 * Can not link to 1Gbps with bad cable
3119 * Decrease SNR threshold form 21.07dB to 19.04dB
3128 rtl_writephy_batch(tp
, phy_reg_init_0
, ARRAY_SIZE(phy_reg_init_0
));
3132 * Fine Tune Switching regulator parameter
3134 rtl_writephy(tp
, 0x1f, 0x0002);
3135 rtl_w0w1_phy(tp
, 0x0b, 0x0010, 0x00ef);
3136 rtl_w0w1_phy(tp
, 0x0c, 0xa200, 0x5d00);
3138 if (rtl8168d_efuse_read(tp
, 0x01) == 0xb1) {
3139 static const struct phy_reg phy_reg_init
[] = {
3149 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3151 val
= rtl_readphy(tp
, 0x0d);
3153 if ((val
& 0x00ff) != 0x006c) {
3154 static const u32 set
[] = {
3155 0x0065, 0x0066, 0x0067, 0x0068,
3156 0x0069, 0x006a, 0x006b, 0x006c
3160 rtl_writephy(tp
, 0x1f, 0x0002);
3163 for (i
= 0; i
< ARRAY_SIZE(set
); i
++)
3164 rtl_writephy(tp
, 0x0d, val
| set
[i
]);
3167 static const struct phy_reg phy_reg_init
[] = {
3175 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3178 /* RSET couple improve */
3179 rtl_writephy(tp
, 0x1f, 0x0002);
3180 rtl_patchphy(tp
, 0x0d, 0x0300);
3181 rtl_patchphy(tp
, 0x0f, 0x0010);
3183 /* Fine tune PLL performance */
3184 rtl_writephy(tp
, 0x1f, 0x0002);
3185 rtl_w0w1_phy(tp
, 0x02, 0x0100, 0x0600);
3186 rtl_w0w1_phy(tp
, 0x03, 0x0000, 0xe000);
3188 rtl_writephy(tp
, 0x1f, 0x0005);
3189 rtl_writephy(tp
, 0x05, 0x001b);
3191 rtl_apply_firmware_cond(tp
, MII_EXPANSION
, 0xbf00);
3193 rtl_writephy(tp
, 0x1f, 0x0000);
3196 static void rtl8168d_2_hw_phy_config(struct rtl8169_private
*tp
)
3198 static const struct phy_reg phy_reg_init_0
[] = {
3199 /* Channel Estimation */
3220 * Enhance line driver power
3229 * Can not link to 1Gbps with bad cable
3230 * Decrease SNR threshold form 21.07dB to 19.04dB
3239 rtl_writephy_batch(tp
, phy_reg_init_0
, ARRAY_SIZE(phy_reg_init_0
));
3241 if (rtl8168d_efuse_read(tp
, 0x01) == 0xb1) {
3242 static const struct phy_reg phy_reg_init
[] = {
3253 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3255 val
= rtl_readphy(tp
, 0x0d);
3256 if ((val
& 0x00ff) != 0x006c) {
3257 static const u32 set
[] = {
3258 0x0065, 0x0066, 0x0067, 0x0068,
3259 0x0069, 0x006a, 0x006b, 0x006c
3263 rtl_writephy(tp
, 0x1f, 0x0002);
3266 for (i
= 0; i
< ARRAY_SIZE(set
); i
++)
3267 rtl_writephy(tp
, 0x0d, val
| set
[i
]);
3270 static const struct phy_reg phy_reg_init
[] = {
3278 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3281 /* Fine tune PLL performance */
3282 rtl_writephy(tp
, 0x1f, 0x0002);
3283 rtl_w0w1_phy(tp
, 0x02, 0x0100, 0x0600);
3284 rtl_w0w1_phy(tp
, 0x03, 0x0000, 0xe000);
3286 /* Switching regulator Slew rate */
3287 rtl_writephy(tp
, 0x1f, 0x0002);
3288 rtl_patchphy(tp
, 0x0f, 0x0017);
3290 rtl_writephy(tp
, 0x1f, 0x0005);
3291 rtl_writephy(tp
, 0x05, 0x001b);
3293 rtl_apply_firmware_cond(tp
, MII_EXPANSION
, 0xb300);
3295 rtl_writephy(tp
, 0x1f, 0x0000);
3298 static void rtl8168d_3_hw_phy_config(struct rtl8169_private
*tp
)
3300 static const struct phy_reg phy_reg_init
[] = {
3356 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3359 static void rtl8168d_4_hw_phy_config(struct rtl8169_private
*tp
)
3361 static const struct phy_reg phy_reg_init
[] = {
3371 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3372 rtl_patchphy(tp
, 0x0d, 1 << 5);
3375 static void rtl8168e_1_hw_phy_config(struct rtl8169_private
*tp
)
3377 static const struct phy_reg phy_reg_init
[] = {
3378 /* Enable Delay cap */
3384 /* Channel estimation fine tune */
3393 /* Update PFM & 10M TX idle timer */
3405 rtl_apply_firmware(tp
);
3407 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3409 /* DCO enable for 10M IDLE Power */
3410 rtl_writephy(tp
, 0x1f, 0x0007);
3411 rtl_writephy(tp
, 0x1e, 0x0023);
3412 rtl_w0w1_phy(tp
, 0x17, 0x0006, 0x0000);
3413 rtl_writephy(tp
, 0x1f, 0x0000);
3415 /* For impedance matching */
3416 rtl_writephy(tp
, 0x1f, 0x0002);
3417 rtl_w0w1_phy(tp
, 0x08, 0x8000, 0x7f00);
3418 rtl_writephy(tp
, 0x1f, 0x0000);
3420 /* PHY auto speed down */
3421 rtl_writephy(tp
, 0x1f, 0x0007);
3422 rtl_writephy(tp
, 0x1e, 0x002d);
3423 rtl_w0w1_phy(tp
, 0x18, 0x0050, 0x0000);
3424 rtl_writephy(tp
, 0x1f, 0x0000);
3425 rtl_w0w1_phy(tp
, 0x14, 0x8000, 0x0000);
3427 rtl_writephy(tp
, 0x1f, 0x0005);
3428 rtl_writephy(tp
, 0x05, 0x8b86);
3429 rtl_w0w1_phy(tp
, 0x06, 0x0001, 0x0000);
3430 rtl_writephy(tp
, 0x1f, 0x0000);
3432 rtl_writephy(tp
, 0x1f, 0x0005);
3433 rtl_writephy(tp
, 0x05, 0x8b85);
3434 rtl_w0w1_phy(tp
, 0x06, 0x0000, 0x2000);
3435 rtl_writephy(tp
, 0x1f, 0x0007);
3436 rtl_writephy(tp
, 0x1e, 0x0020);
3437 rtl_w0w1_phy(tp
, 0x15, 0x0000, 0x1100);
3438 rtl_writephy(tp
, 0x1f, 0x0006);
3439 rtl_writephy(tp
, 0x00, 0x5a00);
3440 rtl_writephy(tp
, 0x1f, 0x0000);
3441 rtl_writephy(tp
, 0x0d, 0x0007);
3442 rtl_writephy(tp
, 0x0e, 0x003c);
3443 rtl_writephy(tp
, 0x0d, 0x4007);
3444 rtl_writephy(tp
, 0x0e, 0x0000);
3445 rtl_writephy(tp
, 0x0d, 0x0000);
3448 static void rtl_rar_exgmac_set(struct rtl8169_private
*tp
, u8
*addr
)
3451 addr
[0] | (addr
[1] << 8),
3452 addr
[2] | (addr
[3] << 8),
3453 addr
[4] | (addr
[5] << 8)
3455 const struct exgmac_reg e
[] = {
3456 { .addr
= 0xe0, ERIAR_MASK_1111
, .val
= w
[0] | (w
[1] << 16) },
3457 { .addr
= 0xe4, ERIAR_MASK_1111
, .val
= w
[2] },
3458 { .addr
= 0xf0, ERIAR_MASK_1111
, .val
= w
[0] << 16 },
3459 { .addr
= 0xf4, ERIAR_MASK_1111
, .val
= w
[1] | (w
[2] << 16) }
3462 rtl_write_exgmac_batch(tp
, e
, ARRAY_SIZE(e
));
3465 static void rtl8168e_2_hw_phy_config(struct rtl8169_private
*tp
)
3467 static const struct phy_reg phy_reg_init
[] = {
3468 /* Enable Delay cap */
3477 /* Channel estimation fine tune */
3494 rtl_apply_firmware(tp
);
3496 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3498 /* For 4-corner performance improve */
3499 rtl_writephy(tp
, 0x1f, 0x0005);
3500 rtl_writephy(tp
, 0x05, 0x8b80);
3501 rtl_w0w1_phy(tp
, 0x17, 0x0006, 0x0000);
3502 rtl_writephy(tp
, 0x1f, 0x0000);
3504 /* PHY auto speed down */
3505 rtl_writephy(tp
, 0x1f, 0x0004);
3506 rtl_writephy(tp
, 0x1f, 0x0007);
3507 rtl_writephy(tp
, 0x1e, 0x002d);
3508 rtl_w0w1_phy(tp
, 0x18, 0x0010, 0x0000);
3509 rtl_writephy(tp
, 0x1f, 0x0002);
3510 rtl_writephy(tp
, 0x1f, 0x0000);
3511 rtl_w0w1_phy(tp
, 0x14, 0x8000, 0x0000);
3513 /* improve 10M EEE waveform */
3514 rtl_writephy(tp
, 0x1f, 0x0005);
3515 rtl_writephy(tp
, 0x05, 0x8b86);
3516 rtl_w0w1_phy(tp
, 0x06, 0x0001, 0x0000);
3517 rtl_writephy(tp
, 0x1f, 0x0000);
3519 /* Improve 2-pair detection performance */
3520 rtl_writephy(tp
, 0x1f, 0x0005);
3521 rtl_writephy(tp
, 0x05, 0x8b85);
3522 rtl_w0w1_phy(tp
, 0x06, 0x4000, 0x0000);
3523 rtl_writephy(tp
, 0x1f, 0x0000);
3526 rtl_w0w1_eri(tp
, 0x1b0, ERIAR_MASK_1111
, 0x0000, 0x0003, ERIAR_EXGMAC
);
3527 rtl_writephy(tp
, 0x1f, 0x0005);
3528 rtl_writephy(tp
, 0x05, 0x8b85);
3529 rtl_w0w1_phy(tp
, 0x06, 0x0000, 0x2000);
3530 rtl_writephy(tp
, 0x1f, 0x0004);
3531 rtl_writephy(tp
, 0x1f, 0x0007);
3532 rtl_writephy(tp
, 0x1e, 0x0020);
3533 rtl_w0w1_phy(tp
, 0x15, 0x0000, 0x0100);
3534 rtl_writephy(tp
, 0x1f, 0x0002);
3535 rtl_writephy(tp
, 0x1f, 0x0000);
3536 rtl_writephy(tp
, 0x0d, 0x0007);
3537 rtl_writephy(tp
, 0x0e, 0x003c);
3538 rtl_writephy(tp
, 0x0d, 0x4007);
3539 rtl_writephy(tp
, 0x0e, 0x0000);
3540 rtl_writephy(tp
, 0x0d, 0x0000);
3543 rtl_writephy(tp
, 0x1f, 0x0003);
3544 rtl_w0w1_phy(tp
, 0x19, 0x0000, 0x0001);
3545 rtl_w0w1_phy(tp
, 0x10, 0x0000, 0x0400);
3546 rtl_writephy(tp
, 0x1f, 0x0000);
3548 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3549 rtl_rar_exgmac_set(tp
, tp
->dev
->dev_addr
);
3552 static void rtl8168f_hw_phy_config(struct rtl8169_private
*tp
)
3554 /* For 4-corner performance improve */
3555 rtl_writephy(tp
, 0x1f, 0x0005);
3556 rtl_writephy(tp
, 0x05, 0x8b80);
3557 rtl_w0w1_phy(tp
, 0x06, 0x0006, 0x0000);
3558 rtl_writephy(tp
, 0x1f, 0x0000);
3560 /* PHY auto speed down */
3561 rtl_writephy(tp
, 0x1f, 0x0007);
3562 rtl_writephy(tp
, 0x1e, 0x002d);
3563 rtl_w0w1_phy(tp
, 0x18, 0x0010, 0x0000);
3564 rtl_writephy(tp
, 0x1f, 0x0000);
3565 rtl_w0w1_phy(tp
, 0x14, 0x8000, 0x0000);
3567 /* Improve 10M EEE waveform */
3568 rtl_writephy(tp
, 0x1f, 0x0005);
3569 rtl_writephy(tp
, 0x05, 0x8b86);
3570 rtl_w0w1_phy(tp
, 0x06, 0x0001, 0x0000);
3571 rtl_writephy(tp
, 0x1f, 0x0000);
3574 static void rtl8168f_1_hw_phy_config(struct rtl8169_private
*tp
)
3576 static const struct phy_reg phy_reg_init
[] = {
3577 /* Channel estimation fine tune */
3582 /* Modify green table for giga & fnet */
3599 /* Modify green table for 10M */
3605 /* Disable hiimpedance detection (RTCT) */
3611 rtl_apply_firmware(tp
);
3613 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3615 rtl8168f_hw_phy_config(tp
);
3617 /* Improve 2-pair detection performance */
3618 rtl_writephy(tp
, 0x1f, 0x0005);
3619 rtl_writephy(tp
, 0x05, 0x8b85);
3620 rtl_w0w1_phy(tp
, 0x06, 0x4000, 0x0000);
3621 rtl_writephy(tp
, 0x1f, 0x0000);
3624 static void rtl8168f_2_hw_phy_config(struct rtl8169_private
*tp
)
3626 rtl_apply_firmware(tp
);
3628 rtl8168f_hw_phy_config(tp
);
3631 static void rtl8411_hw_phy_config(struct rtl8169_private
*tp
)
3633 static const struct phy_reg phy_reg_init
[] = {
3634 /* Channel estimation fine tune */
3639 /* Modify green table for giga & fnet */
3656 /* Modify green table for 10M */
3662 /* Disable hiimpedance detection (RTCT) */
3669 rtl_apply_firmware(tp
);
3671 rtl8168f_hw_phy_config(tp
);
3673 /* Improve 2-pair detection performance */
3674 rtl_writephy(tp
, 0x1f, 0x0005);
3675 rtl_writephy(tp
, 0x05, 0x8b85);
3676 rtl_w0w1_phy(tp
, 0x06, 0x4000, 0x0000);
3677 rtl_writephy(tp
, 0x1f, 0x0000);
3679 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3681 /* Modify green table for giga */
3682 rtl_writephy(tp
, 0x1f, 0x0005);
3683 rtl_writephy(tp
, 0x05, 0x8b54);
3684 rtl_w0w1_phy(tp
, 0x06, 0x0000, 0x0800);
3685 rtl_writephy(tp
, 0x05, 0x8b5d);
3686 rtl_w0w1_phy(tp
, 0x06, 0x0000, 0x0800);
3687 rtl_writephy(tp
, 0x05, 0x8a7c);
3688 rtl_w0w1_phy(tp
, 0x06, 0x0000, 0x0100);
3689 rtl_writephy(tp
, 0x05, 0x8a7f);
3690 rtl_w0w1_phy(tp
, 0x06, 0x0100, 0x0000);
3691 rtl_writephy(tp
, 0x05, 0x8a82);
3692 rtl_w0w1_phy(tp
, 0x06, 0x0000, 0x0100);
3693 rtl_writephy(tp
, 0x05, 0x8a85);
3694 rtl_w0w1_phy(tp
, 0x06, 0x0000, 0x0100);
3695 rtl_writephy(tp
, 0x05, 0x8a88);
3696 rtl_w0w1_phy(tp
, 0x06, 0x0000, 0x0100);
3697 rtl_writephy(tp
, 0x1f, 0x0000);
3699 /* uc same-seed solution */
3700 rtl_writephy(tp
, 0x1f, 0x0005);
3701 rtl_writephy(tp
, 0x05, 0x8b85);
3702 rtl_w0w1_phy(tp
, 0x06, 0x8000, 0x0000);
3703 rtl_writephy(tp
, 0x1f, 0x0000);
3706 rtl_w0w1_eri(tp
, 0x1b0, ERIAR_MASK_0001
, 0x00, 0x03, ERIAR_EXGMAC
);
3707 rtl_writephy(tp
, 0x1f, 0x0005);
3708 rtl_writephy(tp
, 0x05, 0x8b85);
3709 rtl_w0w1_phy(tp
, 0x06, 0x0000, 0x2000);
3710 rtl_writephy(tp
, 0x1f, 0x0004);
3711 rtl_writephy(tp
, 0x1f, 0x0007);
3712 rtl_writephy(tp
, 0x1e, 0x0020);
3713 rtl_w0w1_phy(tp
, 0x15, 0x0000, 0x0100);
3714 rtl_writephy(tp
, 0x1f, 0x0000);
3715 rtl_writephy(tp
, 0x0d, 0x0007);
3716 rtl_writephy(tp
, 0x0e, 0x003c);
3717 rtl_writephy(tp
, 0x0d, 0x4007);
3718 rtl_writephy(tp
, 0x0e, 0x0000);
3719 rtl_writephy(tp
, 0x0d, 0x0000);
3722 rtl_writephy(tp
, 0x1f, 0x0003);
3723 rtl_w0w1_phy(tp
, 0x19, 0x0000, 0x0001);
3724 rtl_w0w1_phy(tp
, 0x10, 0x0000, 0x0400);
3725 rtl_writephy(tp
, 0x1f, 0x0000);
3728 static void rtl8168g_1_hw_phy_config(struct rtl8169_private
*tp
)
3730 rtl_apply_firmware(tp
);
3732 rtl_writephy(tp
, 0x1f, 0x0a46);
3733 if (rtl_readphy(tp
, 0x10) & 0x0100) {
3734 rtl_writephy(tp
, 0x1f, 0x0bcc);
3735 rtl_w0w1_phy(tp
, 0x12, 0x0000, 0x8000);
3737 rtl_writephy(tp
, 0x1f, 0x0bcc);
3738 rtl_w0w1_phy(tp
, 0x12, 0x8000, 0x0000);
3741 rtl_writephy(tp
, 0x1f, 0x0a46);
3742 if (rtl_readphy(tp
, 0x13) & 0x0100) {
3743 rtl_writephy(tp
, 0x1f, 0x0c41);
3744 rtl_w0w1_phy(tp
, 0x15, 0x0002, 0x0000);
3746 rtl_writephy(tp
, 0x1f, 0x0c41);
3747 rtl_w0w1_phy(tp
, 0x15, 0x0000, 0x0002);
3750 /* Enable PHY auto speed down */
3751 rtl_writephy(tp
, 0x1f, 0x0a44);
3752 rtl_w0w1_phy(tp
, 0x11, 0x000c, 0x0000);
3754 rtl_writephy(tp
, 0x1f, 0x0bcc);
3755 rtl_w0w1_phy(tp
, 0x14, 0x0100, 0x0000);
3756 rtl_writephy(tp
, 0x1f, 0x0a44);
3757 rtl_w0w1_phy(tp
, 0x11, 0x00c0, 0x0000);
3758 rtl_writephy(tp
, 0x1f, 0x0a43);
3759 rtl_writephy(tp
, 0x13, 0x8084);
3760 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x6000);
3761 rtl_w0w1_phy(tp
, 0x10, 0x1003, 0x0000);
3763 /* EEE auto-fallback function */
3764 rtl_writephy(tp
, 0x1f, 0x0a4b);
3765 rtl_w0w1_phy(tp
, 0x11, 0x0004, 0x0000);
3767 /* Enable UC LPF tune function */
3768 rtl_writephy(tp
, 0x1f, 0x0a43);
3769 rtl_writephy(tp
, 0x13, 0x8012);
3770 rtl_w0w1_phy(tp
, 0x14, 0x8000, 0x0000);
3772 rtl_writephy(tp
, 0x1f, 0x0c42);
3773 rtl_w0w1_phy(tp
, 0x11, 0x4000, 0x2000);
3775 /* Improve SWR Efficiency */
3776 rtl_writephy(tp
, 0x1f, 0x0bcd);
3777 rtl_writephy(tp
, 0x14, 0x5065);
3778 rtl_writephy(tp
, 0x14, 0xd065);
3779 rtl_writephy(tp
, 0x1f, 0x0bc8);
3780 rtl_writephy(tp
, 0x11, 0x5655);
3781 rtl_writephy(tp
, 0x1f, 0x0bcd);
3782 rtl_writephy(tp
, 0x14, 0x1065);
3783 rtl_writephy(tp
, 0x14, 0x9065);
3784 rtl_writephy(tp
, 0x14, 0x1065);
3786 /* Check ALDPS bit, disable it if enabled */
3787 rtl_writephy(tp
, 0x1f, 0x0a43);
3788 if (rtl_readphy(tp
, 0x10) & 0x0004)
3789 rtl_w0w1_phy(tp
, 0x10, 0x0000, 0x0004);
3791 rtl_writephy(tp
, 0x1f, 0x0000);
3794 static void rtl8168g_2_hw_phy_config(struct rtl8169_private
*tp
)
3796 rtl_apply_firmware(tp
);
3799 static void rtl8168h_1_hw_phy_config(struct rtl8169_private
*tp
)
3804 rtl_apply_firmware(tp
);
3806 /* CHN EST parameters adjust - giga master */
3807 rtl_writephy(tp
, 0x1f, 0x0a43);
3808 rtl_writephy(tp
, 0x13, 0x809b);
3809 rtl_w0w1_phy(tp
, 0x14, 0x8000, 0xf800);
3810 rtl_writephy(tp
, 0x13, 0x80a2);
3811 rtl_w0w1_phy(tp
, 0x14, 0x8000, 0xff00);
3812 rtl_writephy(tp
, 0x13, 0x80a4);
3813 rtl_w0w1_phy(tp
, 0x14, 0x8500, 0xff00);
3814 rtl_writephy(tp
, 0x13, 0x809c);
3815 rtl_w0w1_phy(tp
, 0x14, 0xbd00, 0xff00);
3816 rtl_writephy(tp
, 0x1f, 0x0000);
3818 /* CHN EST parameters adjust - giga slave */
3819 rtl_writephy(tp
, 0x1f, 0x0a43);
3820 rtl_writephy(tp
, 0x13, 0x80ad);
3821 rtl_w0w1_phy(tp
, 0x14, 0x7000, 0xf800);
3822 rtl_writephy(tp
, 0x13, 0x80b4);
3823 rtl_w0w1_phy(tp
, 0x14, 0x5000, 0xff00);
3824 rtl_writephy(tp
, 0x13, 0x80ac);
3825 rtl_w0w1_phy(tp
, 0x14, 0x4000, 0xff00);
3826 rtl_writephy(tp
, 0x1f, 0x0000);
3828 /* CHN EST parameters adjust - fnet */
3829 rtl_writephy(tp
, 0x1f, 0x0a43);
3830 rtl_writephy(tp
, 0x13, 0x808e);
3831 rtl_w0w1_phy(tp
, 0x14, 0x1200, 0xff00);
3832 rtl_writephy(tp
, 0x13, 0x8090);
3833 rtl_w0w1_phy(tp
, 0x14, 0xe500, 0xff00);
3834 rtl_writephy(tp
, 0x13, 0x8092);
3835 rtl_w0w1_phy(tp
, 0x14, 0x9f00, 0xff00);
3836 rtl_writephy(tp
, 0x1f, 0x0000);
3838 /* enable R-tune & PGA-retune function */
3840 rtl_writephy(tp
, 0x1f, 0x0a46);
3841 data
= rtl_readphy(tp
, 0x13);
3844 dout_tapbin
|= data
;
3845 data
= rtl_readphy(tp
, 0x12);
3848 dout_tapbin
|= data
;
3849 dout_tapbin
= ~(dout_tapbin
^0x08);
3851 dout_tapbin
&= 0xf000;
3852 rtl_writephy(tp
, 0x1f, 0x0a43);
3853 rtl_writephy(tp
, 0x13, 0x827a);
3854 rtl_w0w1_phy(tp
, 0x14, dout_tapbin
, 0xf000);
3855 rtl_writephy(tp
, 0x13, 0x827b);
3856 rtl_w0w1_phy(tp
, 0x14, dout_tapbin
, 0xf000);
3857 rtl_writephy(tp
, 0x13, 0x827c);
3858 rtl_w0w1_phy(tp
, 0x14, dout_tapbin
, 0xf000);
3859 rtl_writephy(tp
, 0x13, 0x827d);
3860 rtl_w0w1_phy(tp
, 0x14, dout_tapbin
, 0xf000);
3862 rtl_writephy(tp
, 0x1f, 0x0a43);
3863 rtl_writephy(tp
, 0x13, 0x0811);
3864 rtl_w0w1_phy(tp
, 0x14, 0x0800, 0x0000);
3865 rtl_writephy(tp
, 0x1f, 0x0a42);
3866 rtl_w0w1_phy(tp
, 0x16, 0x0002, 0x0000);
3867 rtl_writephy(tp
, 0x1f, 0x0000);
3869 /* enable GPHY 10M */
3870 rtl_writephy(tp
, 0x1f, 0x0a44);
3871 rtl_w0w1_phy(tp
, 0x11, 0x0800, 0x0000);
3872 rtl_writephy(tp
, 0x1f, 0x0000);
3874 /* SAR ADC performance */
3875 rtl_writephy(tp
, 0x1f, 0x0bca);
3876 rtl_w0w1_phy(tp
, 0x17, 0x4000, 0x3000);
3877 rtl_writephy(tp
, 0x1f, 0x0000);
3879 rtl_writephy(tp
, 0x1f, 0x0a43);
3880 rtl_writephy(tp
, 0x13, 0x803f);
3881 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x3000);
3882 rtl_writephy(tp
, 0x13, 0x8047);
3883 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x3000);
3884 rtl_writephy(tp
, 0x13, 0x804f);
3885 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x3000);
3886 rtl_writephy(tp
, 0x13, 0x8057);
3887 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x3000);
3888 rtl_writephy(tp
, 0x13, 0x805f);
3889 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x3000);
3890 rtl_writephy(tp
, 0x13, 0x8067);
3891 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x3000);
3892 rtl_writephy(tp
, 0x13, 0x806f);
3893 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x3000);
3894 rtl_writephy(tp
, 0x1f, 0x0000);
3896 /* disable phy pfm mode */
3897 rtl_writephy(tp
, 0x1f, 0x0a44);
3898 rtl_w0w1_phy(tp
, 0x11, 0x0000, 0x0080);
3899 rtl_writephy(tp
, 0x1f, 0x0000);
3901 /* Check ALDPS bit, disable it if enabled */
3902 rtl_writephy(tp
, 0x1f, 0x0a43);
3903 if (rtl_readphy(tp
, 0x10) & 0x0004)
3904 rtl_w0w1_phy(tp
, 0x10, 0x0000, 0x0004);
3906 rtl_writephy(tp
, 0x1f, 0x0000);
3909 static void rtl8168h_2_hw_phy_config(struct rtl8169_private
*tp
)
3911 u16 ioffset_p3
, ioffset_p2
, ioffset_p1
, ioffset_p0
;
3915 rtl_apply_firmware(tp
);
3917 /* CHIN EST parameter update */
3918 rtl_writephy(tp
, 0x1f, 0x0a43);
3919 rtl_writephy(tp
, 0x13, 0x808a);
3920 rtl_w0w1_phy(tp
, 0x14, 0x000a, 0x003f);
3921 rtl_writephy(tp
, 0x1f, 0x0000);
3923 /* enable R-tune & PGA-retune function */
3924 rtl_writephy(tp
, 0x1f, 0x0a43);
3925 rtl_writephy(tp
, 0x13, 0x0811);
3926 rtl_w0w1_phy(tp
, 0x14, 0x0800, 0x0000);
3927 rtl_writephy(tp
, 0x1f, 0x0a42);
3928 rtl_w0w1_phy(tp
, 0x16, 0x0002, 0x0000);
3929 rtl_writephy(tp
, 0x1f, 0x0000);
3931 /* enable GPHY 10M */
3932 rtl_writephy(tp
, 0x1f, 0x0a44);
3933 rtl_w0w1_phy(tp
, 0x11, 0x0800, 0x0000);
3934 rtl_writephy(tp
, 0x1f, 0x0000);
3936 r8168_mac_ocp_write(tp
, 0xdd02, 0x807d);
3937 data
= r8168_mac_ocp_read(tp
, 0xdd02);
3938 ioffset_p3
= ((data
& 0x80)>>7);
3941 data
= r8168_mac_ocp_read(tp
, 0xdd00);
3942 ioffset_p3
|= ((data
& (0xe000))>>13);
3943 ioffset_p2
= ((data
& (0x1e00))>>9);
3944 ioffset_p1
= ((data
& (0x01e0))>>5);
3945 ioffset_p0
= ((data
& 0x0010)>>4);
3947 ioffset_p0
|= (data
& (0x07));
3948 data
= (ioffset_p3
<<12)|(ioffset_p2
<<8)|(ioffset_p1
<<4)|(ioffset_p0
);
3950 if ((ioffset_p3
!= 0x0f) || (ioffset_p2
!= 0x0f) ||
3951 (ioffset_p1
!= 0x0f) || (ioffset_p0
!= 0x0f)) {
3952 rtl_writephy(tp
, 0x1f, 0x0bcf);
3953 rtl_writephy(tp
, 0x16, data
);
3954 rtl_writephy(tp
, 0x1f, 0x0000);
3957 /* Modify rlen (TX LPF corner frequency) level */
3958 rtl_writephy(tp
, 0x1f, 0x0bcd);
3959 data
= rtl_readphy(tp
, 0x16);
3964 data
= rlen
| (rlen
<<4) | (rlen
<<8) | (rlen
<<12);
3965 rtl_writephy(tp
, 0x17, data
);
3966 rtl_writephy(tp
, 0x1f, 0x0bcd);
3967 rtl_writephy(tp
, 0x1f, 0x0000);
3969 /* disable phy pfm mode */
3970 rtl_writephy(tp
, 0x1f, 0x0a44);
3971 rtl_w0w1_phy(tp
, 0x11, 0x0000, 0x0080);
3972 rtl_writephy(tp
, 0x1f, 0x0000);
3974 /* Check ALDPS bit, disable it if enabled */
3975 rtl_writephy(tp
, 0x1f, 0x0a43);
3976 if (rtl_readphy(tp
, 0x10) & 0x0004)
3977 rtl_w0w1_phy(tp
, 0x10, 0x0000, 0x0004);
3979 rtl_writephy(tp
, 0x1f, 0x0000);
3982 static void rtl8168ep_1_hw_phy_config(struct rtl8169_private
*tp
)
3984 /* Enable PHY auto speed down */
3985 rtl_writephy(tp
, 0x1f, 0x0a44);
3986 rtl_w0w1_phy(tp
, 0x11, 0x000c, 0x0000);
3987 rtl_writephy(tp
, 0x1f, 0x0000);
3989 /* patch 10M & ALDPS */
3990 rtl_writephy(tp
, 0x1f, 0x0bcc);
3991 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x0100);
3992 rtl_writephy(tp
, 0x1f, 0x0a44);
3993 rtl_w0w1_phy(tp
, 0x11, 0x00c0, 0x0000);
3994 rtl_writephy(tp
, 0x1f, 0x0a43);
3995 rtl_writephy(tp
, 0x13, 0x8084);
3996 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x6000);
3997 rtl_w0w1_phy(tp
, 0x10, 0x1003, 0x0000);
3998 rtl_writephy(tp
, 0x1f, 0x0000);
4000 /* Enable EEE auto-fallback function */
4001 rtl_writephy(tp
, 0x1f, 0x0a4b);
4002 rtl_w0w1_phy(tp
, 0x11, 0x0004, 0x0000);
4003 rtl_writephy(tp
, 0x1f, 0x0000);
4005 /* Enable UC LPF tune function */
4006 rtl_writephy(tp
, 0x1f, 0x0a43);
4007 rtl_writephy(tp
, 0x13, 0x8012);
4008 rtl_w0w1_phy(tp
, 0x14, 0x8000, 0x0000);
4009 rtl_writephy(tp
, 0x1f, 0x0000);
4011 /* set rg_sel_sdm_rate */
4012 rtl_writephy(tp
, 0x1f, 0x0c42);
4013 rtl_w0w1_phy(tp
, 0x11, 0x4000, 0x2000);
4014 rtl_writephy(tp
, 0x1f, 0x0000);
4016 /* Check ALDPS bit, disable it if enabled */
4017 rtl_writephy(tp
, 0x1f, 0x0a43);
4018 if (rtl_readphy(tp
, 0x10) & 0x0004)
4019 rtl_w0w1_phy(tp
, 0x10, 0x0000, 0x0004);
4021 rtl_writephy(tp
, 0x1f, 0x0000);
4024 static void rtl8168ep_2_hw_phy_config(struct rtl8169_private
*tp
)
4026 /* patch 10M & ALDPS */
4027 rtl_writephy(tp
, 0x1f, 0x0bcc);
4028 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x0100);
4029 rtl_writephy(tp
, 0x1f, 0x0a44);
4030 rtl_w0w1_phy(tp
, 0x11, 0x00c0, 0x0000);
4031 rtl_writephy(tp
, 0x1f, 0x0a43);
4032 rtl_writephy(tp
, 0x13, 0x8084);
4033 rtl_w0w1_phy(tp
, 0x14, 0x0000, 0x6000);
4034 rtl_w0w1_phy(tp
, 0x10, 0x1003, 0x0000);
4035 rtl_writephy(tp
, 0x1f, 0x0000);
4037 /* Enable UC LPF tune function */
4038 rtl_writephy(tp
, 0x1f, 0x0a43);
4039 rtl_writephy(tp
, 0x13, 0x8012);
4040 rtl_w0w1_phy(tp
, 0x14, 0x8000, 0x0000);
4041 rtl_writephy(tp
, 0x1f, 0x0000);
4043 /* Set rg_sel_sdm_rate */
4044 rtl_writephy(tp
, 0x1f, 0x0c42);
4045 rtl_w0w1_phy(tp
, 0x11, 0x4000, 0x2000);
4046 rtl_writephy(tp
, 0x1f, 0x0000);
4048 /* Channel estimation parameters */
4049 rtl_writephy(tp
, 0x1f, 0x0a43);
4050 rtl_writephy(tp
, 0x13, 0x80f3);
4051 rtl_w0w1_phy(tp
, 0x14, 0x8b00, ~0x8bff);
4052 rtl_writephy(tp
, 0x13, 0x80f0);
4053 rtl_w0w1_phy(tp
, 0x14, 0x3a00, ~0x3aff);
4054 rtl_writephy(tp
, 0x13, 0x80ef);
4055 rtl_w0w1_phy(tp
, 0x14, 0x0500, ~0x05ff);
4056 rtl_writephy(tp
, 0x13, 0x80f6);
4057 rtl_w0w1_phy(tp
, 0x14, 0x6e00, ~0x6eff);
4058 rtl_writephy(tp
, 0x13, 0x80ec);
4059 rtl_w0w1_phy(tp
, 0x14, 0x6800, ~0x68ff);
4060 rtl_writephy(tp
, 0x13, 0x80ed);
4061 rtl_w0w1_phy(tp
, 0x14, 0x7c00, ~0x7cff);
4062 rtl_writephy(tp
, 0x13, 0x80f2);
4063 rtl_w0w1_phy(tp
, 0x14, 0xf400, ~0xf4ff);
4064 rtl_writephy(tp
, 0x13, 0x80f4);
4065 rtl_w0w1_phy(tp
, 0x14, 0x8500, ~0x85ff);
4066 rtl_writephy(tp
, 0x1f, 0x0a43);
4067 rtl_writephy(tp
, 0x13, 0x8110);
4068 rtl_w0w1_phy(tp
, 0x14, 0xa800, ~0xa8ff);
4069 rtl_writephy(tp
, 0x13, 0x810f);
4070 rtl_w0w1_phy(tp
, 0x14, 0x1d00, ~0x1dff);
4071 rtl_writephy(tp
, 0x13, 0x8111);
4072 rtl_w0w1_phy(tp
, 0x14, 0xf500, ~0xf5ff);
4073 rtl_writephy(tp
, 0x13, 0x8113);
4074 rtl_w0w1_phy(tp
, 0x14, 0x6100, ~0x61ff);
4075 rtl_writephy(tp
, 0x13, 0x8115);
4076 rtl_w0w1_phy(tp
, 0x14, 0x9200, ~0x92ff);
4077 rtl_writephy(tp
, 0x13, 0x810e);
4078 rtl_w0w1_phy(tp
, 0x14, 0x0400, ~0x04ff);
4079 rtl_writephy(tp
, 0x13, 0x810c);
4080 rtl_w0w1_phy(tp
, 0x14, 0x7c00, ~0x7cff);
4081 rtl_writephy(tp
, 0x13, 0x810b);
4082 rtl_w0w1_phy(tp
, 0x14, 0x5a00, ~0x5aff);
4083 rtl_writephy(tp
, 0x1f, 0x0a43);
4084 rtl_writephy(tp
, 0x13, 0x80d1);
4085 rtl_w0w1_phy(tp
, 0x14, 0xff00, ~0xffff);
4086 rtl_writephy(tp
, 0x13, 0x80cd);
4087 rtl_w0w1_phy(tp
, 0x14, 0x9e00, ~0x9eff);
4088 rtl_writephy(tp
, 0x13, 0x80d3);
4089 rtl_w0w1_phy(tp
, 0x14, 0x0e00, ~0x0eff);
4090 rtl_writephy(tp
, 0x13, 0x80d5);
4091 rtl_w0w1_phy(tp
, 0x14, 0xca00, ~0xcaff);
4092 rtl_writephy(tp
, 0x13, 0x80d7);
4093 rtl_w0w1_phy(tp
, 0x14, 0x8400, ~0x84ff);
4095 /* Force PWM-mode */
4096 rtl_writephy(tp
, 0x1f, 0x0bcd);
4097 rtl_writephy(tp
, 0x14, 0x5065);
4098 rtl_writephy(tp
, 0x14, 0xd065);
4099 rtl_writephy(tp
, 0x1f, 0x0bc8);
4100 rtl_writephy(tp
, 0x12, 0x00ed);
4101 rtl_writephy(tp
, 0x1f, 0x0bcd);
4102 rtl_writephy(tp
, 0x14, 0x1065);
4103 rtl_writephy(tp
, 0x14, 0x9065);
4104 rtl_writephy(tp
, 0x14, 0x1065);
4105 rtl_writephy(tp
, 0x1f, 0x0000);
4107 /* Check ALDPS bit, disable it if enabled */
4108 rtl_writephy(tp
, 0x1f, 0x0a43);
4109 if (rtl_readphy(tp
, 0x10) & 0x0004)
4110 rtl_w0w1_phy(tp
, 0x10, 0x0000, 0x0004);
4112 rtl_writephy(tp
, 0x1f, 0x0000);
4115 static void rtl8102e_hw_phy_config(struct rtl8169_private
*tp
)
4117 static const struct phy_reg phy_reg_init
[] = {
4124 rtl_writephy(tp
, 0x1f, 0x0000);
4125 rtl_patchphy(tp
, 0x11, 1 << 12);
4126 rtl_patchphy(tp
, 0x19, 1 << 13);
4127 rtl_patchphy(tp
, 0x10, 1 << 15);
4129 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
4132 static void rtl8105e_hw_phy_config(struct rtl8169_private
*tp
)
4134 static const struct phy_reg phy_reg_init
[] = {
4148 /* Disable ALDPS before ram code */
4149 rtl_writephy(tp
, 0x1f, 0x0000);
4150 rtl_writephy(tp
, 0x18, 0x0310);
4153 rtl_apply_firmware(tp
);
4155 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
4158 static void rtl8402_hw_phy_config(struct rtl8169_private
*tp
)
4160 /* Disable ALDPS before setting firmware */
4161 rtl_writephy(tp
, 0x1f, 0x0000);
4162 rtl_writephy(tp
, 0x18, 0x0310);
4165 rtl_apply_firmware(tp
);
4168 rtl_eri_write(tp
, 0x1b0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
4169 rtl_writephy(tp
, 0x1f, 0x0004);
4170 rtl_writephy(tp
, 0x10, 0x401f);
4171 rtl_writephy(tp
, 0x19, 0x7030);
4172 rtl_writephy(tp
, 0x1f, 0x0000);
4175 static void rtl8106e_hw_phy_config(struct rtl8169_private
*tp
)
4177 static const struct phy_reg phy_reg_init
[] = {
4184 /* Disable ALDPS before ram code */
4185 rtl_writephy(tp
, 0x1f, 0x0000);
4186 rtl_writephy(tp
, 0x18, 0x0310);
4189 rtl_apply_firmware(tp
);
4191 rtl_eri_write(tp
, 0x1b0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
4192 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
4194 rtl_eri_write(tp
, 0x1d0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
4197 static void rtl_hw_phy_config(struct net_device
*dev
)
4199 struct rtl8169_private
*tp
= netdev_priv(dev
);
4201 rtl8169_print_mac_version(tp
);
4203 switch (tp
->mac_version
) {
4204 case RTL_GIGA_MAC_VER_01
:
4206 case RTL_GIGA_MAC_VER_02
:
4207 case RTL_GIGA_MAC_VER_03
:
4208 rtl8169s_hw_phy_config(tp
);
4210 case RTL_GIGA_MAC_VER_04
:
4211 rtl8169sb_hw_phy_config(tp
);
4213 case RTL_GIGA_MAC_VER_05
:
4214 rtl8169scd_hw_phy_config(tp
);
4216 case RTL_GIGA_MAC_VER_06
:
4217 rtl8169sce_hw_phy_config(tp
);
4219 case RTL_GIGA_MAC_VER_07
:
4220 case RTL_GIGA_MAC_VER_08
:
4221 case RTL_GIGA_MAC_VER_09
:
4222 rtl8102e_hw_phy_config(tp
);
4224 case RTL_GIGA_MAC_VER_11
:
4225 rtl8168bb_hw_phy_config(tp
);
4227 case RTL_GIGA_MAC_VER_12
:
4228 rtl8168bef_hw_phy_config(tp
);
4230 case RTL_GIGA_MAC_VER_17
:
4231 rtl8168bef_hw_phy_config(tp
);
4233 case RTL_GIGA_MAC_VER_18
:
4234 rtl8168cp_1_hw_phy_config(tp
);
4236 case RTL_GIGA_MAC_VER_19
:
4237 rtl8168c_1_hw_phy_config(tp
);
4239 case RTL_GIGA_MAC_VER_20
:
4240 rtl8168c_2_hw_phy_config(tp
);
4242 case RTL_GIGA_MAC_VER_21
:
4243 rtl8168c_3_hw_phy_config(tp
);
4245 case RTL_GIGA_MAC_VER_22
:
4246 rtl8168c_4_hw_phy_config(tp
);
4248 case RTL_GIGA_MAC_VER_23
:
4249 case RTL_GIGA_MAC_VER_24
:
4250 rtl8168cp_2_hw_phy_config(tp
);
4252 case RTL_GIGA_MAC_VER_25
:
4253 rtl8168d_1_hw_phy_config(tp
);
4255 case RTL_GIGA_MAC_VER_26
:
4256 rtl8168d_2_hw_phy_config(tp
);
4258 case RTL_GIGA_MAC_VER_27
:
4259 rtl8168d_3_hw_phy_config(tp
);
4261 case RTL_GIGA_MAC_VER_28
:
4262 rtl8168d_4_hw_phy_config(tp
);
4264 case RTL_GIGA_MAC_VER_29
:
4265 case RTL_GIGA_MAC_VER_30
:
4266 rtl8105e_hw_phy_config(tp
);
4268 case RTL_GIGA_MAC_VER_31
:
4271 case RTL_GIGA_MAC_VER_32
:
4272 case RTL_GIGA_MAC_VER_33
:
4273 rtl8168e_1_hw_phy_config(tp
);
4275 case RTL_GIGA_MAC_VER_34
:
4276 rtl8168e_2_hw_phy_config(tp
);
4278 case RTL_GIGA_MAC_VER_35
:
4279 rtl8168f_1_hw_phy_config(tp
);
4281 case RTL_GIGA_MAC_VER_36
:
4282 rtl8168f_2_hw_phy_config(tp
);
4285 case RTL_GIGA_MAC_VER_37
:
4286 rtl8402_hw_phy_config(tp
);
4289 case RTL_GIGA_MAC_VER_38
:
4290 rtl8411_hw_phy_config(tp
);
4293 case RTL_GIGA_MAC_VER_39
:
4294 rtl8106e_hw_phy_config(tp
);
4297 case RTL_GIGA_MAC_VER_40
:
4298 rtl8168g_1_hw_phy_config(tp
);
4300 case RTL_GIGA_MAC_VER_42
:
4301 case RTL_GIGA_MAC_VER_43
:
4302 case RTL_GIGA_MAC_VER_44
:
4303 rtl8168g_2_hw_phy_config(tp
);
4305 case RTL_GIGA_MAC_VER_45
:
4306 case RTL_GIGA_MAC_VER_47
:
4307 rtl8168h_1_hw_phy_config(tp
);
4309 case RTL_GIGA_MAC_VER_46
:
4310 case RTL_GIGA_MAC_VER_48
:
4311 rtl8168h_2_hw_phy_config(tp
);
4314 case RTL_GIGA_MAC_VER_49
:
4315 rtl8168ep_1_hw_phy_config(tp
);
4317 case RTL_GIGA_MAC_VER_50
:
4318 case RTL_GIGA_MAC_VER_51
:
4319 rtl8168ep_2_hw_phy_config(tp
);
4322 case RTL_GIGA_MAC_VER_41
:
4328 static void rtl_phy_work(struct rtl8169_private
*tp
)
4330 struct timer_list
*timer
= &tp
->timer
;
4331 void __iomem
*ioaddr
= tp
->mmio_addr
;
4332 unsigned long timeout
= RTL8169_PHY_TIMEOUT
;
4334 assert(tp
->mac_version
> RTL_GIGA_MAC_VER_01
);
4336 if (tp
->phy_reset_pending(tp
)) {
4338 * A busy loop could burn quite a few cycles on nowadays CPU.
4339 * Let's delay the execution of the timer for a few ticks.
4345 if (tp
->link_ok(ioaddr
))
4348 netif_dbg(tp
, link
, tp
->dev
, "PHY reset until link up\n");
4350 tp
->phy_reset_enable(tp
);
4353 mod_timer(timer
, jiffies
+ timeout
);
4356 static void rtl_schedule_task(struct rtl8169_private
*tp
, enum rtl_flag flag
)
4358 if (!test_and_set_bit(flag
, tp
->wk
.flags
))
4359 schedule_work(&tp
->wk
.work
);
4362 static void rtl8169_phy_timer(unsigned long __opaque
)
4364 struct net_device
*dev
= (struct net_device
*)__opaque
;
4365 struct rtl8169_private
*tp
= netdev_priv(dev
);
4367 rtl_schedule_task(tp
, RTL_FLAG_TASK_PHY_PENDING
);
4370 static void rtl8169_release_board(struct pci_dev
*pdev
, struct net_device
*dev
,
4371 void __iomem
*ioaddr
)
4374 pci_release_regions(pdev
);
4375 pci_clear_mwi(pdev
);
4376 pci_disable_device(pdev
);
4380 DECLARE_RTL_COND(rtl_phy_reset_cond
)
4382 return tp
->phy_reset_pending(tp
);
4385 static void rtl8169_phy_reset(struct net_device
*dev
,
4386 struct rtl8169_private
*tp
)
4388 tp
->phy_reset_enable(tp
);
4389 rtl_msleep_loop_wait_low(tp
, &rtl_phy_reset_cond
, 1, 100);
4392 static bool rtl_tbi_enabled(struct rtl8169_private
*tp
)
4394 void __iomem
*ioaddr
= tp
->mmio_addr
;
4396 return (tp
->mac_version
== RTL_GIGA_MAC_VER_01
) &&
4397 (RTL_R8(PHYstatus
) & TBI_Enable
);
4400 static void rtl8169_init_phy(struct net_device
*dev
, struct rtl8169_private
*tp
)
4402 void __iomem
*ioaddr
= tp
->mmio_addr
;
4404 rtl_hw_phy_config(dev
);
4406 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_06
) {
4407 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4411 pci_write_config_byte(tp
->pci_dev
, PCI_LATENCY_TIMER
, 0x40);
4413 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_06
)
4414 pci_write_config_byte(tp
->pci_dev
, PCI_CACHE_LINE_SIZE
, 0x08);
4416 if (tp
->mac_version
== RTL_GIGA_MAC_VER_02
) {
4417 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4419 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
4420 rtl_writephy(tp
, 0x0b, 0x0000); //w 0x0b 15 0 0
4423 rtl8169_phy_reset(dev
, tp
);
4425 rtl8169_set_speed(dev
, AUTONEG_ENABLE
, SPEED_1000
, DUPLEX_FULL
,
4426 ADVERTISED_10baseT_Half
| ADVERTISED_10baseT_Full
|
4427 ADVERTISED_100baseT_Half
| ADVERTISED_100baseT_Full
|
4428 (tp
->mii
.supports_gmii
?
4429 ADVERTISED_1000baseT_Half
|
4430 ADVERTISED_1000baseT_Full
: 0));
4432 if (rtl_tbi_enabled(tp
))
4433 netif_info(tp
, link
, dev
, "TBI auto-negotiating\n");
4436 static void rtl_rar_set(struct rtl8169_private
*tp
, u8
*addr
)
4438 void __iomem
*ioaddr
= tp
->mmio_addr
;
4442 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
4444 RTL_W32(MAC4
, addr
[4] | addr
[5] << 8);
4447 RTL_W32(MAC0
, addr
[0] | addr
[1] << 8 | addr
[2] << 16 | addr
[3] << 24);
4450 if (tp
->mac_version
== RTL_GIGA_MAC_VER_34
)
4451 rtl_rar_exgmac_set(tp
, addr
);
4453 RTL_W8(Cfg9346
, Cfg9346_Lock
);
4455 rtl_unlock_work(tp
);
4458 static int rtl_set_mac_address(struct net_device
*dev
, void *p
)
4460 struct rtl8169_private
*tp
= netdev_priv(dev
);
4461 struct sockaddr
*addr
= p
;
4463 if (!is_valid_ether_addr(addr
->sa_data
))
4464 return -EADDRNOTAVAIL
;
4466 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
4468 rtl_rar_set(tp
, dev
->dev_addr
);
4473 static int rtl8169_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
4475 struct rtl8169_private
*tp
= netdev_priv(dev
);
4476 struct mii_ioctl_data
*data
= if_mii(ifr
);
4478 return netif_running(dev
) ? tp
->do_ioctl(tp
, data
, cmd
) : -ENODEV
;
4481 static int rtl_xmii_ioctl(struct rtl8169_private
*tp
,
4482 struct mii_ioctl_data
*data
, int cmd
)
4486 data
->phy_id
= 32; /* Internal PHY */
4490 data
->val_out
= rtl_readphy(tp
, data
->reg_num
& 0x1f);
4494 rtl_writephy(tp
, data
->reg_num
& 0x1f, data
->val_in
);
4500 static int rtl_tbi_ioctl(struct rtl8169_private
*tp
, struct mii_ioctl_data
*data
, int cmd
)
4505 static void rtl_disable_msi(struct pci_dev
*pdev
, struct rtl8169_private
*tp
)
4507 if (tp
->features
& RTL_FEATURE_MSI
) {
4508 pci_disable_msi(pdev
);
4509 tp
->features
&= ~RTL_FEATURE_MSI
;
4513 static void rtl_init_mdio_ops(struct rtl8169_private
*tp
)
4515 struct mdio_ops
*ops
= &tp
->mdio_ops
;
4517 switch (tp
->mac_version
) {
4518 case RTL_GIGA_MAC_VER_27
:
4519 ops
->write
= r8168dp_1_mdio_write
;
4520 ops
->read
= r8168dp_1_mdio_read
;
4522 case RTL_GIGA_MAC_VER_28
:
4523 case RTL_GIGA_MAC_VER_31
:
4524 ops
->write
= r8168dp_2_mdio_write
;
4525 ops
->read
= r8168dp_2_mdio_read
;
4527 case RTL_GIGA_MAC_VER_40
:
4528 case RTL_GIGA_MAC_VER_41
:
4529 case RTL_GIGA_MAC_VER_42
:
4530 case RTL_GIGA_MAC_VER_43
:
4531 case RTL_GIGA_MAC_VER_44
:
4532 case RTL_GIGA_MAC_VER_45
:
4533 case RTL_GIGA_MAC_VER_46
:
4534 case RTL_GIGA_MAC_VER_47
:
4535 case RTL_GIGA_MAC_VER_48
:
4536 case RTL_GIGA_MAC_VER_49
:
4537 case RTL_GIGA_MAC_VER_50
:
4538 case RTL_GIGA_MAC_VER_51
:
4539 ops
->write
= r8168g_mdio_write
;
4540 ops
->read
= r8168g_mdio_read
;
4543 ops
->write
= r8169_mdio_write
;
4544 ops
->read
= r8169_mdio_read
;
4549 static void rtl_speed_down(struct rtl8169_private
*tp
)
4554 rtl_writephy(tp
, 0x1f, 0x0000);
4555 lpa
= rtl_readphy(tp
, MII_LPA
);
4557 if (lpa
& (LPA_10HALF
| LPA_10FULL
))
4558 adv
= ADVERTISED_10baseT_Half
| ADVERTISED_10baseT_Full
;
4559 else if (lpa
& (LPA_100HALF
| LPA_100FULL
))
4560 adv
= ADVERTISED_10baseT_Half
| ADVERTISED_10baseT_Full
|
4561 ADVERTISED_100baseT_Half
| ADVERTISED_100baseT_Full
;
4563 adv
= ADVERTISED_10baseT_Half
| ADVERTISED_10baseT_Full
|
4564 ADVERTISED_100baseT_Half
| ADVERTISED_100baseT_Full
|
4565 (tp
->mii
.supports_gmii
?
4566 ADVERTISED_1000baseT_Half
|
4567 ADVERTISED_1000baseT_Full
: 0);
4569 rtl8169_set_speed(tp
->dev
, AUTONEG_ENABLE
, SPEED_1000
, DUPLEX_FULL
,
4573 static void rtl_wol_suspend_quirk(struct rtl8169_private
*tp
)
4575 void __iomem
*ioaddr
= tp
->mmio_addr
;
4577 switch (tp
->mac_version
) {
4578 case RTL_GIGA_MAC_VER_25
:
4579 case RTL_GIGA_MAC_VER_26
:
4580 case RTL_GIGA_MAC_VER_29
:
4581 case RTL_GIGA_MAC_VER_30
:
4582 case RTL_GIGA_MAC_VER_32
:
4583 case RTL_GIGA_MAC_VER_33
:
4584 case RTL_GIGA_MAC_VER_34
:
4585 case RTL_GIGA_MAC_VER_37
:
4586 case RTL_GIGA_MAC_VER_38
:
4587 case RTL_GIGA_MAC_VER_39
:
4588 case RTL_GIGA_MAC_VER_40
:
4589 case RTL_GIGA_MAC_VER_41
:
4590 case RTL_GIGA_MAC_VER_42
:
4591 case RTL_GIGA_MAC_VER_43
:
4592 case RTL_GIGA_MAC_VER_44
:
4593 case RTL_GIGA_MAC_VER_45
:
4594 case RTL_GIGA_MAC_VER_46
:
4595 case RTL_GIGA_MAC_VER_47
:
4596 case RTL_GIGA_MAC_VER_48
:
4597 case RTL_GIGA_MAC_VER_49
:
4598 case RTL_GIGA_MAC_VER_50
:
4599 case RTL_GIGA_MAC_VER_51
:
4600 RTL_W32(RxConfig
, RTL_R32(RxConfig
) |
4601 AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
);
4608 static bool rtl_wol_pll_power_down(struct rtl8169_private
*tp
)
4610 if (!(__rtl8169_get_wol(tp
) & WAKE_ANY
))
4614 rtl_wol_suspend_quirk(tp
);
4619 static void r810x_phy_power_down(struct rtl8169_private
*tp
)
4621 rtl_writephy(tp
, 0x1f, 0x0000);
4622 rtl_writephy(tp
, MII_BMCR
, BMCR_PDOWN
);
4625 static void r810x_phy_power_up(struct rtl8169_private
*tp
)
4627 rtl_writephy(tp
, 0x1f, 0x0000);
4628 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
);
4631 static void r810x_pll_power_down(struct rtl8169_private
*tp
)
4633 void __iomem
*ioaddr
= tp
->mmio_addr
;
4635 if (rtl_wol_pll_power_down(tp
))
4638 r810x_phy_power_down(tp
);
4640 switch (tp
->mac_version
) {
4641 case RTL_GIGA_MAC_VER_07
:
4642 case RTL_GIGA_MAC_VER_08
:
4643 case RTL_GIGA_MAC_VER_09
:
4644 case RTL_GIGA_MAC_VER_10
:
4645 case RTL_GIGA_MAC_VER_13
:
4646 case RTL_GIGA_MAC_VER_16
:
4649 RTL_W8(PMCH
, RTL_R8(PMCH
) & ~0x80);
4654 static void r810x_pll_power_up(struct rtl8169_private
*tp
)
4656 void __iomem
*ioaddr
= tp
->mmio_addr
;
4658 r810x_phy_power_up(tp
);
4660 switch (tp
->mac_version
) {
4661 case RTL_GIGA_MAC_VER_07
:
4662 case RTL_GIGA_MAC_VER_08
:
4663 case RTL_GIGA_MAC_VER_09
:
4664 case RTL_GIGA_MAC_VER_10
:
4665 case RTL_GIGA_MAC_VER_13
:
4666 case RTL_GIGA_MAC_VER_16
:
4668 case RTL_GIGA_MAC_VER_47
:
4669 case RTL_GIGA_MAC_VER_48
:
4670 RTL_W8(PMCH
, RTL_R8(PMCH
) | 0xc0);
4673 RTL_W8(PMCH
, RTL_R8(PMCH
) | 0x80);
4678 static void r8168_phy_power_up(struct rtl8169_private
*tp
)
4680 rtl_writephy(tp
, 0x1f, 0x0000);
4681 switch (tp
->mac_version
) {
4682 case RTL_GIGA_MAC_VER_11
:
4683 case RTL_GIGA_MAC_VER_12
:
4684 case RTL_GIGA_MAC_VER_17
:
4685 case RTL_GIGA_MAC_VER_18
:
4686 case RTL_GIGA_MAC_VER_19
:
4687 case RTL_GIGA_MAC_VER_20
:
4688 case RTL_GIGA_MAC_VER_21
:
4689 case RTL_GIGA_MAC_VER_22
:
4690 case RTL_GIGA_MAC_VER_23
:
4691 case RTL_GIGA_MAC_VER_24
:
4692 case RTL_GIGA_MAC_VER_25
:
4693 case RTL_GIGA_MAC_VER_26
:
4694 case RTL_GIGA_MAC_VER_27
:
4695 case RTL_GIGA_MAC_VER_28
:
4696 case RTL_GIGA_MAC_VER_31
:
4697 rtl_writephy(tp
, 0x0e, 0x0000);
4702 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
);
4705 static void r8168_phy_power_down(struct rtl8169_private
*tp
)
4707 rtl_writephy(tp
, 0x1f, 0x0000);
4708 switch (tp
->mac_version
) {
4709 case RTL_GIGA_MAC_VER_32
:
4710 case RTL_GIGA_MAC_VER_33
:
4711 case RTL_GIGA_MAC_VER_40
:
4712 case RTL_GIGA_MAC_VER_41
:
4713 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
| BMCR_PDOWN
);
4716 case RTL_GIGA_MAC_VER_11
:
4717 case RTL_GIGA_MAC_VER_12
:
4718 case RTL_GIGA_MAC_VER_17
:
4719 case RTL_GIGA_MAC_VER_18
:
4720 case RTL_GIGA_MAC_VER_19
:
4721 case RTL_GIGA_MAC_VER_20
:
4722 case RTL_GIGA_MAC_VER_21
:
4723 case RTL_GIGA_MAC_VER_22
:
4724 case RTL_GIGA_MAC_VER_23
:
4725 case RTL_GIGA_MAC_VER_24
:
4726 case RTL_GIGA_MAC_VER_25
:
4727 case RTL_GIGA_MAC_VER_26
:
4728 case RTL_GIGA_MAC_VER_27
:
4729 case RTL_GIGA_MAC_VER_28
:
4730 case RTL_GIGA_MAC_VER_31
:
4731 rtl_writephy(tp
, 0x0e, 0x0200);
4733 rtl_writephy(tp
, MII_BMCR
, BMCR_PDOWN
);
4738 static void r8168_pll_power_down(struct rtl8169_private
*tp
)
4740 void __iomem
*ioaddr
= tp
->mmio_addr
;
4742 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_27
||
4743 tp
->mac_version
== RTL_GIGA_MAC_VER_28
||
4744 tp
->mac_version
== RTL_GIGA_MAC_VER_31
||
4745 tp
->mac_version
== RTL_GIGA_MAC_VER_49
||
4746 tp
->mac_version
== RTL_GIGA_MAC_VER_50
||
4747 tp
->mac_version
== RTL_GIGA_MAC_VER_51
) &&
4748 r8168_check_dash(tp
)) {
4752 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_23
||
4753 tp
->mac_version
== RTL_GIGA_MAC_VER_24
) &&
4754 (RTL_R16(CPlusCmd
) & ASF
)) {
4758 if (tp
->mac_version
== RTL_GIGA_MAC_VER_32
||
4759 tp
->mac_version
== RTL_GIGA_MAC_VER_33
)
4760 rtl_ephy_write(tp
, 0x19, 0xff64);
4762 if (rtl_wol_pll_power_down(tp
))
4765 r8168_phy_power_down(tp
);
4767 switch (tp
->mac_version
) {
4768 case RTL_GIGA_MAC_VER_25
:
4769 case RTL_GIGA_MAC_VER_26
:
4770 case RTL_GIGA_MAC_VER_27
:
4771 case RTL_GIGA_MAC_VER_28
:
4772 case RTL_GIGA_MAC_VER_31
:
4773 case RTL_GIGA_MAC_VER_32
:
4774 case RTL_GIGA_MAC_VER_33
:
4775 case RTL_GIGA_MAC_VER_44
:
4776 case RTL_GIGA_MAC_VER_45
:
4777 case RTL_GIGA_MAC_VER_46
:
4778 case RTL_GIGA_MAC_VER_50
:
4779 case RTL_GIGA_MAC_VER_51
:
4780 RTL_W8(PMCH
, RTL_R8(PMCH
) & ~0x80);
4782 case RTL_GIGA_MAC_VER_40
:
4783 case RTL_GIGA_MAC_VER_41
:
4784 case RTL_GIGA_MAC_VER_49
:
4785 rtl_w0w1_eri(tp
, 0x1a8, ERIAR_MASK_1111
, 0x00000000,
4786 0xfc000000, ERIAR_EXGMAC
);
4787 RTL_W8(PMCH
, RTL_R8(PMCH
) & ~0x80);
4792 static void r8168_pll_power_up(struct rtl8169_private
*tp
)
4794 void __iomem
*ioaddr
= tp
->mmio_addr
;
4796 switch (tp
->mac_version
) {
4797 case RTL_GIGA_MAC_VER_25
:
4798 case RTL_GIGA_MAC_VER_26
:
4799 case RTL_GIGA_MAC_VER_27
:
4800 case RTL_GIGA_MAC_VER_28
:
4801 case RTL_GIGA_MAC_VER_31
:
4802 case RTL_GIGA_MAC_VER_32
:
4803 case RTL_GIGA_MAC_VER_33
:
4804 RTL_W8(PMCH
, RTL_R8(PMCH
) | 0x80);
4806 case RTL_GIGA_MAC_VER_44
:
4807 case RTL_GIGA_MAC_VER_45
:
4808 case RTL_GIGA_MAC_VER_46
:
4809 case RTL_GIGA_MAC_VER_50
:
4810 case RTL_GIGA_MAC_VER_51
:
4811 RTL_W8(PMCH
, RTL_R8(PMCH
) | 0xc0);
4813 case RTL_GIGA_MAC_VER_40
:
4814 case RTL_GIGA_MAC_VER_41
:
4815 case RTL_GIGA_MAC_VER_49
:
4816 RTL_W8(PMCH
, RTL_R8(PMCH
) | 0xc0);
4817 rtl_w0w1_eri(tp
, 0x1a8, ERIAR_MASK_1111
, 0xfc000000,
4818 0x00000000, ERIAR_EXGMAC
);
4822 r8168_phy_power_up(tp
);
4825 static void rtl_generic_op(struct rtl8169_private
*tp
,
4826 void (*op
)(struct rtl8169_private
*))
4832 static void rtl_pll_power_down(struct rtl8169_private
*tp
)
4834 rtl_generic_op(tp
, tp
->pll_power_ops
.down
);
4837 static void rtl_pll_power_up(struct rtl8169_private
*tp
)
4839 rtl_generic_op(tp
, tp
->pll_power_ops
.up
);
4842 static void rtl_init_pll_power_ops(struct rtl8169_private
*tp
)
4844 struct pll_power_ops
*ops
= &tp
->pll_power_ops
;
4846 switch (tp
->mac_version
) {
4847 case RTL_GIGA_MAC_VER_07
:
4848 case RTL_GIGA_MAC_VER_08
:
4849 case RTL_GIGA_MAC_VER_09
:
4850 case RTL_GIGA_MAC_VER_10
:
4851 case RTL_GIGA_MAC_VER_16
:
4852 case RTL_GIGA_MAC_VER_29
:
4853 case RTL_GIGA_MAC_VER_30
:
4854 case RTL_GIGA_MAC_VER_37
:
4855 case RTL_GIGA_MAC_VER_39
:
4856 case RTL_GIGA_MAC_VER_43
:
4857 case RTL_GIGA_MAC_VER_47
:
4858 case RTL_GIGA_MAC_VER_48
:
4859 ops
->down
= r810x_pll_power_down
;
4860 ops
->up
= r810x_pll_power_up
;
4863 case RTL_GIGA_MAC_VER_11
:
4864 case RTL_GIGA_MAC_VER_12
:
4865 case RTL_GIGA_MAC_VER_17
:
4866 case RTL_GIGA_MAC_VER_18
:
4867 case RTL_GIGA_MAC_VER_19
:
4868 case RTL_GIGA_MAC_VER_20
:
4869 case RTL_GIGA_MAC_VER_21
:
4870 case RTL_GIGA_MAC_VER_22
:
4871 case RTL_GIGA_MAC_VER_23
:
4872 case RTL_GIGA_MAC_VER_24
:
4873 case RTL_GIGA_MAC_VER_25
:
4874 case RTL_GIGA_MAC_VER_26
:
4875 case RTL_GIGA_MAC_VER_27
:
4876 case RTL_GIGA_MAC_VER_28
:
4877 case RTL_GIGA_MAC_VER_31
:
4878 case RTL_GIGA_MAC_VER_32
:
4879 case RTL_GIGA_MAC_VER_33
:
4880 case RTL_GIGA_MAC_VER_34
:
4881 case RTL_GIGA_MAC_VER_35
:
4882 case RTL_GIGA_MAC_VER_36
:
4883 case RTL_GIGA_MAC_VER_38
:
4884 case RTL_GIGA_MAC_VER_40
:
4885 case RTL_GIGA_MAC_VER_41
:
4886 case RTL_GIGA_MAC_VER_42
:
4887 case RTL_GIGA_MAC_VER_44
:
4888 case RTL_GIGA_MAC_VER_45
:
4889 case RTL_GIGA_MAC_VER_46
:
4890 case RTL_GIGA_MAC_VER_49
:
4891 case RTL_GIGA_MAC_VER_50
:
4892 case RTL_GIGA_MAC_VER_51
:
4893 ops
->down
= r8168_pll_power_down
;
4894 ops
->up
= r8168_pll_power_up
;
4904 static void rtl_init_rxcfg(struct rtl8169_private
*tp
)
4906 void __iomem
*ioaddr
= tp
->mmio_addr
;
4908 switch (tp
->mac_version
) {
4909 case RTL_GIGA_MAC_VER_01
:
4910 case RTL_GIGA_MAC_VER_02
:
4911 case RTL_GIGA_MAC_VER_03
:
4912 case RTL_GIGA_MAC_VER_04
:
4913 case RTL_GIGA_MAC_VER_05
:
4914 case RTL_GIGA_MAC_VER_06
:
4915 case RTL_GIGA_MAC_VER_10
:
4916 case RTL_GIGA_MAC_VER_11
:
4917 case RTL_GIGA_MAC_VER_12
:
4918 case RTL_GIGA_MAC_VER_13
:
4919 case RTL_GIGA_MAC_VER_14
:
4920 case RTL_GIGA_MAC_VER_15
:
4921 case RTL_GIGA_MAC_VER_16
:
4922 case RTL_GIGA_MAC_VER_17
:
4923 RTL_W32(RxConfig
, RX_FIFO_THRESH
| RX_DMA_BURST
);
4925 case RTL_GIGA_MAC_VER_18
:
4926 case RTL_GIGA_MAC_VER_19
:
4927 case RTL_GIGA_MAC_VER_20
:
4928 case RTL_GIGA_MAC_VER_21
:
4929 case RTL_GIGA_MAC_VER_22
:
4930 case RTL_GIGA_MAC_VER_23
:
4931 case RTL_GIGA_MAC_VER_24
:
4932 case RTL_GIGA_MAC_VER_34
:
4933 case RTL_GIGA_MAC_VER_35
:
4934 RTL_W32(RxConfig
, RX128_INT_EN
| RX_MULTI_EN
| RX_DMA_BURST
);
4936 case RTL_GIGA_MAC_VER_40
:
4937 case RTL_GIGA_MAC_VER_41
:
4938 case RTL_GIGA_MAC_VER_42
:
4939 case RTL_GIGA_MAC_VER_43
:
4940 case RTL_GIGA_MAC_VER_44
:
4941 case RTL_GIGA_MAC_VER_45
:
4942 case RTL_GIGA_MAC_VER_46
:
4943 case RTL_GIGA_MAC_VER_47
:
4944 case RTL_GIGA_MAC_VER_48
:
4945 case RTL_GIGA_MAC_VER_49
:
4946 case RTL_GIGA_MAC_VER_50
:
4947 case RTL_GIGA_MAC_VER_51
:
4948 RTL_W32(RxConfig
, RX128_INT_EN
| RX_MULTI_EN
| RX_DMA_BURST
| RX_EARLY_OFF
);
4951 RTL_W32(RxConfig
, RX128_INT_EN
| RX_DMA_BURST
);
4956 static void rtl8169_init_ring_indexes(struct rtl8169_private
*tp
)
4958 tp
->dirty_tx
= tp
->cur_tx
= tp
->cur_rx
= 0;
4961 static void rtl_hw_jumbo_enable(struct rtl8169_private
*tp
)
4963 void __iomem
*ioaddr
= tp
->mmio_addr
;
4965 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
4966 rtl_generic_op(tp
, tp
->jumbo_ops
.enable
);
4967 RTL_W8(Cfg9346
, Cfg9346_Lock
);
4970 static void rtl_hw_jumbo_disable(struct rtl8169_private
*tp
)
4972 void __iomem
*ioaddr
= tp
->mmio_addr
;
4974 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
4975 rtl_generic_op(tp
, tp
->jumbo_ops
.disable
);
4976 RTL_W8(Cfg9346
, Cfg9346_Lock
);
4979 static void r8168c_hw_jumbo_enable(struct rtl8169_private
*tp
)
4981 void __iomem
*ioaddr
= tp
->mmio_addr
;
4983 RTL_W8(Config3
, RTL_R8(Config3
) | Jumbo_En0
);
4984 RTL_W8(Config4
, RTL_R8(Config4
) | Jumbo_En1
);
4985 rtl_tx_performance_tweak(tp
->pci_dev
, PCI_EXP_DEVCTL_READRQ_512B
);
4988 static void r8168c_hw_jumbo_disable(struct rtl8169_private
*tp
)
4990 void __iomem
*ioaddr
= tp
->mmio_addr
;
4992 RTL_W8(Config3
, RTL_R8(Config3
) & ~Jumbo_En0
);
4993 RTL_W8(Config4
, RTL_R8(Config4
) & ~Jumbo_En1
);
4994 rtl_tx_performance_tweak(tp
->pci_dev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4997 static void r8168dp_hw_jumbo_enable(struct rtl8169_private
*tp
)
4999 void __iomem
*ioaddr
= tp
->mmio_addr
;
5001 RTL_W8(Config3
, RTL_R8(Config3
) | Jumbo_En0
);
5004 static void r8168dp_hw_jumbo_disable(struct rtl8169_private
*tp
)
5006 void __iomem
*ioaddr
= tp
->mmio_addr
;
5008 RTL_W8(Config3
, RTL_R8(Config3
) & ~Jumbo_En0
);
5011 static void r8168e_hw_jumbo_enable(struct rtl8169_private
*tp
)
5013 void __iomem
*ioaddr
= tp
->mmio_addr
;
5015 RTL_W8(MaxTxPacketSize
, 0x3f);
5016 RTL_W8(Config3
, RTL_R8(Config3
) | Jumbo_En0
);
5017 RTL_W8(Config4
, RTL_R8(Config4
) | 0x01);
5018 rtl_tx_performance_tweak(tp
->pci_dev
, PCI_EXP_DEVCTL_READRQ_512B
);
5021 static void r8168e_hw_jumbo_disable(struct rtl8169_private
*tp
)
5023 void __iomem
*ioaddr
= tp
->mmio_addr
;
5025 RTL_W8(MaxTxPacketSize
, 0x0c);
5026 RTL_W8(Config3
, RTL_R8(Config3
) & ~Jumbo_En0
);
5027 RTL_W8(Config4
, RTL_R8(Config4
) & ~0x01);
5028 rtl_tx_performance_tweak(tp
->pci_dev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5031 static void r8168b_0_hw_jumbo_enable(struct rtl8169_private
*tp
)
5033 rtl_tx_performance_tweak(tp
->pci_dev
,
5034 PCI_EXP_DEVCTL_READRQ_512B
| PCI_EXP_DEVCTL_NOSNOOP_EN
);
5037 static void r8168b_0_hw_jumbo_disable(struct rtl8169_private
*tp
)
5039 rtl_tx_performance_tweak(tp
->pci_dev
,
5040 (0x5 << MAX_READ_REQUEST_SHIFT
) | PCI_EXP_DEVCTL_NOSNOOP_EN
);
5043 static void r8168b_1_hw_jumbo_enable(struct rtl8169_private
*tp
)
5045 void __iomem
*ioaddr
= tp
->mmio_addr
;
5047 r8168b_0_hw_jumbo_enable(tp
);
5049 RTL_W8(Config4
, RTL_R8(Config4
) | (1 << 0));
5052 static void r8168b_1_hw_jumbo_disable(struct rtl8169_private
*tp
)
5054 void __iomem
*ioaddr
= tp
->mmio_addr
;
5056 r8168b_0_hw_jumbo_disable(tp
);
5058 RTL_W8(Config4
, RTL_R8(Config4
) & ~(1 << 0));
5061 static void rtl_init_jumbo_ops(struct rtl8169_private
*tp
)
5063 struct jumbo_ops
*ops
= &tp
->jumbo_ops
;
5065 switch (tp
->mac_version
) {
5066 case RTL_GIGA_MAC_VER_11
:
5067 ops
->disable
= r8168b_0_hw_jumbo_disable
;
5068 ops
->enable
= r8168b_0_hw_jumbo_enable
;
5070 case RTL_GIGA_MAC_VER_12
:
5071 case RTL_GIGA_MAC_VER_17
:
5072 ops
->disable
= r8168b_1_hw_jumbo_disable
;
5073 ops
->enable
= r8168b_1_hw_jumbo_enable
;
5075 case RTL_GIGA_MAC_VER_18
: /* Wild guess. Needs info from Realtek. */
5076 case RTL_GIGA_MAC_VER_19
:
5077 case RTL_GIGA_MAC_VER_20
:
5078 case RTL_GIGA_MAC_VER_21
: /* Wild guess. Needs info from Realtek. */
5079 case RTL_GIGA_MAC_VER_22
:
5080 case RTL_GIGA_MAC_VER_23
:
5081 case RTL_GIGA_MAC_VER_24
:
5082 case RTL_GIGA_MAC_VER_25
:
5083 case RTL_GIGA_MAC_VER_26
:
5084 ops
->disable
= r8168c_hw_jumbo_disable
;
5085 ops
->enable
= r8168c_hw_jumbo_enable
;
5087 case RTL_GIGA_MAC_VER_27
:
5088 case RTL_GIGA_MAC_VER_28
:
5089 ops
->disable
= r8168dp_hw_jumbo_disable
;
5090 ops
->enable
= r8168dp_hw_jumbo_enable
;
5092 case RTL_GIGA_MAC_VER_31
: /* Wild guess. Needs info from Realtek. */
5093 case RTL_GIGA_MAC_VER_32
:
5094 case RTL_GIGA_MAC_VER_33
:
5095 case RTL_GIGA_MAC_VER_34
:
5096 ops
->disable
= r8168e_hw_jumbo_disable
;
5097 ops
->enable
= r8168e_hw_jumbo_enable
;
5101 * No action needed for jumbo frames with 8169.
5102 * No jumbo for 810x at all.
5104 case RTL_GIGA_MAC_VER_40
:
5105 case RTL_GIGA_MAC_VER_41
:
5106 case RTL_GIGA_MAC_VER_42
:
5107 case RTL_GIGA_MAC_VER_43
:
5108 case RTL_GIGA_MAC_VER_44
:
5109 case RTL_GIGA_MAC_VER_45
:
5110 case RTL_GIGA_MAC_VER_46
:
5111 case RTL_GIGA_MAC_VER_47
:
5112 case RTL_GIGA_MAC_VER_48
:
5113 case RTL_GIGA_MAC_VER_49
:
5114 case RTL_GIGA_MAC_VER_50
:
5115 case RTL_GIGA_MAC_VER_51
:
5117 ops
->disable
= NULL
;
5123 DECLARE_RTL_COND(rtl_chipcmd_cond
)
5125 void __iomem
*ioaddr
= tp
->mmio_addr
;
5127 return RTL_R8(ChipCmd
) & CmdReset
;
5130 static void rtl_hw_reset(struct rtl8169_private
*tp
)
5132 void __iomem
*ioaddr
= tp
->mmio_addr
;
5134 RTL_W8(ChipCmd
, CmdReset
);
5136 rtl_udelay_loop_wait_low(tp
, &rtl_chipcmd_cond
, 100, 100);
5139 static void rtl_request_uncached_firmware(struct rtl8169_private
*tp
)
5141 struct rtl_fw
*rtl_fw
;
5145 name
= rtl_lookup_firmware_name(tp
);
5147 goto out_no_firmware
;
5149 rtl_fw
= kzalloc(sizeof(*rtl_fw
), GFP_KERNEL
);
5153 rc
= request_firmware(&rtl_fw
->fw
, name
, &tp
->pci_dev
->dev
);
5157 rc
= rtl_check_firmware(tp
, rtl_fw
);
5159 goto err_release_firmware
;
5161 tp
->rtl_fw
= rtl_fw
;
5165 err_release_firmware
:
5166 release_firmware(rtl_fw
->fw
);
5170 netif_warn(tp
, ifup
, tp
->dev
, "unable to load firmware patch %s (%d)\n",
5177 static void rtl_request_firmware(struct rtl8169_private
*tp
)
5179 if (IS_ERR(tp
->rtl_fw
))
5180 rtl_request_uncached_firmware(tp
);
5183 static void rtl_rx_close(struct rtl8169_private
*tp
)
5185 void __iomem
*ioaddr
= tp
->mmio_addr
;
5187 RTL_W32(RxConfig
, RTL_R32(RxConfig
) & ~RX_CONFIG_ACCEPT_MASK
);
5190 DECLARE_RTL_COND(rtl_npq_cond
)
5192 void __iomem
*ioaddr
= tp
->mmio_addr
;
5194 return RTL_R8(TxPoll
) & NPQ
;
5197 DECLARE_RTL_COND(rtl_txcfg_empty_cond
)
5199 void __iomem
*ioaddr
= tp
->mmio_addr
;
5201 return RTL_R32(TxConfig
) & TXCFG_EMPTY
;
5204 static void rtl8169_hw_reset(struct rtl8169_private
*tp
)
5206 void __iomem
*ioaddr
= tp
->mmio_addr
;
5208 /* Disable interrupts */
5209 rtl8169_irq_mask_and_ack(tp
);
5213 if (tp
->mac_version
== RTL_GIGA_MAC_VER_27
||
5214 tp
->mac_version
== RTL_GIGA_MAC_VER_28
||
5215 tp
->mac_version
== RTL_GIGA_MAC_VER_31
) {
5216 rtl_udelay_loop_wait_low(tp
, &rtl_npq_cond
, 20, 42*42);
5217 } else if (tp
->mac_version
== RTL_GIGA_MAC_VER_34
||
5218 tp
->mac_version
== RTL_GIGA_MAC_VER_35
||
5219 tp
->mac_version
== RTL_GIGA_MAC_VER_36
||
5220 tp
->mac_version
== RTL_GIGA_MAC_VER_37
||
5221 tp
->mac_version
== RTL_GIGA_MAC_VER_38
||
5222 tp
->mac_version
== RTL_GIGA_MAC_VER_40
||
5223 tp
->mac_version
== RTL_GIGA_MAC_VER_41
||
5224 tp
->mac_version
== RTL_GIGA_MAC_VER_42
||
5225 tp
->mac_version
== RTL_GIGA_MAC_VER_43
||
5226 tp
->mac_version
== RTL_GIGA_MAC_VER_44
||
5227 tp
->mac_version
== RTL_GIGA_MAC_VER_45
||
5228 tp
->mac_version
== RTL_GIGA_MAC_VER_46
||
5229 tp
->mac_version
== RTL_GIGA_MAC_VER_47
||
5230 tp
->mac_version
== RTL_GIGA_MAC_VER_48
||
5231 tp
->mac_version
== RTL_GIGA_MAC_VER_49
||
5232 tp
->mac_version
== RTL_GIGA_MAC_VER_50
||
5233 tp
->mac_version
== RTL_GIGA_MAC_VER_51
) {
5234 RTL_W8(ChipCmd
, RTL_R8(ChipCmd
) | StopReq
);
5235 rtl_udelay_loop_wait_high(tp
, &rtl_txcfg_empty_cond
, 100, 666);
5237 RTL_W8(ChipCmd
, RTL_R8(ChipCmd
) | StopReq
);
5244 static void rtl_set_rx_tx_config_registers(struct rtl8169_private
*tp
)
5246 void __iomem
*ioaddr
= tp
->mmio_addr
;
5248 /* Set DMA burst size and Interframe Gap Time */
5249 RTL_W32(TxConfig
, (TX_DMA_BURST
<< TxDMAShift
) |
5250 (InterFrameGap
<< TxInterFrameGapShift
));
5253 static void rtl_hw_start(struct net_device
*dev
)
5255 struct rtl8169_private
*tp
= netdev_priv(dev
);
5259 rtl_irq_enable_all(tp
);
5262 static void rtl_set_rx_tx_desc_registers(struct rtl8169_private
*tp
,
5263 void __iomem
*ioaddr
)
5266 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
5267 * register to be written before TxDescAddrLow to work.
5268 * Switching from MMIO to I/O access fixes the issue as well.
5270 RTL_W32(TxDescStartAddrHigh
, ((u64
) tp
->TxPhyAddr
) >> 32);
5271 RTL_W32(TxDescStartAddrLow
, ((u64
) tp
->TxPhyAddr
) & DMA_BIT_MASK(32));
5272 RTL_W32(RxDescAddrHigh
, ((u64
) tp
->RxPhyAddr
) >> 32);
5273 RTL_W32(RxDescAddrLow
, ((u64
) tp
->RxPhyAddr
) & DMA_BIT_MASK(32));
5276 static u16
rtl_rw_cpluscmd(void __iomem
*ioaddr
)
5280 cmd
= RTL_R16(CPlusCmd
);
5281 RTL_W16(CPlusCmd
, cmd
);
5285 static void rtl_set_rx_max_size(void __iomem
*ioaddr
, unsigned int rx_buf_sz
)
5287 /* Low hurts. Let's disable the filtering. */
5288 RTL_W16(RxMaxSize
, rx_buf_sz
+ 1);
5291 static void rtl8169_set_magic_reg(void __iomem
*ioaddr
, unsigned mac_version
)
5293 static const struct rtl_cfg2_info
{
5298 { RTL_GIGA_MAC_VER_05
, PCI_Clock_33MHz
, 0x000fff00 }, // 8110SCd
5299 { RTL_GIGA_MAC_VER_05
, PCI_Clock_66MHz
, 0x000fffff },
5300 { RTL_GIGA_MAC_VER_06
, PCI_Clock_33MHz
, 0x00ffff00 }, // 8110SCe
5301 { RTL_GIGA_MAC_VER_06
, PCI_Clock_66MHz
, 0x00ffffff }
5303 const struct rtl_cfg2_info
*p
= cfg2_info
;
5307 clk
= RTL_R8(Config2
) & PCI_Clock_66MHz
;
5308 for (i
= 0; i
< ARRAY_SIZE(cfg2_info
); i
++, p
++) {
5309 if ((p
->mac_version
== mac_version
) && (p
->clk
== clk
)) {
5310 RTL_W32(0x7c, p
->val
);
5316 static void rtl_set_rx_mode(struct net_device
*dev
)
5318 struct rtl8169_private
*tp
= netdev_priv(dev
);
5319 void __iomem
*ioaddr
= tp
->mmio_addr
;
5320 u32 mc_filter
[2]; /* Multicast hash filter */
5324 if (dev
->flags
& IFF_PROMISC
) {
5325 /* Unconditionally log net taps. */
5326 netif_notice(tp
, link
, dev
, "Promiscuous mode enabled\n");
5328 AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
|
5330 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
5331 } else if ((netdev_mc_count(dev
) > multicast_filter_limit
) ||
5332 (dev
->flags
& IFF_ALLMULTI
)) {
5333 /* Too many to filter perfectly -- accept all multicasts. */
5334 rx_mode
= AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
;
5335 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
5337 struct netdev_hw_addr
*ha
;
5339 rx_mode
= AcceptBroadcast
| AcceptMyPhys
;
5340 mc_filter
[1] = mc_filter
[0] = 0;
5341 netdev_for_each_mc_addr(ha
, dev
) {
5342 int bit_nr
= ether_crc(ETH_ALEN
, ha
->addr
) >> 26;
5343 mc_filter
[bit_nr
>> 5] |= 1 << (bit_nr
& 31);
5344 rx_mode
|= AcceptMulticast
;
5348 if (dev
->features
& NETIF_F_RXALL
)
5349 rx_mode
|= (AcceptErr
| AcceptRunt
);
5351 tmp
= (RTL_R32(RxConfig
) & ~RX_CONFIG_ACCEPT_MASK
) | rx_mode
;
5353 if (tp
->mac_version
> RTL_GIGA_MAC_VER_06
) {
5354 u32 data
= mc_filter
[0];
5356 mc_filter
[0] = swab32(mc_filter
[1]);
5357 mc_filter
[1] = swab32(data
);
5360 if (tp
->mac_version
== RTL_GIGA_MAC_VER_35
)
5361 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
5363 RTL_W32(MAR0
+ 4, mc_filter
[1]);
5364 RTL_W32(MAR0
+ 0, mc_filter
[0]);
5366 RTL_W32(RxConfig
, tmp
);
5369 static void rtl_hw_start_8169(struct net_device
*dev
)
5371 struct rtl8169_private
*tp
= netdev_priv(dev
);
5372 void __iomem
*ioaddr
= tp
->mmio_addr
;
5373 struct pci_dev
*pdev
= tp
->pci_dev
;
5375 if (tp
->mac_version
== RTL_GIGA_MAC_VER_05
) {
5376 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) | PCIMulRW
);
5377 pci_write_config_byte(pdev
, PCI_CACHE_LINE_SIZE
, 0x08);
5380 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
5381 if (tp
->mac_version
== RTL_GIGA_MAC_VER_01
||
5382 tp
->mac_version
== RTL_GIGA_MAC_VER_02
||
5383 tp
->mac_version
== RTL_GIGA_MAC_VER_03
||
5384 tp
->mac_version
== RTL_GIGA_MAC_VER_04
)
5385 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
5389 RTL_W8(EarlyTxThres
, NoEarlyTx
);
5391 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
5393 if (tp
->mac_version
== RTL_GIGA_MAC_VER_01
||
5394 tp
->mac_version
== RTL_GIGA_MAC_VER_02
||
5395 tp
->mac_version
== RTL_GIGA_MAC_VER_03
||
5396 tp
->mac_version
== RTL_GIGA_MAC_VER_04
)
5397 rtl_set_rx_tx_config_registers(tp
);
5399 tp
->cp_cmd
|= rtl_rw_cpluscmd(ioaddr
) | PCIMulRW
;
5401 if (tp
->mac_version
== RTL_GIGA_MAC_VER_02
||
5402 tp
->mac_version
== RTL_GIGA_MAC_VER_03
) {
5403 dprintk("Set MAC Reg C+CR Offset 0xe0. "
5404 "Bit-3 and bit-14 MUST be 1\n");
5405 tp
->cp_cmd
|= (1 << 14);
5408 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
5410 rtl8169_set_magic_reg(ioaddr
, tp
->mac_version
);
5413 * Undocumented corner. Supposedly:
5414 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
5416 RTL_W16(IntrMitigate
, 0x0000);
5418 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
5420 if (tp
->mac_version
!= RTL_GIGA_MAC_VER_01
&&
5421 tp
->mac_version
!= RTL_GIGA_MAC_VER_02
&&
5422 tp
->mac_version
!= RTL_GIGA_MAC_VER_03
&&
5423 tp
->mac_version
!= RTL_GIGA_MAC_VER_04
) {
5424 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
5425 rtl_set_rx_tx_config_registers(tp
);
5428 RTL_W8(Cfg9346
, Cfg9346_Lock
);
5430 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
5433 RTL_W32(RxMissed
, 0);
5435 rtl_set_rx_mode(dev
);
5437 /* no early-rx interrupts */
5438 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xf000);
5441 static void rtl_csi_write(struct rtl8169_private
*tp
, int addr
, int value
)
5443 if (tp
->csi_ops
.write
)
5444 tp
->csi_ops
.write(tp
, addr
, value
);
5447 static u32
rtl_csi_read(struct rtl8169_private
*tp
, int addr
)
5449 return tp
->csi_ops
.read
? tp
->csi_ops
.read(tp
, addr
) : ~0;
5452 static void rtl_csi_access_enable(struct rtl8169_private
*tp
, u32 bits
)
5456 csi
= rtl_csi_read(tp
, 0x070c) & 0x00ffffff;
5457 rtl_csi_write(tp
, 0x070c, csi
| bits
);
5460 static void rtl_csi_access_enable_1(struct rtl8169_private
*tp
)
5462 rtl_csi_access_enable(tp
, 0x17000000);
5465 static void rtl_csi_access_enable_2(struct rtl8169_private
*tp
)
5467 rtl_csi_access_enable(tp
, 0x27000000);
5470 DECLARE_RTL_COND(rtl_csiar_cond
)
5472 void __iomem
*ioaddr
= tp
->mmio_addr
;
5474 return RTL_R32(CSIAR
) & CSIAR_FLAG
;
5477 static void r8169_csi_write(struct rtl8169_private
*tp
, int addr
, int value
)
5479 void __iomem
*ioaddr
= tp
->mmio_addr
;
5481 RTL_W32(CSIDR
, value
);
5482 RTL_W32(CSIAR
, CSIAR_WRITE_CMD
| (addr
& CSIAR_ADDR_MASK
) |
5483 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
5485 rtl_udelay_loop_wait_low(tp
, &rtl_csiar_cond
, 10, 100);
5488 static u32
r8169_csi_read(struct rtl8169_private
*tp
, int addr
)
5490 void __iomem
*ioaddr
= tp
->mmio_addr
;
5492 RTL_W32(CSIAR
, (addr
& CSIAR_ADDR_MASK
) |
5493 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
5495 return rtl_udelay_loop_wait_high(tp
, &rtl_csiar_cond
, 10, 100) ?
5496 RTL_R32(CSIDR
) : ~0;
5499 static void r8402_csi_write(struct rtl8169_private
*tp
, int addr
, int value
)
5501 void __iomem
*ioaddr
= tp
->mmio_addr
;
5503 RTL_W32(CSIDR
, value
);
5504 RTL_W32(CSIAR
, CSIAR_WRITE_CMD
| (addr
& CSIAR_ADDR_MASK
) |
5505 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
|
5508 rtl_udelay_loop_wait_low(tp
, &rtl_csiar_cond
, 10, 100);
5511 static u32
r8402_csi_read(struct rtl8169_private
*tp
, int addr
)
5513 void __iomem
*ioaddr
= tp
->mmio_addr
;
5515 RTL_W32(CSIAR
, (addr
& CSIAR_ADDR_MASK
) | CSIAR_FUNC_NIC
|
5516 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
5518 return rtl_udelay_loop_wait_high(tp
, &rtl_csiar_cond
, 10, 100) ?
5519 RTL_R32(CSIDR
) : ~0;
5522 static void r8411_csi_write(struct rtl8169_private
*tp
, int addr
, int value
)
5524 void __iomem
*ioaddr
= tp
->mmio_addr
;
5526 RTL_W32(CSIDR
, value
);
5527 RTL_W32(CSIAR
, CSIAR_WRITE_CMD
| (addr
& CSIAR_ADDR_MASK
) |
5528 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
|
5531 rtl_udelay_loop_wait_low(tp
, &rtl_csiar_cond
, 10, 100);
5534 static u32
r8411_csi_read(struct rtl8169_private
*tp
, int addr
)
5536 void __iomem
*ioaddr
= tp
->mmio_addr
;
5538 RTL_W32(CSIAR
, (addr
& CSIAR_ADDR_MASK
) | CSIAR_FUNC_NIC2
|
5539 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
5541 return rtl_udelay_loop_wait_high(tp
, &rtl_csiar_cond
, 10, 100) ?
5542 RTL_R32(CSIDR
) : ~0;
5545 static void rtl_init_csi_ops(struct rtl8169_private
*tp
)
5547 struct csi_ops
*ops
= &tp
->csi_ops
;
5549 switch (tp
->mac_version
) {
5550 case RTL_GIGA_MAC_VER_01
:
5551 case RTL_GIGA_MAC_VER_02
:
5552 case RTL_GIGA_MAC_VER_03
:
5553 case RTL_GIGA_MAC_VER_04
:
5554 case RTL_GIGA_MAC_VER_05
:
5555 case RTL_GIGA_MAC_VER_06
:
5556 case RTL_GIGA_MAC_VER_10
:
5557 case RTL_GIGA_MAC_VER_11
:
5558 case RTL_GIGA_MAC_VER_12
:
5559 case RTL_GIGA_MAC_VER_13
:
5560 case RTL_GIGA_MAC_VER_14
:
5561 case RTL_GIGA_MAC_VER_15
:
5562 case RTL_GIGA_MAC_VER_16
:
5563 case RTL_GIGA_MAC_VER_17
:
5568 case RTL_GIGA_MAC_VER_37
:
5569 case RTL_GIGA_MAC_VER_38
:
5570 ops
->write
= r8402_csi_write
;
5571 ops
->read
= r8402_csi_read
;
5574 case RTL_GIGA_MAC_VER_44
:
5575 ops
->write
= r8411_csi_write
;
5576 ops
->read
= r8411_csi_read
;
5580 ops
->write
= r8169_csi_write
;
5581 ops
->read
= r8169_csi_read
;
5587 unsigned int offset
;
5592 static void rtl_ephy_init(struct rtl8169_private
*tp
, const struct ephy_info
*e
,
5598 w
= (rtl_ephy_read(tp
, e
->offset
) & ~e
->mask
) | e
->bits
;
5599 rtl_ephy_write(tp
, e
->offset
, w
);
5604 static void rtl_disable_clock_request(struct pci_dev
*pdev
)
5606 pcie_capability_clear_word(pdev
, PCI_EXP_LNKCTL
,
5607 PCI_EXP_LNKCTL_CLKREQ_EN
);
5610 static void rtl_enable_clock_request(struct pci_dev
*pdev
)
5612 pcie_capability_set_word(pdev
, PCI_EXP_LNKCTL
,
5613 PCI_EXP_LNKCTL_CLKREQ_EN
);
5616 static void rtl_pcie_state_l2l3_enable(struct rtl8169_private
*tp
, bool enable
)
5618 void __iomem
*ioaddr
= tp
->mmio_addr
;
5621 data
= RTL_R8(Config3
);
5626 data
&= ~Rdy_to_L23
;
5628 RTL_W8(Config3
, data
);
5631 #define R8168_CPCMD_QUIRK_MASK (\
5642 static void rtl_hw_start_8168bb(struct rtl8169_private
*tp
)
5644 void __iomem
*ioaddr
= tp
->mmio_addr
;
5645 struct pci_dev
*pdev
= tp
->pci_dev
;
5647 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
5649 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
5651 if (tp
->dev
->mtu
<= ETH_DATA_LEN
) {
5652 rtl_tx_performance_tweak(pdev
, (0x5 << MAX_READ_REQUEST_SHIFT
) |
5653 PCI_EXP_DEVCTL_NOSNOOP_EN
);
5657 static void rtl_hw_start_8168bef(struct rtl8169_private
*tp
)
5659 void __iomem
*ioaddr
= tp
->mmio_addr
;
5661 rtl_hw_start_8168bb(tp
);
5663 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
5665 RTL_W8(Config4
, RTL_R8(Config4
) & ~(1 << 0));
5668 static void __rtl_hw_start_8168cp(struct rtl8169_private
*tp
)
5670 void __iomem
*ioaddr
= tp
->mmio_addr
;
5671 struct pci_dev
*pdev
= tp
->pci_dev
;
5673 RTL_W8(Config1
, RTL_R8(Config1
) | Speed_down
);
5675 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
5677 if (tp
->dev
->mtu
<= ETH_DATA_LEN
)
5678 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5680 rtl_disable_clock_request(pdev
);
5682 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
5685 static void rtl_hw_start_8168cp_1(struct rtl8169_private
*tp
)
5687 static const struct ephy_info e_info_8168cp
[] = {
5688 { 0x01, 0, 0x0001 },
5689 { 0x02, 0x0800, 0x1000 },
5690 { 0x03, 0, 0x0042 },
5691 { 0x06, 0x0080, 0x0000 },
5695 rtl_csi_access_enable_2(tp
);
5697 rtl_ephy_init(tp
, e_info_8168cp
, ARRAY_SIZE(e_info_8168cp
));
5699 __rtl_hw_start_8168cp(tp
);
5702 static void rtl_hw_start_8168cp_2(struct rtl8169_private
*tp
)
5704 void __iomem
*ioaddr
= tp
->mmio_addr
;
5705 struct pci_dev
*pdev
= tp
->pci_dev
;
5707 rtl_csi_access_enable_2(tp
);
5709 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
5711 if (tp
->dev
->mtu
<= ETH_DATA_LEN
)
5712 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5714 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
5717 static void rtl_hw_start_8168cp_3(struct rtl8169_private
*tp
)
5719 void __iomem
*ioaddr
= tp
->mmio_addr
;
5720 struct pci_dev
*pdev
= tp
->pci_dev
;
5722 rtl_csi_access_enable_2(tp
);
5724 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
5727 RTL_W8(DBG_REG
, 0x20);
5729 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
5731 if (tp
->dev
->mtu
<= ETH_DATA_LEN
)
5732 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5734 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
5737 static void rtl_hw_start_8168c_1(struct rtl8169_private
*tp
)
5739 void __iomem
*ioaddr
= tp
->mmio_addr
;
5740 static const struct ephy_info e_info_8168c_1
[] = {
5741 { 0x02, 0x0800, 0x1000 },
5742 { 0x03, 0, 0x0002 },
5743 { 0x06, 0x0080, 0x0000 }
5746 rtl_csi_access_enable_2(tp
);
5748 RTL_W8(DBG_REG
, 0x06 | FIX_NAK_1
| FIX_NAK_2
);
5750 rtl_ephy_init(tp
, e_info_8168c_1
, ARRAY_SIZE(e_info_8168c_1
));
5752 __rtl_hw_start_8168cp(tp
);
5755 static void rtl_hw_start_8168c_2(struct rtl8169_private
*tp
)
5757 static const struct ephy_info e_info_8168c_2
[] = {
5758 { 0x01, 0, 0x0001 },
5759 { 0x03, 0x0400, 0x0220 }
5762 rtl_csi_access_enable_2(tp
);
5764 rtl_ephy_init(tp
, e_info_8168c_2
, ARRAY_SIZE(e_info_8168c_2
));
5766 __rtl_hw_start_8168cp(tp
);
5769 static void rtl_hw_start_8168c_3(struct rtl8169_private
*tp
)
5771 rtl_hw_start_8168c_2(tp
);
5774 static void rtl_hw_start_8168c_4(struct rtl8169_private
*tp
)
5776 rtl_csi_access_enable_2(tp
);
5778 __rtl_hw_start_8168cp(tp
);
5781 static void rtl_hw_start_8168d(struct rtl8169_private
*tp
)
5783 void __iomem
*ioaddr
= tp
->mmio_addr
;
5784 struct pci_dev
*pdev
= tp
->pci_dev
;
5786 rtl_csi_access_enable_2(tp
);
5788 rtl_disable_clock_request(pdev
);
5790 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
5792 if (tp
->dev
->mtu
<= ETH_DATA_LEN
)
5793 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5795 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
5798 static void rtl_hw_start_8168dp(struct rtl8169_private
*tp
)
5800 void __iomem
*ioaddr
= tp
->mmio_addr
;
5801 struct pci_dev
*pdev
= tp
->pci_dev
;
5803 rtl_csi_access_enable_1(tp
);
5805 if (tp
->dev
->mtu
<= ETH_DATA_LEN
)
5806 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5808 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
5810 rtl_disable_clock_request(pdev
);
5813 static void rtl_hw_start_8168d_4(struct rtl8169_private
*tp
)
5815 void __iomem
*ioaddr
= tp
->mmio_addr
;
5816 struct pci_dev
*pdev
= tp
->pci_dev
;
5817 static const struct ephy_info e_info_8168d_4
[] = {
5818 { 0x0b, 0x0000, 0x0048 },
5819 { 0x19, 0x0020, 0x0050 },
5820 { 0x0c, 0x0100, 0x0020 }
5823 rtl_csi_access_enable_1(tp
);
5825 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5827 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
5829 rtl_ephy_init(tp
, e_info_8168d_4
, ARRAY_SIZE(e_info_8168d_4
));
5831 rtl_enable_clock_request(pdev
);
5834 static void rtl_hw_start_8168e_1(struct rtl8169_private
*tp
)
5836 void __iomem
*ioaddr
= tp
->mmio_addr
;
5837 struct pci_dev
*pdev
= tp
->pci_dev
;
5838 static const struct ephy_info e_info_8168e_1
[] = {
5839 { 0x00, 0x0200, 0x0100 },
5840 { 0x00, 0x0000, 0x0004 },
5841 { 0x06, 0x0002, 0x0001 },
5842 { 0x06, 0x0000, 0x0030 },
5843 { 0x07, 0x0000, 0x2000 },
5844 { 0x00, 0x0000, 0x0020 },
5845 { 0x03, 0x5800, 0x2000 },
5846 { 0x03, 0x0000, 0x0001 },
5847 { 0x01, 0x0800, 0x1000 },
5848 { 0x07, 0x0000, 0x4000 },
5849 { 0x1e, 0x0000, 0x2000 },
5850 { 0x19, 0xffff, 0xfe6c },
5851 { 0x0a, 0x0000, 0x0040 }
5854 rtl_csi_access_enable_2(tp
);
5856 rtl_ephy_init(tp
, e_info_8168e_1
, ARRAY_SIZE(e_info_8168e_1
));
5858 if (tp
->dev
->mtu
<= ETH_DATA_LEN
)
5859 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5861 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
5863 rtl_disable_clock_request(pdev
);
5865 /* Reset tx FIFO pointer */
5866 RTL_W32(MISC
, RTL_R32(MISC
) | TXPLA_RST
);
5867 RTL_W32(MISC
, RTL_R32(MISC
) & ~TXPLA_RST
);
5869 RTL_W8(Config5
, RTL_R8(Config5
) & ~Spi_en
);
5872 static void rtl_hw_start_8168e_2(struct rtl8169_private
*tp
)
5874 void __iomem
*ioaddr
= tp
->mmio_addr
;
5875 struct pci_dev
*pdev
= tp
->pci_dev
;
5876 static const struct ephy_info e_info_8168e_2
[] = {
5877 { 0x09, 0x0000, 0x0080 },
5878 { 0x19, 0x0000, 0x0224 }
5881 rtl_csi_access_enable_1(tp
);
5883 rtl_ephy_init(tp
, e_info_8168e_2
, ARRAY_SIZE(e_info_8168e_2
));
5885 if (tp
->dev
->mtu
<= ETH_DATA_LEN
)
5886 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5888 rtl_eri_write(tp
, 0xc0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
5889 rtl_eri_write(tp
, 0xb8, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
5890 rtl_eri_write(tp
, 0xc8, ERIAR_MASK_1111
, 0x00100002, ERIAR_EXGMAC
);
5891 rtl_eri_write(tp
, 0xe8, ERIAR_MASK_1111
, 0x00100006, ERIAR_EXGMAC
);
5892 rtl_eri_write(tp
, 0xcc, ERIAR_MASK_1111
, 0x00000050, ERIAR_EXGMAC
);
5893 rtl_eri_write(tp
, 0xd0, ERIAR_MASK_1111
, 0x07ff0060, ERIAR_EXGMAC
);
5894 rtl_w0w1_eri(tp
, 0x1b0, ERIAR_MASK_0001
, 0x10, 0x00, ERIAR_EXGMAC
);
5895 rtl_w0w1_eri(tp
, 0x0d4, ERIAR_MASK_0011
, 0x0c00, 0xff00, ERIAR_EXGMAC
);
5897 RTL_W8(MaxTxPacketSize
, EarlySize
);
5899 rtl_disable_clock_request(pdev
);
5901 RTL_W32(TxConfig
, RTL_R32(TxConfig
) | TXCFG_AUTO_FIFO
);
5902 RTL_W8(MCU
, RTL_R8(MCU
) & ~NOW_IS_OOB
);
5904 /* Adjust EEE LED frequency */
5905 RTL_W8(EEE_LED
, RTL_R8(EEE_LED
) & ~0x07);
5907 RTL_W8(DLLPR
, RTL_R8(DLLPR
) | PFM_EN
);
5908 RTL_W32(MISC
, RTL_R32(MISC
) | PWM_EN
);
5909 RTL_W8(Config5
, RTL_R8(Config5
) & ~Spi_en
);
5912 static void rtl_hw_start_8168f(struct rtl8169_private
*tp
)
5914 void __iomem
*ioaddr
= tp
->mmio_addr
;
5915 struct pci_dev
*pdev
= tp
->pci_dev
;
5917 rtl_csi_access_enable_2(tp
);
5919 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5921 rtl_eri_write(tp
, 0xc0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
5922 rtl_eri_write(tp
, 0xb8, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
5923 rtl_eri_write(tp
, 0xc8, ERIAR_MASK_1111
, 0x00100002, ERIAR_EXGMAC
);
5924 rtl_eri_write(tp
, 0xe8, ERIAR_MASK_1111
, 0x00100006, ERIAR_EXGMAC
);
5925 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x00, 0x01, ERIAR_EXGMAC
);
5926 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x01, 0x00, ERIAR_EXGMAC
);
5927 rtl_w0w1_eri(tp
, 0x1b0, ERIAR_MASK_0001
, 0x10, 0x00, ERIAR_EXGMAC
);
5928 rtl_w0w1_eri(tp
, 0x1d0, ERIAR_MASK_0001
, 0x10, 0x00, ERIAR_EXGMAC
);
5929 rtl_eri_write(tp
, 0xcc, ERIAR_MASK_1111
, 0x00000050, ERIAR_EXGMAC
);
5930 rtl_eri_write(tp
, 0xd0, ERIAR_MASK_1111
, 0x00000060, ERIAR_EXGMAC
);
5932 RTL_W8(MaxTxPacketSize
, EarlySize
);
5934 rtl_disable_clock_request(pdev
);
5936 RTL_W32(TxConfig
, RTL_R32(TxConfig
) | TXCFG_AUTO_FIFO
);
5937 RTL_W8(MCU
, RTL_R8(MCU
) & ~NOW_IS_OOB
);
5938 RTL_W8(DLLPR
, RTL_R8(DLLPR
) | PFM_EN
);
5939 RTL_W32(MISC
, RTL_R32(MISC
) | PWM_EN
);
5940 RTL_W8(Config5
, RTL_R8(Config5
) & ~Spi_en
);
5943 static void rtl_hw_start_8168f_1(struct rtl8169_private
*tp
)
5945 void __iomem
*ioaddr
= tp
->mmio_addr
;
5946 static const struct ephy_info e_info_8168f_1
[] = {
5947 { 0x06, 0x00c0, 0x0020 },
5948 { 0x08, 0x0001, 0x0002 },
5949 { 0x09, 0x0000, 0x0080 },
5950 { 0x19, 0x0000, 0x0224 }
5953 rtl_hw_start_8168f(tp
);
5955 rtl_ephy_init(tp
, e_info_8168f_1
, ARRAY_SIZE(e_info_8168f_1
));
5957 rtl_w0w1_eri(tp
, 0x0d4, ERIAR_MASK_0011
, 0x0c00, 0xff00, ERIAR_EXGMAC
);
5959 /* Adjust EEE LED frequency */
5960 RTL_W8(EEE_LED
, RTL_R8(EEE_LED
) & ~0x07);
5963 static void rtl_hw_start_8411(struct rtl8169_private
*tp
)
5965 static const struct ephy_info e_info_8168f_1
[] = {
5966 { 0x06, 0x00c0, 0x0020 },
5967 { 0x0f, 0xffff, 0x5200 },
5968 { 0x1e, 0x0000, 0x4000 },
5969 { 0x19, 0x0000, 0x0224 }
5972 rtl_hw_start_8168f(tp
);
5973 rtl_pcie_state_l2l3_enable(tp
, false);
5975 rtl_ephy_init(tp
, e_info_8168f_1
, ARRAY_SIZE(e_info_8168f_1
));
5977 rtl_w0w1_eri(tp
, 0x0d4, ERIAR_MASK_0011
, 0x0c00, 0x0000, ERIAR_EXGMAC
);
5980 static void rtl_hw_start_8168g(struct rtl8169_private
*tp
)
5982 void __iomem
*ioaddr
= tp
->mmio_addr
;
5983 struct pci_dev
*pdev
= tp
->pci_dev
;
5985 RTL_W32(TxConfig
, RTL_R32(TxConfig
) | TXCFG_AUTO_FIFO
);
5987 rtl_eri_write(tp
, 0xc8, ERIAR_MASK_0101
, 0x080002, ERIAR_EXGMAC
);
5988 rtl_eri_write(tp
, 0xcc, ERIAR_MASK_0001
, 0x38, ERIAR_EXGMAC
);
5989 rtl_eri_write(tp
, 0xd0, ERIAR_MASK_0001
, 0x48, ERIAR_EXGMAC
);
5990 rtl_eri_write(tp
, 0xe8, ERIAR_MASK_1111
, 0x00100006, ERIAR_EXGMAC
);
5992 rtl_csi_access_enable_1(tp
);
5994 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5996 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x00, 0x01, ERIAR_EXGMAC
);
5997 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x01, 0x00, ERIAR_EXGMAC
);
5998 rtl_eri_write(tp
, 0x2f8, ERIAR_MASK_0011
, 0x1d8f, ERIAR_EXGMAC
);
6000 RTL_W32(MISC
, RTL_R32(MISC
) & ~RXDV_GATED_EN
);
6001 RTL_W8(MaxTxPacketSize
, EarlySize
);
6003 rtl_eri_write(tp
, 0xc0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
6004 rtl_eri_write(tp
, 0xb8, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
6006 /* Adjust EEE LED frequency */
6007 RTL_W8(EEE_LED
, RTL_R8(EEE_LED
) & ~0x07);
6009 rtl_w0w1_eri(tp
, 0x2fc, ERIAR_MASK_0001
, 0x01, 0x06, ERIAR_EXGMAC
);
6010 rtl_w0w1_eri(tp
, 0x1b0, ERIAR_MASK_0011
, 0x0000, 0x1000, ERIAR_EXGMAC
);
6012 rtl_pcie_state_l2l3_enable(tp
, false);
6015 static void rtl_hw_start_8168g_1(struct rtl8169_private
*tp
)
6017 void __iomem
*ioaddr
= tp
->mmio_addr
;
6018 static const struct ephy_info e_info_8168g_1
[] = {
6019 { 0x00, 0x0000, 0x0008 },
6020 { 0x0c, 0x37d0, 0x0820 },
6021 { 0x1e, 0x0000, 0x0001 },
6022 { 0x19, 0x8000, 0x0000 }
6025 rtl_hw_start_8168g(tp
);
6027 /* disable aspm and clock request before access ephy */
6028 RTL_W8(Config2
, RTL_R8(Config2
) & ~ClkReqEn
);
6029 RTL_W8(Config5
, RTL_R8(Config5
) & ~ASPM_en
);
6030 rtl_ephy_init(tp
, e_info_8168g_1
, ARRAY_SIZE(e_info_8168g_1
));
6033 static void rtl_hw_start_8168g_2(struct rtl8169_private
*tp
)
6035 void __iomem
*ioaddr
= tp
->mmio_addr
;
6036 static const struct ephy_info e_info_8168g_2
[] = {
6037 { 0x00, 0x0000, 0x0008 },
6038 { 0x0c, 0x3df0, 0x0200 },
6039 { 0x19, 0xffff, 0xfc00 },
6040 { 0x1e, 0xffff, 0x20eb }
6043 rtl_hw_start_8168g(tp
);
6045 /* disable aspm and clock request before access ephy */
6046 RTL_W8(Config2
, RTL_R8(Config2
) & ~ClkReqEn
);
6047 RTL_W8(Config5
, RTL_R8(Config5
) & ~ASPM_en
);
6048 rtl_ephy_init(tp
, e_info_8168g_2
, ARRAY_SIZE(e_info_8168g_2
));
6051 static void rtl_hw_start_8411_2(struct rtl8169_private
*tp
)
6053 void __iomem
*ioaddr
= tp
->mmio_addr
;
6054 static const struct ephy_info e_info_8411_2
[] = {
6055 { 0x00, 0x0000, 0x0008 },
6056 { 0x0c, 0x3df0, 0x0200 },
6057 { 0x0f, 0xffff, 0x5200 },
6058 { 0x19, 0x0020, 0x0000 },
6059 { 0x1e, 0x0000, 0x2000 }
6062 rtl_hw_start_8168g(tp
);
6064 /* disable aspm and clock request before access ephy */
6065 RTL_W8(Config2
, RTL_R8(Config2
) & ~ClkReqEn
);
6066 RTL_W8(Config5
, RTL_R8(Config5
) & ~ASPM_en
);
6067 rtl_ephy_init(tp
, e_info_8411_2
, ARRAY_SIZE(e_info_8411_2
));
6070 static void rtl_hw_start_8168h_1(struct rtl8169_private
*tp
)
6072 void __iomem
*ioaddr
= tp
->mmio_addr
;
6073 struct pci_dev
*pdev
= tp
->pci_dev
;
6076 static const struct ephy_info e_info_8168h_1
[] = {
6077 { 0x1e, 0x0800, 0x0001 },
6078 { 0x1d, 0x0000, 0x0800 },
6079 { 0x05, 0xffff, 0x2089 },
6080 { 0x06, 0xffff, 0x5881 },
6081 { 0x04, 0xffff, 0x154a },
6082 { 0x01, 0xffff, 0x068b }
6085 /* disable aspm and clock request before access ephy */
6086 RTL_W8(Config2
, RTL_R8(Config2
) & ~ClkReqEn
);
6087 RTL_W8(Config5
, RTL_R8(Config5
) & ~ASPM_en
);
6088 rtl_ephy_init(tp
, e_info_8168h_1
, ARRAY_SIZE(e_info_8168h_1
));
6090 RTL_W32(TxConfig
, RTL_R32(TxConfig
) | TXCFG_AUTO_FIFO
);
6092 rtl_eri_write(tp
, 0xc8, ERIAR_MASK_0101
, 0x00080002, ERIAR_EXGMAC
);
6093 rtl_eri_write(tp
, 0xcc, ERIAR_MASK_0001
, 0x38, ERIAR_EXGMAC
);
6094 rtl_eri_write(tp
, 0xd0, ERIAR_MASK_0001
, 0x48, ERIAR_EXGMAC
);
6095 rtl_eri_write(tp
, 0xe8, ERIAR_MASK_1111
, 0x00100006, ERIAR_EXGMAC
);
6097 rtl_csi_access_enable_1(tp
);
6099 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
6101 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x00, 0x01, ERIAR_EXGMAC
);
6102 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x01, 0x00, ERIAR_EXGMAC
);
6104 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_1111
, 0x0010, 0x00, ERIAR_EXGMAC
);
6106 rtl_w0w1_eri(tp
, 0xd4, ERIAR_MASK_1111
, 0x1f00, 0x00, ERIAR_EXGMAC
);
6108 rtl_eri_write(tp
, 0x5f0, ERIAR_MASK_0011
, 0x4f87, ERIAR_EXGMAC
);
6110 RTL_W32(MISC
, RTL_R32(MISC
) & ~RXDV_GATED_EN
);
6111 RTL_W8(MaxTxPacketSize
, EarlySize
);
6113 rtl_eri_write(tp
, 0xc0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
6114 rtl_eri_write(tp
, 0xb8, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
6116 /* Adjust EEE LED frequency */
6117 RTL_W8(EEE_LED
, RTL_R8(EEE_LED
) & ~0x07);
6119 RTL_W8(DLLPR
, RTL_R8(DLLPR
) & ~PFM_EN
);
6120 RTL_W8(MISC_1
, RTL_R8(MISC_1
) & ~PFM_D3COLD_EN
);
6122 RTL_W8(DLLPR
, RTL_R8(DLLPR
) & ~TX_10M_PS_EN
);
6124 rtl_w0w1_eri(tp
, 0x1b0, ERIAR_MASK_0011
, 0x0000, 0x1000, ERIAR_EXGMAC
);
6126 rtl_pcie_state_l2l3_enable(tp
, false);
6128 rtl_writephy(tp
, 0x1f, 0x0c42);
6129 rg_saw_cnt
= (rtl_readphy(tp
, 0x13) & 0x3fff);
6130 rtl_writephy(tp
, 0x1f, 0x0000);
6131 if (rg_saw_cnt
> 0) {
6134 sw_cnt_1ms_ini
= 16000000/rg_saw_cnt
;
6135 sw_cnt_1ms_ini
&= 0x0fff;
6136 data
= r8168_mac_ocp_read(tp
, 0xd412);
6138 data
|= sw_cnt_1ms_ini
;
6139 r8168_mac_ocp_write(tp
, 0xd412, data
);
6142 data
= r8168_mac_ocp_read(tp
, 0xe056);
6145 r8168_mac_ocp_write(tp
, 0xe056, data
);
6147 data
= r8168_mac_ocp_read(tp
, 0xe052);
6150 r8168_mac_ocp_write(tp
, 0xe052, data
);
6152 data
= r8168_mac_ocp_read(tp
, 0xe0d6);
6155 r8168_mac_ocp_write(tp
, 0xe0d6, data
);
6157 data
= r8168_mac_ocp_read(tp
, 0xd420);
6160 r8168_mac_ocp_write(tp
, 0xd420, data
);
6162 r8168_mac_ocp_write(tp
, 0xe63e, 0x0001);
6163 r8168_mac_ocp_write(tp
, 0xe63e, 0x0000);
6164 r8168_mac_ocp_write(tp
, 0xc094, 0x0000);
6165 r8168_mac_ocp_write(tp
, 0xc09e, 0x0000);
6168 static void rtl_hw_start_8168ep(struct rtl8169_private
*tp
)
6170 void __iomem
*ioaddr
= tp
->mmio_addr
;
6171 struct pci_dev
*pdev
= tp
->pci_dev
;
6173 rtl8168ep_stop_cmac(tp
);
6175 RTL_W32(TxConfig
, RTL_R32(TxConfig
) | TXCFG_AUTO_FIFO
);
6177 rtl_eri_write(tp
, 0xc8, ERIAR_MASK_0101
, 0x00080002, ERIAR_EXGMAC
);
6178 rtl_eri_write(tp
, 0xcc, ERIAR_MASK_0001
, 0x2f, ERIAR_EXGMAC
);
6179 rtl_eri_write(tp
, 0xd0, ERIAR_MASK_0001
, 0x5f, ERIAR_EXGMAC
);
6180 rtl_eri_write(tp
, 0xe8, ERIAR_MASK_1111
, 0x00100006, ERIAR_EXGMAC
);
6182 rtl_csi_access_enable_1(tp
);
6184 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
6186 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x00, 0x01, ERIAR_EXGMAC
);
6187 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x01, 0x00, ERIAR_EXGMAC
);
6189 rtl_w0w1_eri(tp
, 0xd4, ERIAR_MASK_1111
, 0x1f80, 0x00, ERIAR_EXGMAC
);
6191 rtl_eri_write(tp
, 0x5f0, ERIAR_MASK_0011
, 0x4f87, ERIAR_EXGMAC
);
6193 RTL_W32(MISC
, RTL_R32(MISC
) & ~RXDV_GATED_EN
);
6194 RTL_W8(MaxTxPacketSize
, EarlySize
);
6196 rtl_eri_write(tp
, 0xc0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
6197 rtl_eri_write(tp
, 0xb8, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
6199 /* Adjust EEE LED frequency */
6200 RTL_W8(EEE_LED
, RTL_R8(EEE_LED
) & ~0x07);
6202 rtl_w0w1_eri(tp
, 0x2fc, ERIAR_MASK_0001
, 0x01, 0x06, ERIAR_EXGMAC
);
6204 RTL_W8(DLLPR
, RTL_R8(DLLPR
) & ~TX_10M_PS_EN
);
6206 rtl_pcie_state_l2l3_enable(tp
, false);
6209 static void rtl_hw_start_8168ep_1(struct rtl8169_private
*tp
)
6211 void __iomem
*ioaddr
= tp
->mmio_addr
;
6212 static const struct ephy_info e_info_8168ep_1
[] = {
6213 { 0x00, 0xffff, 0x10ab },
6214 { 0x06, 0xffff, 0xf030 },
6215 { 0x08, 0xffff, 0x2006 },
6216 { 0x0d, 0xffff, 0x1666 },
6217 { 0x0c, 0x3ff0, 0x0000 }
6220 /* disable aspm and clock request before access ephy */
6221 RTL_W8(Config2
, RTL_R8(Config2
) & ~ClkReqEn
);
6222 RTL_W8(Config5
, RTL_R8(Config5
) & ~ASPM_en
);
6223 rtl_ephy_init(tp
, e_info_8168ep_1
, ARRAY_SIZE(e_info_8168ep_1
));
6225 rtl_hw_start_8168ep(tp
);
6228 static void rtl_hw_start_8168ep_2(struct rtl8169_private
*tp
)
6230 void __iomem
*ioaddr
= tp
->mmio_addr
;
6231 static const struct ephy_info e_info_8168ep_2
[] = {
6232 { 0x00, 0xffff, 0x10a3 },
6233 { 0x19, 0xffff, 0xfc00 },
6234 { 0x1e, 0xffff, 0x20ea }
6237 /* disable aspm and clock request before access ephy */
6238 RTL_W8(Config2
, RTL_R8(Config2
) & ~ClkReqEn
);
6239 RTL_W8(Config5
, RTL_R8(Config5
) & ~ASPM_en
);
6240 rtl_ephy_init(tp
, e_info_8168ep_2
, ARRAY_SIZE(e_info_8168ep_2
));
6242 rtl_hw_start_8168ep(tp
);
6244 RTL_W8(DLLPR
, RTL_R8(DLLPR
) & ~PFM_EN
);
6245 RTL_W8(MISC_1
, RTL_R8(MISC_1
) & ~PFM_D3COLD_EN
);
6248 static void rtl_hw_start_8168ep_3(struct rtl8169_private
*tp
)
6250 void __iomem
*ioaddr
= tp
->mmio_addr
;
6252 static const struct ephy_info e_info_8168ep_3
[] = {
6253 { 0x00, 0xffff, 0x10a3 },
6254 { 0x19, 0xffff, 0x7c00 },
6255 { 0x1e, 0xffff, 0x20eb },
6256 { 0x0d, 0xffff, 0x1666 }
6259 /* disable aspm and clock request before access ephy */
6260 RTL_W8(Config2
, RTL_R8(Config2
) & ~ClkReqEn
);
6261 RTL_W8(Config5
, RTL_R8(Config5
) & ~ASPM_en
);
6262 rtl_ephy_init(tp
, e_info_8168ep_3
, ARRAY_SIZE(e_info_8168ep_3
));
6264 rtl_hw_start_8168ep(tp
);
6266 RTL_W8(DLLPR
, RTL_R8(DLLPR
) & ~PFM_EN
);
6267 RTL_W8(MISC_1
, RTL_R8(MISC_1
) & ~PFM_D3COLD_EN
);
6269 data
= r8168_mac_ocp_read(tp
, 0xd3e2);
6272 r8168_mac_ocp_write(tp
, 0xd3e2, data
);
6274 data
= r8168_mac_ocp_read(tp
, 0xd3e4);
6276 r8168_mac_ocp_write(tp
, 0xd3e4, data
);
6278 data
= r8168_mac_ocp_read(tp
, 0xe860);
6280 r8168_mac_ocp_write(tp
, 0xe860, data
);
6283 static void rtl_hw_start_8168(struct net_device
*dev
)
6285 struct rtl8169_private
*tp
= netdev_priv(dev
);
6286 void __iomem
*ioaddr
= tp
->mmio_addr
;
6288 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
6290 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
6292 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
6294 tp
->cp_cmd
|= RTL_R16(CPlusCmd
) | PktCntrDisable
| INTT_1
;
6296 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
6298 RTL_W16(IntrMitigate
, 0x5151);
6300 /* Work around for RxFIFO overflow. */
6301 if (tp
->mac_version
== RTL_GIGA_MAC_VER_11
) {
6302 tp
->event_slow
|= RxFIFOOver
| PCSTimeout
;
6303 tp
->event_slow
&= ~RxOverflow
;
6306 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
6308 rtl_set_rx_tx_config_registers(tp
);
6312 switch (tp
->mac_version
) {
6313 case RTL_GIGA_MAC_VER_11
:
6314 rtl_hw_start_8168bb(tp
);
6317 case RTL_GIGA_MAC_VER_12
:
6318 case RTL_GIGA_MAC_VER_17
:
6319 rtl_hw_start_8168bef(tp
);
6322 case RTL_GIGA_MAC_VER_18
:
6323 rtl_hw_start_8168cp_1(tp
);
6326 case RTL_GIGA_MAC_VER_19
:
6327 rtl_hw_start_8168c_1(tp
);
6330 case RTL_GIGA_MAC_VER_20
:
6331 rtl_hw_start_8168c_2(tp
);
6334 case RTL_GIGA_MAC_VER_21
:
6335 rtl_hw_start_8168c_3(tp
);
6338 case RTL_GIGA_MAC_VER_22
:
6339 rtl_hw_start_8168c_4(tp
);
6342 case RTL_GIGA_MAC_VER_23
:
6343 rtl_hw_start_8168cp_2(tp
);
6346 case RTL_GIGA_MAC_VER_24
:
6347 rtl_hw_start_8168cp_3(tp
);
6350 case RTL_GIGA_MAC_VER_25
:
6351 case RTL_GIGA_MAC_VER_26
:
6352 case RTL_GIGA_MAC_VER_27
:
6353 rtl_hw_start_8168d(tp
);
6356 case RTL_GIGA_MAC_VER_28
:
6357 rtl_hw_start_8168d_4(tp
);
6360 case RTL_GIGA_MAC_VER_31
:
6361 rtl_hw_start_8168dp(tp
);
6364 case RTL_GIGA_MAC_VER_32
:
6365 case RTL_GIGA_MAC_VER_33
:
6366 rtl_hw_start_8168e_1(tp
);
6368 case RTL_GIGA_MAC_VER_34
:
6369 rtl_hw_start_8168e_2(tp
);
6372 case RTL_GIGA_MAC_VER_35
:
6373 case RTL_GIGA_MAC_VER_36
:
6374 rtl_hw_start_8168f_1(tp
);
6377 case RTL_GIGA_MAC_VER_38
:
6378 rtl_hw_start_8411(tp
);
6381 case RTL_GIGA_MAC_VER_40
:
6382 case RTL_GIGA_MAC_VER_41
:
6383 rtl_hw_start_8168g_1(tp
);
6385 case RTL_GIGA_MAC_VER_42
:
6386 rtl_hw_start_8168g_2(tp
);
6389 case RTL_GIGA_MAC_VER_44
:
6390 rtl_hw_start_8411_2(tp
);
6393 case RTL_GIGA_MAC_VER_45
:
6394 case RTL_GIGA_MAC_VER_46
:
6395 rtl_hw_start_8168h_1(tp
);
6398 case RTL_GIGA_MAC_VER_49
:
6399 rtl_hw_start_8168ep_1(tp
);
6402 case RTL_GIGA_MAC_VER_50
:
6403 rtl_hw_start_8168ep_2(tp
);
6406 case RTL_GIGA_MAC_VER_51
:
6407 rtl_hw_start_8168ep_3(tp
);
6411 printk(KERN_ERR PFX
"%s: unknown chipset (mac_version = %d).\n",
6412 dev
->name
, tp
->mac_version
);
6416 RTL_W8(Cfg9346
, Cfg9346_Lock
);
6418 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
6420 rtl_set_rx_mode(dev
);
6422 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xf000);
6425 #define R810X_CPCMD_QUIRK_MASK (\
6436 static void rtl_hw_start_8102e_1(struct rtl8169_private
*tp
)
6438 void __iomem
*ioaddr
= tp
->mmio_addr
;
6439 struct pci_dev
*pdev
= tp
->pci_dev
;
6440 static const struct ephy_info e_info_8102e_1
[] = {
6441 { 0x01, 0, 0x6e65 },
6442 { 0x02, 0, 0x091f },
6443 { 0x03, 0, 0xc2f9 },
6444 { 0x06, 0, 0xafb5 },
6445 { 0x07, 0, 0x0e00 },
6446 { 0x19, 0, 0xec80 },
6447 { 0x01, 0, 0x2e65 },
6452 rtl_csi_access_enable_2(tp
);
6454 RTL_W8(DBG_REG
, FIX_NAK_1
);
6456 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
6459 LEDS1
| LEDS0
| Speed_down
| MEMMAP
| IOMAP
| VPD
| PMEnable
);
6460 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
6462 cfg1
= RTL_R8(Config1
);
6463 if ((cfg1
& LEDS0
) && (cfg1
& LEDS1
))
6464 RTL_W8(Config1
, cfg1
& ~LEDS0
);
6466 rtl_ephy_init(tp
, e_info_8102e_1
, ARRAY_SIZE(e_info_8102e_1
));
6469 static void rtl_hw_start_8102e_2(struct rtl8169_private
*tp
)
6471 void __iomem
*ioaddr
= tp
->mmio_addr
;
6472 struct pci_dev
*pdev
= tp
->pci_dev
;
6474 rtl_csi_access_enable_2(tp
);
6476 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
6478 RTL_W8(Config1
, MEMMAP
| IOMAP
| VPD
| PMEnable
);
6479 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
6482 static void rtl_hw_start_8102e_3(struct rtl8169_private
*tp
)
6484 rtl_hw_start_8102e_2(tp
);
6486 rtl_ephy_write(tp
, 0x03, 0xc2f9);
6489 static void rtl_hw_start_8105e_1(struct rtl8169_private
*tp
)
6491 void __iomem
*ioaddr
= tp
->mmio_addr
;
6492 static const struct ephy_info e_info_8105e_1
[] = {
6493 { 0x07, 0, 0x4000 },
6494 { 0x19, 0, 0x0200 },
6495 { 0x19, 0, 0x0020 },
6496 { 0x1e, 0, 0x2000 },
6497 { 0x03, 0, 0x0001 },
6498 { 0x19, 0, 0x0100 },
6499 { 0x19, 0, 0x0004 },
6503 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6504 RTL_W32(FuncEvent
, RTL_R32(FuncEvent
) | 0x002800);
6506 /* Disable Early Tally Counter */
6507 RTL_W32(FuncEvent
, RTL_R32(FuncEvent
) & ~0x010000);
6509 RTL_W8(MCU
, RTL_R8(MCU
) | EN_NDP
| EN_OOB_RESET
);
6510 RTL_W8(DLLPR
, RTL_R8(DLLPR
) | PFM_EN
);
6512 rtl_ephy_init(tp
, e_info_8105e_1
, ARRAY_SIZE(e_info_8105e_1
));
6514 rtl_pcie_state_l2l3_enable(tp
, false);
6517 static void rtl_hw_start_8105e_2(struct rtl8169_private
*tp
)
6519 rtl_hw_start_8105e_1(tp
);
6520 rtl_ephy_write(tp
, 0x1e, rtl_ephy_read(tp
, 0x1e) | 0x8000);
6523 static void rtl_hw_start_8402(struct rtl8169_private
*tp
)
6525 void __iomem
*ioaddr
= tp
->mmio_addr
;
6526 static const struct ephy_info e_info_8402
[] = {
6527 { 0x19, 0xffff, 0xff64 },
6531 rtl_csi_access_enable_2(tp
);
6533 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6534 RTL_W32(FuncEvent
, RTL_R32(FuncEvent
) | 0x002800);
6536 RTL_W32(TxConfig
, RTL_R32(TxConfig
) | TXCFG_AUTO_FIFO
);
6537 RTL_W8(MCU
, RTL_R8(MCU
) & ~NOW_IS_OOB
);
6539 rtl_ephy_init(tp
, e_info_8402
, ARRAY_SIZE(e_info_8402
));
6541 rtl_tx_performance_tweak(tp
->pci_dev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
6543 rtl_eri_write(tp
, 0xc8, ERIAR_MASK_1111
, 0x00000002, ERIAR_EXGMAC
);
6544 rtl_eri_write(tp
, 0xe8, ERIAR_MASK_1111
, 0x00000006, ERIAR_EXGMAC
);
6545 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x00, 0x01, ERIAR_EXGMAC
);
6546 rtl_w0w1_eri(tp
, 0xdc, ERIAR_MASK_0001
, 0x01, 0x00, ERIAR_EXGMAC
);
6547 rtl_eri_write(tp
, 0xc0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
6548 rtl_eri_write(tp
, 0xb8, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
6549 rtl_w0w1_eri(tp
, 0x0d4, ERIAR_MASK_0011
, 0x0e00, 0xff00, ERIAR_EXGMAC
);
6551 rtl_pcie_state_l2l3_enable(tp
, false);
6554 static void rtl_hw_start_8106(struct rtl8169_private
*tp
)
6556 void __iomem
*ioaddr
= tp
->mmio_addr
;
6558 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6559 RTL_W32(FuncEvent
, RTL_R32(FuncEvent
) | 0x002800);
6561 RTL_W32(MISC
, (RTL_R32(MISC
) | DISABLE_LAN_EN
) & ~EARLY_TALLY_EN
);
6562 RTL_W8(MCU
, RTL_R8(MCU
) | EN_NDP
| EN_OOB_RESET
);
6563 RTL_W8(DLLPR
, RTL_R8(DLLPR
) & ~PFM_EN
);
6565 rtl_pcie_state_l2l3_enable(tp
, false);
6568 static void rtl_hw_start_8101(struct net_device
*dev
)
6570 struct rtl8169_private
*tp
= netdev_priv(dev
);
6571 void __iomem
*ioaddr
= tp
->mmio_addr
;
6572 struct pci_dev
*pdev
= tp
->pci_dev
;
6574 if (tp
->mac_version
>= RTL_GIGA_MAC_VER_30
)
6575 tp
->event_slow
&= ~RxFIFOOver
;
6577 if (tp
->mac_version
== RTL_GIGA_MAC_VER_13
||
6578 tp
->mac_version
== RTL_GIGA_MAC_VER_16
)
6579 pcie_capability_set_word(pdev
, PCI_EXP_DEVCTL
,
6580 PCI_EXP_DEVCTL_NOSNOOP_EN
);
6582 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
6584 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
6586 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
6588 tp
->cp_cmd
&= ~R810X_CPCMD_QUIRK_MASK
;
6589 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
6591 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
6593 rtl_set_rx_tx_config_registers(tp
);
6595 switch (tp
->mac_version
) {
6596 case RTL_GIGA_MAC_VER_07
:
6597 rtl_hw_start_8102e_1(tp
);
6600 case RTL_GIGA_MAC_VER_08
:
6601 rtl_hw_start_8102e_3(tp
);
6604 case RTL_GIGA_MAC_VER_09
:
6605 rtl_hw_start_8102e_2(tp
);
6608 case RTL_GIGA_MAC_VER_29
:
6609 rtl_hw_start_8105e_1(tp
);
6611 case RTL_GIGA_MAC_VER_30
:
6612 rtl_hw_start_8105e_2(tp
);
6615 case RTL_GIGA_MAC_VER_37
:
6616 rtl_hw_start_8402(tp
);
6619 case RTL_GIGA_MAC_VER_39
:
6620 rtl_hw_start_8106(tp
);
6622 case RTL_GIGA_MAC_VER_43
:
6623 rtl_hw_start_8168g_2(tp
);
6625 case RTL_GIGA_MAC_VER_47
:
6626 case RTL_GIGA_MAC_VER_48
:
6627 rtl_hw_start_8168h_1(tp
);
6631 RTL_W8(Cfg9346
, Cfg9346_Lock
);
6633 RTL_W16(IntrMitigate
, 0x0000);
6635 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
6637 rtl_set_rx_mode(dev
);
6641 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xf000);
6644 static int rtl8169_change_mtu(struct net_device
*dev
, int new_mtu
)
6646 struct rtl8169_private
*tp
= netdev_priv(dev
);
6648 if (new_mtu
< ETH_ZLEN
||
6649 new_mtu
> rtl_chip_infos
[tp
->mac_version
].jumbo_max
)
6652 if (new_mtu
> ETH_DATA_LEN
)
6653 rtl_hw_jumbo_enable(tp
);
6655 rtl_hw_jumbo_disable(tp
);
6658 netdev_update_features(dev
);
6663 static inline void rtl8169_make_unusable_by_asic(struct RxDesc
*desc
)
6665 desc
->addr
= cpu_to_le64(0x0badbadbadbadbadull
);
6666 desc
->opts1
&= ~cpu_to_le32(DescOwn
| RsvdMask
);
6669 static void rtl8169_free_rx_databuff(struct rtl8169_private
*tp
,
6670 void **data_buff
, struct RxDesc
*desc
)
6672 dma_unmap_single(&tp
->pci_dev
->dev
, le64_to_cpu(desc
->addr
), rx_buf_sz
,
6677 rtl8169_make_unusable_by_asic(desc
);
6680 static inline void rtl8169_mark_to_asic(struct RxDesc
*desc
, u32 rx_buf_sz
)
6682 u32 eor
= le32_to_cpu(desc
->opts1
) & RingEnd
;
6684 /* Force memory writes to complete before releasing descriptor */
6687 desc
->opts1
= cpu_to_le32(DescOwn
| eor
| rx_buf_sz
);
6690 static inline void rtl8169_map_to_asic(struct RxDesc
*desc
, dma_addr_t mapping
,
6693 desc
->addr
= cpu_to_le64(mapping
);
6694 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
6697 static inline void *rtl8169_align(void *data
)
6699 return (void *)ALIGN((long)data
, 16);
6702 static struct sk_buff
*rtl8169_alloc_rx_data(struct rtl8169_private
*tp
,
6703 struct RxDesc
*desc
)
6707 struct device
*d
= &tp
->pci_dev
->dev
;
6708 struct net_device
*dev
= tp
->dev
;
6709 int node
= dev
->dev
.parent
? dev_to_node(dev
->dev
.parent
) : -1;
6711 data
= kmalloc_node(rx_buf_sz
, GFP_KERNEL
, node
);
6715 if (rtl8169_align(data
) != data
) {
6717 data
= kmalloc_node(rx_buf_sz
+ 15, GFP_KERNEL
, node
);
6722 mapping
= dma_map_single(d
, rtl8169_align(data
), rx_buf_sz
,
6724 if (unlikely(dma_mapping_error(d
, mapping
))) {
6725 if (net_ratelimit())
6726 netif_err(tp
, drv
, tp
->dev
, "Failed to map RX DMA!\n");
6730 rtl8169_map_to_asic(desc
, mapping
, rx_buf_sz
);
6738 static void rtl8169_rx_clear(struct rtl8169_private
*tp
)
6742 for (i
= 0; i
< NUM_RX_DESC
; i
++) {
6743 if (tp
->Rx_databuff
[i
]) {
6744 rtl8169_free_rx_databuff(tp
, tp
->Rx_databuff
+ i
,
6745 tp
->RxDescArray
+ i
);
6750 static inline void rtl8169_mark_as_last_descriptor(struct RxDesc
*desc
)
6752 desc
->opts1
|= cpu_to_le32(RingEnd
);
6755 static int rtl8169_rx_fill(struct rtl8169_private
*tp
)
6759 for (i
= 0; i
< NUM_RX_DESC
; i
++) {
6762 if (tp
->Rx_databuff
[i
])
6765 data
= rtl8169_alloc_rx_data(tp
, tp
->RxDescArray
+ i
);
6767 rtl8169_make_unusable_by_asic(tp
->RxDescArray
+ i
);
6770 tp
->Rx_databuff
[i
] = data
;
6773 rtl8169_mark_as_last_descriptor(tp
->RxDescArray
+ NUM_RX_DESC
- 1);
6777 rtl8169_rx_clear(tp
);
6781 static int rtl8169_init_ring(struct net_device
*dev
)
6783 struct rtl8169_private
*tp
= netdev_priv(dev
);
6785 rtl8169_init_ring_indexes(tp
);
6787 memset(tp
->tx_skb
, 0x0, NUM_TX_DESC
* sizeof(struct ring_info
));
6788 memset(tp
->Rx_databuff
, 0x0, NUM_RX_DESC
* sizeof(void *));
6790 return rtl8169_rx_fill(tp
);
6793 static void rtl8169_unmap_tx_skb(struct device
*d
, struct ring_info
*tx_skb
,
6794 struct TxDesc
*desc
)
6796 unsigned int len
= tx_skb
->len
;
6798 dma_unmap_single(d
, le64_to_cpu(desc
->addr
), len
, DMA_TO_DEVICE
);
6806 static void rtl8169_tx_clear_range(struct rtl8169_private
*tp
, u32 start
,
6811 for (i
= 0; i
< n
; i
++) {
6812 unsigned int entry
= (start
+ i
) % NUM_TX_DESC
;
6813 struct ring_info
*tx_skb
= tp
->tx_skb
+ entry
;
6814 unsigned int len
= tx_skb
->len
;
6817 struct sk_buff
*skb
= tx_skb
->skb
;
6819 rtl8169_unmap_tx_skb(&tp
->pci_dev
->dev
, tx_skb
,
6820 tp
->TxDescArray
+ entry
);
6822 tp
->dev
->stats
.tx_dropped
++;
6823 dev_kfree_skb_any(skb
);
6830 static void rtl8169_tx_clear(struct rtl8169_private
*tp
)
6832 rtl8169_tx_clear_range(tp
, tp
->dirty_tx
, NUM_TX_DESC
);
6833 tp
->cur_tx
= tp
->dirty_tx
= 0;
6836 static void rtl_reset_work(struct rtl8169_private
*tp
)
6838 struct net_device
*dev
= tp
->dev
;
6841 napi_disable(&tp
->napi
);
6842 netif_stop_queue(dev
);
6843 synchronize_sched();
6845 rtl8169_hw_reset(tp
);
6847 for (i
= 0; i
< NUM_RX_DESC
; i
++)
6848 rtl8169_mark_to_asic(tp
->RxDescArray
+ i
, rx_buf_sz
);
6850 rtl8169_tx_clear(tp
);
6851 rtl8169_init_ring_indexes(tp
);
6853 napi_enable(&tp
->napi
);
6855 netif_wake_queue(dev
);
6856 rtl8169_check_link_status(dev
, tp
, tp
->mmio_addr
);
6859 static void rtl8169_tx_timeout(struct net_device
*dev
)
6861 struct rtl8169_private
*tp
= netdev_priv(dev
);
6863 rtl_schedule_task(tp
, RTL_FLAG_TASK_RESET_PENDING
);
6866 static int rtl8169_xmit_frags(struct rtl8169_private
*tp
, struct sk_buff
*skb
,
6869 struct skb_shared_info
*info
= skb_shinfo(skb
);
6870 unsigned int cur_frag
, entry
;
6871 struct TxDesc
*uninitialized_var(txd
);
6872 struct device
*d
= &tp
->pci_dev
->dev
;
6875 for (cur_frag
= 0; cur_frag
< info
->nr_frags
; cur_frag
++) {
6876 const skb_frag_t
*frag
= info
->frags
+ cur_frag
;
6881 entry
= (entry
+ 1) % NUM_TX_DESC
;
6883 txd
= tp
->TxDescArray
+ entry
;
6884 len
= skb_frag_size(frag
);
6885 addr
= skb_frag_address(frag
);
6886 mapping
= dma_map_single(d
, addr
, len
, DMA_TO_DEVICE
);
6887 if (unlikely(dma_mapping_error(d
, mapping
))) {
6888 if (net_ratelimit())
6889 netif_err(tp
, drv
, tp
->dev
,
6890 "Failed to map TX fragments DMA!\n");
6894 /* Anti gcc 2.95.3 bugware (sic) */
6895 status
= opts
[0] | len
|
6896 (RingEnd
* !((entry
+ 1) % NUM_TX_DESC
));
6898 txd
->opts1
= cpu_to_le32(status
);
6899 txd
->opts2
= cpu_to_le32(opts
[1]);
6900 txd
->addr
= cpu_to_le64(mapping
);
6902 tp
->tx_skb
[entry
].len
= len
;
6906 tp
->tx_skb
[entry
].skb
= skb
;
6907 txd
->opts1
|= cpu_to_le32(LastFrag
);
6913 rtl8169_tx_clear_range(tp
, tp
->cur_tx
+ 1, cur_frag
);
6917 static bool rtl_test_hw_pad_bug(struct rtl8169_private
*tp
, struct sk_buff
*skb
)
6919 return skb
->len
< ETH_ZLEN
&& tp
->mac_version
== RTL_GIGA_MAC_VER_34
;
6922 static netdev_tx_t
rtl8169_start_xmit(struct sk_buff
*skb
,
6923 struct net_device
*dev
);
6924 /* r8169_csum_workaround()
6925 * The hw limites the value the transport offset. When the offset is out of the
6926 * range, calculate the checksum by sw.
6928 static void r8169_csum_workaround(struct rtl8169_private
*tp
,
6929 struct sk_buff
*skb
)
6931 if (skb_shinfo(skb
)->gso_size
) {
6932 netdev_features_t features
= tp
->dev
->features
;
6933 struct sk_buff
*segs
, *nskb
;
6935 features
&= ~(NETIF_F_SG
| NETIF_F_IPV6_CSUM
| NETIF_F_TSO6
);
6936 segs
= skb_gso_segment(skb
, features
);
6937 if (IS_ERR(segs
) || !segs
)
6944 rtl8169_start_xmit(nskb
, tp
->dev
);
6947 dev_consume_skb_any(skb
);
6948 } else if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
6949 if (skb_checksum_help(skb
) < 0)
6952 rtl8169_start_xmit(skb
, tp
->dev
);
6954 struct net_device_stats
*stats
;
6957 stats
= &tp
->dev
->stats
;
6958 stats
->tx_dropped
++;
6959 dev_kfree_skb_any(skb
);
6963 /* msdn_giant_send_check()
6964 * According to the document of microsoft, the TCP Pseudo Header excludes the
6965 * packet length for IPv6 TCP large packets.
6967 static int msdn_giant_send_check(struct sk_buff
*skb
)
6969 const struct ipv6hdr
*ipv6h
;
6973 ret
= skb_cow_head(skb
, 0);
6977 ipv6h
= ipv6_hdr(skb
);
6981 th
->check
= ~tcp_v6_check(0, &ipv6h
->saddr
, &ipv6h
->daddr
, 0);
6986 static inline __be16
get_protocol(struct sk_buff
*skb
)
6990 if (skb
->protocol
== htons(ETH_P_8021Q
))
6991 protocol
= vlan_eth_hdr(skb
)->h_vlan_encapsulated_proto
;
6993 protocol
= skb
->protocol
;
6998 static bool rtl8169_tso_csum_v1(struct rtl8169_private
*tp
,
6999 struct sk_buff
*skb
, u32
*opts
)
7001 u32 mss
= skb_shinfo(skb
)->gso_size
;
7005 opts
[0] |= min(mss
, TD_MSS_MAX
) << TD0_MSS_SHIFT
;
7006 } else if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
7007 const struct iphdr
*ip
= ip_hdr(skb
);
7009 if (ip
->protocol
== IPPROTO_TCP
)
7010 opts
[0] |= TD0_IP_CS
| TD0_TCP_CS
;
7011 else if (ip
->protocol
== IPPROTO_UDP
)
7012 opts
[0] |= TD0_IP_CS
| TD0_UDP_CS
;
7020 static bool rtl8169_tso_csum_v2(struct rtl8169_private
*tp
,
7021 struct sk_buff
*skb
, u32
*opts
)
7023 u32 transport_offset
= (u32
)skb_transport_offset(skb
);
7024 u32 mss
= skb_shinfo(skb
)->gso_size
;
7027 if (transport_offset
> GTTCPHO_MAX
) {
7028 netif_warn(tp
, tx_err
, tp
->dev
,
7029 "Invalid transport offset 0x%x for TSO\n",
7034 switch (get_protocol(skb
)) {
7035 case htons(ETH_P_IP
):
7036 opts
[0] |= TD1_GTSENV4
;
7039 case htons(ETH_P_IPV6
):
7040 if (msdn_giant_send_check(skb
))
7043 opts
[0] |= TD1_GTSENV6
;
7051 opts
[0] |= transport_offset
<< GTTCPHO_SHIFT
;
7052 opts
[1] |= min(mss
, TD_MSS_MAX
) << TD1_MSS_SHIFT
;
7053 } else if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
7056 if (unlikely(rtl_test_hw_pad_bug(tp
, skb
)))
7057 return !(skb_checksum_help(skb
) || eth_skb_pad(skb
));
7059 if (transport_offset
> TCPHO_MAX
) {
7060 netif_warn(tp
, tx_err
, tp
->dev
,
7061 "Invalid transport offset 0x%x\n",
7066 switch (get_protocol(skb
)) {
7067 case htons(ETH_P_IP
):
7068 opts
[1] |= TD1_IPv4_CS
;
7069 ip_protocol
= ip_hdr(skb
)->protocol
;
7072 case htons(ETH_P_IPV6
):
7073 opts
[1] |= TD1_IPv6_CS
;
7074 ip_protocol
= ipv6_hdr(skb
)->nexthdr
;
7078 ip_protocol
= IPPROTO_RAW
;
7082 if (ip_protocol
== IPPROTO_TCP
)
7083 opts
[1] |= TD1_TCP_CS
;
7084 else if (ip_protocol
== IPPROTO_UDP
)
7085 opts
[1] |= TD1_UDP_CS
;
7089 opts
[1] |= transport_offset
<< TCPHO_SHIFT
;
7091 if (unlikely(rtl_test_hw_pad_bug(tp
, skb
)))
7092 return !eth_skb_pad(skb
);
7098 static netdev_tx_t
rtl8169_start_xmit(struct sk_buff
*skb
,
7099 struct net_device
*dev
)
7101 struct rtl8169_private
*tp
= netdev_priv(dev
);
7102 unsigned int entry
= tp
->cur_tx
% NUM_TX_DESC
;
7103 struct TxDesc
*txd
= tp
->TxDescArray
+ entry
;
7104 void __iomem
*ioaddr
= tp
->mmio_addr
;
7105 struct device
*d
= &tp
->pci_dev
->dev
;
7111 if (unlikely(!TX_FRAGS_READY_FOR(tp
, skb_shinfo(skb
)->nr_frags
))) {
7112 netif_err(tp
, drv
, dev
, "BUG! Tx Ring full when queue awake!\n");
7116 if (unlikely(le32_to_cpu(txd
->opts1
) & DescOwn
))
7119 opts
[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb
));
7122 if (!tp
->tso_csum(tp
, skb
, opts
)) {
7123 r8169_csum_workaround(tp
, skb
);
7124 return NETDEV_TX_OK
;
7127 len
= skb_headlen(skb
);
7128 mapping
= dma_map_single(d
, skb
->data
, len
, DMA_TO_DEVICE
);
7129 if (unlikely(dma_mapping_error(d
, mapping
))) {
7130 if (net_ratelimit())
7131 netif_err(tp
, drv
, dev
, "Failed to map TX DMA!\n");
7135 tp
->tx_skb
[entry
].len
= len
;
7136 txd
->addr
= cpu_to_le64(mapping
);
7138 frags
= rtl8169_xmit_frags(tp
, skb
, opts
);
7142 opts
[0] |= FirstFrag
;
7144 opts
[0] |= FirstFrag
| LastFrag
;
7145 tp
->tx_skb
[entry
].skb
= skb
;
7148 txd
->opts2
= cpu_to_le32(opts
[1]);
7150 skb_tx_timestamp(skb
);
7152 /* Force memory writes to complete before releasing descriptor */
7155 /* Anti gcc 2.95.3 bugware (sic) */
7156 status
= opts
[0] | len
| (RingEnd
* !((entry
+ 1) % NUM_TX_DESC
));
7157 txd
->opts1
= cpu_to_le32(status
);
7159 /* Force all memory writes to complete before notifying device */
7162 tp
->cur_tx
+= frags
+ 1;
7164 RTL_W8(TxPoll
, NPQ
);
7168 if (!TX_FRAGS_READY_FOR(tp
, MAX_SKB_FRAGS
)) {
7169 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
7170 * not miss a ring update when it notices a stopped queue.
7173 netif_stop_queue(dev
);
7174 /* Sync with rtl_tx:
7175 * - publish queue status and cur_tx ring index (write barrier)
7176 * - refresh dirty_tx ring index (read barrier).
7177 * May the current thread have a pessimistic view of the ring
7178 * status and forget to wake up queue, a racing rtl_tx thread
7182 if (TX_FRAGS_READY_FOR(tp
, MAX_SKB_FRAGS
))
7183 netif_wake_queue(dev
);
7186 return NETDEV_TX_OK
;
7189 rtl8169_unmap_tx_skb(d
, tp
->tx_skb
+ entry
, txd
);
7191 dev_kfree_skb_any(skb
);
7192 dev
->stats
.tx_dropped
++;
7193 return NETDEV_TX_OK
;
7196 netif_stop_queue(dev
);
7197 dev
->stats
.tx_dropped
++;
7198 return NETDEV_TX_BUSY
;
7201 static void rtl8169_pcierr_interrupt(struct net_device
*dev
)
7203 struct rtl8169_private
*tp
= netdev_priv(dev
);
7204 struct pci_dev
*pdev
= tp
->pci_dev
;
7205 u16 pci_status
, pci_cmd
;
7207 pci_read_config_word(pdev
, PCI_COMMAND
, &pci_cmd
);
7208 pci_read_config_word(pdev
, PCI_STATUS
, &pci_status
);
7210 netif_err(tp
, intr
, dev
, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
7211 pci_cmd
, pci_status
);
7214 * The recovery sequence below admits a very elaborated explanation:
7215 * - it seems to work;
7216 * - I did not see what else could be done;
7217 * - it makes iop3xx happy.
7219 * Feel free to adjust to your needs.
7221 if (pdev
->broken_parity_status
)
7222 pci_cmd
&= ~PCI_COMMAND_PARITY
;
7224 pci_cmd
|= PCI_COMMAND_SERR
| PCI_COMMAND_PARITY
;
7226 pci_write_config_word(pdev
, PCI_COMMAND
, pci_cmd
);
7228 pci_write_config_word(pdev
, PCI_STATUS
,
7229 pci_status
& (PCI_STATUS_DETECTED_PARITY
|
7230 PCI_STATUS_SIG_SYSTEM_ERROR
| PCI_STATUS_REC_MASTER_ABORT
|
7231 PCI_STATUS_REC_TARGET_ABORT
| PCI_STATUS_SIG_TARGET_ABORT
));
7233 /* The infamous DAC f*ckup only happens at boot time */
7234 if ((tp
->cp_cmd
& PCIDAC
) && !tp
->cur_rx
) {
7235 void __iomem
*ioaddr
= tp
->mmio_addr
;
7237 netif_info(tp
, intr
, dev
, "disabling PCI DAC\n");
7238 tp
->cp_cmd
&= ~PCIDAC
;
7239 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
7240 dev
->features
&= ~NETIF_F_HIGHDMA
;
7243 rtl8169_hw_reset(tp
);
7245 rtl_schedule_task(tp
, RTL_FLAG_TASK_RESET_PENDING
);
7248 static void rtl_tx(struct net_device
*dev
, struct rtl8169_private
*tp
)
7250 unsigned int dirty_tx
, tx_left
;
7252 dirty_tx
= tp
->dirty_tx
;
7254 tx_left
= tp
->cur_tx
- dirty_tx
;
7256 while (tx_left
> 0) {
7257 unsigned int entry
= dirty_tx
% NUM_TX_DESC
;
7258 struct ring_info
*tx_skb
= tp
->tx_skb
+ entry
;
7261 status
= le32_to_cpu(tp
->TxDescArray
[entry
].opts1
);
7262 if (status
& DescOwn
)
7265 /* This barrier is needed to keep us from reading
7266 * any other fields out of the Tx descriptor until
7267 * we know the status of DescOwn
7271 rtl8169_unmap_tx_skb(&tp
->pci_dev
->dev
, tx_skb
,
7272 tp
->TxDescArray
+ entry
);
7273 if (status
& LastFrag
) {
7274 u64_stats_update_begin(&tp
->tx_stats
.syncp
);
7275 tp
->tx_stats
.packets
++;
7276 tp
->tx_stats
.bytes
+= tx_skb
->skb
->len
;
7277 u64_stats_update_end(&tp
->tx_stats
.syncp
);
7278 dev_kfree_skb_any(tx_skb
->skb
);
7285 if (tp
->dirty_tx
!= dirty_tx
) {
7286 tp
->dirty_tx
= dirty_tx
;
7287 /* Sync with rtl8169_start_xmit:
7288 * - publish dirty_tx ring index (write barrier)
7289 * - refresh cur_tx ring index and queue status (read barrier)
7290 * May the current thread miss the stopped queue condition,
7291 * a racing xmit thread can only have a right view of the
7295 if (netif_queue_stopped(dev
) &&
7296 TX_FRAGS_READY_FOR(tp
, MAX_SKB_FRAGS
)) {
7297 netif_wake_queue(dev
);
7300 * 8168 hack: TxPoll requests are lost when the Tx packets are
7301 * too close. Let's kick an extra TxPoll request when a burst
7302 * of start_xmit activity is detected (if it is not detected,
7303 * it is slow enough). -- FR
7305 if (tp
->cur_tx
!= dirty_tx
) {
7306 void __iomem
*ioaddr
= tp
->mmio_addr
;
7308 RTL_W8(TxPoll
, NPQ
);
7313 static inline int rtl8169_fragmented_frame(u32 status
)
7315 return (status
& (FirstFrag
| LastFrag
)) != (FirstFrag
| LastFrag
);
7318 static inline void rtl8169_rx_csum(struct sk_buff
*skb
, u32 opts1
)
7320 u32 status
= opts1
& RxProtoMask
;
7322 if (((status
== RxProtoTCP
) && !(opts1
& TCPFail
)) ||
7323 ((status
== RxProtoUDP
) && !(opts1
& UDPFail
)))
7324 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
7326 skb_checksum_none_assert(skb
);
7329 static struct sk_buff
*rtl8169_try_rx_copy(void *data
,
7330 struct rtl8169_private
*tp
,
7334 struct sk_buff
*skb
;
7335 struct device
*d
= &tp
->pci_dev
->dev
;
7337 data
= rtl8169_align(data
);
7338 dma_sync_single_for_cpu(d
, addr
, pkt_size
, DMA_FROM_DEVICE
);
7340 skb
= napi_alloc_skb(&tp
->napi
, pkt_size
);
7342 memcpy(skb
->data
, data
, pkt_size
);
7343 dma_sync_single_for_device(d
, addr
, pkt_size
, DMA_FROM_DEVICE
);
7348 static int rtl_rx(struct net_device
*dev
, struct rtl8169_private
*tp
, u32 budget
)
7350 unsigned int cur_rx
, rx_left
;
7353 cur_rx
= tp
->cur_rx
;
7355 for (rx_left
= min(budget
, NUM_RX_DESC
); rx_left
> 0; rx_left
--, cur_rx
++) {
7356 unsigned int entry
= cur_rx
% NUM_RX_DESC
;
7357 struct RxDesc
*desc
= tp
->RxDescArray
+ entry
;
7360 status
= le32_to_cpu(desc
->opts1
) & tp
->opts1_mask
;
7361 if (status
& DescOwn
)
7364 /* This barrier is needed to keep us from reading
7365 * any other fields out of the Rx descriptor until
7366 * we know the status of DescOwn
7370 if (unlikely(status
& RxRES
)) {
7371 netif_info(tp
, rx_err
, dev
, "Rx ERROR. status = %08x\n",
7373 dev
->stats
.rx_errors
++;
7374 if (status
& (RxRWT
| RxRUNT
))
7375 dev
->stats
.rx_length_errors
++;
7377 dev
->stats
.rx_crc_errors
++;
7378 if (status
& RxFOVF
) {
7379 rtl_schedule_task(tp
, RTL_FLAG_TASK_RESET_PENDING
);
7380 dev
->stats
.rx_fifo_errors
++;
7382 if ((status
& (RxRUNT
| RxCRC
)) &&
7383 !(status
& (RxRWT
| RxFOVF
)) &&
7384 (dev
->features
& NETIF_F_RXALL
))
7387 struct sk_buff
*skb
;
7392 addr
= le64_to_cpu(desc
->addr
);
7393 if (likely(!(dev
->features
& NETIF_F_RXFCS
)))
7394 pkt_size
= (status
& 0x00003fff) - 4;
7396 pkt_size
= status
& 0x00003fff;
7399 * The driver does not support incoming fragmented
7400 * frames. They are seen as a symptom of over-mtu
7403 if (unlikely(rtl8169_fragmented_frame(status
))) {
7404 dev
->stats
.rx_dropped
++;
7405 dev
->stats
.rx_length_errors
++;
7406 goto release_descriptor
;
7409 skb
= rtl8169_try_rx_copy(tp
->Rx_databuff
[entry
],
7410 tp
, pkt_size
, addr
);
7412 dev
->stats
.rx_dropped
++;
7413 goto release_descriptor
;
7416 rtl8169_rx_csum(skb
, status
);
7417 skb_put(skb
, pkt_size
);
7418 skb
->protocol
= eth_type_trans(skb
, dev
);
7420 rtl8169_rx_vlan_tag(desc
, skb
);
7422 if (skb
->pkt_type
== PACKET_MULTICAST
)
7423 dev
->stats
.multicast
++;
7425 napi_gro_receive(&tp
->napi
, skb
);
7427 u64_stats_update_begin(&tp
->rx_stats
.syncp
);
7428 tp
->rx_stats
.packets
++;
7429 tp
->rx_stats
.bytes
+= pkt_size
;
7430 u64_stats_update_end(&tp
->rx_stats
.syncp
);
7434 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
7437 count
= cur_rx
- tp
->cur_rx
;
7438 tp
->cur_rx
= cur_rx
;
7443 static irqreturn_t
rtl8169_interrupt(int irq
, void *dev_instance
)
7445 struct net_device
*dev
= dev_instance
;
7446 struct rtl8169_private
*tp
= netdev_priv(dev
);
7450 status
= rtl_get_events(tp
);
7451 if (status
&& status
!= 0xffff) {
7452 status
&= RTL_EVENT_NAPI
| tp
->event_slow
;
7456 rtl_irq_disable(tp
);
7457 napi_schedule(&tp
->napi
);
7460 return IRQ_RETVAL(handled
);
7464 * Workqueue context.
7466 static void rtl_slow_event_work(struct rtl8169_private
*tp
)
7468 struct net_device
*dev
= tp
->dev
;
7471 status
= rtl_get_events(tp
) & tp
->event_slow
;
7472 rtl_ack_events(tp
, status
);
7474 if (unlikely(status
& RxFIFOOver
)) {
7475 switch (tp
->mac_version
) {
7476 /* Work around for rx fifo overflow */
7477 case RTL_GIGA_MAC_VER_11
:
7478 netif_stop_queue(dev
);
7479 /* XXX - Hack alert. See rtl_task(). */
7480 set_bit(RTL_FLAG_TASK_RESET_PENDING
, tp
->wk
.flags
);
7486 if (unlikely(status
& SYSErr
))
7487 rtl8169_pcierr_interrupt(dev
);
7489 if (status
& LinkChg
)
7490 __rtl8169_check_link_status(dev
, tp
, tp
->mmio_addr
, true);
7492 rtl_irq_enable_all(tp
);
7495 static void rtl_task(struct work_struct
*work
)
7497 static const struct {
7499 void (*action
)(struct rtl8169_private
*);
7501 /* XXX - keep rtl_slow_event_work() as first element. */
7502 { RTL_FLAG_TASK_SLOW_PENDING
, rtl_slow_event_work
},
7503 { RTL_FLAG_TASK_RESET_PENDING
, rtl_reset_work
},
7504 { RTL_FLAG_TASK_PHY_PENDING
, rtl_phy_work
}
7506 struct rtl8169_private
*tp
=
7507 container_of(work
, struct rtl8169_private
, wk
.work
);
7508 struct net_device
*dev
= tp
->dev
;
7513 if (!netif_running(dev
) ||
7514 !test_bit(RTL_FLAG_TASK_ENABLED
, tp
->wk
.flags
))
7517 for (i
= 0; i
< ARRAY_SIZE(rtl_work
); i
++) {
7520 pending
= test_and_clear_bit(rtl_work
[i
].bitnr
, tp
->wk
.flags
);
7522 rtl_work
[i
].action(tp
);
7526 rtl_unlock_work(tp
);
7529 static int rtl8169_poll(struct napi_struct
*napi
, int budget
)
7531 struct rtl8169_private
*tp
= container_of(napi
, struct rtl8169_private
, napi
);
7532 struct net_device
*dev
= tp
->dev
;
7533 u16 enable_mask
= RTL_EVENT_NAPI
| tp
->event_slow
;
7537 status
= rtl_get_events(tp
);
7538 rtl_ack_events(tp
, status
& ~tp
->event_slow
);
7540 if (status
& RTL_EVENT_NAPI_RX
)
7541 work_done
= rtl_rx(dev
, tp
, (u32
) budget
);
7543 if (status
& RTL_EVENT_NAPI_TX
)
7546 if (status
& tp
->event_slow
) {
7547 enable_mask
&= ~tp
->event_slow
;
7549 rtl_schedule_task(tp
, RTL_FLAG_TASK_SLOW_PENDING
);
7552 if (work_done
< budget
) {
7553 napi_complete(napi
);
7555 rtl_irq_enable(tp
, enable_mask
);
7562 static void rtl8169_rx_missed(struct net_device
*dev
, void __iomem
*ioaddr
)
7564 struct rtl8169_private
*tp
= netdev_priv(dev
);
7566 if (tp
->mac_version
> RTL_GIGA_MAC_VER_06
)
7569 dev
->stats
.rx_missed_errors
+= (RTL_R32(RxMissed
) & 0xffffff);
7570 RTL_W32(RxMissed
, 0);
7573 static void rtl8169_down(struct net_device
*dev
)
7575 struct rtl8169_private
*tp
= netdev_priv(dev
);
7576 void __iomem
*ioaddr
= tp
->mmio_addr
;
7578 del_timer_sync(&tp
->timer
);
7580 napi_disable(&tp
->napi
);
7581 netif_stop_queue(dev
);
7583 rtl8169_hw_reset(tp
);
7585 * At this point device interrupts can not be enabled in any function,
7586 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
7587 * and napi is disabled (rtl8169_poll).
7589 rtl8169_rx_missed(dev
, ioaddr
);
7591 /* Give a racing hard_start_xmit a few cycles to complete. */
7592 synchronize_sched();
7594 rtl8169_tx_clear(tp
);
7596 rtl8169_rx_clear(tp
);
7598 rtl_pll_power_down(tp
);
7601 static int rtl8169_close(struct net_device
*dev
)
7603 struct rtl8169_private
*tp
= netdev_priv(dev
);
7604 struct pci_dev
*pdev
= tp
->pci_dev
;
7606 pm_runtime_get_sync(&pdev
->dev
);
7608 /* Update counters before going down */
7609 rtl8169_update_counters(dev
);
7612 clear_bit(RTL_FLAG_TASK_ENABLED
, tp
->wk
.flags
);
7615 rtl_unlock_work(tp
);
7617 cancel_work_sync(&tp
->wk
.work
);
7619 free_irq(pdev
->irq
, dev
);
7621 dma_free_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
, tp
->RxDescArray
,
7623 dma_free_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
, tp
->TxDescArray
,
7625 tp
->TxDescArray
= NULL
;
7626 tp
->RxDescArray
= NULL
;
7628 pm_runtime_put_sync(&pdev
->dev
);
7633 #ifdef CONFIG_NET_POLL_CONTROLLER
7634 static void rtl8169_netpoll(struct net_device
*dev
)
7636 struct rtl8169_private
*tp
= netdev_priv(dev
);
7638 rtl8169_interrupt(tp
->pci_dev
->irq
, dev
);
7642 static int rtl_open(struct net_device
*dev
)
7644 struct rtl8169_private
*tp
= netdev_priv(dev
);
7645 void __iomem
*ioaddr
= tp
->mmio_addr
;
7646 struct pci_dev
*pdev
= tp
->pci_dev
;
7647 int retval
= -ENOMEM
;
7649 pm_runtime_get_sync(&pdev
->dev
);
7652 * Rx and Tx descriptors needs 256 bytes alignment.
7653 * dma_alloc_coherent provides more.
7655 tp
->TxDescArray
= dma_alloc_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
,
7656 &tp
->TxPhyAddr
, GFP_KERNEL
);
7657 if (!tp
->TxDescArray
)
7658 goto err_pm_runtime_put
;
7660 tp
->RxDescArray
= dma_alloc_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
,
7661 &tp
->RxPhyAddr
, GFP_KERNEL
);
7662 if (!tp
->RxDescArray
)
7665 retval
= rtl8169_init_ring(dev
);
7669 INIT_WORK(&tp
->wk
.work
, rtl_task
);
7673 rtl_request_firmware(tp
);
7675 retval
= request_irq(pdev
->irq
, rtl8169_interrupt
,
7676 (tp
->features
& RTL_FEATURE_MSI
) ? 0 : IRQF_SHARED
,
7679 goto err_release_fw_2
;
7683 set_bit(RTL_FLAG_TASK_ENABLED
, tp
->wk
.flags
);
7685 napi_enable(&tp
->napi
);
7687 rtl8169_init_phy(dev
, tp
);
7689 __rtl8169_set_features(dev
, dev
->features
);
7691 rtl_pll_power_up(tp
);
7695 if (!rtl8169_init_counter_offsets(dev
))
7696 netif_warn(tp
, hw
, dev
, "counter reset/update failed\n");
7698 netif_start_queue(dev
);
7700 rtl_unlock_work(tp
);
7702 tp
->saved_wolopts
= 0;
7703 pm_runtime_put_noidle(&pdev
->dev
);
7705 rtl8169_check_link_status(dev
, tp
, ioaddr
);
7710 rtl_release_firmware(tp
);
7711 rtl8169_rx_clear(tp
);
7713 dma_free_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
, tp
->RxDescArray
,
7715 tp
->RxDescArray
= NULL
;
7717 dma_free_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
, tp
->TxDescArray
,
7719 tp
->TxDescArray
= NULL
;
7721 pm_runtime_put_noidle(&pdev
->dev
);
7725 static struct rtnl_link_stats64
*
7726 rtl8169_get_stats64(struct net_device
*dev
, struct rtnl_link_stats64
*stats
)
7728 struct rtl8169_private
*tp
= netdev_priv(dev
);
7729 void __iomem
*ioaddr
= tp
->mmio_addr
;
7730 struct pci_dev
*pdev
= tp
->pci_dev
;
7731 struct rtl8169_counters
*counters
= tp
->counters
;
7734 pm_runtime_get_noresume(&pdev
->dev
);
7736 if (netif_running(dev
) && pm_runtime_active(&pdev
->dev
))
7737 rtl8169_rx_missed(dev
, ioaddr
);
7740 start
= u64_stats_fetch_begin_irq(&tp
->rx_stats
.syncp
);
7741 stats
->rx_packets
= tp
->rx_stats
.packets
;
7742 stats
->rx_bytes
= tp
->rx_stats
.bytes
;
7743 } while (u64_stats_fetch_retry_irq(&tp
->rx_stats
.syncp
, start
));
7746 start
= u64_stats_fetch_begin_irq(&tp
->tx_stats
.syncp
);
7747 stats
->tx_packets
= tp
->tx_stats
.packets
;
7748 stats
->tx_bytes
= tp
->tx_stats
.bytes
;
7749 } while (u64_stats_fetch_retry_irq(&tp
->tx_stats
.syncp
, start
));
7751 stats
->rx_dropped
= dev
->stats
.rx_dropped
;
7752 stats
->tx_dropped
= dev
->stats
.tx_dropped
;
7753 stats
->rx_length_errors
= dev
->stats
.rx_length_errors
;
7754 stats
->rx_errors
= dev
->stats
.rx_errors
;
7755 stats
->rx_crc_errors
= dev
->stats
.rx_crc_errors
;
7756 stats
->rx_fifo_errors
= dev
->stats
.rx_fifo_errors
;
7757 stats
->rx_missed_errors
= dev
->stats
.rx_missed_errors
;
7758 stats
->multicast
= dev
->stats
.multicast
;
7761 * Fetch additonal counter values missing in stats collected by driver
7762 * from tally counters.
7764 if (pm_runtime_active(&pdev
->dev
))
7765 rtl8169_update_counters(dev
);
7768 * Subtract values fetched during initalization.
7769 * See rtl8169_init_counter_offsets for a description why we do that.
7771 stats
->tx_errors
= le64_to_cpu(counters
->tx_errors
) -
7772 le64_to_cpu(tp
->tc_offset
.tx_errors
);
7773 stats
->collisions
= le32_to_cpu(counters
->tx_multi_collision
) -
7774 le32_to_cpu(tp
->tc_offset
.tx_multi_collision
);
7775 stats
->tx_aborted_errors
= le16_to_cpu(counters
->tx_aborted
) -
7776 le16_to_cpu(tp
->tc_offset
.tx_aborted
);
7778 pm_runtime_put_noidle(&pdev
->dev
);
7783 static void rtl8169_net_suspend(struct net_device
*dev
)
7785 struct rtl8169_private
*tp
= netdev_priv(dev
);
7787 if (!netif_running(dev
))
7790 netif_device_detach(dev
);
7791 netif_stop_queue(dev
);
7794 napi_disable(&tp
->napi
);
7795 clear_bit(RTL_FLAG_TASK_ENABLED
, tp
->wk
.flags
);
7796 rtl_unlock_work(tp
);
7798 rtl_pll_power_down(tp
);
7803 static int rtl8169_suspend(struct device
*device
)
7805 struct pci_dev
*pdev
= to_pci_dev(device
);
7806 struct net_device
*dev
= pci_get_drvdata(pdev
);
7808 rtl8169_net_suspend(dev
);
7813 static void __rtl8169_resume(struct net_device
*dev
)
7815 struct rtl8169_private
*tp
= netdev_priv(dev
);
7817 netif_device_attach(dev
);
7819 rtl_pll_power_up(tp
);
7822 napi_enable(&tp
->napi
);
7823 set_bit(RTL_FLAG_TASK_ENABLED
, tp
->wk
.flags
);
7824 rtl_unlock_work(tp
);
7826 rtl_schedule_task(tp
, RTL_FLAG_TASK_RESET_PENDING
);
7829 static int rtl8169_resume(struct device
*device
)
7831 struct pci_dev
*pdev
= to_pci_dev(device
);
7832 struct net_device
*dev
= pci_get_drvdata(pdev
);
7833 struct rtl8169_private
*tp
= netdev_priv(dev
);
7835 rtl8169_init_phy(dev
, tp
);
7837 if (netif_running(dev
))
7838 __rtl8169_resume(dev
);
7843 static int rtl8169_runtime_suspend(struct device
*device
)
7845 struct pci_dev
*pdev
= to_pci_dev(device
);
7846 struct net_device
*dev
= pci_get_drvdata(pdev
);
7847 struct rtl8169_private
*tp
= netdev_priv(dev
);
7849 if (!tp
->TxDescArray
)
7853 tp
->saved_wolopts
= __rtl8169_get_wol(tp
);
7854 __rtl8169_set_wol(tp
, WAKE_ANY
);
7855 rtl_unlock_work(tp
);
7857 rtl8169_net_suspend(dev
);
7859 /* Update counters before going runtime suspend */
7860 rtl8169_rx_missed(dev
, tp
->mmio_addr
);
7861 rtl8169_update_counters(dev
);
7866 static int rtl8169_runtime_resume(struct device
*device
)
7868 struct pci_dev
*pdev
= to_pci_dev(device
);
7869 struct net_device
*dev
= pci_get_drvdata(pdev
);
7870 struct rtl8169_private
*tp
= netdev_priv(dev
);
7872 if (!tp
->TxDescArray
)
7876 __rtl8169_set_wol(tp
, tp
->saved_wolopts
);
7877 tp
->saved_wolopts
= 0;
7878 rtl_unlock_work(tp
);
7880 rtl8169_init_phy(dev
, tp
);
7882 __rtl8169_resume(dev
);
7887 static int rtl8169_runtime_idle(struct device
*device
)
7889 struct pci_dev
*pdev
= to_pci_dev(device
);
7890 struct net_device
*dev
= pci_get_drvdata(pdev
);
7891 struct rtl8169_private
*tp
= netdev_priv(dev
);
7893 return tp
->TxDescArray
? -EBUSY
: 0;
7896 static const struct dev_pm_ops rtl8169_pm_ops
= {
7897 .suspend
= rtl8169_suspend
,
7898 .resume
= rtl8169_resume
,
7899 .freeze
= rtl8169_suspend
,
7900 .thaw
= rtl8169_resume
,
7901 .poweroff
= rtl8169_suspend
,
7902 .restore
= rtl8169_resume
,
7903 .runtime_suspend
= rtl8169_runtime_suspend
,
7904 .runtime_resume
= rtl8169_runtime_resume
,
7905 .runtime_idle
= rtl8169_runtime_idle
,
7908 #define RTL8169_PM_OPS (&rtl8169_pm_ops)
7910 #else /* !CONFIG_PM */
7912 #define RTL8169_PM_OPS NULL
7914 #endif /* !CONFIG_PM */
7916 static void rtl_wol_shutdown_quirk(struct rtl8169_private
*tp
)
7918 void __iomem
*ioaddr
= tp
->mmio_addr
;
7920 /* WoL fails with 8168b when the receiver is disabled. */
7921 switch (tp
->mac_version
) {
7922 case RTL_GIGA_MAC_VER_11
:
7923 case RTL_GIGA_MAC_VER_12
:
7924 case RTL_GIGA_MAC_VER_17
:
7925 pci_clear_master(tp
->pci_dev
);
7927 RTL_W8(ChipCmd
, CmdRxEnb
);
7936 static void rtl_shutdown(struct pci_dev
*pdev
)
7938 struct net_device
*dev
= pci_get_drvdata(pdev
);
7939 struct rtl8169_private
*tp
= netdev_priv(dev
);
7940 struct device
*d
= &pdev
->dev
;
7942 pm_runtime_get_sync(d
);
7944 rtl8169_net_suspend(dev
);
7946 /* Restore original MAC address */
7947 rtl_rar_set(tp
, dev
->perm_addr
);
7949 rtl8169_hw_reset(tp
);
7951 if (system_state
== SYSTEM_POWER_OFF
) {
7952 if (__rtl8169_get_wol(tp
) & WAKE_ANY
) {
7953 rtl_wol_suspend_quirk(tp
);
7954 rtl_wol_shutdown_quirk(tp
);
7957 pci_wake_from_d3(pdev
, true);
7958 pci_set_power_state(pdev
, PCI_D3hot
);
7961 pm_runtime_put_noidle(d
);
7964 static void rtl_remove_one(struct pci_dev
*pdev
)
7966 struct net_device
*dev
= pci_get_drvdata(pdev
);
7967 struct rtl8169_private
*tp
= netdev_priv(dev
);
7969 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_27
||
7970 tp
->mac_version
== RTL_GIGA_MAC_VER_28
||
7971 tp
->mac_version
== RTL_GIGA_MAC_VER_31
||
7972 tp
->mac_version
== RTL_GIGA_MAC_VER_49
||
7973 tp
->mac_version
== RTL_GIGA_MAC_VER_50
||
7974 tp
->mac_version
== RTL_GIGA_MAC_VER_51
) &&
7975 r8168_check_dash(tp
)) {
7976 rtl8168_driver_stop(tp
);
7979 netif_napi_del(&tp
->napi
);
7981 unregister_netdev(dev
);
7983 dma_free_coherent(&tp
->pci_dev
->dev
, sizeof(*tp
->counters
),
7984 tp
->counters
, tp
->counters_phys_addr
);
7986 rtl_release_firmware(tp
);
7988 if (pci_dev_run_wake(pdev
))
7989 pm_runtime_get_noresume(&pdev
->dev
);
7991 /* restore original MAC address */
7992 rtl_rar_set(tp
, dev
->perm_addr
);
7994 rtl_disable_msi(pdev
, tp
);
7995 rtl8169_release_board(pdev
, dev
, tp
->mmio_addr
);
7998 static const struct net_device_ops rtl_netdev_ops
= {
7999 .ndo_open
= rtl_open
,
8000 .ndo_stop
= rtl8169_close
,
8001 .ndo_get_stats64
= rtl8169_get_stats64
,
8002 .ndo_start_xmit
= rtl8169_start_xmit
,
8003 .ndo_tx_timeout
= rtl8169_tx_timeout
,
8004 .ndo_validate_addr
= eth_validate_addr
,
8005 .ndo_change_mtu
= rtl8169_change_mtu
,
8006 .ndo_fix_features
= rtl8169_fix_features
,
8007 .ndo_set_features
= rtl8169_set_features
,
8008 .ndo_set_mac_address
= rtl_set_mac_address
,
8009 .ndo_do_ioctl
= rtl8169_ioctl
,
8010 .ndo_set_rx_mode
= rtl_set_rx_mode
,
8011 #ifdef CONFIG_NET_POLL_CONTROLLER
8012 .ndo_poll_controller
= rtl8169_netpoll
,
8017 static const struct rtl_cfg_info
{
8018 void (*hw_start
)(struct net_device
*);
8019 unsigned int region
;
8024 } rtl_cfg_infos
[] = {
8026 .hw_start
= rtl_hw_start_8169
,
8029 .event_slow
= SYSErr
| LinkChg
| RxOverflow
| RxFIFOOver
,
8030 .features
= RTL_FEATURE_GMII
,
8031 .default_ver
= RTL_GIGA_MAC_VER_01
,
8034 .hw_start
= rtl_hw_start_8168
,
8037 .event_slow
= SYSErr
| LinkChg
| RxOverflow
,
8038 .features
= RTL_FEATURE_GMII
| RTL_FEATURE_MSI
,
8039 .default_ver
= RTL_GIGA_MAC_VER_11
,
8042 .hw_start
= rtl_hw_start_8101
,
8045 .event_slow
= SYSErr
| LinkChg
| RxOverflow
| RxFIFOOver
|
8047 .features
= RTL_FEATURE_MSI
,
8048 .default_ver
= RTL_GIGA_MAC_VER_13
,
8052 /* Cfg9346_Unlock assumed. */
8053 static unsigned rtl_try_msi(struct rtl8169_private
*tp
,
8054 const struct rtl_cfg_info
*cfg
)
8056 void __iomem
*ioaddr
= tp
->mmio_addr
;
8060 cfg2
= RTL_R8(Config2
) & ~MSIEnable
;
8061 if (cfg
->features
& RTL_FEATURE_MSI
) {
8062 if (pci_enable_msi(tp
->pci_dev
)) {
8063 netif_info(tp
, hw
, tp
->dev
, "no MSI. Back to INTx.\n");
8066 msi
= RTL_FEATURE_MSI
;
8069 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_06
)
8070 RTL_W8(Config2
, cfg2
);
8074 DECLARE_RTL_COND(rtl_link_list_ready_cond
)
8076 void __iomem
*ioaddr
= tp
->mmio_addr
;
8078 return RTL_R8(MCU
) & LINK_LIST_RDY
;
8081 DECLARE_RTL_COND(rtl_rxtx_empty_cond
)
8083 void __iomem
*ioaddr
= tp
->mmio_addr
;
8085 return (RTL_R8(MCU
) & RXTX_EMPTY
) == RXTX_EMPTY
;
8088 static void rtl_hw_init_8168g(struct rtl8169_private
*tp
)
8090 void __iomem
*ioaddr
= tp
->mmio_addr
;
8093 tp
->ocp_base
= OCP_STD_PHY_BASE
;
8095 RTL_W32(MISC
, RTL_R32(MISC
) | RXDV_GATED_EN
);
8097 if (!rtl_udelay_loop_wait_high(tp
, &rtl_txcfg_empty_cond
, 100, 42))
8100 if (!rtl_udelay_loop_wait_high(tp
, &rtl_rxtx_empty_cond
, 100, 42))
8103 RTL_W8(ChipCmd
, RTL_R8(ChipCmd
) & ~(CmdTxEnb
| CmdRxEnb
));
8105 RTL_W8(MCU
, RTL_R8(MCU
) & ~NOW_IS_OOB
);
8107 data
= r8168_mac_ocp_read(tp
, 0xe8de);
8109 r8168_mac_ocp_write(tp
, 0xe8de, data
);
8111 if (!rtl_udelay_loop_wait_high(tp
, &rtl_link_list_ready_cond
, 100, 42))
8114 data
= r8168_mac_ocp_read(tp
, 0xe8de);
8116 r8168_mac_ocp_write(tp
, 0xe8de, data
);
8118 if (!rtl_udelay_loop_wait_high(tp
, &rtl_link_list_ready_cond
, 100, 42))
8122 static void rtl_hw_init_8168ep(struct rtl8169_private
*tp
)
8124 rtl8168ep_stop_cmac(tp
);
8125 rtl_hw_init_8168g(tp
);
8128 static void rtl_hw_initialize(struct rtl8169_private
*tp
)
8130 switch (tp
->mac_version
) {
8131 case RTL_GIGA_MAC_VER_40
:
8132 case RTL_GIGA_MAC_VER_41
:
8133 case RTL_GIGA_MAC_VER_42
:
8134 case RTL_GIGA_MAC_VER_43
:
8135 case RTL_GIGA_MAC_VER_44
:
8136 case RTL_GIGA_MAC_VER_45
:
8137 case RTL_GIGA_MAC_VER_46
:
8138 case RTL_GIGA_MAC_VER_47
:
8139 case RTL_GIGA_MAC_VER_48
:
8140 rtl_hw_init_8168g(tp
);
8142 case RTL_GIGA_MAC_VER_49
:
8143 case RTL_GIGA_MAC_VER_50
:
8144 case RTL_GIGA_MAC_VER_51
:
8145 rtl_hw_init_8168ep(tp
);
8152 static int rtl_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
8154 const struct rtl_cfg_info
*cfg
= rtl_cfg_infos
+ ent
->driver_data
;
8155 const unsigned int region
= cfg
->region
;
8156 struct rtl8169_private
*tp
;
8157 struct mii_if_info
*mii
;
8158 struct net_device
*dev
;
8159 void __iomem
*ioaddr
;
8163 if (netif_msg_drv(&debug
)) {
8164 printk(KERN_INFO
"%s Gigabit Ethernet driver %s loaded\n",
8165 MODULENAME
, RTL8169_VERSION
);
8168 dev
= alloc_etherdev(sizeof (*tp
));
8174 SET_NETDEV_DEV(dev
, &pdev
->dev
);
8175 dev
->netdev_ops
= &rtl_netdev_ops
;
8176 tp
= netdev_priv(dev
);
8179 tp
->msg_enable
= netif_msg_init(debug
.msg_enable
, R8169_MSG_DEFAULT
);
8183 mii
->mdio_read
= rtl_mdio_read
;
8184 mii
->mdio_write
= rtl_mdio_write
;
8185 mii
->phy_id_mask
= 0x1f;
8186 mii
->reg_num_mask
= 0x1f;
8187 mii
->supports_gmii
= !!(cfg
->features
& RTL_FEATURE_GMII
);
8189 /* disable ASPM completely as that cause random device stop working
8190 * problems as well as full system hangs for some PCIe devices users */
8191 pci_disable_link_state(pdev
, PCIE_LINK_STATE_L0S
| PCIE_LINK_STATE_L1
|
8192 PCIE_LINK_STATE_CLKPM
);
8194 /* enable device (incl. PCI PM wakeup and hotplug setup) */
8195 rc
= pci_enable_device(pdev
);
8197 netif_err(tp
, probe
, dev
, "enable failure\n");
8198 goto err_out_free_dev_1
;
8201 if (pci_set_mwi(pdev
) < 0)
8202 netif_info(tp
, probe
, dev
, "Mem-Wr-Inval unavailable\n");
8204 /* make sure PCI base addr 1 is MMIO */
8205 if (!(pci_resource_flags(pdev
, region
) & IORESOURCE_MEM
)) {
8206 netif_err(tp
, probe
, dev
,
8207 "region #%d not an MMIO resource, aborting\n",
8213 /* check for weird/broken PCI region reporting */
8214 if (pci_resource_len(pdev
, region
) < R8169_REGS_SIZE
) {
8215 netif_err(tp
, probe
, dev
,
8216 "Invalid PCI region size(s), aborting\n");
8221 rc
= pci_request_regions(pdev
, MODULENAME
);
8223 netif_err(tp
, probe
, dev
, "could not request regions\n");
8227 /* ioremap MMIO region */
8228 ioaddr
= ioremap(pci_resource_start(pdev
, region
), R8169_REGS_SIZE
);
8230 netif_err(tp
, probe
, dev
, "cannot remap MMIO, aborting\n");
8232 goto err_out_free_res_3
;
8234 tp
->mmio_addr
= ioaddr
;
8236 if (!pci_is_pcie(pdev
))
8237 netif_info(tp
, probe
, dev
, "not PCI Express\n");
8239 /* Identify chip attached to board */
8240 rtl8169_get_mac_version(tp
, dev
, cfg
->default_ver
);
8244 if ((sizeof(dma_addr_t
) > 4) &&
8245 (use_dac
== 1 || (use_dac
== -1 && pci_is_pcie(pdev
) &&
8246 tp
->mac_version
>= RTL_GIGA_MAC_VER_18
)) &&
8247 !pci_set_dma_mask(pdev
, DMA_BIT_MASK(64))) {
8249 /* CPlusCmd Dual Access Cycle is only needed for non-PCIe */
8250 if (!pci_is_pcie(pdev
))
8251 tp
->cp_cmd
|= PCIDAC
;
8252 dev
->features
|= NETIF_F_HIGHDMA
;
8254 rc
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
8256 netif_err(tp
, probe
, dev
, "DMA configuration failed\n");
8257 goto err_out_unmap_4
;
8263 rtl_irq_disable(tp
);
8265 rtl_hw_initialize(tp
);
8269 rtl_ack_events(tp
, 0xffff);
8271 pci_set_master(pdev
);
8273 rtl_init_mdio_ops(tp
);
8274 rtl_init_pll_power_ops(tp
);
8275 rtl_init_jumbo_ops(tp
);
8276 rtl_init_csi_ops(tp
);
8278 rtl8169_print_mac_version(tp
);
8280 chipset
= tp
->mac_version
;
8281 tp
->txd_version
= rtl_chip_infos
[chipset
].txd_version
;
8283 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
8284 RTL_W8(Config1
, RTL_R8(Config1
) | PMEnable
);
8285 RTL_W8(Config5
, RTL_R8(Config5
) & (BWF
| MWF
| UWF
| LanWake
| PMEStatus
));
8286 switch (tp
->mac_version
) {
8287 case RTL_GIGA_MAC_VER_34
:
8288 case RTL_GIGA_MAC_VER_35
:
8289 case RTL_GIGA_MAC_VER_36
:
8290 case RTL_GIGA_MAC_VER_37
:
8291 case RTL_GIGA_MAC_VER_38
:
8292 case RTL_GIGA_MAC_VER_40
:
8293 case RTL_GIGA_MAC_VER_41
:
8294 case RTL_GIGA_MAC_VER_42
:
8295 case RTL_GIGA_MAC_VER_43
:
8296 case RTL_GIGA_MAC_VER_44
:
8297 case RTL_GIGA_MAC_VER_45
:
8298 case RTL_GIGA_MAC_VER_46
:
8299 case RTL_GIGA_MAC_VER_47
:
8300 case RTL_GIGA_MAC_VER_48
:
8301 case RTL_GIGA_MAC_VER_49
:
8302 case RTL_GIGA_MAC_VER_50
:
8303 case RTL_GIGA_MAC_VER_51
:
8304 if (rtl_eri_read(tp
, 0xdc, ERIAR_EXGMAC
) & MagicPacket_v2
)
8305 tp
->features
|= RTL_FEATURE_WOL
;
8306 if ((RTL_R8(Config3
) & LinkUp
) != 0)
8307 tp
->features
|= RTL_FEATURE_WOL
;
8310 if ((RTL_R8(Config3
) & (LinkUp
| MagicPacket
)) != 0)
8311 tp
->features
|= RTL_FEATURE_WOL
;
8314 if ((RTL_R8(Config5
) & (UWF
| BWF
| MWF
)) != 0)
8315 tp
->features
|= RTL_FEATURE_WOL
;
8316 tp
->features
|= rtl_try_msi(tp
, cfg
);
8317 RTL_W8(Cfg9346
, Cfg9346_Lock
);
8319 if (rtl_tbi_enabled(tp
)) {
8320 tp
->set_speed
= rtl8169_set_speed_tbi
;
8321 tp
->get_settings
= rtl8169_gset_tbi
;
8322 tp
->phy_reset_enable
= rtl8169_tbi_reset_enable
;
8323 tp
->phy_reset_pending
= rtl8169_tbi_reset_pending
;
8324 tp
->link_ok
= rtl8169_tbi_link_ok
;
8325 tp
->do_ioctl
= rtl_tbi_ioctl
;
8327 tp
->set_speed
= rtl8169_set_speed_xmii
;
8328 tp
->get_settings
= rtl8169_gset_xmii
;
8329 tp
->phy_reset_enable
= rtl8169_xmii_reset_enable
;
8330 tp
->phy_reset_pending
= rtl8169_xmii_reset_pending
;
8331 tp
->link_ok
= rtl8169_xmii_link_ok
;
8332 tp
->do_ioctl
= rtl_xmii_ioctl
;
8335 mutex_init(&tp
->wk
.mutex
);
8336 u64_stats_init(&tp
->rx_stats
.syncp
);
8337 u64_stats_init(&tp
->tx_stats
.syncp
);
8339 /* Get MAC address */
8340 if (tp
->mac_version
== RTL_GIGA_MAC_VER_35
||
8341 tp
->mac_version
== RTL_GIGA_MAC_VER_36
||
8342 tp
->mac_version
== RTL_GIGA_MAC_VER_37
||
8343 tp
->mac_version
== RTL_GIGA_MAC_VER_38
||
8344 tp
->mac_version
== RTL_GIGA_MAC_VER_40
||
8345 tp
->mac_version
== RTL_GIGA_MAC_VER_41
||
8346 tp
->mac_version
== RTL_GIGA_MAC_VER_42
||
8347 tp
->mac_version
== RTL_GIGA_MAC_VER_43
||
8348 tp
->mac_version
== RTL_GIGA_MAC_VER_44
||
8349 tp
->mac_version
== RTL_GIGA_MAC_VER_45
||
8350 tp
->mac_version
== RTL_GIGA_MAC_VER_46
||
8351 tp
->mac_version
== RTL_GIGA_MAC_VER_47
||
8352 tp
->mac_version
== RTL_GIGA_MAC_VER_48
||
8353 tp
->mac_version
== RTL_GIGA_MAC_VER_49
||
8354 tp
->mac_version
== RTL_GIGA_MAC_VER_50
||
8355 tp
->mac_version
== RTL_GIGA_MAC_VER_51
) {
8358 *(u32
*)&mac_addr
[0] = rtl_eri_read(tp
, 0xe0, ERIAR_EXGMAC
);
8359 *(u16
*)&mac_addr
[2] = rtl_eri_read(tp
, 0xe4, ERIAR_EXGMAC
);
8361 if (is_valid_ether_addr((u8
*)mac_addr
))
8362 rtl_rar_set(tp
, (u8
*)mac_addr
);
8364 for (i
= 0; i
< ETH_ALEN
; i
++)
8365 dev
->dev_addr
[i
] = RTL_R8(MAC0
+ i
);
8367 dev
->ethtool_ops
= &rtl8169_ethtool_ops
;
8368 dev
->watchdog_timeo
= RTL8169_TX_TIMEOUT
;
8370 netif_napi_add(dev
, &tp
->napi
, rtl8169_poll
, R8169_NAPI_WEIGHT
);
8372 /* don't enable SG, IP_CSUM and TSO by default - it might not work
8373 * properly for all devices */
8374 dev
->features
|= NETIF_F_RXCSUM
|
8375 NETIF_F_HW_VLAN_CTAG_TX
| NETIF_F_HW_VLAN_CTAG_RX
;
8377 dev
->hw_features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_TSO
|
8378 NETIF_F_RXCSUM
| NETIF_F_HW_VLAN_CTAG_TX
|
8379 NETIF_F_HW_VLAN_CTAG_RX
;
8380 dev
->vlan_features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_TSO
|
8383 tp
->cp_cmd
|= RxChkSum
| RxVlan
;
8386 * Pretend we are using VLANs; This bypasses a nasty bug where
8387 * Interrupts stop flowing on high load on 8110SCd controllers.
8389 if (tp
->mac_version
== RTL_GIGA_MAC_VER_05
)
8390 /* Disallow toggling */
8391 dev
->hw_features
&= ~NETIF_F_HW_VLAN_CTAG_RX
;
8393 if (tp
->txd_version
== RTL_TD_0
)
8394 tp
->tso_csum
= rtl8169_tso_csum_v1
;
8395 else if (tp
->txd_version
== RTL_TD_1
) {
8396 tp
->tso_csum
= rtl8169_tso_csum_v2
;
8397 dev
->hw_features
|= NETIF_F_IPV6_CSUM
| NETIF_F_TSO6
;
8401 dev
->hw_features
|= NETIF_F_RXALL
;
8402 dev
->hw_features
|= NETIF_F_RXFCS
;
8404 tp
->hw_start
= cfg
->hw_start
;
8405 tp
->event_slow
= cfg
->event_slow
;
8407 tp
->opts1_mask
= (tp
->mac_version
!= RTL_GIGA_MAC_VER_01
) ?
8408 ~(RxBOVF
| RxFOVF
) : ~0;
8410 init_timer(&tp
->timer
);
8411 tp
->timer
.data
= (unsigned long) dev
;
8412 tp
->timer
.function
= rtl8169_phy_timer
;
8414 tp
->rtl_fw
= RTL_FIRMWARE_UNKNOWN
;
8416 tp
->counters
= dma_alloc_coherent (&pdev
->dev
, sizeof(*tp
->counters
),
8417 &tp
->counters_phys_addr
, GFP_KERNEL
);
8418 if (!tp
->counters
) {
8423 rc
= register_netdev(dev
);
8427 pci_set_drvdata(pdev
, dev
);
8429 netif_info(tp
, probe
, dev
, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
8430 rtl_chip_infos
[chipset
].name
, ioaddr
, dev
->dev_addr
,
8431 (u32
)(RTL_R32(TxConfig
) & 0x9cf0f8ff), pdev
->irq
);
8432 if (rtl_chip_infos
[chipset
].jumbo_max
!= JUMBO_1K
) {
8433 netif_info(tp
, probe
, dev
, "jumbo features [frames: %d bytes, "
8434 "tx checksumming: %s]\n",
8435 rtl_chip_infos
[chipset
].jumbo_max
,
8436 rtl_chip_infos
[chipset
].jumbo_tx_csum
? "ok" : "ko");
8439 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_27
||
8440 tp
->mac_version
== RTL_GIGA_MAC_VER_28
||
8441 tp
->mac_version
== RTL_GIGA_MAC_VER_31
||
8442 tp
->mac_version
== RTL_GIGA_MAC_VER_49
||
8443 tp
->mac_version
== RTL_GIGA_MAC_VER_50
||
8444 tp
->mac_version
== RTL_GIGA_MAC_VER_51
) &&
8445 r8168_check_dash(tp
)) {
8446 rtl8168_driver_start(tp
);
8449 device_set_wakeup_enable(&pdev
->dev
, tp
->features
& RTL_FEATURE_WOL
);
8451 if (pci_dev_run_wake(pdev
))
8452 pm_runtime_put_noidle(&pdev
->dev
);
8454 netif_carrier_off(dev
);
8460 dma_free_coherent(&pdev
->dev
, sizeof(*tp
->counters
), tp
->counters
,
8461 tp
->counters_phys_addr
);
8463 netif_napi_del(&tp
->napi
);
8464 rtl_disable_msi(pdev
, tp
);
8468 pci_release_regions(pdev
);
8470 pci_clear_mwi(pdev
);
8471 pci_disable_device(pdev
);
8477 static struct pci_driver rtl8169_pci_driver
= {
8479 .id_table
= rtl8169_pci_tbl
,
8480 .probe
= rtl_init_one
,
8481 .remove
= rtl_remove_one
,
8482 .shutdown
= rtl_shutdown
,
8483 .driver
.pm
= RTL8169_PM_OPS
,
8486 module_pci_driver(rtl8169_pci_driver
);