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/init.h>
25 #include <linux/interrupt.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/firmware.h>
29 #include <linux/pci-aspm.h>
30 #include <linux/prefetch.h>
32 #include <asm/system.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"
50 #define assert(expr) \
52 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
53 #expr,__FILE__,__func__,__LINE__); \
55 #define dprintk(fmt, args...) \
56 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
58 #define assert(expr) do {} while (0)
59 #define dprintk(fmt, args...) do {} while (0)
60 #endif /* RTL8169_DEBUG */
62 #define R8169_MSG_DEFAULT \
63 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
65 #define TX_BUFFS_AVAIL(tp) \
66 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
68 /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
69 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
70 static const int multicast_filter_limit
= 32;
72 /* MAC address length */
73 #define MAC_ADDR_LEN 6
75 #define MAX_READ_REQUEST_SHIFT 12
76 #define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
77 #define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
78 #define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
80 #define R8169_REGS_SIZE 256
81 #define R8169_NAPI_WEIGHT 64
82 #define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
83 #define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
84 #define RX_BUF_SIZE 1536 /* Rx Buffer size */
85 #define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
86 #define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
88 #define RTL8169_TX_TIMEOUT (6*HZ)
89 #define RTL8169_PHY_TIMEOUT (10*HZ)
91 #define RTL_EEPROM_SIG cpu_to_le32(0x8129)
92 #define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
93 #define RTL_EEPROM_SIG_ADDR 0x0000
95 /* write/read MMIO register */
96 #define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
97 #define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
98 #define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
99 #define RTL_R8(reg) readb (ioaddr + (reg))
100 #define RTL_R16(reg) readw (ioaddr + (reg))
101 #define RTL_R32(reg) readl (ioaddr + (reg))
104 RTL_GIGA_MAC_VER_01
= 0,
140 RTL_GIGA_MAC_NONE
= 0xff,
143 enum rtl_tx_desc_version
{
148 #define JUMBO_1K ETH_DATA_LEN
149 #define JUMBO_4K (4*1024 - ETH_HLEN - 2)
150 #define JUMBO_6K (6*1024 - ETH_HLEN - 2)
151 #define JUMBO_7K (7*1024 - ETH_HLEN - 2)
152 #define JUMBO_9K (9*1024 - ETH_HLEN - 2)
154 #define _R(NAME,TD,FW,SZ,B) { \
162 static const struct {
164 enum rtl_tx_desc_version txd_version
;
168 } rtl_chip_infos
[] = {
170 [RTL_GIGA_MAC_VER_01
] =
171 _R("RTL8169", RTL_TD_0
, NULL
, JUMBO_7K
, true),
172 [RTL_GIGA_MAC_VER_02
] =
173 _R("RTL8169s", RTL_TD_0
, NULL
, JUMBO_7K
, true),
174 [RTL_GIGA_MAC_VER_03
] =
175 _R("RTL8110s", RTL_TD_0
, NULL
, JUMBO_7K
, true),
176 [RTL_GIGA_MAC_VER_04
] =
177 _R("RTL8169sb/8110sb", RTL_TD_0
, NULL
, JUMBO_7K
, true),
178 [RTL_GIGA_MAC_VER_05
] =
179 _R("RTL8169sc/8110sc", RTL_TD_0
, NULL
, JUMBO_7K
, true),
180 [RTL_GIGA_MAC_VER_06
] =
181 _R("RTL8169sc/8110sc", RTL_TD_0
, NULL
, JUMBO_7K
, true),
183 [RTL_GIGA_MAC_VER_07
] =
184 _R("RTL8102e", RTL_TD_1
, NULL
, JUMBO_1K
, true),
185 [RTL_GIGA_MAC_VER_08
] =
186 _R("RTL8102e", RTL_TD_1
, NULL
, JUMBO_1K
, true),
187 [RTL_GIGA_MAC_VER_09
] =
188 _R("RTL8102e", RTL_TD_1
, NULL
, JUMBO_1K
, true),
189 [RTL_GIGA_MAC_VER_10
] =
190 _R("RTL8101e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
191 [RTL_GIGA_MAC_VER_11
] =
192 _R("RTL8168b/8111b", RTL_TD_0
, NULL
, JUMBO_4K
, false),
193 [RTL_GIGA_MAC_VER_12
] =
194 _R("RTL8168b/8111b", RTL_TD_0
, NULL
, JUMBO_4K
, false),
195 [RTL_GIGA_MAC_VER_13
] =
196 _R("RTL8101e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
197 [RTL_GIGA_MAC_VER_14
] =
198 _R("RTL8100e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
199 [RTL_GIGA_MAC_VER_15
] =
200 _R("RTL8100e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
201 [RTL_GIGA_MAC_VER_16
] =
202 _R("RTL8101e", RTL_TD_0
, NULL
, JUMBO_1K
, true),
203 [RTL_GIGA_MAC_VER_17
] =
204 _R("RTL8168b/8111b", RTL_TD_1
, NULL
, JUMBO_4K
, false),
205 [RTL_GIGA_MAC_VER_18
] =
206 _R("RTL8168cp/8111cp", RTL_TD_1
, NULL
, JUMBO_6K
, false),
207 [RTL_GIGA_MAC_VER_19
] =
208 _R("RTL8168c/8111c", RTL_TD_1
, NULL
, JUMBO_6K
, false),
209 [RTL_GIGA_MAC_VER_20
] =
210 _R("RTL8168c/8111c", RTL_TD_1
, NULL
, JUMBO_6K
, false),
211 [RTL_GIGA_MAC_VER_21
] =
212 _R("RTL8168c/8111c", RTL_TD_1
, NULL
, JUMBO_6K
, false),
213 [RTL_GIGA_MAC_VER_22
] =
214 _R("RTL8168c/8111c", RTL_TD_1
, NULL
, JUMBO_6K
, false),
215 [RTL_GIGA_MAC_VER_23
] =
216 _R("RTL8168cp/8111cp", RTL_TD_1
, NULL
, JUMBO_6K
, false),
217 [RTL_GIGA_MAC_VER_24
] =
218 _R("RTL8168cp/8111cp", RTL_TD_1
, NULL
, JUMBO_6K
, false),
219 [RTL_GIGA_MAC_VER_25
] =
220 _R("RTL8168d/8111d", RTL_TD_1
, FIRMWARE_8168D_1
,
222 [RTL_GIGA_MAC_VER_26
] =
223 _R("RTL8168d/8111d", RTL_TD_1
, FIRMWARE_8168D_2
,
225 [RTL_GIGA_MAC_VER_27
] =
226 _R("RTL8168dp/8111dp", RTL_TD_1
, NULL
, JUMBO_9K
, false),
227 [RTL_GIGA_MAC_VER_28
] =
228 _R("RTL8168dp/8111dp", RTL_TD_1
, NULL
, JUMBO_9K
, false),
229 [RTL_GIGA_MAC_VER_29
] =
230 _R("RTL8105e", RTL_TD_1
, FIRMWARE_8105E_1
,
232 [RTL_GIGA_MAC_VER_30
] =
233 _R("RTL8105e", RTL_TD_1
, FIRMWARE_8105E_1
,
235 [RTL_GIGA_MAC_VER_31
] =
236 _R("RTL8168dp/8111dp", RTL_TD_1
, NULL
, JUMBO_9K
, false),
237 [RTL_GIGA_MAC_VER_32
] =
238 _R("RTL8168e/8111e", RTL_TD_1
, FIRMWARE_8168E_1
,
240 [RTL_GIGA_MAC_VER_33
] =
241 _R("RTL8168e/8111e", RTL_TD_1
, FIRMWARE_8168E_2
,
243 [RTL_GIGA_MAC_VER_34
] =
244 _R("RTL8168evl/8111evl",RTL_TD_1
, FIRMWARE_8168E_3
,
246 [RTL_GIGA_MAC_VER_35
] =
247 _R("RTL8168f/8111f", RTL_TD_1
, FIRMWARE_8168F_1
,
249 [RTL_GIGA_MAC_VER_36
] =
250 _R("RTL8168f/8111f", RTL_TD_1
, FIRMWARE_8168F_2
,
261 static void rtl_hw_start_8169(struct net_device
*);
262 static void rtl_hw_start_8168(struct net_device
*);
263 static void rtl_hw_start_8101(struct net_device
*);
265 static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl
) = {
266 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8129), 0, 0, RTL_CFG_0
},
267 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8136), 0, 0, RTL_CFG_2
},
268 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8167), 0, 0, RTL_CFG_0
},
269 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8168), 0, 0, RTL_CFG_1
},
270 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8169), 0, 0, RTL_CFG_0
},
271 { PCI_DEVICE(PCI_VENDOR_ID_DLINK
, 0x4300), 0, 0, RTL_CFG_0
},
272 { PCI_DEVICE(PCI_VENDOR_ID_DLINK
, 0x4302), 0, 0, RTL_CFG_0
},
273 { PCI_DEVICE(PCI_VENDOR_ID_AT
, 0xc107), 0, 0, RTL_CFG_0
},
274 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0
},
275 { PCI_VENDOR_ID_LINKSYS
, 0x1032,
276 PCI_ANY_ID
, 0x0024, 0, 0, RTL_CFG_0
},
278 PCI_ANY_ID
, 0x2410, 0, 0, RTL_CFG_2
},
282 MODULE_DEVICE_TABLE(pci
, rtl8169_pci_tbl
);
284 static int rx_buf_sz
= 16383;
291 MAC0
= 0, /* Ethernet hardware address. */
293 MAR0
= 8, /* Multicast filter. */
294 CounterAddrLow
= 0x10,
295 CounterAddrHigh
= 0x14,
296 TxDescStartAddrLow
= 0x20,
297 TxDescStartAddrHigh
= 0x24,
298 TxHDescStartAddrLow
= 0x28,
299 TxHDescStartAddrHigh
= 0x2c,
308 #define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
309 #define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
312 #define RX128_INT_EN (1 << 15) /* 8111c and later */
313 #define RX_MULTI_EN (1 << 14) /* 8111c only */
314 #define RXCFG_FIFO_SHIFT 13
315 /* No threshold before first PCI xfer */
316 #define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
317 #define RXCFG_DMA_SHIFT 8
318 /* Unlimited maximum PCI burst. */
319 #define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
335 RxDescAddrLow
= 0xe4,
336 RxDescAddrHigh
= 0xe8,
337 EarlyTxThres
= 0xec, /* 8169. Unit of 32 bytes. */
339 #define NoEarlyTx 0x3f /* Max value : no early transmit. */
341 MaxTxPacketSize
= 0xec, /* 8101/8168. Unit of 128 bytes. */
343 #define TxPacketMax (8064 >> 7)
344 #define EarlySize 0x27
347 FuncEventMask
= 0xf4,
348 FuncPresetState
= 0xf8,
349 FuncForceEvent
= 0xfc,
352 enum rtl8110_registers
{
358 enum rtl8168_8101_registers
{
361 #define CSIAR_FLAG 0x80000000
362 #define CSIAR_WRITE_CMD 0x80000000
363 #define CSIAR_BYTE_ENABLE 0x0f
364 #define CSIAR_BYTE_ENABLE_SHIFT 12
365 #define CSIAR_ADDR_MASK 0x0fff
368 #define EPHYAR_FLAG 0x80000000
369 #define EPHYAR_WRITE_CMD 0x80000000
370 #define EPHYAR_REG_MASK 0x1f
371 #define EPHYAR_REG_SHIFT 16
372 #define EPHYAR_DATA_MASK 0xffff
374 #define PFM_EN (1 << 6)
376 #define FIX_NAK_1 (1 << 4)
377 #define FIX_NAK_2 (1 << 3)
380 #define NOW_IS_OOB (1 << 7)
381 #define EN_NDP (1 << 3)
382 #define EN_OOB_RESET (1 << 2)
384 #define EFUSEAR_FLAG 0x80000000
385 #define EFUSEAR_WRITE_CMD 0x80000000
386 #define EFUSEAR_READ_CMD 0x00000000
387 #define EFUSEAR_REG_MASK 0x03ff
388 #define EFUSEAR_REG_SHIFT 8
389 #define EFUSEAR_DATA_MASK 0xff
392 enum rtl8168_registers
{
397 #define ERIAR_FLAG 0x80000000
398 #define ERIAR_WRITE_CMD 0x80000000
399 #define ERIAR_READ_CMD 0x00000000
400 #define ERIAR_ADDR_BYTE_ALIGN 4
401 #define ERIAR_TYPE_SHIFT 16
402 #define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
403 #define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
404 #define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
405 #define ERIAR_MASK_SHIFT 12
406 #define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
407 #define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
408 #define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
409 EPHY_RXER_NUM
= 0x7c,
410 OCPDR
= 0xb0, /* OCP GPHY access */
411 #define OCPDR_WRITE_CMD 0x80000000
412 #define OCPDR_READ_CMD 0x00000000
413 #define OCPDR_REG_MASK 0x7f
414 #define OCPDR_GPHY_REG_SHIFT 16
415 #define OCPDR_DATA_MASK 0xffff
417 #define OCPAR_FLAG 0x80000000
418 #define OCPAR_GPHY_WRITE_CMD 0x8000f060
419 #define OCPAR_GPHY_READ_CMD 0x0000f060
420 RDSAR1
= 0xd0, /* 8168c only. Undocumented on 8168dp */
421 MISC
= 0xf0, /* 8168e only. */
422 #define TXPLA_RST (1 << 29)
423 #define PWM_EN (1 << 22)
426 enum rtl_register_content
{
427 /* InterruptStatusBits */
431 TxDescUnavail
= 0x0080,
455 /* TXPoll register p.5 */
456 HPQ
= 0x80, /* Poll cmd on the high prio queue */
457 NPQ
= 0x40, /* Poll cmd on the low prio queue */
458 FSWInt
= 0x01, /* Forced software interrupt */
462 Cfg9346_Unlock
= 0xc0,
467 AcceptBroadcast
= 0x08,
468 AcceptMulticast
= 0x04,
470 AcceptAllPhys
= 0x01,
471 #define RX_CONFIG_ACCEPT_MASK 0x3f
474 TxInterFrameGapShift
= 24,
475 TxDMAShift
= 8, /* DMA burst value (0-7) is shift this many bits */
477 /* Config1 register p.24 */
480 MSIEnable
= (1 << 5), /* Enable Message Signaled Interrupt */
481 Speed_down
= (1 << 4),
485 PMEnable
= (1 << 0), /* Power Management Enable */
487 /* Config2 register p. 25 */
488 PCI_Clock_66MHz
= 0x01,
489 PCI_Clock_33MHz
= 0x00,
491 /* Config3 register p.25 */
492 MagicPacket
= (1 << 5), /* Wake up when receives a Magic Packet */
493 LinkUp
= (1 << 4), /* Wake up when the cable connection is re-established */
494 Jumbo_En0
= (1 << 2), /* 8168 only. Reserved in the 8168b */
495 Beacon_en
= (1 << 0), /* 8168 only. Reserved in the 8168b */
497 /* Config4 register */
498 Jumbo_En1
= (1 << 1), /* 8168 only. Reserved in the 8168b */
500 /* Config5 register p.27 */
501 BWF
= (1 << 6), /* Accept Broadcast wakeup frame */
502 MWF
= (1 << 5), /* Accept Multicast wakeup frame */
503 UWF
= (1 << 4), /* Accept Unicast wakeup frame */
505 LanWake
= (1 << 1), /* LanWake enable/disable */
506 PMEStatus
= (1 << 0), /* PME status can be reset by PCI RST# */
509 TBIReset
= 0x80000000,
510 TBILoopback
= 0x40000000,
511 TBINwEnable
= 0x20000000,
512 TBINwRestart
= 0x10000000,
513 TBILinkOk
= 0x02000000,
514 TBINwComplete
= 0x01000000,
517 EnableBist
= (1 << 15), // 8168 8101
518 Mac_dbgo_oe
= (1 << 14), // 8168 8101
519 Normal_mode
= (1 << 13), // unused
520 Force_half_dup
= (1 << 12), // 8168 8101
521 Force_rxflow_en
= (1 << 11), // 8168 8101
522 Force_txflow_en
= (1 << 10), // 8168 8101
523 Cxpl_dbg_sel
= (1 << 9), // 8168 8101
524 ASF
= (1 << 8), // 8168 8101
525 PktCntrDisable
= (1 << 7), // 8168 8101
526 Mac_dbgo_sel
= 0x001c, // 8168
531 INTT_0
= 0x0000, // 8168
532 INTT_1
= 0x0001, // 8168
533 INTT_2
= 0x0002, // 8168
534 INTT_3
= 0x0003, // 8168
536 /* rtl8169_PHYstatus */
547 TBILinkOK
= 0x02000000,
549 /* DumpCounterCommand */
554 /* First doubleword. */
555 DescOwn
= (1 << 31), /* Descriptor is owned by NIC */
556 RingEnd
= (1 << 30), /* End of descriptor ring */
557 FirstFrag
= (1 << 29), /* First segment of a packet */
558 LastFrag
= (1 << 28), /* Final segment of a packet */
562 enum rtl_tx_desc_bit
{
563 /* First doubleword. */
564 TD_LSO
= (1 << 27), /* Large Send Offload */
565 #define TD_MSS_MAX 0x07ffu /* MSS value */
567 /* Second doubleword. */
568 TxVlanTag
= (1 << 17), /* Add VLAN tag */
571 /* 8169, 8168b and 810x except 8102e. */
572 enum rtl_tx_desc_bit_0
{
573 /* First doubleword. */
574 #define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
575 TD0_TCP_CS
= (1 << 16), /* Calculate TCP/IP checksum */
576 TD0_UDP_CS
= (1 << 17), /* Calculate UDP/IP checksum */
577 TD0_IP_CS
= (1 << 18), /* Calculate IP checksum */
580 /* 8102e, 8168c and beyond. */
581 enum rtl_tx_desc_bit_1
{
582 /* Second doubleword. */
583 #define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
584 TD1_IP_CS
= (1 << 29), /* Calculate IP checksum */
585 TD1_TCP_CS
= (1 << 30), /* Calculate TCP/IP checksum */
586 TD1_UDP_CS
= (1 << 31), /* Calculate UDP/IP checksum */
589 static const struct rtl_tx_desc_info
{
596 } tx_desc_info
[] = {
599 .udp
= TD0_IP_CS
| TD0_UDP_CS
,
600 .tcp
= TD0_IP_CS
| TD0_TCP_CS
602 .mss_shift
= TD0_MSS_SHIFT
,
607 .udp
= TD1_IP_CS
| TD1_UDP_CS
,
608 .tcp
= TD1_IP_CS
| TD1_TCP_CS
610 .mss_shift
= TD1_MSS_SHIFT
,
615 enum rtl_rx_desc_bit
{
617 PID1
= (1 << 18), /* Protocol ID bit 1/2 */
618 PID0
= (1 << 17), /* Protocol ID bit 2/2 */
620 #define RxProtoUDP (PID1)
621 #define RxProtoTCP (PID0)
622 #define RxProtoIP (PID1 | PID0)
623 #define RxProtoMask RxProtoIP
625 IPFail
= (1 << 16), /* IP checksum failed */
626 UDPFail
= (1 << 15), /* UDP/IP checksum failed */
627 TCPFail
= (1 << 14), /* TCP/IP checksum failed */
628 RxVlanTag
= (1 << 16), /* VLAN tag available */
631 #define RsvdMask 0x3fffc000
648 u8 __pad
[sizeof(void *) - sizeof(u32
)];
652 RTL_FEATURE_WOL
= (1 << 0),
653 RTL_FEATURE_MSI
= (1 << 1),
654 RTL_FEATURE_GMII
= (1 << 2),
657 struct rtl8169_counters
{
664 __le32 tx_one_collision
;
665 __le32 tx_multi_collision
;
673 struct rtl8169_private
{
674 void __iomem
*mmio_addr
; /* memory map physical address */
675 struct pci_dev
*pci_dev
;
676 struct net_device
*dev
;
677 struct napi_struct napi
;
682 u32 cur_rx
; /* Index into the Rx descriptor buffer of next Rx pkt. */
683 u32 cur_tx
; /* Index into the Tx descriptor buffer of next Rx pkt. */
686 struct TxDesc
*TxDescArray
; /* 256-aligned Tx descriptor ring */
687 struct RxDesc
*RxDescArray
; /* 256-aligned Rx descriptor ring */
688 dma_addr_t TxPhyAddr
;
689 dma_addr_t RxPhyAddr
;
690 void *Rx_databuff
[NUM_RX_DESC
]; /* Rx data buffers */
691 struct ring_info tx_skb
[NUM_TX_DESC
]; /* Tx data buffers */
692 struct timer_list timer
;
699 void (*write
)(void __iomem
*, int, int);
700 int (*read
)(void __iomem
*, int);
703 struct pll_power_ops
{
704 void (*down
)(struct rtl8169_private
*);
705 void (*up
)(struct rtl8169_private
*);
709 void (*enable
)(struct rtl8169_private
*);
710 void (*disable
)(struct rtl8169_private
*);
713 int (*set_speed
)(struct net_device
*, u8 aneg
, u16 sp
, u8 dpx
, u32 adv
);
714 int (*get_settings
)(struct net_device
*, struct ethtool_cmd
*);
715 void (*phy_reset_enable
)(struct rtl8169_private
*tp
);
716 void (*hw_start
)(struct net_device
*);
717 unsigned int (*phy_reset_pending
)(struct rtl8169_private
*tp
);
718 unsigned int (*link_ok
)(void __iomem
*);
719 int (*do_ioctl
)(struct rtl8169_private
*tp
, struct mii_ioctl_data
*data
, int cmd
);
720 struct delayed_work task
;
723 struct mii_if_info mii
;
724 struct rtl8169_counters counters
;
729 const struct firmware
*fw
;
731 #define RTL_VER_SIZE 32
733 char version
[RTL_VER_SIZE
];
735 struct rtl_fw_phy_action
{
740 #define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
743 MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
744 MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
745 module_param(use_dac
, int, 0);
746 MODULE_PARM_DESC(use_dac
, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
747 module_param_named(debug
, debug
.msg_enable
, int, 0);
748 MODULE_PARM_DESC(debug
, "Debug verbosity level (0=none, ..., 16=all)");
749 MODULE_LICENSE("GPL");
750 MODULE_VERSION(RTL8169_VERSION
);
751 MODULE_FIRMWARE(FIRMWARE_8168D_1
);
752 MODULE_FIRMWARE(FIRMWARE_8168D_2
);
753 MODULE_FIRMWARE(FIRMWARE_8168E_1
);
754 MODULE_FIRMWARE(FIRMWARE_8168E_2
);
755 MODULE_FIRMWARE(FIRMWARE_8168E_3
);
756 MODULE_FIRMWARE(FIRMWARE_8105E_1
);
757 MODULE_FIRMWARE(FIRMWARE_8168F_1
);
758 MODULE_FIRMWARE(FIRMWARE_8168F_2
);
760 static int rtl8169_open(struct net_device
*dev
);
761 static netdev_tx_t
rtl8169_start_xmit(struct sk_buff
*skb
,
762 struct net_device
*dev
);
763 static irqreturn_t
rtl8169_interrupt(int irq
, void *dev_instance
);
764 static int rtl8169_init_ring(struct net_device
*dev
);
765 static void rtl_hw_start(struct net_device
*dev
);
766 static int rtl8169_close(struct net_device
*dev
);
767 static void rtl_set_rx_mode(struct net_device
*dev
);
768 static void rtl8169_tx_timeout(struct net_device
*dev
);
769 static struct net_device_stats
*rtl8169_get_stats(struct net_device
*dev
);
770 static int rtl8169_rx_interrupt(struct net_device
*, struct rtl8169_private
*,
771 void __iomem
*, u32 budget
);
772 static int rtl8169_change_mtu(struct net_device
*dev
, int new_mtu
);
773 static void rtl8169_down(struct net_device
*dev
);
774 static void rtl8169_rx_clear(struct rtl8169_private
*tp
);
775 static int rtl8169_poll(struct napi_struct
*napi
, int budget
);
777 static void rtl_tx_performance_tweak(struct pci_dev
*pdev
, u16 force
)
779 int cap
= pci_pcie_cap(pdev
);
784 pci_read_config_word(pdev
, cap
+ PCI_EXP_DEVCTL
, &ctl
);
785 ctl
= (ctl
& ~PCI_EXP_DEVCTL_READRQ
) | force
;
786 pci_write_config_word(pdev
, cap
+ PCI_EXP_DEVCTL
, ctl
);
790 static u32
ocp_read(struct rtl8169_private
*tp
, u8 mask
, u16 reg
)
792 void __iomem
*ioaddr
= tp
->mmio_addr
;
795 RTL_W32(OCPAR
, ((u32
)mask
& 0x0f) << 12 | (reg
& 0x0fff));
796 for (i
= 0; i
< 20; i
++) {
798 if (RTL_R32(OCPAR
) & OCPAR_FLAG
)
801 return RTL_R32(OCPDR
);
804 static void ocp_write(struct rtl8169_private
*tp
, u8 mask
, u16 reg
, u32 data
)
806 void __iomem
*ioaddr
= tp
->mmio_addr
;
809 RTL_W32(OCPDR
, data
);
810 RTL_W32(OCPAR
, OCPAR_FLAG
| ((u32
)mask
& 0x0f) << 12 | (reg
& 0x0fff));
811 for (i
= 0; i
< 20; i
++) {
813 if ((RTL_R32(OCPAR
) & OCPAR_FLAG
) == 0)
818 static void rtl8168_oob_notify(struct rtl8169_private
*tp
, u8 cmd
)
820 void __iomem
*ioaddr
= tp
->mmio_addr
;
824 RTL_W32(ERIAR
, 0x800010e8);
826 for (i
= 0; i
< 5; i
++) {
828 if (!(RTL_R32(ERIAR
) & ERIAR_FLAG
))
832 ocp_write(tp
, 0x1, 0x30, 0x00000001);
835 #define OOB_CMD_RESET 0x00
836 #define OOB_CMD_DRIVER_START 0x05
837 #define OOB_CMD_DRIVER_STOP 0x06
839 static u16
rtl8168_get_ocp_reg(struct rtl8169_private
*tp
)
841 return (tp
->mac_version
== RTL_GIGA_MAC_VER_31
) ? 0xb8 : 0x10;
844 static void rtl8168_driver_start(struct rtl8169_private
*tp
)
849 rtl8168_oob_notify(tp
, OOB_CMD_DRIVER_START
);
851 reg
= rtl8168_get_ocp_reg(tp
);
853 for (i
= 0; i
< 10; i
++) {
855 if (ocp_read(tp
, 0x0f, reg
) & 0x00000800)
860 static void rtl8168_driver_stop(struct rtl8169_private
*tp
)
865 rtl8168_oob_notify(tp
, OOB_CMD_DRIVER_STOP
);
867 reg
= rtl8168_get_ocp_reg(tp
);
869 for (i
= 0; i
< 10; i
++) {
871 if ((ocp_read(tp
, 0x0f, reg
) & 0x00000800) == 0)
876 static int r8168dp_check_dash(struct rtl8169_private
*tp
)
878 u16 reg
= rtl8168_get_ocp_reg(tp
);
880 return (ocp_read(tp
, 0x0f, reg
) & 0x00008000) ? 1 : 0;
883 static void r8169_mdio_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
887 RTL_W32(PHYAR
, 0x80000000 | (reg_addr
& 0x1f) << 16 | (value
& 0xffff));
889 for (i
= 20; i
> 0; i
--) {
891 * Check if the RTL8169 has completed writing to the specified
894 if (!(RTL_R32(PHYAR
) & 0x80000000))
899 * According to hardware specs a 20us delay is required after write
900 * complete indication, but before sending next command.
905 static int r8169_mdio_read(void __iomem
*ioaddr
, int reg_addr
)
909 RTL_W32(PHYAR
, 0x0 | (reg_addr
& 0x1f) << 16);
911 for (i
= 20; i
> 0; i
--) {
913 * Check if the RTL8169 has completed retrieving data from
914 * the specified MII register.
916 if (RTL_R32(PHYAR
) & 0x80000000) {
917 value
= RTL_R32(PHYAR
) & 0xffff;
923 * According to hardware specs a 20us delay is required after read
924 * complete indication, but before sending next command.
931 static void r8168dp_1_mdio_access(void __iomem
*ioaddr
, int reg_addr
, u32 data
)
935 RTL_W32(OCPDR
, data
|
936 ((reg_addr
& OCPDR_REG_MASK
) << OCPDR_GPHY_REG_SHIFT
));
937 RTL_W32(OCPAR
, OCPAR_GPHY_WRITE_CMD
);
938 RTL_W32(EPHY_RXER_NUM
, 0);
940 for (i
= 0; i
< 100; i
++) {
942 if (!(RTL_R32(OCPAR
) & OCPAR_FLAG
))
947 static void r8168dp_1_mdio_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
949 r8168dp_1_mdio_access(ioaddr
, reg_addr
, OCPDR_WRITE_CMD
|
950 (value
& OCPDR_DATA_MASK
));
953 static int r8168dp_1_mdio_read(void __iomem
*ioaddr
, int reg_addr
)
957 r8168dp_1_mdio_access(ioaddr
, reg_addr
, OCPDR_READ_CMD
);
960 RTL_W32(OCPAR
, OCPAR_GPHY_READ_CMD
);
961 RTL_W32(EPHY_RXER_NUM
, 0);
963 for (i
= 0; i
< 100; i
++) {
965 if (RTL_R32(OCPAR
) & OCPAR_FLAG
)
969 return RTL_R32(OCPDR
) & OCPDR_DATA_MASK
;
972 #define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
974 static void r8168dp_2_mdio_start(void __iomem
*ioaddr
)
976 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT
);
979 static void r8168dp_2_mdio_stop(void __iomem
*ioaddr
)
981 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT
);
984 static void r8168dp_2_mdio_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
986 r8168dp_2_mdio_start(ioaddr
);
988 r8169_mdio_write(ioaddr
, reg_addr
, value
);
990 r8168dp_2_mdio_stop(ioaddr
);
993 static int r8168dp_2_mdio_read(void __iomem
*ioaddr
, int reg_addr
)
997 r8168dp_2_mdio_start(ioaddr
);
999 value
= r8169_mdio_read(ioaddr
, reg_addr
);
1001 r8168dp_2_mdio_stop(ioaddr
);
1006 static void rtl_writephy(struct rtl8169_private
*tp
, int location
, u32 val
)
1008 tp
->mdio_ops
.write(tp
->mmio_addr
, location
, val
);
1011 static int rtl_readphy(struct rtl8169_private
*tp
, int location
)
1013 return tp
->mdio_ops
.read(tp
->mmio_addr
, location
);
1016 static void rtl_patchphy(struct rtl8169_private
*tp
, int reg_addr
, int value
)
1018 rtl_writephy(tp
, reg_addr
, rtl_readphy(tp
, reg_addr
) | value
);
1021 static void rtl_w1w0_phy(struct rtl8169_private
*tp
, int reg_addr
, int p
, int m
)
1025 val
= rtl_readphy(tp
, reg_addr
);
1026 rtl_writephy(tp
, reg_addr
, (val
| p
) & ~m
);
1029 static void rtl_mdio_write(struct net_device
*dev
, int phy_id
, int location
,
1032 struct rtl8169_private
*tp
= netdev_priv(dev
);
1034 rtl_writephy(tp
, location
, val
);
1037 static int rtl_mdio_read(struct net_device
*dev
, int phy_id
, int location
)
1039 struct rtl8169_private
*tp
= netdev_priv(dev
);
1041 return rtl_readphy(tp
, location
);
1044 static void rtl_ephy_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
1048 RTL_W32(EPHYAR
, EPHYAR_WRITE_CMD
| (value
& EPHYAR_DATA_MASK
) |
1049 (reg_addr
& EPHYAR_REG_MASK
) << EPHYAR_REG_SHIFT
);
1051 for (i
= 0; i
< 100; i
++) {
1052 if (!(RTL_R32(EPHYAR
) & EPHYAR_FLAG
))
1058 static u16
rtl_ephy_read(void __iomem
*ioaddr
, int reg_addr
)
1063 RTL_W32(EPHYAR
, (reg_addr
& EPHYAR_REG_MASK
) << EPHYAR_REG_SHIFT
);
1065 for (i
= 0; i
< 100; i
++) {
1066 if (RTL_R32(EPHYAR
) & EPHYAR_FLAG
) {
1067 value
= RTL_R32(EPHYAR
) & EPHYAR_DATA_MASK
;
1076 static void rtl_csi_write(void __iomem
*ioaddr
, int addr
, int value
)
1080 RTL_W32(CSIDR
, value
);
1081 RTL_W32(CSIAR
, CSIAR_WRITE_CMD
| (addr
& CSIAR_ADDR_MASK
) |
1082 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
1084 for (i
= 0; i
< 100; i
++) {
1085 if (!(RTL_R32(CSIAR
) & CSIAR_FLAG
))
1091 static u32
rtl_csi_read(void __iomem
*ioaddr
, int addr
)
1096 RTL_W32(CSIAR
, (addr
& CSIAR_ADDR_MASK
) |
1097 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
1099 for (i
= 0; i
< 100; i
++) {
1100 if (RTL_R32(CSIAR
) & CSIAR_FLAG
) {
1101 value
= RTL_R32(CSIDR
);
1111 void rtl_eri_write(void __iomem
*ioaddr
, int addr
, u32 mask
, u32 val
, int type
)
1115 BUG_ON((addr
& 3) || (mask
== 0));
1116 RTL_W32(ERIDR
, val
);
1117 RTL_W32(ERIAR
, ERIAR_WRITE_CMD
| type
| mask
| addr
);
1119 for (i
= 0; i
< 100; i
++) {
1120 if (!(RTL_R32(ERIAR
) & ERIAR_FLAG
))
1126 static u32
rtl_eri_read(void __iomem
*ioaddr
, int addr
, int type
)
1131 RTL_W32(ERIAR
, ERIAR_READ_CMD
| type
| ERIAR_MASK_1111
| addr
);
1133 for (i
= 0; i
< 100; i
++) {
1134 if (RTL_R32(ERIAR
) & ERIAR_FLAG
) {
1135 value
= RTL_R32(ERIDR
);
1145 rtl_w1w0_eri(void __iomem
*ioaddr
, int addr
, u32 mask
, u32 p
, u32 m
, int type
)
1149 val
= rtl_eri_read(ioaddr
, addr
, type
);
1150 rtl_eri_write(ioaddr
, addr
, mask
, (val
& ~m
) | p
, type
);
1159 static void rtl_write_exgmac_batch(void __iomem
*ioaddr
,
1160 const struct exgmac_reg
*r
, int len
)
1163 rtl_eri_write(ioaddr
, r
->addr
, r
->mask
, r
->val
, ERIAR_EXGMAC
);
1168 static u8
rtl8168d_efuse_read(void __iomem
*ioaddr
, int reg_addr
)
1173 RTL_W32(EFUSEAR
, (reg_addr
& EFUSEAR_REG_MASK
) << EFUSEAR_REG_SHIFT
);
1175 for (i
= 0; i
< 300; i
++) {
1176 if (RTL_R32(EFUSEAR
) & EFUSEAR_FLAG
) {
1177 value
= RTL_R32(EFUSEAR
) & EFUSEAR_DATA_MASK
;
1186 static void rtl8169_irq_mask_and_ack(void __iomem
*ioaddr
)
1188 RTL_W16(IntrMask
, 0x0000);
1190 RTL_W16(IntrStatus
, 0xffff);
1193 static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private
*tp
)
1195 void __iomem
*ioaddr
= tp
->mmio_addr
;
1197 return RTL_R32(TBICSR
) & TBIReset
;
1200 static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private
*tp
)
1202 return rtl_readphy(tp
, MII_BMCR
) & BMCR_RESET
;
1205 static unsigned int rtl8169_tbi_link_ok(void __iomem
*ioaddr
)
1207 return RTL_R32(TBICSR
) & TBILinkOk
;
1210 static unsigned int rtl8169_xmii_link_ok(void __iomem
*ioaddr
)
1212 return RTL_R8(PHYstatus
) & LinkStatus
;
1215 static void rtl8169_tbi_reset_enable(struct rtl8169_private
*tp
)
1217 void __iomem
*ioaddr
= tp
->mmio_addr
;
1219 RTL_W32(TBICSR
, RTL_R32(TBICSR
) | TBIReset
);
1222 static void rtl8169_xmii_reset_enable(struct rtl8169_private
*tp
)
1226 val
= rtl_readphy(tp
, MII_BMCR
) | BMCR_RESET
;
1227 rtl_writephy(tp
, MII_BMCR
, val
& 0xffff);
1230 static void rtl_link_chg_patch(struct rtl8169_private
*tp
)
1232 void __iomem
*ioaddr
= tp
->mmio_addr
;
1233 struct net_device
*dev
= tp
->dev
;
1235 if (!netif_running(dev
))
1238 if (tp
->mac_version
== RTL_GIGA_MAC_VER_34
) {
1239 if (RTL_R8(PHYstatus
) & _1000bpsF
) {
1240 rtl_eri_write(ioaddr
, 0x1bc, ERIAR_MASK_1111
,
1241 0x00000011, ERIAR_EXGMAC
);
1242 rtl_eri_write(ioaddr
, 0x1dc, ERIAR_MASK_1111
,
1243 0x00000005, ERIAR_EXGMAC
);
1244 } else if (RTL_R8(PHYstatus
) & _100bps
) {
1245 rtl_eri_write(ioaddr
, 0x1bc, ERIAR_MASK_1111
,
1246 0x0000001f, ERIAR_EXGMAC
);
1247 rtl_eri_write(ioaddr
, 0x1dc, ERIAR_MASK_1111
,
1248 0x00000005, ERIAR_EXGMAC
);
1250 rtl_eri_write(ioaddr
, 0x1bc, ERIAR_MASK_1111
,
1251 0x0000001f, ERIAR_EXGMAC
);
1252 rtl_eri_write(ioaddr
, 0x1dc, ERIAR_MASK_1111
,
1253 0x0000003f, ERIAR_EXGMAC
);
1255 /* Reset packet filter */
1256 rtl_w1w0_eri(ioaddr
, 0xdc, ERIAR_MASK_0001
, 0x00, 0x01,
1258 rtl_w1w0_eri(ioaddr
, 0xdc, ERIAR_MASK_0001
, 0x01, 0x00,
1260 } else if (tp
->mac_version
== RTL_GIGA_MAC_VER_35
||
1261 tp
->mac_version
== RTL_GIGA_MAC_VER_36
) {
1262 if (RTL_R8(PHYstatus
) & _1000bpsF
) {
1263 rtl_eri_write(ioaddr
, 0x1bc, ERIAR_MASK_1111
,
1264 0x00000011, ERIAR_EXGMAC
);
1265 rtl_eri_write(ioaddr
, 0x1dc, ERIAR_MASK_1111
,
1266 0x00000005, ERIAR_EXGMAC
);
1268 rtl_eri_write(ioaddr
, 0x1bc, ERIAR_MASK_1111
,
1269 0x0000001f, ERIAR_EXGMAC
);
1270 rtl_eri_write(ioaddr
, 0x1dc, ERIAR_MASK_1111
,
1271 0x0000003f, ERIAR_EXGMAC
);
1276 static void __rtl8169_check_link_status(struct net_device
*dev
,
1277 struct rtl8169_private
*tp
,
1278 void __iomem
*ioaddr
, bool pm
)
1280 unsigned long flags
;
1282 spin_lock_irqsave(&tp
->lock
, flags
);
1283 if (tp
->link_ok(ioaddr
)) {
1284 rtl_link_chg_patch(tp
);
1285 /* This is to cancel a scheduled suspend if there's one. */
1287 pm_request_resume(&tp
->pci_dev
->dev
);
1288 netif_carrier_on(dev
);
1289 if (net_ratelimit())
1290 netif_info(tp
, ifup
, dev
, "link up\n");
1292 netif_carrier_off(dev
);
1293 netif_info(tp
, ifdown
, dev
, "link down\n");
1295 pm_schedule_suspend(&tp
->pci_dev
->dev
, 100);
1297 spin_unlock_irqrestore(&tp
->lock
, flags
);
1300 static void rtl8169_check_link_status(struct net_device
*dev
,
1301 struct rtl8169_private
*tp
,
1302 void __iomem
*ioaddr
)
1304 __rtl8169_check_link_status(dev
, tp
, ioaddr
, false);
1307 #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1309 static u32
__rtl8169_get_wol(struct rtl8169_private
*tp
)
1311 void __iomem
*ioaddr
= tp
->mmio_addr
;
1315 options
= RTL_R8(Config1
);
1316 if (!(options
& PMEnable
))
1319 options
= RTL_R8(Config3
);
1320 if (options
& LinkUp
)
1321 wolopts
|= WAKE_PHY
;
1322 if (options
& MagicPacket
)
1323 wolopts
|= WAKE_MAGIC
;
1325 options
= RTL_R8(Config5
);
1327 wolopts
|= WAKE_UCAST
;
1329 wolopts
|= WAKE_BCAST
;
1331 wolopts
|= WAKE_MCAST
;
1336 static void rtl8169_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1338 struct rtl8169_private
*tp
= netdev_priv(dev
);
1340 spin_lock_irq(&tp
->lock
);
1342 wol
->supported
= WAKE_ANY
;
1343 wol
->wolopts
= __rtl8169_get_wol(tp
);
1345 spin_unlock_irq(&tp
->lock
);
1348 static void __rtl8169_set_wol(struct rtl8169_private
*tp
, u32 wolopts
)
1350 void __iomem
*ioaddr
= tp
->mmio_addr
;
1352 static const struct {
1357 { WAKE_ANY
, Config1
, PMEnable
},
1358 { WAKE_PHY
, Config3
, LinkUp
},
1359 { WAKE_MAGIC
, Config3
, MagicPacket
},
1360 { WAKE_UCAST
, Config5
, UWF
},
1361 { WAKE_BCAST
, Config5
, BWF
},
1362 { WAKE_MCAST
, Config5
, MWF
},
1363 { WAKE_ANY
, Config5
, LanWake
}
1366 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
1368 for (i
= 0; i
< ARRAY_SIZE(cfg
); i
++) {
1369 u8 options
= RTL_R8(cfg
[i
].reg
) & ~cfg
[i
].mask
;
1370 if (wolopts
& cfg
[i
].opt
)
1371 options
|= cfg
[i
].mask
;
1372 RTL_W8(cfg
[i
].reg
, options
);
1375 RTL_W8(Cfg9346
, Cfg9346_Lock
);
1378 static int rtl8169_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1380 struct rtl8169_private
*tp
= netdev_priv(dev
);
1382 spin_lock_irq(&tp
->lock
);
1385 tp
->features
|= RTL_FEATURE_WOL
;
1387 tp
->features
&= ~RTL_FEATURE_WOL
;
1388 __rtl8169_set_wol(tp
, wol
->wolopts
);
1389 spin_unlock_irq(&tp
->lock
);
1391 device_set_wakeup_enable(&tp
->pci_dev
->dev
, wol
->wolopts
);
1396 static const char *rtl_lookup_firmware_name(struct rtl8169_private
*tp
)
1398 return rtl_chip_infos
[tp
->mac_version
].fw_name
;
1401 static void rtl8169_get_drvinfo(struct net_device
*dev
,
1402 struct ethtool_drvinfo
*info
)
1404 struct rtl8169_private
*tp
= netdev_priv(dev
);
1405 struct rtl_fw
*rtl_fw
= tp
->rtl_fw
;
1407 strcpy(info
->driver
, MODULENAME
);
1408 strcpy(info
->version
, RTL8169_VERSION
);
1409 strcpy(info
->bus_info
, pci_name(tp
->pci_dev
));
1410 BUILD_BUG_ON(sizeof(info
->fw_version
) < sizeof(rtl_fw
->version
));
1411 strcpy(info
->fw_version
, IS_ERR_OR_NULL(rtl_fw
) ? "N/A" :
1415 static int rtl8169_get_regs_len(struct net_device
*dev
)
1417 return R8169_REGS_SIZE
;
1420 static int rtl8169_set_speed_tbi(struct net_device
*dev
,
1421 u8 autoneg
, u16 speed
, u8 duplex
, u32 ignored
)
1423 struct rtl8169_private
*tp
= netdev_priv(dev
);
1424 void __iomem
*ioaddr
= tp
->mmio_addr
;
1428 reg
= RTL_R32(TBICSR
);
1429 if ((autoneg
== AUTONEG_DISABLE
) && (speed
== SPEED_1000
) &&
1430 (duplex
== DUPLEX_FULL
)) {
1431 RTL_W32(TBICSR
, reg
& ~(TBINwEnable
| TBINwRestart
));
1432 } else if (autoneg
== AUTONEG_ENABLE
)
1433 RTL_W32(TBICSR
, reg
| TBINwEnable
| TBINwRestart
);
1435 netif_warn(tp
, link
, dev
,
1436 "incorrect speed setting refused in TBI mode\n");
1443 static int rtl8169_set_speed_xmii(struct net_device
*dev
,
1444 u8 autoneg
, u16 speed
, u8 duplex
, u32 adv
)
1446 struct rtl8169_private
*tp
= netdev_priv(dev
);
1447 int giga_ctrl
, bmcr
;
1450 rtl_writephy(tp
, 0x1f, 0x0000);
1452 if (autoneg
== AUTONEG_ENABLE
) {
1455 auto_nego
= rtl_readphy(tp
, MII_ADVERTISE
);
1456 auto_nego
&= ~(ADVERTISE_10HALF
| ADVERTISE_10FULL
|
1457 ADVERTISE_100HALF
| ADVERTISE_100FULL
);
1459 if (adv
& ADVERTISED_10baseT_Half
)
1460 auto_nego
|= ADVERTISE_10HALF
;
1461 if (adv
& ADVERTISED_10baseT_Full
)
1462 auto_nego
|= ADVERTISE_10FULL
;
1463 if (adv
& ADVERTISED_100baseT_Half
)
1464 auto_nego
|= ADVERTISE_100HALF
;
1465 if (adv
& ADVERTISED_100baseT_Full
)
1466 auto_nego
|= ADVERTISE_100FULL
;
1468 auto_nego
|= ADVERTISE_PAUSE_CAP
| ADVERTISE_PAUSE_ASYM
;
1470 giga_ctrl
= rtl_readphy(tp
, MII_CTRL1000
);
1471 giga_ctrl
&= ~(ADVERTISE_1000FULL
| ADVERTISE_1000HALF
);
1473 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1474 if (tp
->mii
.supports_gmii
) {
1475 if (adv
& ADVERTISED_1000baseT_Half
)
1476 giga_ctrl
|= ADVERTISE_1000HALF
;
1477 if (adv
& ADVERTISED_1000baseT_Full
)
1478 giga_ctrl
|= ADVERTISE_1000FULL
;
1479 } else if (adv
& (ADVERTISED_1000baseT_Half
|
1480 ADVERTISED_1000baseT_Full
)) {
1481 netif_info(tp
, link
, dev
,
1482 "PHY does not support 1000Mbps\n");
1486 bmcr
= BMCR_ANENABLE
| BMCR_ANRESTART
;
1488 rtl_writephy(tp
, MII_ADVERTISE
, auto_nego
);
1489 rtl_writephy(tp
, MII_CTRL1000
, giga_ctrl
);
1493 if (speed
== SPEED_10
)
1495 else if (speed
== SPEED_100
)
1496 bmcr
= BMCR_SPEED100
;
1500 if (duplex
== DUPLEX_FULL
)
1501 bmcr
|= BMCR_FULLDPLX
;
1504 rtl_writephy(tp
, MII_BMCR
, bmcr
);
1506 if (tp
->mac_version
== RTL_GIGA_MAC_VER_02
||
1507 tp
->mac_version
== RTL_GIGA_MAC_VER_03
) {
1508 if ((speed
== SPEED_100
) && (autoneg
!= AUTONEG_ENABLE
)) {
1509 rtl_writephy(tp
, 0x17, 0x2138);
1510 rtl_writephy(tp
, 0x0e, 0x0260);
1512 rtl_writephy(tp
, 0x17, 0x2108);
1513 rtl_writephy(tp
, 0x0e, 0x0000);
1522 static int rtl8169_set_speed(struct net_device
*dev
,
1523 u8 autoneg
, u16 speed
, u8 duplex
, u32 advertising
)
1525 struct rtl8169_private
*tp
= netdev_priv(dev
);
1528 ret
= tp
->set_speed(dev
, autoneg
, speed
, duplex
, advertising
);
1532 if (netif_running(dev
) && (autoneg
== AUTONEG_ENABLE
) &&
1533 (advertising
& ADVERTISED_1000baseT_Full
)) {
1534 mod_timer(&tp
->timer
, jiffies
+ RTL8169_PHY_TIMEOUT
);
1540 static int rtl8169_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1542 struct rtl8169_private
*tp
= netdev_priv(dev
);
1543 unsigned long flags
;
1546 del_timer_sync(&tp
->timer
);
1548 spin_lock_irqsave(&tp
->lock
, flags
);
1549 ret
= rtl8169_set_speed(dev
, cmd
->autoneg
, ethtool_cmd_speed(cmd
),
1550 cmd
->duplex
, cmd
->advertising
);
1551 spin_unlock_irqrestore(&tp
->lock
, flags
);
1556 static u32
rtl8169_fix_features(struct net_device
*dev
, u32 features
)
1558 struct rtl8169_private
*tp
= netdev_priv(dev
);
1560 if (dev
->mtu
> TD_MSS_MAX
)
1561 features
&= ~NETIF_F_ALL_TSO
;
1563 if (dev
->mtu
> JUMBO_1K
&&
1564 !rtl_chip_infos
[tp
->mac_version
].jumbo_tx_csum
)
1565 features
&= ~NETIF_F_IP_CSUM
;
1570 static int rtl8169_set_features(struct net_device
*dev
, u32 features
)
1572 struct rtl8169_private
*tp
= netdev_priv(dev
);
1573 void __iomem
*ioaddr
= tp
->mmio_addr
;
1574 unsigned long flags
;
1576 spin_lock_irqsave(&tp
->lock
, flags
);
1578 if (features
& NETIF_F_RXCSUM
)
1579 tp
->cp_cmd
|= RxChkSum
;
1581 tp
->cp_cmd
&= ~RxChkSum
;
1583 if (dev
->features
& NETIF_F_HW_VLAN_RX
)
1584 tp
->cp_cmd
|= RxVlan
;
1586 tp
->cp_cmd
&= ~RxVlan
;
1588 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
1591 spin_unlock_irqrestore(&tp
->lock
, flags
);
1596 static inline u32
rtl8169_tx_vlan_tag(struct rtl8169_private
*tp
,
1597 struct sk_buff
*skb
)
1599 return (vlan_tx_tag_present(skb
)) ?
1600 TxVlanTag
| swab16(vlan_tx_tag_get(skb
)) : 0x00;
1603 static void rtl8169_rx_vlan_tag(struct RxDesc
*desc
, struct sk_buff
*skb
)
1605 u32 opts2
= le32_to_cpu(desc
->opts2
);
1607 if (opts2
& RxVlanTag
)
1608 __vlan_hwaccel_put_tag(skb
, swab16(opts2
& 0xffff));
1613 static int rtl8169_gset_tbi(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1615 struct rtl8169_private
*tp
= netdev_priv(dev
);
1616 void __iomem
*ioaddr
= tp
->mmio_addr
;
1620 SUPPORTED_1000baseT_Full
| SUPPORTED_Autoneg
| SUPPORTED_FIBRE
;
1621 cmd
->port
= PORT_FIBRE
;
1622 cmd
->transceiver
= XCVR_INTERNAL
;
1624 status
= RTL_R32(TBICSR
);
1625 cmd
->advertising
= (status
& TBINwEnable
) ? ADVERTISED_Autoneg
: 0;
1626 cmd
->autoneg
= !!(status
& TBINwEnable
);
1628 ethtool_cmd_speed_set(cmd
, SPEED_1000
);
1629 cmd
->duplex
= DUPLEX_FULL
; /* Always set */
1634 static int rtl8169_gset_xmii(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1636 struct rtl8169_private
*tp
= netdev_priv(dev
);
1638 return mii_ethtool_gset(&tp
->mii
, cmd
);
1641 static int rtl8169_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1643 struct rtl8169_private
*tp
= netdev_priv(dev
);
1644 unsigned long flags
;
1647 spin_lock_irqsave(&tp
->lock
, flags
);
1649 rc
= tp
->get_settings(dev
, cmd
);
1651 spin_unlock_irqrestore(&tp
->lock
, flags
);
1655 static void rtl8169_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
,
1658 struct rtl8169_private
*tp
= netdev_priv(dev
);
1659 unsigned long flags
;
1661 if (regs
->len
> R8169_REGS_SIZE
)
1662 regs
->len
= R8169_REGS_SIZE
;
1664 spin_lock_irqsave(&tp
->lock
, flags
);
1665 memcpy_fromio(p
, tp
->mmio_addr
, regs
->len
);
1666 spin_unlock_irqrestore(&tp
->lock
, flags
);
1669 static u32
rtl8169_get_msglevel(struct net_device
*dev
)
1671 struct rtl8169_private
*tp
= netdev_priv(dev
);
1673 return tp
->msg_enable
;
1676 static void rtl8169_set_msglevel(struct net_device
*dev
, u32 value
)
1678 struct rtl8169_private
*tp
= netdev_priv(dev
);
1680 tp
->msg_enable
= value
;
1683 static const char rtl8169_gstrings
[][ETH_GSTRING_LEN
] = {
1690 "tx_single_collisions",
1691 "tx_multi_collisions",
1699 static int rtl8169_get_sset_count(struct net_device
*dev
, int sset
)
1703 return ARRAY_SIZE(rtl8169_gstrings
);
1709 static void rtl8169_update_counters(struct net_device
*dev
)
1711 struct rtl8169_private
*tp
= netdev_priv(dev
);
1712 void __iomem
*ioaddr
= tp
->mmio_addr
;
1713 struct device
*d
= &tp
->pci_dev
->dev
;
1714 struct rtl8169_counters
*counters
;
1720 * Some chips are unable to dump tally counters when the receiver
1723 if ((RTL_R8(ChipCmd
) & CmdRxEnb
) == 0)
1726 counters
= dma_alloc_coherent(d
, sizeof(*counters
), &paddr
, GFP_KERNEL
);
1730 RTL_W32(CounterAddrHigh
, (u64
)paddr
>> 32);
1731 cmd
= (u64
)paddr
& DMA_BIT_MASK(32);
1732 RTL_W32(CounterAddrLow
, cmd
);
1733 RTL_W32(CounterAddrLow
, cmd
| CounterDump
);
1736 if ((RTL_R32(CounterAddrLow
) & CounterDump
) == 0) {
1737 memcpy(&tp
->counters
, counters
, sizeof(*counters
));
1743 RTL_W32(CounterAddrLow
, 0);
1744 RTL_W32(CounterAddrHigh
, 0);
1746 dma_free_coherent(d
, sizeof(*counters
), counters
, paddr
);
1749 static void rtl8169_get_ethtool_stats(struct net_device
*dev
,
1750 struct ethtool_stats
*stats
, u64
*data
)
1752 struct rtl8169_private
*tp
= netdev_priv(dev
);
1756 rtl8169_update_counters(dev
);
1758 data
[0] = le64_to_cpu(tp
->counters
.tx_packets
);
1759 data
[1] = le64_to_cpu(tp
->counters
.rx_packets
);
1760 data
[2] = le64_to_cpu(tp
->counters
.tx_errors
);
1761 data
[3] = le32_to_cpu(tp
->counters
.rx_errors
);
1762 data
[4] = le16_to_cpu(tp
->counters
.rx_missed
);
1763 data
[5] = le16_to_cpu(tp
->counters
.align_errors
);
1764 data
[6] = le32_to_cpu(tp
->counters
.tx_one_collision
);
1765 data
[7] = le32_to_cpu(tp
->counters
.tx_multi_collision
);
1766 data
[8] = le64_to_cpu(tp
->counters
.rx_unicast
);
1767 data
[9] = le64_to_cpu(tp
->counters
.rx_broadcast
);
1768 data
[10] = le32_to_cpu(tp
->counters
.rx_multicast
);
1769 data
[11] = le16_to_cpu(tp
->counters
.tx_aborted
);
1770 data
[12] = le16_to_cpu(tp
->counters
.tx_underun
);
1773 static void rtl8169_get_strings(struct net_device
*dev
, u32 stringset
, u8
*data
)
1777 memcpy(data
, *rtl8169_gstrings
, sizeof(rtl8169_gstrings
));
1782 static const struct ethtool_ops rtl8169_ethtool_ops
= {
1783 .get_drvinfo
= rtl8169_get_drvinfo
,
1784 .get_regs_len
= rtl8169_get_regs_len
,
1785 .get_link
= ethtool_op_get_link
,
1786 .get_settings
= rtl8169_get_settings
,
1787 .set_settings
= rtl8169_set_settings
,
1788 .get_msglevel
= rtl8169_get_msglevel
,
1789 .set_msglevel
= rtl8169_set_msglevel
,
1790 .get_regs
= rtl8169_get_regs
,
1791 .get_wol
= rtl8169_get_wol
,
1792 .set_wol
= rtl8169_set_wol
,
1793 .get_strings
= rtl8169_get_strings
,
1794 .get_sset_count
= rtl8169_get_sset_count
,
1795 .get_ethtool_stats
= rtl8169_get_ethtool_stats
,
1798 static void rtl8169_get_mac_version(struct rtl8169_private
*tp
,
1799 struct net_device
*dev
, u8 default_version
)
1801 void __iomem
*ioaddr
= tp
->mmio_addr
;
1803 * The driver currently handles the 8168Bf and the 8168Be identically
1804 * but they can be identified more specifically through the test below
1807 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
1809 * Same thing for the 8101Eb and the 8101Ec:
1811 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
1813 static const struct rtl_mac_info
{
1819 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36
},
1820 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35
},
1823 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34
},
1824 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33
},
1825 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32
},
1826 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33
},
1829 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26
},
1830 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25
},
1831 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26
},
1833 /* 8168DP family. */
1834 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27
},
1835 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28
},
1836 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31
},
1839 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24
},
1840 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23
},
1841 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18
},
1842 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24
},
1843 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19
},
1844 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20
},
1845 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21
},
1846 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22
},
1847 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22
},
1850 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12
},
1851 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17
},
1852 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17
},
1853 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11
},
1856 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30
},
1857 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30
},
1858 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29
},
1859 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30
},
1860 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09
},
1861 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09
},
1862 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08
},
1863 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08
},
1864 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07
},
1865 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07
},
1866 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13
},
1867 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10
},
1868 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16
},
1869 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09
},
1870 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09
},
1871 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16
},
1872 /* FIXME: where did these entries come from ? -- FR */
1873 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15
},
1874 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14
},
1877 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06
},
1878 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05
},
1879 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04
},
1880 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03
},
1881 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02
},
1882 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01
},
1885 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE
}
1887 const struct rtl_mac_info
*p
= mac_info
;
1890 reg
= RTL_R32(TxConfig
);
1891 while ((reg
& p
->mask
) != p
->val
)
1893 tp
->mac_version
= p
->mac_version
;
1895 if (tp
->mac_version
== RTL_GIGA_MAC_NONE
) {
1896 netif_notice(tp
, probe
, dev
,
1897 "unknown MAC, using family default\n");
1898 tp
->mac_version
= default_version
;
1902 static void rtl8169_print_mac_version(struct rtl8169_private
*tp
)
1904 dprintk("mac_version = 0x%02x\n", tp
->mac_version
);
1912 static void rtl_writephy_batch(struct rtl8169_private
*tp
,
1913 const struct phy_reg
*regs
, int len
)
1916 rtl_writephy(tp
, regs
->reg
, regs
->val
);
1921 #define PHY_READ 0x00000000
1922 #define PHY_DATA_OR 0x10000000
1923 #define PHY_DATA_AND 0x20000000
1924 #define PHY_BJMPN 0x30000000
1925 #define PHY_READ_EFUSE 0x40000000
1926 #define PHY_READ_MAC_BYTE 0x50000000
1927 #define PHY_WRITE_MAC_BYTE 0x60000000
1928 #define PHY_CLEAR_READCOUNT 0x70000000
1929 #define PHY_WRITE 0x80000000
1930 #define PHY_READCOUNT_EQ_SKIP 0x90000000
1931 #define PHY_COMP_EQ_SKIPN 0xa0000000
1932 #define PHY_COMP_NEQ_SKIPN 0xb0000000
1933 #define PHY_WRITE_PREVIOUS 0xc0000000
1934 #define PHY_SKIPN 0xd0000000
1935 #define PHY_DELAY_MS 0xe0000000
1936 #define PHY_WRITE_ERI_WORD 0xf0000000
1940 char version
[RTL_VER_SIZE
];
1946 #define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
1948 static bool rtl_fw_format_ok(struct rtl8169_private
*tp
, struct rtl_fw
*rtl_fw
)
1950 const struct firmware
*fw
= rtl_fw
->fw
;
1951 struct fw_info
*fw_info
= (struct fw_info
*)fw
->data
;
1952 struct rtl_fw_phy_action
*pa
= &rtl_fw
->phy_action
;
1953 char *version
= rtl_fw
->version
;
1956 if (fw
->size
< FW_OPCODE_SIZE
)
1959 if (!fw_info
->magic
) {
1960 size_t i
, size
, start
;
1963 if (fw
->size
< sizeof(*fw_info
))
1966 for (i
= 0; i
< fw
->size
; i
++)
1967 checksum
+= fw
->data
[i
];
1971 start
= le32_to_cpu(fw_info
->fw_start
);
1972 if (start
> fw
->size
)
1975 size
= le32_to_cpu(fw_info
->fw_len
);
1976 if (size
> (fw
->size
- start
) / FW_OPCODE_SIZE
)
1979 memcpy(version
, fw_info
->version
, RTL_VER_SIZE
);
1981 pa
->code
= (__le32
*)(fw
->data
+ start
);
1984 if (fw
->size
% FW_OPCODE_SIZE
)
1987 strlcpy(version
, rtl_lookup_firmware_name(tp
), RTL_VER_SIZE
);
1989 pa
->code
= (__le32
*)fw
->data
;
1990 pa
->size
= fw
->size
/ FW_OPCODE_SIZE
;
1992 version
[RTL_VER_SIZE
- 1] = 0;
1999 static bool rtl_fw_data_ok(struct rtl8169_private
*tp
, struct net_device
*dev
,
2000 struct rtl_fw_phy_action
*pa
)
2005 for (index
= 0; index
< pa
->size
; index
++) {
2006 u32 action
= le32_to_cpu(pa
->code
[index
]);
2007 u32 regno
= (action
& 0x0fff0000) >> 16;
2009 switch(action
& 0xf0000000) {
2013 case PHY_READ_EFUSE
:
2014 case PHY_CLEAR_READCOUNT
:
2016 case PHY_WRITE_PREVIOUS
:
2021 if (regno
> index
) {
2022 netif_err(tp
, ifup
, tp
->dev
,
2023 "Out of range of firmware\n");
2027 case PHY_READCOUNT_EQ_SKIP
:
2028 if (index
+ 2 >= pa
->size
) {
2029 netif_err(tp
, ifup
, tp
->dev
,
2030 "Out of range of firmware\n");
2034 case PHY_COMP_EQ_SKIPN
:
2035 case PHY_COMP_NEQ_SKIPN
:
2037 if (index
+ 1 + regno
>= pa
->size
) {
2038 netif_err(tp
, ifup
, tp
->dev
,
2039 "Out of range of firmware\n");
2044 case PHY_READ_MAC_BYTE
:
2045 case PHY_WRITE_MAC_BYTE
:
2046 case PHY_WRITE_ERI_WORD
:
2048 netif_err(tp
, ifup
, tp
->dev
,
2049 "Invalid action 0x%08x\n", action
);
2058 static int rtl_check_firmware(struct rtl8169_private
*tp
, struct rtl_fw
*rtl_fw
)
2060 struct net_device
*dev
= tp
->dev
;
2063 if (!rtl_fw_format_ok(tp
, rtl_fw
)) {
2064 netif_err(tp
, ifup
, dev
, "invalid firwmare\n");
2068 if (rtl_fw_data_ok(tp
, dev
, &rtl_fw
->phy_action
))
2074 static void rtl_phy_write_fw(struct rtl8169_private
*tp
, struct rtl_fw
*rtl_fw
)
2076 struct rtl_fw_phy_action
*pa
= &rtl_fw
->phy_action
;
2080 predata
= count
= 0;
2082 for (index
= 0; index
< pa
->size
; ) {
2083 u32 action
= le32_to_cpu(pa
->code
[index
]);
2084 u32 data
= action
& 0x0000ffff;
2085 u32 regno
= (action
& 0x0fff0000) >> 16;
2090 switch(action
& 0xf0000000) {
2092 predata
= rtl_readphy(tp
, regno
);
2107 case PHY_READ_EFUSE
:
2108 predata
= rtl8168d_efuse_read(tp
->mmio_addr
, regno
);
2111 case PHY_CLEAR_READCOUNT
:
2116 rtl_writephy(tp
, regno
, data
);
2119 case PHY_READCOUNT_EQ_SKIP
:
2120 index
+= (count
== data
) ? 2 : 1;
2122 case PHY_COMP_EQ_SKIPN
:
2123 if (predata
== data
)
2127 case PHY_COMP_NEQ_SKIPN
:
2128 if (predata
!= data
)
2132 case PHY_WRITE_PREVIOUS
:
2133 rtl_writephy(tp
, regno
, predata
);
2144 case PHY_READ_MAC_BYTE
:
2145 case PHY_WRITE_MAC_BYTE
:
2146 case PHY_WRITE_ERI_WORD
:
2153 static void rtl_release_firmware(struct rtl8169_private
*tp
)
2155 if (!IS_ERR_OR_NULL(tp
->rtl_fw
)) {
2156 release_firmware(tp
->rtl_fw
->fw
);
2159 tp
->rtl_fw
= RTL_FIRMWARE_UNKNOWN
;
2162 static void rtl_apply_firmware(struct rtl8169_private
*tp
)
2164 struct rtl_fw
*rtl_fw
= tp
->rtl_fw
;
2166 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
2167 if (!IS_ERR_OR_NULL(rtl_fw
))
2168 rtl_phy_write_fw(tp
, rtl_fw
);
2171 static void rtl_apply_firmware_cond(struct rtl8169_private
*tp
, u8 reg
, u16 val
)
2173 if (rtl_readphy(tp
, reg
) != val
)
2174 netif_warn(tp
, hw
, tp
->dev
, "chipset not ready for firmware\n");
2176 rtl_apply_firmware(tp
);
2179 static void rtl8169s_hw_phy_config(struct rtl8169_private
*tp
)
2181 static const struct phy_reg phy_reg_init
[] = {
2243 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2246 static void rtl8169sb_hw_phy_config(struct rtl8169_private
*tp
)
2248 static const struct phy_reg phy_reg_init
[] = {
2254 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2257 static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private
*tp
)
2259 struct pci_dev
*pdev
= tp
->pci_dev
;
2261 if ((pdev
->subsystem_vendor
!= PCI_VENDOR_ID_GIGABYTE
) ||
2262 (pdev
->subsystem_device
!= 0xe000))
2265 rtl_writephy(tp
, 0x1f, 0x0001);
2266 rtl_writephy(tp
, 0x10, 0xf01b);
2267 rtl_writephy(tp
, 0x1f, 0x0000);
2270 static void rtl8169scd_hw_phy_config(struct rtl8169_private
*tp
)
2272 static const struct phy_reg phy_reg_init
[] = {
2312 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2314 rtl8169scd_hw_phy_config_quirk(tp
);
2317 static void rtl8169sce_hw_phy_config(struct rtl8169_private
*tp
)
2319 static const struct phy_reg phy_reg_init
[] = {
2367 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2370 static void rtl8168bb_hw_phy_config(struct rtl8169_private
*tp
)
2372 static const struct phy_reg phy_reg_init
[] = {
2377 rtl_writephy(tp
, 0x1f, 0x0001);
2378 rtl_patchphy(tp
, 0x16, 1 << 0);
2380 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2383 static void rtl8168bef_hw_phy_config(struct rtl8169_private
*tp
)
2385 static const struct phy_reg phy_reg_init
[] = {
2391 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2394 static void rtl8168cp_1_hw_phy_config(struct rtl8169_private
*tp
)
2396 static const struct phy_reg phy_reg_init
[] = {
2404 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2407 static void rtl8168cp_2_hw_phy_config(struct rtl8169_private
*tp
)
2409 static const struct phy_reg phy_reg_init
[] = {
2415 rtl_writephy(tp
, 0x1f, 0x0000);
2416 rtl_patchphy(tp
, 0x14, 1 << 5);
2417 rtl_patchphy(tp
, 0x0d, 1 << 5);
2419 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2422 static void rtl8168c_1_hw_phy_config(struct rtl8169_private
*tp
)
2424 static const struct phy_reg phy_reg_init
[] = {
2444 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2446 rtl_patchphy(tp
, 0x14, 1 << 5);
2447 rtl_patchphy(tp
, 0x0d, 1 << 5);
2448 rtl_writephy(tp
, 0x1f, 0x0000);
2451 static void rtl8168c_2_hw_phy_config(struct rtl8169_private
*tp
)
2453 static const struct phy_reg phy_reg_init
[] = {
2471 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2473 rtl_patchphy(tp
, 0x16, 1 << 0);
2474 rtl_patchphy(tp
, 0x14, 1 << 5);
2475 rtl_patchphy(tp
, 0x0d, 1 << 5);
2476 rtl_writephy(tp
, 0x1f, 0x0000);
2479 static void rtl8168c_3_hw_phy_config(struct rtl8169_private
*tp
)
2481 static const struct phy_reg phy_reg_init
[] = {
2493 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2495 rtl_patchphy(tp
, 0x16, 1 << 0);
2496 rtl_patchphy(tp
, 0x14, 1 << 5);
2497 rtl_patchphy(tp
, 0x0d, 1 << 5);
2498 rtl_writephy(tp
, 0x1f, 0x0000);
2501 static void rtl8168c_4_hw_phy_config(struct rtl8169_private
*tp
)
2503 rtl8168c_3_hw_phy_config(tp
);
2506 static void rtl8168d_1_hw_phy_config(struct rtl8169_private
*tp
)
2508 static const struct phy_reg phy_reg_init_0
[] = {
2509 /* Channel Estimation */
2530 * Enhance line driver power
2539 * Can not link to 1Gbps with bad cable
2540 * Decrease SNR threshold form 21.07dB to 19.04dB
2548 void __iomem
*ioaddr
= tp
->mmio_addr
;
2550 rtl_writephy_batch(tp
, phy_reg_init_0
, ARRAY_SIZE(phy_reg_init_0
));
2554 * Fine Tune Switching regulator parameter
2556 rtl_writephy(tp
, 0x1f, 0x0002);
2557 rtl_w1w0_phy(tp
, 0x0b, 0x0010, 0x00ef);
2558 rtl_w1w0_phy(tp
, 0x0c, 0xa200, 0x5d00);
2560 if (rtl8168d_efuse_read(ioaddr
, 0x01) == 0xb1) {
2561 static const struct phy_reg phy_reg_init
[] = {
2571 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2573 val
= rtl_readphy(tp
, 0x0d);
2575 if ((val
& 0x00ff) != 0x006c) {
2576 static const u32 set
[] = {
2577 0x0065, 0x0066, 0x0067, 0x0068,
2578 0x0069, 0x006a, 0x006b, 0x006c
2582 rtl_writephy(tp
, 0x1f, 0x0002);
2585 for (i
= 0; i
< ARRAY_SIZE(set
); i
++)
2586 rtl_writephy(tp
, 0x0d, val
| set
[i
]);
2589 static const struct phy_reg phy_reg_init
[] = {
2597 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2600 /* RSET couple improve */
2601 rtl_writephy(tp
, 0x1f, 0x0002);
2602 rtl_patchphy(tp
, 0x0d, 0x0300);
2603 rtl_patchphy(tp
, 0x0f, 0x0010);
2605 /* Fine tune PLL performance */
2606 rtl_writephy(tp
, 0x1f, 0x0002);
2607 rtl_w1w0_phy(tp
, 0x02, 0x0100, 0x0600);
2608 rtl_w1w0_phy(tp
, 0x03, 0x0000, 0xe000);
2610 rtl_writephy(tp
, 0x1f, 0x0005);
2611 rtl_writephy(tp
, 0x05, 0x001b);
2613 rtl_apply_firmware_cond(tp
, MII_EXPANSION
, 0xbf00);
2615 rtl_writephy(tp
, 0x1f, 0x0000);
2618 static void rtl8168d_2_hw_phy_config(struct rtl8169_private
*tp
)
2620 static const struct phy_reg phy_reg_init_0
[] = {
2621 /* Channel Estimation */
2642 * Enhance line driver power
2651 * Can not link to 1Gbps with bad cable
2652 * Decrease SNR threshold form 21.07dB to 19.04dB
2660 void __iomem
*ioaddr
= tp
->mmio_addr
;
2662 rtl_writephy_batch(tp
, phy_reg_init_0
, ARRAY_SIZE(phy_reg_init_0
));
2664 if (rtl8168d_efuse_read(ioaddr
, 0x01) == 0xb1) {
2665 static const struct phy_reg phy_reg_init
[] = {
2676 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2678 val
= rtl_readphy(tp
, 0x0d);
2679 if ((val
& 0x00ff) != 0x006c) {
2680 static const u32 set
[] = {
2681 0x0065, 0x0066, 0x0067, 0x0068,
2682 0x0069, 0x006a, 0x006b, 0x006c
2686 rtl_writephy(tp
, 0x1f, 0x0002);
2689 for (i
= 0; i
< ARRAY_SIZE(set
); i
++)
2690 rtl_writephy(tp
, 0x0d, val
| set
[i
]);
2693 static const struct phy_reg phy_reg_init
[] = {
2701 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2704 /* Fine tune PLL performance */
2705 rtl_writephy(tp
, 0x1f, 0x0002);
2706 rtl_w1w0_phy(tp
, 0x02, 0x0100, 0x0600);
2707 rtl_w1w0_phy(tp
, 0x03, 0x0000, 0xe000);
2709 /* Switching regulator Slew rate */
2710 rtl_writephy(tp
, 0x1f, 0x0002);
2711 rtl_patchphy(tp
, 0x0f, 0x0017);
2713 rtl_writephy(tp
, 0x1f, 0x0005);
2714 rtl_writephy(tp
, 0x05, 0x001b);
2716 rtl_apply_firmware_cond(tp
, MII_EXPANSION
, 0xb300);
2718 rtl_writephy(tp
, 0x1f, 0x0000);
2721 static void rtl8168d_3_hw_phy_config(struct rtl8169_private
*tp
)
2723 static const struct phy_reg phy_reg_init
[] = {
2779 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2782 static void rtl8168d_4_hw_phy_config(struct rtl8169_private
*tp
)
2784 static const struct phy_reg phy_reg_init
[] = {
2794 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2795 rtl_patchphy(tp
, 0x0d, 1 << 5);
2798 static void rtl8168e_1_hw_phy_config(struct rtl8169_private
*tp
)
2800 static const struct phy_reg phy_reg_init
[] = {
2801 /* Enable Delay cap */
2807 /* Channel estimation fine tune */
2816 /* Update PFM & 10M TX idle timer */
2828 rtl_apply_firmware(tp
);
2830 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2832 /* DCO enable for 10M IDLE Power */
2833 rtl_writephy(tp
, 0x1f, 0x0007);
2834 rtl_writephy(tp
, 0x1e, 0x0023);
2835 rtl_w1w0_phy(tp
, 0x17, 0x0006, 0x0000);
2836 rtl_writephy(tp
, 0x1f, 0x0000);
2838 /* For impedance matching */
2839 rtl_writephy(tp
, 0x1f, 0x0002);
2840 rtl_w1w0_phy(tp
, 0x08, 0x8000, 0x7f00);
2841 rtl_writephy(tp
, 0x1f, 0x0000);
2843 /* PHY auto speed down */
2844 rtl_writephy(tp
, 0x1f, 0x0007);
2845 rtl_writephy(tp
, 0x1e, 0x002d);
2846 rtl_w1w0_phy(tp
, 0x18, 0x0050, 0x0000);
2847 rtl_writephy(tp
, 0x1f, 0x0000);
2848 rtl_w1w0_phy(tp
, 0x14, 0x8000, 0x0000);
2850 rtl_writephy(tp
, 0x1f, 0x0005);
2851 rtl_writephy(tp
, 0x05, 0x8b86);
2852 rtl_w1w0_phy(tp
, 0x06, 0x0001, 0x0000);
2853 rtl_writephy(tp
, 0x1f, 0x0000);
2855 rtl_writephy(tp
, 0x1f, 0x0005);
2856 rtl_writephy(tp
, 0x05, 0x8b85);
2857 rtl_w1w0_phy(tp
, 0x06, 0x0000, 0x2000);
2858 rtl_writephy(tp
, 0x1f, 0x0007);
2859 rtl_writephy(tp
, 0x1e, 0x0020);
2860 rtl_w1w0_phy(tp
, 0x15, 0x0000, 0x1100);
2861 rtl_writephy(tp
, 0x1f, 0x0006);
2862 rtl_writephy(tp
, 0x00, 0x5a00);
2863 rtl_writephy(tp
, 0x1f, 0x0000);
2864 rtl_writephy(tp
, 0x0d, 0x0007);
2865 rtl_writephy(tp
, 0x0e, 0x003c);
2866 rtl_writephy(tp
, 0x0d, 0x4007);
2867 rtl_writephy(tp
, 0x0e, 0x0000);
2868 rtl_writephy(tp
, 0x0d, 0x0000);
2871 static void rtl8168e_2_hw_phy_config(struct rtl8169_private
*tp
)
2873 static const struct phy_reg phy_reg_init
[] = {
2874 /* Enable Delay cap */
2883 /* Channel estimation fine tune */
2900 rtl_apply_firmware(tp
);
2902 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2904 /* For 4-corner performance improve */
2905 rtl_writephy(tp
, 0x1f, 0x0005);
2906 rtl_writephy(tp
, 0x05, 0x8b80);
2907 rtl_w1w0_phy(tp
, 0x17, 0x0006, 0x0000);
2908 rtl_writephy(tp
, 0x1f, 0x0000);
2910 /* PHY auto speed down */
2911 rtl_writephy(tp
, 0x1f, 0x0004);
2912 rtl_writephy(tp
, 0x1f, 0x0007);
2913 rtl_writephy(tp
, 0x1e, 0x002d);
2914 rtl_w1w0_phy(tp
, 0x18, 0x0010, 0x0000);
2915 rtl_writephy(tp
, 0x1f, 0x0002);
2916 rtl_writephy(tp
, 0x1f, 0x0000);
2917 rtl_w1w0_phy(tp
, 0x14, 0x8000, 0x0000);
2919 /* improve 10M EEE waveform */
2920 rtl_writephy(tp
, 0x1f, 0x0005);
2921 rtl_writephy(tp
, 0x05, 0x8b86);
2922 rtl_w1w0_phy(tp
, 0x06, 0x0001, 0x0000);
2923 rtl_writephy(tp
, 0x1f, 0x0000);
2925 /* Improve 2-pair detection performance */
2926 rtl_writephy(tp
, 0x1f, 0x0005);
2927 rtl_writephy(tp
, 0x05, 0x8b85);
2928 rtl_w1w0_phy(tp
, 0x06, 0x4000, 0x0000);
2929 rtl_writephy(tp
, 0x1f, 0x0000);
2932 rtl_w1w0_eri(tp
->mmio_addr
, 0x1b0, ERIAR_MASK_1111
, 0x0000, 0x0003,
2934 rtl_writephy(tp
, 0x1f, 0x0005);
2935 rtl_writephy(tp
, 0x05, 0x8b85);
2936 rtl_w1w0_phy(tp
, 0x06, 0x0000, 0x2000);
2937 rtl_writephy(tp
, 0x1f, 0x0004);
2938 rtl_writephy(tp
, 0x1f, 0x0007);
2939 rtl_writephy(tp
, 0x1e, 0x0020);
2940 rtl_w1w0_phy(tp
, 0x15, 0x0000, 0x0100);
2941 rtl_writephy(tp
, 0x1f, 0x0002);
2942 rtl_writephy(tp
, 0x1f, 0x0000);
2943 rtl_writephy(tp
, 0x0d, 0x0007);
2944 rtl_writephy(tp
, 0x0e, 0x003c);
2945 rtl_writephy(tp
, 0x0d, 0x4007);
2946 rtl_writephy(tp
, 0x0e, 0x0000);
2947 rtl_writephy(tp
, 0x0d, 0x0000);
2950 rtl_writephy(tp
, 0x1f, 0x0003);
2951 rtl_w1w0_phy(tp
, 0x19, 0x0000, 0x0001);
2952 rtl_w1w0_phy(tp
, 0x10, 0x0000, 0x0400);
2953 rtl_writephy(tp
, 0x1f, 0x0000);
2956 static void rtl8168f_1_hw_phy_config(struct rtl8169_private
*tp
)
2958 static const struct phy_reg phy_reg_init
[] = {
2959 /* Channel estimation fine tune */
2964 /* Modify green table for giga & fnet */
2981 /* Modify green table for 10M */
2987 /* Disable hiimpedance detection (RTCT) */
2993 rtl_apply_firmware(tp
);
2995 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2997 /* For 4-corner performance improve */
2998 rtl_writephy(tp
, 0x1f, 0x0005);
2999 rtl_writephy(tp
, 0x05, 0x8b80);
3000 rtl_w1w0_phy(tp
, 0x06, 0x0006, 0x0000);
3001 rtl_writephy(tp
, 0x1f, 0x0000);
3003 /* PHY auto speed down */
3004 rtl_writephy(tp
, 0x1f, 0x0007);
3005 rtl_writephy(tp
, 0x1e, 0x002d);
3006 rtl_w1w0_phy(tp
, 0x18, 0x0010, 0x0000);
3007 rtl_writephy(tp
, 0x1f, 0x0000);
3008 rtl_w1w0_phy(tp
, 0x14, 0x8000, 0x0000);
3010 /* Improve 10M EEE waveform */
3011 rtl_writephy(tp
, 0x1f, 0x0005);
3012 rtl_writephy(tp
, 0x05, 0x8b86);
3013 rtl_w1w0_phy(tp
, 0x06, 0x0001, 0x0000);
3014 rtl_writephy(tp
, 0x1f, 0x0000);
3016 /* Improve 2-pair detection performance */
3017 rtl_writephy(tp
, 0x1f, 0x0005);
3018 rtl_writephy(tp
, 0x05, 0x8b85);
3019 rtl_w1w0_phy(tp
, 0x06, 0x4000, 0x0000);
3020 rtl_writephy(tp
, 0x1f, 0x0000);
3023 static void rtl8168f_2_hw_phy_config(struct rtl8169_private
*tp
)
3025 rtl_apply_firmware(tp
);
3027 /* For 4-corner performance improve */
3028 rtl_writephy(tp
, 0x1f, 0x0005);
3029 rtl_writephy(tp
, 0x05, 0x8b80);
3030 rtl_w1w0_phy(tp
, 0x06, 0x0006, 0x0000);
3031 rtl_writephy(tp
, 0x1f, 0x0000);
3033 /* PHY auto speed down */
3034 rtl_writephy(tp
, 0x1f, 0x0007);
3035 rtl_writephy(tp
, 0x1e, 0x002d);
3036 rtl_w1w0_phy(tp
, 0x18, 0x0010, 0x0000);
3037 rtl_writephy(tp
, 0x1f, 0x0000);
3038 rtl_w1w0_phy(tp
, 0x14, 0x8000, 0x0000);
3040 /* Improve 10M EEE waveform */
3041 rtl_writephy(tp
, 0x1f, 0x0005);
3042 rtl_writephy(tp
, 0x05, 0x8b86);
3043 rtl_w1w0_phy(tp
, 0x06, 0x0001, 0x0000);
3044 rtl_writephy(tp
, 0x1f, 0x0000);
3047 static void rtl8102e_hw_phy_config(struct rtl8169_private
*tp
)
3049 static const struct phy_reg phy_reg_init
[] = {
3056 rtl_writephy(tp
, 0x1f, 0x0000);
3057 rtl_patchphy(tp
, 0x11, 1 << 12);
3058 rtl_patchphy(tp
, 0x19, 1 << 13);
3059 rtl_patchphy(tp
, 0x10, 1 << 15);
3061 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3064 static void rtl8105e_hw_phy_config(struct rtl8169_private
*tp
)
3066 static const struct phy_reg phy_reg_init
[] = {
3080 /* Disable ALDPS before ram code */
3081 rtl_writephy(tp
, 0x1f, 0x0000);
3082 rtl_writephy(tp
, 0x18, 0x0310);
3085 rtl_apply_firmware(tp
);
3087 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
3090 static void rtl_hw_phy_config(struct net_device
*dev
)
3092 struct rtl8169_private
*tp
= netdev_priv(dev
);
3094 rtl8169_print_mac_version(tp
);
3096 switch (tp
->mac_version
) {
3097 case RTL_GIGA_MAC_VER_01
:
3099 case RTL_GIGA_MAC_VER_02
:
3100 case RTL_GIGA_MAC_VER_03
:
3101 rtl8169s_hw_phy_config(tp
);
3103 case RTL_GIGA_MAC_VER_04
:
3104 rtl8169sb_hw_phy_config(tp
);
3106 case RTL_GIGA_MAC_VER_05
:
3107 rtl8169scd_hw_phy_config(tp
);
3109 case RTL_GIGA_MAC_VER_06
:
3110 rtl8169sce_hw_phy_config(tp
);
3112 case RTL_GIGA_MAC_VER_07
:
3113 case RTL_GIGA_MAC_VER_08
:
3114 case RTL_GIGA_MAC_VER_09
:
3115 rtl8102e_hw_phy_config(tp
);
3117 case RTL_GIGA_MAC_VER_11
:
3118 rtl8168bb_hw_phy_config(tp
);
3120 case RTL_GIGA_MAC_VER_12
:
3121 rtl8168bef_hw_phy_config(tp
);
3123 case RTL_GIGA_MAC_VER_17
:
3124 rtl8168bef_hw_phy_config(tp
);
3126 case RTL_GIGA_MAC_VER_18
:
3127 rtl8168cp_1_hw_phy_config(tp
);
3129 case RTL_GIGA_MAC_VER_19
:
3130 rtl8168c_1_hw_phy_config(tp
);
3132 case RTL_GIGA_MAC_VER_20
:
3133 rtl8168c_2_hw_phy_config(tp
);
3135 case RTL_GIGA_MAC_VER_21
:
3136 rtl8168c_3_hw_phy_config(tp
);
3138 case RTL_GIGA_MAC_VER_22
:
3139 rtl8168c_4_hw_phy_config(tp
);
3141 case RTL_GIGA_MAC_VER_23
:
3142 case RTL_GIGA_MAC_VER_24
:
3143 rtl8168cp_2_hw_phy_config(tp
);
3145 case RTL_GIGA_MAC_VER_25
:
3146 rtl8168d_1_hw_phy_config(tp
);
3148 case RTL_GIGA_MAC_VER_26
:
3149 rtl8168d_2_hw_phy_config(tp
);
3151 case RTL_GIGA_MAC_VER_27
:
3152 rtl8168d_3_hw_phy_config(tp
);
3154 case RTL_GIGA_MAC_VER_28
:
3155 rtl8168d_4_hw_phy_config(tp
);
3157 case RTL_GIGA_MAC_VER_29
:
3158 case RTL_GIGA_MAC_VER_30
:
3159 rtl8105e_hw_phy_config(tp
);
3161 case RTL_GIGA_MAC_VER_31
:
3164 case RTL_GIGA_MAC_VER_32
:
3165 case RTL_GIGA_MAC_VER_33
:
3166 rtl8168e_1_hw_phy_config(tp
);
3168 case RTL_GIGA_MAC_VER_34
:
3169 rtl8168e_2_hw_phy_config(tp
);
3171 case RTL_GIGA_MAC_VER_35
:
3172 rtl8168f_1_hw_phy_config(tp
);
3174 case RTL_GIGA_MAC_VER_36
:
3175 rtl8168f_2_hw_phy_config(tp
);
3183 static void rtl8169_phy_timer(unsigned long __opaque
)
3185 struct net_device
*dev
= (struct net_device
*)__opaque
;
3186 struct rtl8169_private
*tp
= netdev_priv(dev
);
3187 struct timer_list
*timer
= &tp
->timer
;
3188 void __iomem
*ioaddr
= tp
->mmio_addr
;
3189 unsigned long timeout
= RTL8169_PHY_TIMEOUT
;
3191 assert(tp
->mac_version
> RTL_GIGA_MAC_VER_01
);
3193 spin_lock_irq(&tp
->lock
);
3195 if (tp
->phy_reset_pending(tp
)) {
3197 * A busy loop could burn quite a few cycles on nowadays CPU.
3198 * Let's delay the execution of the timer for a few ticks.
3204 if (tp
->link_ok(ioaddr
))
3207 netif_warn(tp
, link
, dev
, "PHY reset until link up\n");
3209 tp
->phy_reset_enable(tp
);
3212 mod_timer(timer
, jiffies
+ timeout
);
3214 spin_unlock_irq(&tp
->lock
);
3217 #ifdef CONFIG_NET_POLL_CONTROLLER
3219 * Polling 'interrupt' - used by things like netconsole to send skbs
3220 * without having to re-enable interrupts. It's not called while
3221 * the interrupt routine is executing.
3223 static void rtl8169_netpoll(struct net_device
*dev
)
3225 struct rtl8169_private
*tp
= netdev_priv(dev
);
3226 struct pci_dev
*pdev
= tp
->pci_dev
;
3228 disable_irq(pdev
->irq
);
3229 rtl8169_interrupt(pdev
->irq
, dev
);
3230 enable_irq(pdev
->irq
);
3234 static void rtl8169_release_board(struct pci_dev
*pdev
, struct net_device
*dev
,
3235 void __iomem
*ioaddr
)
3238 pci_release_regions(pdev
);
3239 pci_clear_mwi(pdev
);
3240 pci_disable_device(pdev
);
3244 static void rtl8169_phy_reset(struct net_device
*dev
,
3245 struct rtl8169_private
*tp
)
3249 tp
->phy_reset_enable(tp
);
3250 for (i
= 0; i
< 100; i
++) {
3251 if (!tp
->phy_reset_pending(tp
))
3255 netif_err(tp
, link
, dev
, "PHY reset failed\n");
3258 static bool rtl_tbi_enabled(struct rtl8169_private
*tp
)
3260 void __iomem
*ioaddr
= tp
->mmio_addr
;
3262 return (tp
->mac_version
== RTL_GIGA_MAC_VER_01
) &&
3263 (RTL_R8(PHYstatus
) & TBI_Enable
);
3266 static void rtl8169_init_phy(struct net_device
*dev
, struct rtl8169_private
*tp
)
3268 void __iomem
*ioaddr
= tp
->mmio_addr
;
3270 rtl_hw_phy_config(dev
);
3272 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_06
) {
3273 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3277 pci_write_config_byte(tp
->pci_dev
, PCI_LATENCY_TIMER
, 0x40);
3279 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_06
)
3280 pci_write_config_byte(tp
->pci_dev
, PCI_CACHE_LINE_SIZE
, 0x08);
3282 if (tp
->mac_version
== RTL_GIGA_MAC_VER_02
) {
3283 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3285 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
3286 rtl_writephy(tp
, 0x0b, 0x0000); //w 0x0b 15 0 0
3289 rtl8169_phy_reset(dev
, tp
);
3291 rtl8169_set_speed(dev
, AUTONEG_ENABLE
, SPEED_1000
, DUPLEX_FULL
,
3292 ADVERTISED_10baseT_Half
| ADVERTISED_10baseT_Full
|
3293 ADVERTISED_100baseT_Half
| ADVERTISED_100baseT_Full
|
3294 (tp
->mii
.supports_gmii
?
3295 ADVERTISED_1000baseT_Half
|
3296 ADVERTISED_1000baseT_Full
: 0));
3298 if (rtl_tbi_enabled(tp
))
3299 netif_info(tp
, link
, dev
, "TBI auto-negotiating\n");
3302 static void rtl_rar_set(struct rtl8169_private
*tp
, u8
*addr
)
3304 void __iomem
*ioaddr
= tp
->mmio_addr
;
3308 low
= addr
[0] | (addr
[1] << 8) | (addr
[2] << 16) | (addr
[3] << 24);
3309 high
= addr
[4] | (addr
[5] << 8);
3311 spin_lock_irq(&tp
->lock
);
3313 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
3315 RTL_W32(MAC4
, high
);
3321 if (tp
->mac_version
== RTL_GIGA_MAC_VER_34
) {
3322 const struct exgmac_reg e
[] = {
3323 { .addr
= 0xe0, ERIAR_MASK_1111
, .val
= low
},
3324 { .addr
= 0xe4, ERIAR_MASK_1111
, .val
= high
},
3325 { .addr
= 0xf0, ERIAR_MASK_1111
, .val
= low
<< 16 },
3326 { .addr
= 0xf4, ERIAR_MASK_1111
, .val
= high
<< 16 |
3330 rtl_write_exgmac_batch(ioaddr
, e
, ARRAY_SIZE(e
));
3333 RTL_W8(Cfg9346
, Cfg9346_Lock
);
3335 spin_unlock_irq(&tp
->lock
);
3338 static int rtl_set_mac_address(struct net_device
*dev
, void *p
)
3340 struct rtl8169_private
*tp
= netdev_priv(dev
);
3341 struct sockaddr
*addr
= p
;
3343 if (!is_valid_ether_addr(addr
->sa_data
))
3344 return -EADDRNOTAVAIL
;
3346 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
3348 rtl_rar_set(tp
, dev
->dev_addr
);
3353 static int rtl8169_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
3355 struct rtl8169_private
*tp
= netdev_priv(dev
);
3356 struct mii_ioctl_data
*data
= if_mii(ifr
);
3358 return netif_running(dev
) ? tp
->do_ioctl(tp
, data
, cmd
) : -ENODEV
;
3361 static int rtl_xmii_ioctl(struct rtl8169_private
*tp
,
3362 struct mii_ioctl_data
*data
, int cmd
)
3366 data
->phy_id
= 32; /* Internal PHY */
3370 data
->val_out
= rtl_readphy(tp
, data
->reg_num
& 0x1f);
3374 rtl_writephy(tp
, data
->reg_num
& 0x1f, data
->val_in
);
3380 static int rtl_tbi_ioctl(struct rtl8169_private
*tp
, struct mii_ioctl_data
*data
, int cmd
)
3385 static const struct rtl_cfg_info
{
3386 void (*hw_start
)(struct net_device
*);
3387 unsigned int region
;
3393 } rtl_cfg_infos
[] = {
3395 .hw_start
= rtl_hw_start_8169
,
3398 .intr_event
= SYSErr
| LinkChg
| RxOverflow
|
3399 RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxErr
,
3400 .napi_event
= RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxOverflow
,
3401 .features
= RTL_FEATURE_GMII
,
3402 .default_ver
= RTL_GIGA_MAC_VER_01
,
3405 .hw_start
= rtl_hw_start_8168
,
3408 .intr_event
= SYSErr
| LinkChg
| RxOverflow
|
3409 TxErr
| TxOK
| RxOK
| RxErr
,
3410 .napi_event
= TxErr
| TxOK
| RxOK
| RxOverflow
,
3411 .features
= RTL_FEATURE_GMII
| RTL_FEATURE_MSI
,
3412 .default_ver
= RTL_GIGA_MAC_VER_11
,
3415 .hw_start
= rtl_hw_start_8101
,
3418 .intr_event
= SYSErr
| LinkChg
| RxOverflow
| PCSTimeout
|
3419 RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxErr
,
3420 .napi_event
= RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxOverflow
,
3421 .features
= RTL_FEATURE_MSI
,
3422 .default_ver
= RTL_GIGA_MAC_VER_13
,
3426 /* Cfg9346_Unlock assumed. */
3427 static unsigned rtl_try_msi(struct pci_dev
*pdev
, void __iomem
*ioaddr
,
3428 const struct rtl_cfg_info
*cfg
)
3433 cfg2
= RTL_R8(Config2
) & ~MSIEnable
;
3434 if (cfg
->features
& RTL_FEATURE_MSI
) {
3435 if (pci_enable_msi(pdev
)) {
3436 dev_info(&pdev
->dev
, "no MSI. Back to INTx.\n");
3439 msi
= RTL_FEATURE_MSI
;
3442 RTL_W8(Config2
, cfg2
);
3446 static void rtl_disable_msi(struct pci_dev
*pdev
, struct rtl8169_private
*tp
)
3448 if (tp
->features
& RTL_FEATURE_MSI
) {
3449 pci_disable_msi(pdev
);
3450 tp
->features
&= ~RTL_FEATURE_MSI
;
3454 static const struct net_device_ops rtl8169_netdev_ops
= {
3455 .ndo_open
= rtl8169_open
,
3456 .ndo_stop
= rtl8169_close
,
3457 .ndo_get_stats
= rtl8169_get_stats
,
3458 .ndo_start_xmit
= rtl8169_start_xmit
,
3459 .ndo_tx_timeout
= rtl8169_tx_timeout
,
3460 .ndo_validate_addr
= eth_validate_addr
,
3461 .ndo_change_mtu
= rtl8169_change_mtu
,
3462 .ndo_fix_features
= rtl8169_fix_features
,
3463 .ndo_set_features
= rtl8169_set_features
,
3464 .ndo_set_mac_address
= rtl_set_mac_address
,
3465 .ndo_do_ioctl
= rtl8169_ioctl
,
3466 .ndo_set_rx_mode
= rtl_set_rx_mode
,
3467 #ifdef CONFIG_NET_POLL_CONTROLLER
3468 .ndo_poll_controller
= rtl8169_netpoll
,
3473 static void __devinit
rtl_init_mdio_ops(struct rtl8169_private
*tp
)
3475 struct mdio_ops
*ops
= &tp
->mdio_ops
;
3477 switch (tp
->mac_version
) {
3478 case RTL_GIGA_MAC_VER_27
:
3479 ops
->write
= r8168dp_1_mdio_write
;
3480 ops
->read
= r8168dp_1_mdio_read
;
3482 case RTL_GIGA_MAC_VER_28
:
3483 case RTL_GIGA_MAC_VER_31
:
3484 ops
->write
= r8168dp_2_mdio_write
;
3485 ops
->read
= r8168dp_2_mdio_read
;
3488 ops
->write
= r8169_mdio_write
;
3489 ops
->read
= r8169_mdio_read
;
3494 static void rtl_wol_suspend_quirk(struct rtl8169_private
*tp
)
3496 void __iomem
*ioaddr
= tp
->mmio_addr
;
3498 switch (tp
->mac_version
) {
3499 case RTL_GIGA_MAC_VER_29
:
3500 case RTL_GIGA_MAC_VER_30
:
3501 case RTL_GIGA_MAC_VER_32
:
3502 case RTL_GIGA_MAC_VER_33
:
3503 case RTL_GIGA_MAC_VER_34
:
3504 RTL_W32(RxConfig
, RTL_R32(RxConfig
) |
3505 AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
);
3512 static bool rtl_wol_pll_power_down(struct rtl8169_private
*tp
)
3514 if (!(__rtl8169_get_wol(tp
) & WAKE_ANY
))
3517 rtl_writephy(tp
, 0x1f, 0x0000);
3518 rtl_writephy(tp
, MII_BMCR
, 0x0000);
3520 rtl_wol_suspend_quirk(tp
);
3525 static void r810x_phy_power_down(struct rtl8169_private
*tp
)
3527 rtl_writephy(tp
, 0x1f, 0x0000);
3528 rtl_writephy(tp
, MII_BMCR
, BMCR_PDOWN
);
3531 static void r810x_phy_power_up(struct rtl8169_private
*tp
)
3533 rtl_writephy(tp
, 0x1f, 0x0000);
3534 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
);
3537 static void r810x_pll_power_down(struct rtl8169_private
*tp
)
3539 if (rtl_wol_pll_power_down(tp
))
3542 r810x_phy_power_down(tp
);
3545 static void r810x_pll_power_up(struct rtl8169_private
*tp
)
3547 r810x_phy_power_up(tp
);
3550 static void r8168_phy_power_up(struct rtl8169_private
*tp
)
3552 rtl_writephy(tp
, 0x1f, 0x0000);
3553 switch (tp
->mac_version
) {
3554 case RTL_GIGA_MAC_VER_11
:
3555 case RTL_GIGA_MAC_VER_12
:
3556 case RTL_GIGA_MAC_VER_17
:
3557 case RTL_GIGA_MAC_VER_18
:
3558 case RTL_GIGA_MAC_VER_19
:
3559 case RTL_GIGA_MAC_VER_20
:
3560 case RTL_GIGA_MAC_VER_21
:
3561 case RTL_GIGA_MAC_VER_22
:
3562 case RTL_GIGA_MAC_VER_23
:
3563 case RTL_GIGA_MAC_VER_24
:
3564 case RTL_GIGA_MAC_VER_25
:
3565 case RTL_GIGA_MAC_VER_26
:
3566 case RTL_GIGA_MAC_VER_27
:
3567 case RTL_GIGA_MAC_VER_28
:
3568 case RTL_GIGA_MAC_VER_31
:
3569 rtl_writephy(tp
, 0x0e, 0x0000);
3574 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
);
3577 static void r8168_phy_power_down(struct rtl8169_private
*tp
)
3579 rtl_writephy(tp
, 0x1f, 0x0000);
3580 switch (tp
->mac_version
) {
3581 case RTL_GIGA_MAC_VER_32
:
3582 case RTL_GIGA_MAC_VER_33
:
3583 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
| BMCR_PDOWN
);
3586 case RTL_GIGA_MAC_VER_11
:
3587 case RTL_GIGA_MAC_VER_12
:
3588 case RTL_GIGA_MAC_VER_17
:
3589 case RTL_GIGA_MAC_VER_18
:
3590 case RTL_GIGA_MAC_VER_19
:
3591 case RTL_GIGA_MAC_VER_20
:
3592 case RTL_GIGA_MAC_VER_21
:
3593 case RTL_GIGA_MAC_VER_22
:
3594 case RTL_GIGA_MAC_VER_23
:
3595 case RTL_GIGA_MAC_VER_24
:
3596 case RTL_GIGA_MAC_VER_25
:
3597 case RTL_GIGA_MAC_VER_26
:
3598 case RTL_GIGA_MAC_VER_27
:
3599 case RTL_GIGA_MAC_VER_28
:
3600 case RTL_GIGA_MAC_VER_31
:
3601 rtl_writephy(tp
, 0x0e, 0x0200);
3603 rtl_writephy(tp
, MII_BMCR
, BMCR_PDOWN
);
3608 static void r8168_pll_power_down(struct rtl8169_private
*tp
)
3610 void __iomem
*ioaddr
= tp
->mmio_addr
;
3612 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_27
||
3613 tp
->mac_version
== RTL_GIGA_MAC_VER_28
||
3614 tp
->mac_version
== RTL_GIGA_MAC_VER_31
) &&
3615 r8168dp_check_dash(tp
)) {
3619 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_23
||
3620 tp
->mac_version
== RTL_GIGA_MAC_VER_24
) &&
3621 (RTL_R16(CPlusCmd
) & ASF
)) {
3625 if (tp
->mac_version
== RTL_GIGA_MAC_VER_32
||
3626 tp
->mac_version
== RTL_GIGA_MAC_VER_33
)
3627 rtl_ephy_write(ioaddr
, 0x19, 0xff64);
3629 if (rtl_wol_pll_power_down(tp
))
3632 r8168_phy_power_down(tp
);
3634 switch (tp
->mac_version
) {
3635 case RTL_GIGA_MAC_VER_25
:
3636 case RTL_GIGA_MAC_VER_26
:
3637 case RTL_GIGA_MAC_VER_27
:
3638 case RTL_GIGA_MAC_VER_28
:
3639 case RTL_GIGA_MAC_VER_31
:
3640 case RTL_GIGA_MAC_VER_32
:
3641 case RTL_GIGA_MAC_VER_33
:
3642 RTL_W8(PMCH
, RTL_R8(PMCH
) & ~0x80);
3647 static void r8168_pll_power_up(struct rtl8169_private
*tp
)
3649 void __iomem
*ioaddr
= tp
->mmio_addr
;
3651 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_27
||
3652 tp
->mac_version
== RTL_GIGA_MAC_VER_28
||
3653 tp
->mac_version
== RTL_GIGA_MAC_VER_31
) &&
3654 r8168dp_check_dash(tp
)) {
3658 switch (tp
->mac_version
) {
3659 case RTL_GIGA_MAC_VER_25
:
3660 case RTL_GIGA_MAC_VER_26
:
3661 case RTL_GIGA_MAC_VER_27
:
3662 case RTL_GIGA_MAC_VER_28
:
3663 case RTL_GIGA_MAC_VER_31
:
3664 case RTL_GIGA_MAC_VER_32
:
3665 case RTL_GIGA_MAC_VER_33
:
3666 RTL_W8(PMCH
, RTL_R8(PMCH
) | 0x80);
3670 r8168_phy_power_up(tp
);
3673 static void rtl_generic_op(struct rtl8169_private
*tp
,
3674 void (*op
)(struct rtl8169_private
*))
3680 static void rtl_pll_power_down(struct rtl8169_private
*tp
)
3682 rtl_generic_op(tp
, tp
->pll_power_ops
.down
);
3685 static void rtl_pll_power_up(struct rtl8169_private
*tp
)
3687 rtl_generic_op(tp
, tp
->pll_power_ops
.up
);
3690 static void __devinit
rtl_init_pll_power_ops(struct rtl8169_private
*tp
)
3692 struct pll_power_ops
*ops
= &tp
->pll_power_ops
;
3694 switch (tp
->mac_version
) {
3695 case RTL_GIGA_MAC_VER_07
:
3696 case RTL_GIGA_MAC_VER_08
:
3697 case RTL_GIGA_MAC_VER_09
:
3698 case RTL_GIGA_MAC_VER_10
:
3699 case RTL_GIGA_MAC_VER_16
:
3700 case RTL_GIGA_MAC_VER_29
:
3701 case RTL_GIGA_MAC_VER_30
:
3702 ops
->down
= r810x_pll_power_down
;
3703 ops
->up
= r810x_pll_power_up
;
3706 case RTL_GIGA_MAC_VER_11
:
3707 case RTL_GIGA_MAC_VER_12
:
3708 case RTL_GIGA_MAC_VER_17
:
3709 case RTL_GIGA_MAC_VER_18
:
3710 case RTL_GIGA_MAC_VER_19
:
3711 case RTL_GIGA_MAC_VER_20
:
3712 case RTL_GIGA_MAC_VER_21
:
3713 case RTL_GIGA_MAC_VER_22
:
3714 case RTL_GIGA_MAC_VER_23
:
3715 case RTL_GIGA_MAC_VER_24
:
3716 case RTL_GIGA_MAC_VER_25
:
3717 case RTL_GIGA_MAC_VER_26
:
3718 case RTL_GIGA_MAC_VER_27
:
3719 case RTL_GIGA_MAC_VER_28
:
3720 case RTL_GIGA_MAC_VER_31
:
3721 case RTL_GIGA_MAC_VER_32
:
3722 case RTL_GIGA_MAC_VER_33
:
3723 case RTL_GIGA_MAC_VER_34
:
3724 case RTL_GIGA_MAC_VER_35
:
3725 case RTL_GIGA_MAC_VER_36
:
3726 ops
->down
= r8168_pll_power_down
;
3727 ops
->up
= r8168_pll_power_up
;
3737 static void rtl_init_rxcfg(struct rtl8169_private
*tp
)
3739 void __iomem
*ioaddr
= tp
->mmio_addr
;
3741 switch (tp
->mac_version
) {
3742 case RTL_GIGA_MAC_VER_01
:
3743 case RTL_GIGA_MAC_VER_02
:
3744 case RTL_GIGA_MAC_VER_03
:
3745 case RTL_GIGA_MAC_VER_04
:
3746 case RTL_GIGA_MAC_VER_05
:
3747 case RTL_GIGA_MAC_VER_06
:
3748 case RTL_GIGA_MAC_VER_10
:
3749 case RTL_GIGA_MAC_VER_11
:
3750 case RTL_GIGA_MAC_VER_12
:
3751 case RTL_GIGA_MAC_VER_13
:
3752 case RTL_GIGA_MAC_VER_14
:
3753 case RTL_GIGA_MAC_VER_15
:
3754 case RTL_GIGA_MAC_VER_16
:
3755 case RTL_GIGA_MAC_VER_17
:
3756 RTL_W32(RxConfig
, RX_FIFO_THRESH
| RX_DMA_BURST
);
3758 case RTL_GIGA_MAC_VER_18
:
3759 case RTL_GIGA_MAC_VER_19
:
3760 case RTL_GIGA_MAC_VER_20
:
3761 case RTL_GIGA_MAC_VER_21
:
3762 case RTL_GIGA_MAC_VER_22
:
3763 case RTL_GIGA_MAC_VER_23
:
3764 case RTL_GIGA_MAC_VER_24
:
3765 RTL_W32(RxConfig
, RX128_INT_EN
| RX_MULTI_EN
| RX_DMA_BURST
);
3768 RTL_W32(RxConfig
, RX128_INT_EN
| RX_DMA_BURST
);
3773 static void rtl8169_init_ring_indexes(struct rtl8169_private
*tp
)
3775 tp
->dirty_tx
= tp
->dirty_rx
= tp
->cur_tx
= tp
->cur_rx
= 0;
3778 static void rtl_hw_jumbo_enable(struct rtl8169_private
*tp
)
3780 rtl_generic_op(tp
, tp
->jumbo_ops
.enable
);
3783 static void rtl_hw_jumbo_disable(struct rtl8169_private
*tp
)
3785 rtl_generic_op(tp
, tp
->jumbo_ops
.disable
);
3788 static void r8168c_hw_jumbo_enable(struct rtl8169_private
*tp
)
3790 void __iomem
*ioaddr
= tp
->mmio_addr
;
3792 RTL_W8(Config3
, RTL_R8(Config3
) | Jumbo_En0
);
3793 RTL_W8(Config4
, RTL_R8(Config4
) | Jumbo_En1
);
3794 rtl_tx_performance_tweak(tp
->pci_dev
, 0x2 << MAX_READ_REQUEST_SHIFT
);
3797 static void r8168c_hw_jumbo_disable(struct rtl8169_private
*tp
)
3799 void __iomem
*ioaddr
= tp
->mmio_addr
;
3801 RTL_W8(Config3
, RTL_R8(Config3
) & ~Jumbo_En0
);
3802 RTL_W8(Config4
, RTL_R8(Config4
) & ~Jumbo_En1
);
3803 rtl_tx_performance_tweak(tp
->pci_dev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3806 static void r8168dp_hw_jumbo_enable(struct rtl8169_private
*tp
)
3808 void __iomem
*ioaddr
= tp
->mmio_addr
;
3810 RTL_W8(Config3
, RTL_R8(Config3
) | Jumbo_En0
);
3813 static void r8168dp_hw_jumbo_disable(struct rtl8169_private
*tp
)
3815 void __iomem
*ioaddr
= tp
->mmio_addr
;
3817 RTL_W8(Config3
, RTL_R8(Config3
) & ~Jumbo_En0
);
3820 static void r8168e_hw_jumbo_enable(struct rtl8169_private
*tp
)
3822 void __iomem
*ioaddr
= tp
->mmio_addr
;
3823 struct pci_dev
*pdev
= tp
->pci_dev
;
3825 RTL_W8(MaxTxPacketSize
, 0x3f);
3826 RTL_W8(Config3
, RTL_R8(Config3
) | Jumbo_En0
);
3827 RTL_W8(Config4
, RTL_R8(Config4
) | 0x01);
3828 pci_write_config_byte(pdev
, 0x79, 0x20);
3831 static void r8168e_hw_jumbo_disable(struct rtl8169_private
*tp
)
3833 void __iomem
*ioaddr
= tp
->mmio_addr
;
3834 struct pci_dev
*pdev
= tp
->pci_dev
;
3836 RTL_W8(MaxTxPacketSize
, 0x0c);
3837 RTL_W8(Config3
, RTL_R8(Config3
) & ~Jumbo_En0
);
3838 RTL_W8(Config4
, RTL_R8(Config4
) & ~0x01);
3839 pci_write_config_byte(pdev
, 0x79, 0x50);
3842 static void r8168b_0_hw_jumbo_enable(struct rtl8169_private
*tp
)
3844 rtl_tx_performance_tweak(tp
->pci_dev
,
3845 (0x2 << MAX_READ_REQUEST_SHIFT
) | PCI_EXP_DEVCTL_NOSNOOP_EN
);
3848 static void r8168b_0_hw_jumbo_disable(struct rtl8169_private
*tp
)
3850 rtl_tx_performance_tweak(tp
->pci_dev
,
3851 (0x5 << MAX_READ_REQUEST_SHIFT
) | PCI_EXP_DEVCTL_NOSNOOP_EN
);
3854 static void r8168b_1_hw_jumbo_enable(struct rtl8169_private
*tp
)
3856 void __iomem
*ioaddr
= tp
->mmio_addr
;
3858 r8168b_0_hw_jumbo_enable(tp
);
3860 RTL_W8(Config4
, RTL_R8(Config4
) | (1 << 0));
3863 static void r8168b_1_hw_jumbo_disable(struct rtl8169_private
*tp
)
3865 void __iomem
*ioaddr
= tp
->mmio_addr
;
3867 r8168b_0_hw_jumbo_disable(tp
);
3869 RTL_W8(Config4
, RTL_R8(Config4
) & ~(1 << 0));
3872 static void __devinit
rtl_init_jumbo_ops(struct rtl8169_private
*tp
)
3874 struct jumbo_ops
*ops
= &tp
->jumbo_ops
;
3876 switch (tp
->mac_version
) {
3877 case RTL_GIGA_MAC_VER_11
:
3878 ops
->disable
= r8168b_0_hw_jumbo_disable
;
3879 ops
->enable
= r8168b_0_hw_jumbo_enable
;
3881 case RTL_GIGA_MAC_VER_12
:
3882 case RTL_GIGA_MAC_VER_17
:
3883 ops
->disable
= r8168b_1_hw_jumbo_disable
;
3884 ops
->enable
= r8168b_1_hw_jumbo_enable
;
3886 case RTL_GIGA_MAC_VER_18
: /* Wild guess. Needs info from Realtek. */
3887 case RTL_GIGA_MAC_VER_19
:
3888 case RTL_GIGA_MAC_VER_20
:
3889 case RTL_GIGA_MAC_VER_21
: /* Wild guess. Needs info from Realtek. */
3890 case RTL_GIGA_MAC_VER_22
:
3891 case RTL_GIGA_MAC_VER_23
:
3892 case RTL_GIGA_MAC_VER_24
:
3893 case RTL_GIGA_MAC_VER_25
:
3894 case RTL_GIGA_MAC_VER_26
:
3895 ops
->disable
= r8168c_hw_jumbo_disable
;
3896 ops
->enable
= r8168c_hw_jumbo_enable
;
3898 case RTL_GIGA_MAC_VER_27
:
3899 case RTL_GIGA_MAC_VER_28
:
3900 ops
->disable
= r8168dp_hw_jumbo_disable
;
3901 ops
->enable
= r8168dp_hw_jumbo_enable
;
3903 case RTL_GIGA_MAC_VER_31
: /* Wild guess. Needs info from Realtek. */
3904 case RTL_GIGA_MAC_VER_32
:
3905 case RTL_GIGA_MAC_VER_33
:
3906 case RTL_GIGA_MAC_VER_34
:
3907 ops
->disable
= r8168e_hw_jumbo_disable
;
3908 ops
->enable
= r8168e_hw_jumbo_enable
;
3912 * No action needed for jumbo frames with 8169.
3913 * No jumbo for 810x at all.
3916 ops
->disable
= NULL
;
3922 static void rtl_hw_reset(struct rtl8169_private
*tp
)
3924 void __iomem
*ioaddr
= tp
->mmio_addr
;
3927 /* Soft reset the chip. */
3928 RTL_W8(ChipCmd
, CmdReset
);
3930 /* Check that the chip has finished the reset. */
3931 for (i
= 0; i
< 100; i
++) {
3932 if ((RTL_R8(ChipCmd
) & CmdReset
) == 0)
3937 rtl8169_init_ring_indexes(tp
);
3940 static int __devinit
3941 rtl8169_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
3943 const struct rtl_cfg_info
*cfg
= rtl_cfg_infos
+ ent
->driver_data
;
3944 const unsigned int region
= cfg
->region
;
3945 struct rtl8169_private
*tp
;
3946 struct mii_if_info
*mii
;
3947 struct net_device
*dev
;
3948 void __iomem
*ioaddr
;
3952 if (netif_msg_drv(&debug
)) {
3953 printk(KERN_INFO
"%s Gigabit Ethernet driver %s loaded\n",
3954 MODULENAME
, RTL8169_VERSION
);
3957 dev
= alloc_etherdev(sizeof (*tp
));
3959 if (netif_msg_drv(&debug
))
3960 dev_err(&pdev
->dev
, "unable to alloc new ethernet\n");
3965 SET_NETDEV_DEV(dev
, &pdev
->dev
);
3966 dev
->netdev_ops
= &rtl8169_netdev_ops
;
3967 tp
= netdev_priv(dev
);
3970 tp
->msg_enable
= netif_msg_init(debug
.msg_enable
, R8169_MSG_DEFAULT
);
3974 mii
->mdio_read
= rtl_mdio_read
;
3975 mii
->mdio_write
= rtl_mdio_write
;
3976 mii
->phy_id_mask
= 0x1f;
3977 mii
->reg_num_mask
= 0x1f;
3978 mii
->supports_gmii
= !!(cfg
->features
& RTL_FEATURE_GMII
);
3980 /* disable ASPM completely as that cause random device stop working
3981 * problems as well as full system hangs for some PCIe devices users */
3982 pci_disable_link_state(pdev
, PCIE_LINK_STATE_L0S
| PCIE_LINK_STATE_L1
|
3983 PCIE_LINK_STATE_CLKPM
);
3985 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3986 rc
= pci_enable_device(pdev
);
3988 netif_err(tp
, probe
, dev
, "enable failure\n");
3989 goto err_out_free_dev_1
;
3992 if (pci_set_mwi(pdev
) < 0)
3993 netif_info(tp
, probe
, dev
, "Mem-Wr-Inval unavailable\n");
3995 /* make sure PCI base addr 1 is MMIO */
3996 if (!(pci_resource_flags(pdev
, region
) & IORESOURCE_MEM
)) {
3997 netif_err(tp
, probe
, dev
,
3998 "region #%d not an MMIO resource, aborting\n",
4004 /* check for weird/broken PCI region reporting */
4005 if (pci_resource_len(pdev
, region
) < R8169_REGS_SIZE
) {
4006 netif_err(tp
, probe
, dev
,
4007 "Invalid PCI region size(s), aborting\n");
4012 rc
= pci_request_regions(pdev
, MODULENAME
);
4014 netif_err(tp
, probe
, dev
, "could not request regions\n");
4018 tp
->cp_cmd
= RxChkSum
;
4020 if ((sizeof(dma_addr_t
) > 4) &&
4021 !pci_set_dma_mask(pdev
, DMA_BIT_MASK(64)) && use_dac
) {
4022 tp
->cp_cmd
|= PCIDAC
;
4023 dev
->features
|= NETIF_F_HIGHDMA
;
4025 rc
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
4027 netif_err(tp
, probe
, dev
, "DMA configuration failed\n");
4028 goto err_out_free_res_3
;
4032 /* ioremap MMIO region */
4033 ioaddr
= ioremap(pci_resource_start(pdev
, region
), R8169_REGS_SIZE
);
4035 netif_err(tp
, probe
, dev
, "cannot remap MMIO, aborting\n");
4037 goto err_out_free_res_3
;
4039 tp
->mmio_addr
= ioaddr
;
4041 if (!pci_is_pcie(pdev
))
4042 netif_info(tp
, probe
, dev
, "not PCI Express\n");
4044 /* Identify chip attached to board */
4045 rtl8169_get_mac_version(tp
, dev
, cfg
->default_ver
);
4049 RTL_W16(IntrMask
, 0x0000);
4053 RTL_W16(IntrStatus
, 0xffff);
4055 pci_set_master(pdev
);
4058 * Pretend we are using VLANs; This bypasses a nasty bug where
4059 * Interrupts stop flowing on high load on 8110SCd controllers.
4061 if (tp
->mac_version
== RTL_GIGA_MAC_VER_05
)
4062 tp
->cp_cmd
|= RxVlan
;
4064 rtl_init_mdio_ops(tp
);
4065 rtl_init_pll_power_ops(tp
);
4066 rtl_init_jumbo_ops(tp
);
4068 rtl8169_print_mac_version(tp
);
4070 chipset
= tp
->mac_version
;
4071 tp
->txd_version
= rtl_chip_infos
[chipset
].txd_version
;
4073 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
4074 RTL_W8(Config1
, RTL_R8(Config1
) | PMEnable
);
4075 RTL_W8(Config5
, RTL_R8(Config5
) & PMEStatus
);
4076 if ((RTL_R8(Config3
) & (LinkUp
| MagicPacket
)) != 0)
4077 tp
->features
|= RTL_FEATURE_WOL
;
4078 if ((RTL_R8(Config5
) & (UWF
| BWF
| MWF
)) != 0)
4079 tp
->features
|= RTL_FEATURE_WOL
;
4080 tp
->features
|= rtl_try_msi(pdev
, ioaddr
, cfg
);
4081 RTL_W8(Cfg9346
, Cfg9346_Lock
);
4083 if (rtl_tbi_enabled(tp
)) {
4084 tp
->set_speed
= rtl8169_set_speed_tbi
;
4085 tp
->get_settings
= rtl8169_gset_tbi
;
4086 tp
->phy_reset_enable
= rtl8169_tbi_reset_enable
;
4087 tp
->phy_reset_pending
= rtl8169_tbi_reset_pending
;
4088 tp
->link_ok
= rtl8169_tbi_link_ok
;
4089 tp
->do_ioctl
= rtl_tbi_ioctl
;
4091 tp
->set_speed
= rtl8169_set_speed_xmii
;
4092 tp
->get_settings
= rtl8169_gset_xmii
;
4093 tp
->phy_reset_enable
= rtl8169_xmii_reset_enable
;
4094 tp
->phy_reset_pending
= rtl8169_xmii_reset_pending
;
4095 tp
->link_ok
= rtl8169_xmii_link_ok
;
4096 tp
->do_ioctl
= rtl_xmii_ioctl
;
4099 spin_lock_init(&tp
->lock
);
4101 /* Get MAC address */
4102 for (i
= 0; i
< MAC_ADDR_LEN
; i
++)
4103 dev
->dev_addr
[i
] = RTL_R8(MAC0
+ i
);
4104 memcpy(dev
->perm_addr
, dev
->dev_addr
, dev
->addr_len
);
4106 SET_ETHTOOL_OPS(dev
, &rtl8169_ethtool_ops
);
4107 dev
->watchdog_timeo
= RTL8169_TX_TIMEOUT
;
4108 dev
->irq
= pdev
->irq
;
4109 dev
->base_addr
= (unsigned long) ioaddr
;
4111 netif_napi_add(dev
, &tp
->napi
, rtl8169_poll
, R8169_NAPI_WEIGHT
);
4113 /* don't enable SG, IP_CSUM and TSO by default - it might not work
4114 * properly for all devices */
4115 dev
->features
|= NETIF_F_RXCSUM
|
4116 NETIF_F_HW_VLAN_TX
| NETIF_F_HW_VLAN_RX
;
4118 dev
->hw_features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_TSO
|
4119 NETIF_F_RXCSUM
| NETIF_F_HW_VLAN_TX
| NETIF_F_HW_VLAN_RX
;
4120 dev
->vlan_features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_TSO
|
4123 if (tp
->mac_version
== RTL_GIGA_MAC_VER_05
)
4124 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
4125 dev
->hw_features
&= ~NETIF_F_HW_VLAN_RX
;
4127 tp
->intr_mask
= 0xffff;
4128 tp
->hw_start
= cfg
->hw_start
;
4129 tp
->intr_event
= cfg
->intr_event
;
4130 tp
->napi_event
= cfg
->napi_event
;
4132 tp
->opts1_mask
= (tp
->mac_version
!= RTL_GIGA_MAC_VER_01
) ?
4133 ~(RxBOVF
| RxFOVF
) : ~0;
4135 init_timer(&tp
->timer
);
4136 tp
->timer
.data
= (unsigned long) dev
;
4137 tp
->timer
.function
= rtl8169_phy_timer
;
4139 tp
->rtl_fw
= RTL_FIRMWARE_UNKNOWN
;
4141 rc
= register_netdev(dev
);
4145 pci_set_drvdata(pdev
, dev
);
4147 netif_info(tp
, probe
, dev
, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
4148 rtl_chip_infos
[chipset
].name
, dev
->base_addr
, dev
->dev_addr
,
4149 (u32
)(RTL_R32(TxConfig
) & 0x9cf0f8ff), dev
->irq
);
4150 if (rtl_chip_infos
[chipset
].jumbo_max
!= JUMBO_1K
) {
4151 netif_info(tp
, probe
, dev
, "jumbo features [frames: %d bytes, "
4152 "tx checksumming: %s]\n",
4153 rtl_chip_infos
[chipset
].jumbo_max
,
4154 rtl_chip_infos
[chipset
].jumbo_tx_csum
? "ok" : "ko");
4157 if (tp
->mac_version
== RTL_GIGA_MAC_VER_27
||
4158 tp
->mac_version
== RTL_GIGA_MAC_VER_28
||
4159 tp
->mac_version
== RTL_GIGA_MAC_VER_31
) {
4160 rtl8168_driver_start(tp
);
4163 device_set_wakeup_enable(&pdev
->dev
, tp
->features
& RTL_FEATURE_WOL
);
4165 if (pci_dev_run_wake(pdev
))
4166 pm_runtime_put_noidle(&pdev
->dev
);
4168 netif_carrier_off(dev
);
4174 rtl_disable_msi(pdev
, tp
);
4177 pci_release_regions(pdev
);
4179 pci_clear_mwi(pdev
);
4180 pci_disable_device(pdev
);
4186 static void __devexit
rtl8169_remove_one(struct pci_dev
*pdev
)
4188 struct net_device
*dev
= pci_get_drvdata(pdev
);
4189 struct rtl8169_private
*tp
= netdev_priv(dev
);
4191 if (tp
->mac_version
== RTL_GIGA_MAC_VER_27
||
4192 tp
->mac_version
== RTL_GIGA_MAC_VER_28
||
4193 tp
->mac_version
== RTL_GIGA_MAC_VER_31
) {
4194 rtl8168_driver_stop(tp
);
4197 cancel_delayed_work_sync(&tp
->task
);
4199 unregister_netdev(dev
);
4201 rtl_release_firmware(tp
);
4203 if (pci_dev_run_wake(pdev
))
4204 pm_runtime_get_noresume(&pdev
->dev
);
4206 /* restore original MAC address */
4207 rtl_rar_set(tp
, dev
->perm_addr
);
4209 rtl_disable_msi(pdev
, tp
);
4210 rtl8169_release_board(pdev
, dev
, tp
->mmio_addr
);
4211 pci_set_drvdata(pdev
, NULL
);
4214 static void rtl_request_uncached_firmware(struct rtl8169_private
*tp
)
4216 struct rtl_fw
*rtl_fw
;
4220 name
= rtl_lookup_firmware_name(tp
);
4222 goto out_no_firmware
;
4224 rtl_fw
= kzalloc(sizeof(*rtl_fw
), GFP_KERNEL
);
4228 rc
= request_firmware(&rtl_fw
->fw
, name
, &tp
->pci_dev
->dev
);
4232 rc
= rtl_check_firmware(tp
, rtl_fw
);
4234 goto err_release_firmware
;
4236 tp
->rtl_fw
= rtl_fw
;
4240 err_release_firmware
:
4241 release_firmware(rtl_fw
->fw
);
4245 netif_warn(tp
, ifup
, tp
->dev
, "unable to load firmware patch %s (%d)\n",
4252 static void rtl_request_firmware(struct rtl8169_private
*tp
)
4254 if (IS_ERR(tp
->rtl_fw
))
4255 rtl_request_uncached_firmware(tp
);
4258 static int rtl8169_open(struct net_device
*dev
)
4260 struct rtl8169_private
*tp
= netdev_priv(dev
);
4261 void __iomem
*ioaddr
= tp
->mmio_addr
;
4262 struct pci_dev
*pdev
= tp
->pci_dev
;
4263 int retval
= -ENOMEM
;
4265 pm_runtime_get_sync(&pdev
->dev
);
4268 * Rx and Tx desscriptors needs 256 bytes alignment.
4269 * dma_alloc_coherent provides more.
4271 tp
->TxDescArray
= dma_alloc_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
,
4272 &tp
->TxPhyAddr
, GFP_KERNEL
);
4273 if (!tp
->TxDescArray
)
4274 goto err_pm_runtime_put
;
4276 tp
->RxDescArray
= dma_alloc_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
,
4277 &tp
->RxPhyAddr
, GFP_KERNEL
);
4278 if (!tp
->RxDescArray
)
4281 retval
= rtl8169_init_ring(dev
);
4285 INIT_DELAYED_WORK(&tp
->task
, NULL
);
4289 rtl_request_firmware(tp
);
4291 retval
= request_irq(dev
->irq
, rtl8169_interrupt
,
4292 (tp
->features
& RTL_FEATURE_MSI
) ? 0 : IRQF_SHARED
,
4295 goto err_release_fw_2
;
4297 napi_enable(&tp
->napi
);
4299 rtl8169_init_phy(dev
, tp
);
4301 rtl8169_set_features(dev
, dev
->features
);
4303 rtl_pll_power_up(tp
);
4307 tp
->saved_wolopts
= 0;
4308 pm_runtime_put_noidle(&pdev
->dev
);
4310 rtl8169_check_link_status(dev
, tp
, ioaddr
);
4315 rtl_release_firmware(tp
);
4316 rtl8169_rx_clear(tp
);
4318 dma_free_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
, tp
->RxDescArray
,
4320 tp
->RxDescArray
= NULL
;
4322 dma_free_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
, tp
->TxDescArray
,
4324 tp
->TxDescArray
= NULL
;
4326 pm_runtime_put_noidle(&pdev
->dev
);
4330 static void rtl_rx_close(struct rtl8169_private
*tp
)
4332 void __iomem
*ioaddr
= tp
->mmio_addr
;
4334 RTL_W32(RxConfig
, RTL_R32(RxConfig
) & ~RX_CONFIG_ACCEPT_MASK
);
4337 static void rtl8169_hw_reset(struct rtl8169_private
*tp
)
4339 void __iomem
*ioaddr
= tp
->mmio_addr
;
4341 /* Disable interrupts */
4342 rtl8169_irq_mask_and_ack(ioaddr
);
4346 if (tp
->mac_version
== RTL_GIGA_MAC_VER_27
||
4347 tp
->mac_version
== RTL_GIGA_MAC_VER_28
||
4348 tp
->mac_version
== RTL_GIGA_MAC_VER_31
) {
4349 while (RTL_R8(TxPoll
) & NPQ
)
4351 } else if (tp
->mac_version
== RTL_GIGA_MAC_VER_34
||
4352 tp
->mac_version
== RTL_GIGA_MAC_VER_35
||
4353 tp
->mac_version
== RTL_GIGA_MAC_VER_36
) {
4354 RTL_W8(ChipCmd
, RTL_R8(ChipCmd
) | StopReq
);
4355 while (!(RTL_R32(TxConfig
) & TXCFG_EMPTY
))
4358 RTL_W8(ChipCmd
, RTL_R8(ChipCmd
) | StopReq
);
4365 static void rtl_set_rx_tx_config_registers(struct rtl8169_private
*tp
)
4367 void __iomem
*ioaddr
= tp
->mmio_addr
;
4369 /* Set DMA burst size and Interframe Gap Time */
4370 RTL_W32(TxConfig
, (TX_DMA_BURST
<< TxDMAShift
) |
4371 (InterFrameGap
<< TxInterFrameGapShift
));
4374 static void rtl_hw_start(struct net_device
*dev
)
4376 struct rtl8169_private
*tp
= netdev_priv(dev
);
4380 netif_start_queue(dev
);
4383 static void rtl_set_rx_tx_desc_registers(struct rtl8169_private
*tp
,
4384 void __iomem
*ioaddr
)
4387 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
4388 * register to be written before TxDescAddrLow to work.
4389 * Switching from MMIO to I/O access fixes the issue as well.
4391 RTL_W32(TxDescStartAddrHigh
, ((u64
) tp
->TxPhyAddr
) >> 32);
4392 RTL_W32(TxDescStartAddrLow
, ((u64
) tp
->TxPhyAddr
) & DMA_BIT_MASK(32));
4393 RTL_W32(RxDescAddrHigh
, ((u64
) tp
->RxPhyAddr
) >> 32);
4394 RTL_W32(RxDescAddrLow
, ((u64
) tp
->RxPhyAddr
) & DMA_BIT_MASK(32));
4397 static u16
rtl_rw_cpluscmd(void __iomem
*ioaddr
)
4401 cmd
= RTL_R16(CPlusCmd
);
4402 RTL_W16(CPlusCmd
, cmd
);
4406 static void rtl_set_rx_max_size(void __iomem
*ioaddr
, unsigned int rx_buf_sz
)
4408 /* Low hurts. Let's disable the filtering. */
4409 RTL_W16(RxMaxSize
, rx_buf_sz
+ 1);
4412 static void rtl8169_set_magic_reg(void __iomem
*ioaddr
, unsigned mac_version
)
4414 static const struct rtl_cfg2_info
{
4419 { RTL_GIGA_MAC_VER_05
, PCI_Clock_33MHz
, 0x000fff00 }, // 8110SCd
4420 { RTL_GIGA_MAC_VER_05
, PCI_Clock_66MHz
, 0x000fffff },
4421 { RTL_GIGA_MAC_VER_06
, PCI_Clock_33MHz
, 0x00ffff00 }, // 8110SCe
4422 { RTL_GIGA_MAC_VER_06
, PCI_Clock_66MHz
, 0x00ffffff }
4424 const struct rtl_cfg2_info
*p
= cfg2_info
;
4428 clk
= RTL_R8(Config2
) & PCI_Clock_66MHz
;
4429 for (i
= 0; i
< ARRAY_SIZE(cfg2_info
); i
++, p
++) {
4430 if ((p
->mac_version
== mac_version
) && (p
->clk
== clk
)) {
4431 RTL_W32(0x7c, p
->val
);
4437 static void rtl_hw_start_8169(struct net_device
*dev
)
4439 struct rtl8169_private
*tp
= netdev_priv(dev
);
4440 void __iomem
*ioaddr
= tp
->mmio_addr
;
4441 struct pci_dev
*pdev
= tp
->pci_dev
;
4443 if (tp
->mac_version
== RTL_GIGA_MAC_VER_05
) {
4444 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) | PCIMulRW
);
4445 pci_write_config_byte(pdev
, PCI_CACHE_LINE_SIZE
, 0x08);
4448 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
4449 if (tp
->mac_version
== RTL_GIGA_MAC_VER_01
||
4450 tp
->mac_version
== RTL_GIGA_MAC_VER_02
||
4451 tp
->mac_version
== RTL_GIGA_MAC_VER_03
||
4452 tp
->mac_version
== RTL_GIGA_MAC_VER_04
)
4453 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
4457 RTL_W8(EarlyTxThres
, NoEarlyTx
);
4459 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
4461 if (tp
->mac_version
== RTL_GIGA_MAC_VER_01
||
4462 tp
->mac_version
== RTL_GIGA_MAC_VER_02
||
4463 tp
->mac_version
== RTL_GIGA_MAC_VER_03
||
4464 tp
->mac_version
== RTL_GIGA_MAC_VER_04
)
4465 rtl_set_rx_tx_config_registers(tp
);
4467 tp
->cp_cmd
|= rtl_rw_cpluscmd(ioaddr
) | PCIMulRW
;
4469 if (tp
->mac_version
== RTL_GIGA_MAC_VER_02
||
4470 tp
->mac_version
== RTL_GIGA_MAC_VER_03
) {
4471 dprintk("Set MAC Reg C+CR Offset 0xE0. "
4472 "Bit-3 and bit-14 MUST be 1\n");
4473 tp
->cp_cmd
|= (1 << 14);
4476 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
4478 rtl8169_set_magic_reg(ioaddr
, tp
->mac_version
);
4481 * Undocumented corner. Supposedly:
4482 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4484 RTL_W16(IntrMitigate
, 0x0000);
4486 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
4488 if (tp
->mac_version
!= RTL_GIGA_MAC_VER_01
&&
4489 tp
->mac_version
!= RTL_GIGA_MAC_VER_02
&&
4490 tp
->mac_version
!= RTL_GIGA_MAC_VER_03
&&
4491 tp
->mac_version
!= RTL_GIGA_MAC_VER_04
) {
4492 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
4493 rtl_set_rx_tx_config_registers(tp
);
4496 RTL_W8(Cfg9346
, Cfg9346_Lock
);
4498 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4501 RTL_W32(RxMissed
, 0);
4503 rtl_set_rx_mode(dev
);
4505 /* no early-rx interrupts */
4506 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xF000);
4508 /* Enable all known interrupts by setting the interrupt mask. */
4509 RTL_W16(IntrMask
, tp
->intr_event
);
4512 static void rtl_csi_access_enable(void __iomem
*ioaddr
, u32 bits
)
4516 csi
= rtl_csi_read(ioaddr
, 0x070c) & 0x00ffffff;
4517 rtl_csi_write(ioaddr
, 0x070c, csi
| bits
);
4520 static void rtl_csi_access_enable_1(void __iomem
*ioaddr
)
4522 rtl_csi_access_enable(ioaddr
, 0x17000000);
4525 static void rtl_csi_access_enable_2(void __iomem
*ioaddr
)
4527 rtl_csi_access_enable(ioaddr
, 0x27000000);
4531 unsigned int offset
;
4536 static void rtl_ephy_init(void __iomem
*ioaddr
, const struct ephy_info
*e
, int len
)
4541 w
= (rtl_ephy_read(ioaddr
, e
->offset
) & ~e
->mask
) | e
->bits
;
4542 rtl_ephy_write(ioaddr
, e
->offset
, w
);
4547 static void rtl_disable_clock_request(struct pci_dev
*pdev
)
4549 int cap
= pci_pcie_cap(pdev
);
4554 pci_read_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, &ctl
);
4555 ctl
&= ~PCI_EXP_LNKCTL_CLKREQ_EN
;
4556 pci_write_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, ctl
);
4560 static void rtl_enable_clock_request(struct pci_dev
*pdev
)
4562 int cap
= pci_pcie_cap(pdev
);
4567 pci_read_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, &ctl
);
4568 ctl
|= PCI_EXP_LNKCTL_CLKREQ_EN
;
4569 pci_write_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, ctl
);
4573 #define R8168_CPCMD_QUIRK_MASK (\
4584 static void rtl_hw_start_8168bb(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4586 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
4588 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
4590 rtl_tx_performance_tweak(pdev
,
4591 (0x5 << MAX_READ_REQUEST_SHIFT
) | PCI_EXP_DEVCTL_NOSNOOP_EN
);
4594 static void rtl_hw_start_8168bef(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4596 rtl_hw_start_8168bb(ioaddr
, pdev
);
4598 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
4600 RTL_W8(Config4
, RTL_R8(Config4
) & ~(1 << 0));
4603 static void __rtl_hw_start_8168cp(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4605 RTL_W8(Config1
, RTL_R8(Config1
) | Speed_down
);
4607 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
4609 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4611 rtl_disable_clock_request(pdev
);
4613 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
4616 static void rtl_hw_start_8168cp_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4618 static const struct ephy_info e_info_8168cp
[] = {
4619 { 0x01, 0, 0x0001 },
4620 { 0x02, 0x0800, 0x1000 },
4621 { 0x03, 0, 0x0042 },
4622 { 0x06, 0x0080, 0x0000 },
4626 rtl_csi_access_enable_2(ioaddr
);
4628 rtl_ephy_init(ioaddr
, e_info_8168cp
, ARRAY_SIZE(e_info_8168cp
));
4630 __rtl_hw_start_8168cp(ioaddr
, pdev
);
4633 static void rtl_hw_start_8168cp_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4635 rtl_csi_access_enable_2(ioaddr
);
4637 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
4639 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4641 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
4644 static void rtl_hw_start_8168cp_3(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4646 rtl_csi_access_enable_2(ioaddr
);
4648 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
4651 RTL_W8(DBG_REG
, 0x20);
4653 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
4655 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4657 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
4660 static void rtl_hw_start_8168c_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4662 static const struct ephy_info e_info_8168c_1
[] = {
4663 { 0x02, 0x0800, 0x1000 },
4664 { 0x03, 0, 0x0002 },
4665 { 0x06, 0x0080, 0x0000 }
4668 rtl_csi_access_enable_2(ioaddr
);
4670 RTL_W8(DBG_REG
, 0x06 | FIX_NAK_1
| FIX_NAK_2
);
4672 rtl_ephy_init(ioaddr
, e_info_8168c_1
, ARRAY_SIZE(e_info_8168c_1
));
4674 __rtl_hw_start_8168cp(ioaddr
, pdev
);
4677 static void rtl_hw_start_8168c_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4679 static const struct ephy_info e_info_8168c_2
[] = {
4680 { 0x01, 0, 0x0001 },
4681 { 0x03, 0x0400, 0x0220 }
4684 rtl_csi_access_enable_2(ioaddr
);
4686 rtl_ephy_init(ioaddr
, e_info_8168c_2
, ARRAY_SIZE(e_info_8168c_2
));
4688 __rtl_hw_start_8168cp(ioaddr
, pdev
);
4691 static void rtl_hw_start_8168c_3(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4693 rtl_hw_start_8168c_2(ioaddr
, pdev
);
4696 static void rtl_hw_start_8168c_4(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4698 rtl_csi_access_enable_2(ioaddr
);
4700 __rtl_hw_start_8168cp(ioaddr
, pdev
);
4703 static void rtl_hw_start_8168d(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4705 rtl_csi_access_enable_2(ioaddr
);
4707 rtl_disable_clock_request(pdev
);
4709 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
4711 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4713 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
4716 static void rtl_hw_start_8168dp(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4718 rtl_csi_access_enable_1(ioaddr
);
4720 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4722 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
4724 rtl_disable_clock_request(pdev
);
4727 static void rtl_hw_start_8168d_4(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4729 static const struct ephy_info e_info_8168d_4
[] = {
4731 { 0x19, 0x20, 0x50 },
4736 rtl_csi_access_enable_1(ioaddr
);
4738 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4740 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
4742 for (i
= 0; i
< ARRAY_SIZE(e_info_8168d_4
); i
++) {
4743 const struct ephy_info
*e
= e_info_8168d_4
+ i
;
4746 w
= rtl_ephy_read(ioaddr
, e
->offset
);
4747 rtl_ephy_write(ioaddr
, 0x03, (w
& e
->mask
) | e
->bits
);
4750 rtl_enable_clock_request(pdev
);
4753 static void rtl_hw_start_8168e_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4755 static const struct ephy_info e_info_8168e_1
[] = {
4756 { 0x00, 0x0200, 0x0100 },
4757 { 0x00, 0x0000, 0x0004 },
4758 { 0x06, 0x0002, 0x0001 },
4759 { 0x06, 0x0000, 0x0030 },
4760 { 0x07, 0x0000, 0x2000 },
4761 { 0x00, 0x0000, 0x0020 },
4762 { 0x03, 0x5800, 0x2000 },
4763 { 0x03, 0x0000, 0x0001 },
4764 { 0x01, 0x0800, 0x1000 },
4765 { 0x07, 0x0000, 0x4000 },
4766 { 0x1e, 0x0000, 0x2000 },
4767 { 0x19, 0xffff, 0xfe6c },
4768 { 0x0a, 0x0000, 0x0040 }
4771 rtl_csi_access_enable_2(ioaddr
);
4773 rtl_ephy_init(ioaddr
, e_info_8168e_1
, ARRAY_SIZE(e_info_8168e_1
));
4775 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4777 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
4779 rtl_disable_clock_request(pdev
);
4781 /* Reset tx FIFO pointer */
4782 RTL_W32(MISC
, RTL_R32(MISC
) | TXPLA_RST
);
4783 RTL_W32(MISC
, RTL_R32(MISC
) & ~TXPLA_RST
);
4785 RTL_W8(Config5
, RTL_R8(Config5
) & ~Spi_en
);
4788 static void rtl_hw_start_8168e_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4790 static const struct ephy_info e_info_8168e_2
[] = {
4791 { 0x09, 0x0000, 0x0080 },
4792 { 0x19, 0x0000, 0x0224 }
4795 rtl_csi_access_enable_1(ioaddr
);
4797 rtl_ephy_init(ioaddr
, e_info_8168e_2
, ARRAY_SIZE(e_info_8168e_2
));
4799 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4801 rtl_eri_write(ioaddr
, 0xc0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
4802 rtl_eri_write(ioaddr
, 0xb8, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
4803 rtl_eri_write(ioaddr
, 0xc8, ERIAR_MASK_1111
, 0x00100002, ERIAR_EXGMAC
);
4804 rtl_eri_write(ioaddr
, 0xe8, ERIAR_MASK_1111
, 0x00100006, ERIAR_EXGMAC
);
4805 rtl_eri_write(ioaddr
, 0xcc, ERIAR_MASK_1111
, 0x00000050, ERIAR_EXGMAC
);
4806 rtl_eri_write(ioaddr
, 0xd0, ERIAR_MASK_1111
, 0x07ff0060, ERIAR_EXGMAC
);
4807 rtl_w1w0_eri(ioaddr
, 0x1b0, ERIAR_MASK_0001
, 0x10, 0x00, ERIAR_EXGMAC
);
4808 rtl_w1w0_eri(ioaddr
, 0x0d4, ERIAR_MASK_0011
, 0x0c00, 0xff00,
4811 RTL_W8(MaxTxPacketSize
, EarlySize
);
4813 rtl_disable_clock_request(pdev
);
4815 RTL_W32(TxConfig
, RTL_R32(TxConfig
) | TXCFG_AUTO_FIFO
);
4816 RTL_W8(MCU
, RTL_R8(MCU
) & ~NOW_IS_OOB
);
4818 /* Adjust EEE LED frequency */
4819 RTL_W8(EEE_LED
, RTL_R8(EEE_LED
) & ~0x07);
4821 RTL_W8(DLLPR
, RTL_R8(DLLPR
) | PFM_EN
);
4822 RTL_W32(MISC
, RTL_R32(MISC
) | PWM_EN
);
4823 RTL_W8(Config5
, RTL_R8(Config5
) & ~Spi_en
);
4826 static void rtl_hw_start_8168f_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4828 static const struct ephy_info e_info_8168f_1
[] = {
4829 { 0x06, 0x00c0, 0x0020 },
4830 { 0x08, 0x0001, 0x0002 },
4831 { 0x09, 0x0000, 0x0080 },
4832 { 0x19, 0x0000, 0x0224 }
4835 rtl_csi_access_enable_1(ioaddr
);
4837 rtl_ephy_init(ioaddr
, e_info_8168f_1
, ARRAY_SIZE(e_info_8168f_1
));
4839 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
4841 rtl_eri_write(ioaddr
, 0xc0, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
4842 rtl_eri_write(ioaddr
, 0xb8, ERIAR_MASK_0011
, 0x0000, ERIAR_EXGMAC
);
4843 rtl_eri_write(ioaddr
, 0xc8, ERIAR_MASK_1111
, 0x00100002, ERIAR_EXGMAC
);
4844 rtl_eri_write(ioaddr
, 0xe8, ERIAR_MASK_1111
, 0x00100006, ERIAR_EXGMAC
);
4845 rtl_w1w0_eri(ioaddr
, 0xdc, ERIAR_MASK_0001
, 0x00, 0x01, ERIAR_EXGMAC
);
4846 rtl_w1w0_eri(ioaddr
, 0xdc, ERIAR_MASK_0001
, 0x01, 0x00, ERIAR_EXGMAC
);
4847 rtl_w1w0_eri(ioaddr
, 0x1b0, ERIAR_MASK_0001
, 0x10, 0x00, ERIAR_EXGMAC
);
4848 rtl_w1w0_eri(ioaddr
, 0x1d0, ERIAR_MASK_0001
, 0x10, 0x00, ERIAR_EXGMAC
);
4849 rtl_eri_write(ioaddr
, 0xcc, ERIAR_MASK_1111
, 0x00000050, ERIAR_EXGMAC
);
4850 rtl_eri_write(ioaddr
, 0xd0, ERIAR_MASK_1111
, 0x00000060, ERIAR_EXGMAC
);
4851 rtl_w1w0_eri(ioaddr
, 0x0d4, ERIAR_MASK_0011
, 0x0c00, 0xff00,
4854 RTL_W8(MaxTxPacketSize
, EarlySize
);
4856 rtl_disable_clock_request(pdev
);
4858 RTL_W32(TxConfig
, RTL_R32(TxConfig
) | TXCFG_AUTO_FIFO
);
4859 RTL_W8(MCU
, RTL_R8(MCU
) & ~NOW_IS_OOB
);
4861 /* Adjust EEE LED frequency */
4862 RTL_W8(EEE_LED
, RTL_R8(EEE_LED
) & ~0x07);
4864 RTL_W8(DLLPR
, RTL_R8(DLLPR
) | PFM_EN
);
4865 RTL_W32(MISC
, RTL_R32(MISC
) | PWM_EN
);
4866 RTL_W8(Config5
, RTL_R8(Config5
) & ~Spi_en
);
4869 static void rtl_hw_start_8168(struct net_device
*dev
)
4871 struct rtl8169_private
*tp
= netdev_priv(dev
);
4872 void __iomem
*ioaddr
= tp
->mmio_addr
;
4873 struct pci_dev
*pdev
= tp
->pci_dev
;
4875 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
4877 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
4879 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
4881 tp
->cp_cmd
|= RTL_R16(CPlusCmd
) | PktCntrDisable
| INTT_1
;
4883 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
4885 RTL_W16(IntrMitigate
, 0x5151);
4887 /* Work around for RxFIFO overflow. */
4888 if (tp
->mac_version
== RTL_GIGA_MAC_VER_11
||
4889 tp
->mac_version
== RTL_GIGA_MAC_VER_22
) {
4890 tp
->intr_event
|= RxFIFOOver
| PCSTimeout
;
4891 tp
->intr_event
&= ~RxOverflow
;
4894 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
4896 rtl_set_rx_mode(dev
);
4898 RTL_W32(TxConfig
, (TX_DMA_BURST
<< TxDMAShift
) |
4899 (InterFrameGap
<< TxInterFrameGapShift
));
4903 switch (tp
->mac_version
) {
4904 case RTL_GIGA_MAC_VER_11
:
4905 rtl_hw_start_8168bb(ioaddr
, pdev
);
4908 case RTL_GIGA_MAC_VER_12
:
4909 case RTL_GIGA_MAC_VER_17
:
4910 rtl_hw_start_8168bef(ioaddr
, pdev
);
4913 case RTL_GIGA_MAC_VER_18
:
4914 rtl_hw_start_8168cp_1(ioaddr
, pdev
);
4917 case RTL_GIGA_MAC_VER_19
:
4918 rtl_hw_start_8168c_1(ioaddr
, pdev
);
4921 case RTL_GIGA_MAC_VER_20
:
4922 rtl_hw_start_8168c_2(ioaddr
, pdev
);
4925 case RTL_GIGA_MAC_VER_21
:
4926 rtl_hw_start_8168c_3(ioaddr
, pdev
);
4929 case RTL_GIGA_MAC_VER_22
:
4930 rtl_hw_start_8168c_4(ioaddr
, pdev
);
4933 case RTL_GIGA_MAC_VER_23
:
4934 rtl_hw_start_8168cp_2(ioaddr
, pdev
);
4937 case RTL_GIGA_MAC_VER_24
:
4938 rtl_hw_start_8168cp_3(ioaddr
, pdev
);
4941 case RTL_GIGA_MAC_VER_25
:
4942 case RTL_GIGA_MAC_VER_26
:
4943 case RTL_GIGA_MAC_VER_27
:
4944 rtl_hw_start_8168d(ioaddr
, pdev
);
4947 case RTL_GIGA_MAC_VER_28
:
4948 rtl_hw_start_8168d_4(ioaddr
, pdev
);
4951 case RTL_GIGA_MAC_VER_31
:
4952 rtl_hw_start_8168dp(ioaddr
, pdev
);
4955 case RTL_GIGA_MAC_VER_32
:
4956 case RTL_GIGA_MAC_VER_33
:
4957 rtl_hw_start_8168e_1(ioaddr
, pdev
);
4959 case RTL_GIGA_MAC_VER_34
:
4960 rtl_hw_start_8168e_2(ioaddr
, pdev
);
4963 case RTL_GIGA_MAC_VER_35
:
4964 case RTL_GIGA_MAC_VER_36
:
4965 rtl_hw_start_8168f_1(ioaddr
, pdev
);
4969 printk(KERN_ERR PFX
"%s: unknown chipset (mac_version = %d).\n",
4970 dev
->name
, tp
->mac_version
);
4974 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
4976 RTL_W8(Cfg9346
, Cfg9346_Lock
);
4978 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xF000);
4980 RTL_W16(IntrMask
, tp
->intr_event
);
4983 #define R810X_CPCMD_QUIRK_MASK (\
4994 static void rtl_hw_start_8102e_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
4996 static const struct ephy_info e_info_8102e_1
[] = {
4997 { 0x01, 0, 0x6e65 },
4998 { 0x02, 0, 0x091f },
4999 { 0x03, 0, 0xc2f9 },
5000 { 0x06, 0, 0xafb5 },
5001 { 0x07, 0, 0x0e00 },
5002 { 0x19, 0, 0xec80 },
5003 { 0x01, 0, 0x2e65 },
5008 rtl_csi_access_enable_2(ioaddr
);
5010 RTL_W8(DBG_REG
, FIX_NAK_1
);
5012 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5015 LEDS1
| LEDS0
| Speed_down
| MEMMAP
| IOMAP
| VPD
| PMEnable
);
5016 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
5018 cfg1
= RTL_R8(Config1
);
5019 if ((cfg1
& LEDS0
) && (cfg1
& LEDS1
))
5020 RTL_W8(Config1
, cfg1
& ~LEDS0
);
5022 rtl_ephy_init(ioaddr
, e_info_8102e_1
, ARRAY_SIZE(e_info_8102e_1
));
5025 static void rtl_hw_start_8102e_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
5027 rtl_csi_access_enable_2(ioaddr
);
5029 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
5031 RTL_W8(Config1
, MEMMAP
| IOMAP
| VPD
| PMEnable
);
5032 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
5035 static void rtl_hw_start_8102e_3(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
5037 rtl_hw_start_8102e_2(ioaddr
, pdev
);
5039 rtl_ephy_write(ioaddr
, 0x03, 0xc2f9);
5042 static void rtl_hw_start_8105e_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
5044 static const struct ephy_info e_info_8105e_1
[] = {
5045 { 0x07, 0, 0x4000 },
5046 { 0x19, 0, 0x0200 },
5047 { 0x19, 0, 0x0020 },
5048 { 0x1e, 0, 0x2000 },
5049 { 0x03, 0, 0x0001 },
5050 { 0x19, 0, 0x0100 },
5051 { 0x19, 0, 0x0004 },
5055 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5056 RTL_W32(FuncEvent
, RTL_R32(FuncEvent
) | 0x002800);
5058 /* Disable Early Tally Counter */
5059 RTL_W32(FuncEvent
, RTL_R32(FuncEvent
) & ~0x010000);
5061 RTL_W8(MCU
, RTL_R8(MCU
) | EN_NDP
| EN_OOB_RESET
);
5062 RTL_W8(DLLPR
, RTL_R8(DLLPR
) | PFM_EN
);
5064 rtl_ephy_init(ioaddr
, e_info_8105e_1
, ARRAY_SIZE(e_info_8105e_1
));
5067 static void rtl_hw_start_8105e_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
5069 rtl_hw_start_8105e_1(ioaddr
, pdev
);
5070 rtl_ephy_write(ioaddr
, 0x1e, rtl_ephy_read(ioaddr
, 0x1e) | 0x8000);
5073 static void rtl_hw_start_8101(struct net_device
*dev
)
5075 struct rtl8169_private
*tp
= netdev_priv(dev
);
5076 void __iomem
*ioaddr
= tp
->mmio_addr
;
5077 struct pci_dev
*pdev
= tp
->pci_dev
;
5079 if (tp
->mac_version
== RTL_GIGA_MAC_VER_13
||
5080 tp
->mac_version
== RTL_GIGA_MAC_VER_16
) {
5081 int cap
= pci_pcie_cap(pdev
);
5084 pci_write_config_word(pdev
, cap
+ PCI_EXP_DEVCTL
,
5085 PCI_EXP_DEVCTL_NOSNOOP_EN
);
5089 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
5091 switch (tp
->mac_version
) {
5092 case RTL_GIGA_MAC_VER_07
:
5093 rtl_hw_start_8102e_1(ioaddr
, pdev
);
5096 case RTL_GIGA_MAC_VER_08
:
5097 rtl_hw_start_8102e_3(ioaddr
, pdev
);
5100 case RTL_GIGA_MAC_VER_09
:
5101 rtl_hw_start_8102e_2(ioaddr
, pdev
);
5104 case RTL_GIGA_MAC_VER_29
:
5105 rtl_hw_start_8105e_1(ioaddr
, pdev
);
5107 case RTL_GIGA_MAC_VER_30
:
5108 rtl_hw_start_8105e_2(ioaddr
, pdev
);
5112 RTL_W8(Cfg9346
, Cfg9346_Lock
);
5114 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
5116 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
5118 tp
->cp_cmd
&= ~R810X_CPCMD_QUIRK_MASK
;
5119 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
5121 RTL_W16(IntrMitigate
, 0x0000);
5123 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
5125 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
5126 rtl_set_rx_tx_config_registers(tp
);
5130 rtl_set_rx_mode(dev
);
5132 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xf000);
5134 RTL_W16(IntrMask
, tp
->intr_event
);
5137 static int rtl8169_change_mtu(struct net_device
*dev
, int new_mtu
)
5139 struct rtl8169_private
*tp
= netdev_priv(dev
);
5141 if (new_mtu
< ETH_ZLEN
||
5142 new_mtu
> rtl_chip_infos
[tp
->mac_version
].jumbo_max
)
5145 if (new_mtu
> ETH_DATA_LEN
)
5146 rtl_hw_jumbo_enable(tp
);
5148 rtl_hw_jumbo_disable(tp
);
5151 netdev_update_features(dev
);
5156 static inline void rtl8169_make_unusable_by_asic(struct RxDesc
*desc
)
5158 desc
->addr
= cpu_to_le64(0x0badbadbadbadbadull
);
5159 desc
->opts1
&= ~cpu_to_le32(DescOwn
| RsvdMask
);
5162 static void rtl8169_free_rx_databuff(struct rtl8169_private
*tp
,
5163 void **data_buff
, struct RxDesc
*desc
)
5165 dma_unmap_single(&tp
->pci_dev
->dev
, le64_to_cpu(desc
->addr
), rx_buf_sz
,
5170 rtl8169_make_unusable_by_asic(desc
);
5173 static inline void rtl8169_mark_to_asic(struct RxDesc
*desc
, u32 rx_buf_sz
)
5175 u32 eor
= le32_to_cpu(desc
->opts1
) & RingEnd
;
5177 desc
->opts1
= cpu_to_le32(DescOwn
| eor
| rx_buf_sz
);
5180 static inline void rtl8169_map_to_asic(struct RxDesc
*desc
, dma_addr_t mapping
,
5183 desc
->addr
= cpu_to_le64(mapping
);
5185 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
5188 static inline void *rtl8169_align(void *data
)
5190 return (void *)ALIGN((long)data
, 16);
5193 static struct sk_buff
*rtl8169_alloc_rx_data(struct rtl8169_private
*tp
,
5194 struct RxDesc
*desc
)
5198 struct device
*d
= &tp
->pci_dev
->dev
;
5199 struct net_device
*dev
= tp
->dev
;
5200 int node
= dev
->dev
.parent
? dev_to_node(dev
->dev
.parent
) : -1;
5202 data
= kmalloc_node(rx_buf_sz
, GFP_KERNEL
, node
);
5206 if (rtl8169_align(data
) != data
) {
5208 data
= kmalloc_node(rx_buf_sz
+ 15, GFP_KERNEL
, node
);
5213 mapping
= dma_map_single(d
, rtl8169_align(data
), rx_buf_sz
,
5215 if (unlikely(dma_mapping_error(d
, mapping
))) {
5216 if (net_ratelimit())
5217 netif_err(tp
, drv
, tp
->dev
, "Failed to map RX DMA!\n");
5221 rtl8169_map_to_asic(desc
, mapping
, rx_buf_sz
);
5229 static void rtl8169_rx_clear(struct rtl8169_private
*tp
)
5233 for (i
= 0; i
< NUM_RX_DESC
; i
++) {
5234 if (tp
->Rx_databuff
[i
]) {
5235 rtl8169_free_rx_databuff(tp
, tp
->Rx_databuff
+ i
,
5236 tp
->RxDescArray
+ i
);
5241 static inline void rtl8169_mark_as_last_descriptor(struct RxDesc
*desc
)
5243 desc
->opts1
|= cpu_to_le32(RingEnd
);
5246 static int rtl8169_rx_fill(struct rtl8169_private
*tp
)
5250 for (i
= 0; i
< NUM_RX_DESC
; i
++) {
5253 if (tp
->Rx_databuff
[i
])
5256 data
= rtl8169_alloc_rx_data(tp
, tp
->RxDescArray
+ i
);
5258 rtl8169_make_unusable_by_asic(tp
->RxDescArray
+ i
);
5261 tp
->Rx_databuff
[i
] = data
;
5264 rtl8169_mark_as_last_descriptor(tp
->RxDescArray
+ NUM_RX_DESC
- 1);
5268 rtl8169_rx_clear(tp
);
5272 static int rtl8169_init_ring(struct net_device
*dev
)
5274 struct rtl8169_private
*tp
= netdev_priv(dev
);
5276 rtl8169_init_ring_indexes(tp
);
5278 memset(tp
->tx_skb
, 0x0, NUM_TX_DESC
* sizeof(struct ring_info
));
5279 memset(tp
->Rx_databuff
, 0x0, NUM_RX_DESC
* sizeof(void *));
5281 return rtl8169_rx_fill(tp
);
5284 static void rtl8169_unmap_tx_skb(struct device
*d
, struct ring_info
*tx_skb
,
5285 struct TxDesc
*desc
)
5287 unsigned int len
= tx_skb
->len
;
5289 dma_unmap_single(d
, le64_to_cpu(desc
->addr
), len
, DMA_TO_DEVICE
);
5297 static void rtl8169_tx_clear_range(struct rtl8169_private
*tp
, u32 start
,
5302 for (i
= 0; i
< n
; i
++) {
5303 unsigned int entry
= (start
+ i
) % NUM_TX_DESC
;
5304 struct ring_info
*tx_skb
= tp
->tx_skb
+ entry
;
5305 unsigned int len
= tx_skb
->len
;
5308 struct sk_buff
*skb
= tx_skb
->skb
;
5310 rtl8169_unmap_tx_skb(&tp
->pci_dev
->dev
, tx_skb
,
5311 tp
->TxDescArray
+ entry
);
5313 tp
->dev
->stats
.tx_dropped
++;
5321 static void rtl8169_tx_clear(struct rtl8169_private
*tp
)
5323 rtl8169_tx_clear_range(tp
, tp
->dirty_tx
, NUM_TX_DESC
);
5324 tp
->cur_tx
= tp
->dirty_tx
= 0;
5327 static void rtl8169_schedule_work(struct net_device
*dev
, work_func_t task
)
5329 struct rtl8169_private
*tp
= netdev_priv(dev
);
5331 PREPARE_DELAYED_WORK(&tp
->task
, task
);
5332 schedule_delayed_work(&tp
->task
, 4);
5335 static void rtl8169_wait_for_quiescence(struct net_device
*dev
)
5337 struct rtl8169_private
*tp
= netdev_priv(dev
);
5338 void __iomem
*ioaddr
= tp
->mmio_addr
;
5340 synchronize_irq(dev
->irq
);
5342 /* Wait for any pending NAPI task to complete */
5343 napi_disable(&tp
->napi
);
5345 rtl8169_irq_mask_and_ack(ioaddr
);
5347 tp
->intr_mask
= 0xffff;
5348 RTL_W16(IntrMask
, tp
->intr_event
);
5349 napi_enable(&tp
->napi
);
5352 static void rtl8169_reinit_task(struct work_struct
*work
)
5354 struct rtl8169_private
*tp
=
5355 container_of(work
, struct rtl8169_private
, task
.work
);
5356 struct net_device
*dev
= tp
->dev
;
5361 if (!netif_running(dev
))
5364 rtl8169_wait_for_quiescence(dev
);
5367 ret
= rtl8169_open(dev
);
5368 if (unlikely(ret
< 0)) {
5369 if (net_ratelimit())
5370 netif_err(tp
, drv
, dev
,
5371 "reinit failure (status = %d). Rescheduling\n",
5373 rtl8169_schedule_work(dev
, rtl8169_reinit_task
);
5380 static void rtl8169_reset_task(struct work_struct
*work
)
5382 struct rtl8169_private
*tp
=
5383 container_of(work
, struct rtl8169_private
, task
.work
);
5384 struct net_device
*dev
= tp
->dev
;
5389 if (!netif_running(dev
))
5392 rtl8169_wait_for_quiescence(dev
);
5394 for (i
= 0; i
< NUM_RX_DESC
; i
++)
5395 rtl8169_mark_to_asic(tp
->RxDescArray
+ i
, rx_buf_sz
);
5397 rtl8169_tx_clear(tp
);
5399 rtl8169_hw_reset(tp
);
5401 netif_wake_queue(dev
);
5402 rtl8169_check_link_status(dev
, tp
, tp
->mmio_addr
);
5408 static void rtl8169_tx_timeout(struct net_device
*dev
)
5410 struct rtl8169_private
*tp
= netdev_priv(dev
);
5412 rtl8169_hw_reset(tp
);
5414 /* Let's wait a bit while any (async) irq lands on */
5415 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
5418 static int rtl8169_xmit_frags(struct rtl8169_private
*tp
, struct sk_buff
*skb
,
5421 struct skb_shared_info
*info
= skb_shinfo(skb
);
5422 unsigned int cur_frag
, entry
;
5423 struct TxDesc
* uninitialized_var(txd
);
5424 struct device
*d
= &tp
->pci_dev
->dev
;
5427 for (cur_frag
= 0; cur_frag
< info
->nr_frags
; cur_frag
++) {
5428 const skb_frag_t
*frag
= info
->frags
+ cur_frag
;
5433 entry
= (entry
+ 1) % NUM_TX_DESC
;
5435 txd
= tp
->TxDescArray
+ entry
;
5436 len
= skb_frag_size(frag
);
5437 addr
= skb_frag_address(frag
);
5438 mapping
= dma_map_single(d
, addr
, len
, DMA_TO_DEVICE
);
5439 if (unlikely(dma_mapping_error(d
, mapping
))) {
5440 if (net_ratelimit())
5441 netif_err(tp
, drv
, tp
->dev
,
5442 "Failed to map TX fragments DMA!\n");
5446 /* Anti gcc 2.95.3 bugware (sic) */
5447 status
= opts
[0] | len
|
5448 (RingEnd
* !((entry
+ 1) % NUM_TX_DESC
));
5450 txd
->opts1
= cpu_to_le32(status
);
5451 txd
->opts2
= cpu_to_le32(opts
[1]);
5452 txd
->addr
= cpu_to_le64(mapping
);
5454 tp
->tx_skb
[entry
].len
= len
;
5458 tp
->tx_skb
[entry
].skb
= skb
;
5459 txd
->opts1
|= cpu_to_le32(LastFrag
);
5465 rtl8169_tx_clear_range(tp
, tp
->cur_tx
+ 1, cur_frag
);
5469 static inline void rtl8169_tso_csum(struct rtl8169_private
*tp
,
5470 struct sk_buff
*skb
, u32
*opts
)
5472 const struct rtl_tx_desc_info
*info
= tx_desc_info
+ tp
->txd_version
;
5473 u32 mss
= skb_shinfo(skb
)->gso_size
;
5474 int offset
= info
->opts_offset
;
5478 opts
[offset
] |= min(mss
, TD_MSS_MAX
) << info
->mss_shift
;
5479 } else if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
5480 const struct iphdr
*ip
= ip_hdr(skb
);
5482 if (ip
->protocol
== IPPROTO_TCP
)
5483 opts
[offset
] |= info
->checksum
.tcp
;
5484 else if (ip
->protocol
== IPPROTO_UDP
)
5485 opts
[offset
] |= info
->checksum
.udp
;
5491 static netdev_tx_t
rtl8169_start_xmit(struct sk_buff
*skb
,
5492 struct net_device
*dev
)
5494 struct rtl8169_private
*tp
= netdev_priv(dev
);
5495 unsigned int entry
= tp
->cur_tx
% NUM_TX_DESC
;
5496 struct TxDesc
*txd
= tp
->TxDescArray
+ entry
;
5497 void __iomem
*ioaddr
= tp
->mmio_addr
;
5498 struct device
*d
= &tp
->pci_dev
->dev
;
5504 if (unlikely(TX_BUFFS_AVAIL(tp
) < skb_shinfo(skb
)->nr_frags
)) {
5505 netif_err(tp
, drv
, dev
, "BUG! Tx Ring full when queue awake!\n");
5509 if (unlikely(le32_to_cpu(txd
->opts1
) & DescOwn
))
5512 len
= skb_headlen(skb
);
5513 mapping
= dma_map_single(d
, skb
->data
, len
, DMA_TO_DEVICE
);
5514 if (unlikely(dma_mapping_error(d
, mapping
))) {
5515 if (net_ratelimit())
5516 netif_err(tp
, drv
, dev
, "Failed to map TX DMA!\n");
5520 tp
->tx_skb
[entry
].len
= len
;
5521 txd
->addr
= cpu_to_le64(mapping
);
5523 opts
[1] = cpu_to_le32(rtl8169_tx_vlan_tag(tp
, skb
));
5526 rtl8169_tso_csum(tp
, skb
, opts
);
5528 frags
= rtl8169_xmit_frags(tp
, skb
, opts
);
5532 opts
[0] |= FirstFrag
;
5534 opts
[0] |= FirstFrag
| LastFrag
;
5535 tp
->tx_skb
[entry
].skb
= skb
;
5538 txd
->opts2
= cpu_to_le32(opts
[1]);
5542 /* Anti gcc 2.95.3 bugware (sic) */
5543 status
= opts
[0] | len
| (RingEnd
* !((entry
+ 1) % NUM_TX_DESC
));
5544 txd
->opts1
= cpu_to_le32(status
);
5546 tp
->cur_tx
+= frags
+ 1;
5550 RTL_W8(TxPoll
, NPQ
);
5552 if (TX_BUFFS_AVAIL(tp
) < MAX_SKB_FRAGS
) {
5553 netif_stop_queue(dev
);
5555 if (TX_BUFFS_AVAIL(tp
) >= MAX_SKB_FRAGS
)
5556 netif_wake_queue(dev
);
5559 return NETDEV_TX_OK
;
5562 rtl8169_unmap_tx_skb(d
, tp
->tx_skb
+ entry
, txd
);
5565 dev
->stats
.tx_dropped
++;
5566 return NETDEV_TX_OK
;
5569 netif_stop_queue(dev
);
5570 dev
->stats
.tx_dropped
++;
5571 return NETDEV_TX_BUSY
;
5574 static void rtl8169_pcierr_interrupt(struct net_device
*dev
)
5576 struct rtl8169_private
*tp
= netdev_priv(dev
);
5577 struct pci_dev
*pdev
= tp
->pci_dev
;
5578 u16 pci_status
, pci_cmd
;
5580 pci_read_config_word(pdev
, PCI_COMMAND
, &pci_cmd
);
5581 pci_read_config_word(pdev
, PCI_STATUS
, &pci_status
);
5583 netif_err(tp
, intr
, dev
, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
5584 pci_cmd
, pci_status
);
5587 * The recovery sequence below admits a very elaborated explanation:
5588 * - it seems to work;
5589 * - I did not see what else could be done;
5590 * - it makes iop3xx happy.
5592 * Feel free to adjust to your needs.
5594 if (pdev
->broken_parity_status
)
5595 pci_cmd
&= ~PCI_COMMAND_PARITY
;
5597 pci_cmd
|= PCI_COMMAND_SERR
| PCI_COMMAND_PARITY
;
5599 pci_write_config_word(pdev
, PCI_COMMAND
, pci_cmd
);
5601 pci_write_config_word(pdev
, PCI_STATUS
,
5602 pci_status
& (PCI_STATUS_DETECTED_PARITY
|
5603 PCI_STATUS_SIG_SYSTEM_ERROR
| PCI_STATUS_REC_MASTER_ABORT
|
5604 PCI_STATUS_REC_TARGET_ABORT
| PCI_STATUS_SIG_TARGET_ABORT
));
5606 /* The infamous DAC f*ckup only happens at boot time */
5607 if ((tp
->cp_cmd
& PCIDAC
) && !tp
->dirty_rx
&& !tp
->cur_rx
) {
5608 void __iomem
*ioaddr
= tp
->mmio_addr
;
5610 netif_info(tp
, intr
, dev
, "disabling PCI DAC\n");
5611 tp
->cp_cmd
&= ~PCIDAC
;
5612 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
5613 dev
->features
&= ~NETIF_F_HIGHDMA
;
5616 rtl8169_hw_reset(tp
);
5618 rtl8169_schedule_work(dev
, rtl8169_reinit_task
);
5621 static void rtl8169_tx_interrupt(struct net_device
*dev
,
5622 struct rtl8169_private
*tp
,
5623 void __iomem
*ioaddr
)
5625 unsigned int dirty_tx
, tx_left
;
5627 dirty_tx
= tp
->dirty_tx
;
5629 tx_left
= tp
->cur_tx
- dirty_tx
;
5631 while (tx_left
> 0) {
5632 unsigned int entry
= dirty_tx
% NUM_TX_DESC
;
5633 struct ring_info
*tx_skb
= tp
->tx_skb
+ entry
;
5637 status
= le32_to_cpu(tp
->TxDescArray
[entry
].opts1
);
5638 if (status
& DescOwn
)
5641 rtl8169_unmap_tx_skb(&tp
->pci_dev
->dev
, tx_skb
,
5642 tp
->TxDescArray
+ entry
);
5643 if (status
& LastFrag
) {
5644 dev
->stats
.tx_packets
++;
5645 dev
->stats
.tx_bytes
+= tx_skb
->skb
->len
;
5646 dev_kfree_skb(tx_skb
->skb
);
5653 if (tp
->dirty_tx
!= dirty_tx
) {
5654 tp
->dirty_tx
= dirty_tx
;
5656 if (netif_queue_stopped(dev
) &&
5657 (TX_BUFFS_AVAIL(tp
) >= MAX_SKB_FRAGS
)) {
5658 netif_wake_queue(dev
);
5661 * 8168 hack: TxPoll requests are lost when the Tx packets are
5662 * too close. Let's kick an extra TxPoll request when a burst
5663 * of start_xmit activity is detected (if it is not detected,
5664 * it is slow enough). -- FR
5667 if (tp
->cur_tx
!= dirty_tx
)
5668 RTL_W8(TxPoll
, NPQ
);
5672 static inline int rtl8169_fragmented_frame(u32 status
)
5674 return (status
& (FirstFrag
| LastFrag
)) != (FirstFrag
| LastFrag
);
5677 static inline void rtl8169_rx_csum(struct sk_buff
*skb
, u32 opts1
)
5679 u32 status
= opts1
& RxProtoMask
;
5681 if (((status
== RxProtoTCP
) && !(opts1
& TCPFail
)) ||
5682 ((status
== RxProtoUDP
) && !(opts1
& UDPFail
)))
5683 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
5685 skb_checksum_none_assert(skb
);
5688 static struct sk_buff
*rtl8169_try_rx_copy(void *data
,
5689 struct rtl8169_private
*tp
,
5693 struct sk_buff
*skb
;
5694 struct device
*d
= &tp
->pci_dev
->dev
;
5696 data
= rtl8169_align(data
);
5697 dma_sync_single_for_cpu(d
, addr
, pkt_size
, DMA_FROM_DEVICE
);
5699 skb
= netdev_alloc_skb_ip_align(tp
->dev
, pkt_size
);
5701 memcpy(skb
->data
, data
, pkt_size
);
5702 dma_sync_single_for_device(d
, addr
, pkt_size
, DMA_FROM_DEVICE
);
5707 static int rtl8169_rx_interrupt(struct net_device
*dev
,
5708 struct rtl8169_private
*tp
,
5709 void __iomem
*ioaddr
, u32 budget
)
5711 unsigned int cur_rx
, rx_left
;
5714 cur_rx
= tp
->cur_rx
;
5715 rx_left
= NUM_RX_DESC
+ tp
->dirty_rx
- cur_rx
;
5716 rx_left
= min(rx_left
, budget
);
5718 for (; rx_left
> 0; rx_left
--, cur_rx
++) {
5719 unsigned int entry
= cur_rx
% NUM_RX_DESC
;
5720 struct RxDesc
*desc
= tp
->RxDescArray
+ entry
;
5724 status
= le32_to_cpu(desc
->opts1
) & tp
->opts1_mask
;
5726 if (status
& DescOwn
)
5728 if (unlikely(status
& RxRES
)) {
5729 netif_info(tp
, rx_err
, dev
, "Rx ERROR. status = %08x\n",
5731 dev
->stats
.rx_errors
++;
5732 if (status
& (RxRWT
| RxRUNT
))
5733 dev
->stats
.rx_length_errors
++;
5735 dev
->stats
.rx_crc_errors
++;
5736 if (status
& RxFOVF
) {
5737 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
5738 dev
->stats
.rx_fifo_errors
++;
5740 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
5742 struct sk_buff
*skb
;
5743 dma_addr_t addr
= le64_to_cpu(desc
->addr
);
5744 int pkt_size
= (status
& 0x00003fff) - 4;
5747 * The driver does not support incoming fragmented
5748 * frames. They are seen as a symptom of over-mtu
5751 if (unlikely(rtl8169_fragmented_frame(status
))) {
5752 dev
->stats
.rx_dropped
++;
5753 dev
->stats
.rx_length_errors
++;
5754 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
5758 skb
= rtl8169_try_rx_copy(tp
->Rx_databuff
[entry
],
5759 tp
, pkt_size
, addr
);
5760 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
5762 dev
->stats
.rx_dropped
++;
5766 rtl8169_rx_csum(skb
, status
);
5767 skb_put(skb
, pkt_size
);
5768 skb
->protocol
= eth_type_trans(skb
, dev
);
5770 rtl8169_rx_vlan_tag(desc
, skb
);
5772 napi_gro_receive(&tp
->napi
, skb
);
5774 dev
->stats
.rx_bytes
+= pkt_size
;
5775 dev
->stats
.rx_packets
++;
5778 /* Work around for AMD plateform. */
5779 if ((desc
->opts2
& cpu_to_le32(0xfffe000)) &&
5780 (tp
->mac_version
== RTL_GIGA_MAC_VER_05
)) {
5786 count
= cur_rx
- tp
->cur_rx
;
5787 tp
->cur_rx
= cur_rx
;
5789 tp
->dirty_rx
+= count
;
5794 static irqreturn_t
rtl8169_interrupt(int irq
, void *dev_instance
)
5796 struct net_device
*dev
= dev_instance
;
5797 struct rtl8169_private
*tp
= netdev_priv(dev
);
5798 void __iomem
*ioaddr
= tp
->mmio_addr
;
5802 /* loop handling interrupts until we have no new ones or
5803 * we hit a invalid/hotplug case.
5805 status
= RTL_R16(IntrStatus
);
5806 while (status
&& status
!= 0xffff) {
5809 /* Handle all of the error cases first. These will reset
5810 * the chip, so just exit the loop.
5812 if (unlikely(!netif_running(dev
))) {
5813 rtl8169_hw_reset(tp
);
5817 if (unlikely(status
& RxFIFOOver
)) {
5818 switch (tp
->mac_version
) {
5819 /* Work around for rx fifo overflow */
5820 case RTL_GIGA_MAC_VER_11
:
5821 case RTL_GIGA_MAC_VER_22
:
5822 case RTL_GIGA_MAC_VER_26
:
5823 netif_stop_queue(dev
);
5824 rtl8169_tx_timeout(dev
);
5826 /* Testers needed. */
5827 case RTL_GIGA_MAC_VER_17
:
5828 case RTL_GIGA_MAC_VER_19
:
5829 case RTL_GIGA_MAC_VER_20
:
5830 case RTL_GIGA_MAC_VER_21
:
5831 case RTL_GIGA_MAC_VER_23
:
5832 case RTL_GIGA_MAC_VER_24
:
5833 case RTL_GIGA_MAC_VER_27
:
5834 case RTL_GIGA_MAC_VER_28
:
5835 case RTL_GIGA_MAC_VER_31
:
5836 /* Experimental science. Pktgen proof. */
5837 case RTL_GIGA_MAC_VER_12
:
5838 case RTL_GIGA_MAC_VER_25
:
5839 if (status
== RxFIFOOver
)
5847 if (unlikely(status
& SYSErr
)) {
5848 rtl8169_pcierr_interrupt(dev
);
5852 if (status
& LinkChg
)
5853 __rtl8169_check_link_status(dev
, tp
, ioaddr
, true);
5855 /* We need to see the lastest version of tp->intr_mask to
5856 * avoid ignoring an MSI interrupt and having to wait for
5857 * another event which may never come.
5860 if (status
& tp
->intr_mask
& tp
->napi_event
) {
5861 RTL_W16(IntrMask
, tp
->intr_event
& ~tp
->napi_event
);
5862 tp
->intr_mask
= ~tp
->napi_event
;
5864 if (likely(napi_schedule_prep(&tp
->napi
)))
5865 __napi_schedule(&tp
->napi
);
5867 netif_info(tp
, intr
, dev
,
5868 "interrupt %04x in poll\n", status
);
5871 /* We only get a new MSI interrupt when all active irq
5872 * sources on the chip have been acknowledged. So, ack
5873 * everything we've seen and check if new sources have become
5874 * active to avoid blocking all interrupts from the chip.
5877 (status
& RxFIFOOver
) ? (status
| RxOverflow
) : status
);
5878 status
= RTL_R16(IntrStatus
);
5881 return IRQ_RETVAL(handled
);
5884 static int rtl8169_poll(struct napi_struct
*napi
, int budget
)
5886 struct rtl8169_private
*tp
= container_of(napi
, struct rtl8169_private
, napi
);
5887 struct net_device
*dev
= tp
->dev
;
5888 void __iomem
*ioaddr
= tp
->mmio_addr
;
5891 work_done
= rtl8169_rx_interrupt(dev
, tp
, ioaddr
, (u32
) budget
);
5892 rtl8169_tx_interrupt(dev
, tp
, ioaddr
);
5894 if (work_done
< budget
) {
5895 napi_complete(napi
);
5897 /* We need for force the visibility of tp->intr_mask
5898 * for other CPUs, as we can loose an MSI interrupt
5899 * and potentially wait for a retransmit timeout if we don't.
5900 * The posted write to IntrMask is safe, as it will
5901 * eventually make it to the chip and we won't loose anything
5904 tp
->intr_mask
= 0xffff;
5906 RTL_W16(IntrMask
, tp
->intr_event
);
5912 static void rtl8169_rx_missed(struct net_device
*dev
, void __iomem
*ioaddr
)
5914 struct rtl8169_private
*tp
= netdev_priv(dev
);
5916 if (tp
->mac_version
> RTL_GIGA_MAC_VER_06
)
5919 dev
->stats
.rx_missed_errors
+= (RTL_R32(RxMissed
) & 0xffffff);
5920 RTL_W32(RxMissed
, 0);
5923 static void rtl8169_down(struct net_device
*dev
)
5925 struct rtl8169_private
*tp
= netdev_priv(dev
);
5926 void __iomem
*ioaddr
= tp
->mmio_addr
;
5928 del_timer_sync(&tp
->timer
);
5930 netif_stop_queue(dev
);
5932 napi_disable(&tp
->napi
);
5934 spin_lock_irq(&tp
->lock
);
5936 rtl8169_hw_reset(tp
);
5938 * At this point device interrupts can not be enabled in any function,
5939 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
5940 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
5942 rtl8169_rx_missed(dev
, ioaddr
);
5944 spin_unlock_irq(&tp
->lock
);
5946 synchronize_irq(dev
->irq
);
5948 /* Give a racing hard_start_xmit a few cycles to complete. */
5949 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
5951 rtl8169_tx_clear(tp
);
5953 rtl8169_rx_clear(tp
);
5955 rtl_pll_power_down(tp
);
5958 static int rtl8169_close(struct net_device
*dev
)
5960 struct rtl8169_private
*tp
= netdev_priv(dev
);
5961 struct pci_dev
*pdev
= tp
->pci_dev
;
5963 pm_runtime_get_sync(&pdev
->dev
);
5965 /* Update counters before going down */
5966 rtl8169_update_counters(dev
);
5970 free_irq(dev
->irq
, dev
);
5972 dma_free_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
, tp
->RxDescArray
,
5974 dma_free_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
, tp
->TxDescArray
,
5976 tp
->TxDescArray
= NULL
;
5977 tp
->RxDescArray
= NULL
;
5979 pm_runtime_put_sync(&pdev
->dev
);
5984 static void rtl_set_rx_mode(struct net_device
*dev
)
5986 struct rtl8169_private
*tp
= netdev_priv(dev
);
5987 void __iomem
*ioaddr
= tp
->mmio_addr
;
5988 unsigned long flags
;
5989 u32 mc_filter
[2]; /* Multicast hash filter */
5993 if (dev
->flags
& IFF_PROMISC
) {
5994 /* Unconditionally log net taps. */
5995 netif_notice(tp
, link
, dev
, "Promiscuous mode enabled\n");
5997 AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
|
5999 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
6000 } else if ((netdev_mc_count(dev
) > multicast_filter_limit
) ||
6001 (dev
->flags
& IFF_ALLMULTI
)) {
6002 /* Too many to filter perfectly -- accept all multicasts. */
6003 rx_mode
= AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
;
6004 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
6006 struct netdev_hw_addr
*ha
;
6008 rx_mode
= AcceptBroadcast
| AcceptMyPhys
;
6009 mc_filter
[1] = mc_filter
[0] = 0;
6010 netdev_for_each_mc_addr(ha
, dev
) {
6011 int bit_nr
= ether_crc(ETH_ALEN
, ha
->addr
) >> 26;
6012 mc_filter
[bit_nr
>> 5] |= 1 << (bit_nr
& 31);
6013 rx_mode
|= AcceptMulticast
;
6017 spin_lock_irqsave(&tp
->lock
, flags
);
6019 tmp
= (RTL_R32(RxConfig
) & ~RX_CONFIG_ACCEPT_MASK
) | rx_mode
;
6021 if (tp
->mac_version
> RTL_GIGA_MAC_VER_06
) {
6022 u32 data
= mc_filter
[0];
6024 mc_filter
[0] = swab32(mc_filter
[1]);
6025 mc_filter
[1] = swab32(data
);
6028 RTL_W32(MAR0
+ 4, mc_filter
[1]);
6029 RTL_W32(MAR0
+ 0, mc_filter
[0]);
6031 RTL_W32(RxConfig
, tmp
);
6033 spin_unlock_irqrestore(&tp
->lock
, flags
);
6037 * rtl8169_get_stats - Get rtl8169 read/write statistics
6038 * @dev: The Ethernet Device to get statistics for
6040 * Get TX/RX statistics for rtl8169
6042 static struct net_device_stats
*rtl8169_get_stats(struct net_device
*dev
)
6044 struct rtl8169_private
*tp
= netdev_priv(dev
);
6045 void __iomem
*ioaddr
= tp
->mmio_addr
;
6046 unsigned long flags
;
6048 if (netif_running(dev
)) {
6049 spin_lock_irqsave(&tp
->lock
, flags
);
6050 rtl8169_rx_missed(dev
, ioaddr
);
6051 spin_unlock_irqrestore(&tp
->lock
, flags
);
6057 static void rtl8169_net_suspend(struct net_device
*dev
)
6059 struct rtl8169_private
*tp
= netdev_priv(dev
);
6061 if (!netif_running(dev
))
6064 rtl_pll_power_down(tp
);
6066 netif_device_detach(dev
);
6067 netif_stop_queue(dev
);
6072 static int rtl8169_suspend(struct device
*device
)
6074 struct pci_dev
*pdev
= to_pci_dev(device
);
6075 struct net_device
*dev
= pci_get_drvdata(pdev
);
6077 rtl8169_net_suspend(dev
);
6082 static void __rtl8169_resume(struct net_device
*dev
)
6084 struct rtl8169_private
*tp
= netdev_priv(dev
);
6086 netif_device_attach(dev
);
6088 rtl_pll_power_up(tp
);
6090 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
6093 static int rtl8169_resume(struct device
*device
)
6095 struct pci_dev
*pdev
= to_pci_dev(device
);
6096 struct net_device
*dev
= pci_get_drvdata(pdev
);
6097 struct rtl8169_private
*tp
= netdev_priv(dev
);
6099 rtl8169_init_phy(dev
, tp
);
6101 if (netif_running(dev
))
6102 __rtl8169_resume(dev
);
6107 static int rtl8169_runtime_suspend(struct device
*device
)
6109 struct pci_dev
*pdev
= to_pci_dev(device
);
6110 struct net_device
*dev
= pci_get_drvdata(pdev
);
6111 struct rtl8169_private
*tp
= netdev_priv(dev
);
6113 if (!tp
->TxDescArray
)
6116 spin_lock_irq(&tp
->lock
);
6117 tp
->saved_wolopts
= __rtl8169_get_wol(tp
);
6118 __rtl8169_set_wol(tp
, WAKE_ANY
);
6119 spin_unlock_irq(&tp
->lock
);
6121 rtl8169_net_suspend(dev
);
6126 static int rtl8169_runtime_resume(struct device
*device
)
6128 struct pci_dev
*pdev
= to_pci_dev(device
);
6129 struct net_device
*dev
= pci_get_drvdata(pdev
);
6130 struct rtl8169_private
*tp
= netdev_priv(dev
);
6132 if (!tp
->TxDescArray
)
6135 spin_lock_irq(&tp
->lock
);
6136 __rtl8169_set_wol(tp
, tp
->saved_wolopts
);
6137 tp
->saved_wolopts
= 0;
6138 spin_unlock_irq(&tp
->lock
);
6140 rtl8169_init_phy(dev
, tp
);
6142 __rtl8169_resume(dev
);
6147 static int rtl8169_runtime_idle(struct device
*device
)
6149 struct pci_dev
*pdev
= to_pci_dev(device
);
6150 struct net_device
*dev
= pci_get_drvdata(pdev
);
6151 struct rtl8169_private
*tp
= netdev_priv(dev
);
6153 return tp
->TxDescArray
? -EBUSY
: 0;
6156 static const struct dev_pm_ops rtl8169_pm_ops
= {
6157 .suspend
= rtl8169_suspend
,
6158 .resume
= rtl8169_resume
,
6159 .freeze
= rtl8169_suspend
,
6160 .thaw
= rtl8169_resume
,
6161 .poweroff
= rtl8169_suspend
,
6162 .restore
= rtl8169_resume
,
6163 .runtime_suspend
= rtl8169_runtime_suspend
,
6164 .runtime_resume
= rtl8169_runtime_resume
,
6165 .runtime_idle
= rtl8169_runtime_idle
,
6168 #define RTL8169_PM_OPS (&rtl8169_pm_ops)
6170 #else /* !CONFIG_PM */
6172 #define RTL8169_PM_OPS NULL
6174 #endif /* !CONFIG_PM */
6176 static void rtl_wol_shutdown_quirk(struct rtl8169_private
*tp
)
6178 void __iomem
*ioaddr
= tp
->mmio_addr
;
6180 /* WoL fails with 8168b when the receiver is disabled. */
6181 switch (tp
->mac_version
) {
6182 case RTL_GIGA_MAC_VER_11
:
6183 case RTL_GIGA_MAC_VER_12
:
6184 case RTL_GIGA_MAC_VER_17
:
6185 pci_clear_master(tp
->pci_dev
);
6187 RTL_W8(ChipCmd
, CmdRxEnb
);
6196 static void rtl_shutdown(struct pci_dev
*pdev
)
6198 struct net_device
*dev
= pci_get_drvdata(pdev
);
6199 struct rtl8169_private
*tp
= netdev_priv(dev
);
6201 rtl8169_net_suspend(dev
);
6203 /* Restore original MAC address */
6204 rtl_rar_set(tp
, dev
->perm_addr
);
6206 spin_lock_irq(&tp
->lock
);
6208 rtl8169_hw_reset(tp
);
6210 spin_unlock_irq(&tp
->lock
);
6212 if (system_state
== SYSTEM_POWER_OFF
) {
6213 if (__rtl8169_get_wol(tp
) & WAKE_ANY
) {
6214 rtl_wol_suspend_quirk(tp
);
6215 rtl_wol_shutdown_quirk(tp
);
6218 pci_wake_from_d3(pdev
, true);
6219 pci_set_power_state(pdev
, PCI_D3hot
);
6223 static struct pci_driver rtl8169_pci_driver
= {
6225 .id_table
= rtl8169_pci_tbl
,
6226 .probe
= rtl8169_init_one
,
6227 .remove
= __devexit_p(rtl8169_remove_one
),
6228 .shutdown
= rtl_shutdown
,
6229 .driver
.pm
= RTL8169_PM_OPS
,
6232 static int __init
rtl8169_init_module(void)
6234 return pci_register_driver(&rtl8169_pci_driver
);
6237 static void __exit
rtl8169_cleanup_module(void)
6239 pci_unregister_driver(&rtl8169_pci_driver
);
6242 module_init(rtl8169_init_module
);
6243 module_exit(rtl8169_cleanup_module
);