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/dma-mapping.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/firmware.h>
29 #include <asm/system.h>
33 #define RTL8169_VERSION "2.3LK-NAPI"
34 #define MODULENAME "r8169"
35 #define PFX MODULENAME ": "
37 #define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
38 #define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
41 #define assert(expr) \
43 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
44 #expr,__FILE__,__func__,__LINE__); \
46 #define dprintk(fmt, args...) \
47 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
49 #define assert(expr) do {} while (0)
50 #define dprintk(fmt, args...) do {} while (0)
51 #endif /* RTL8169_DEBUG */
53 #define R8169_MSG_DEFAULT \
54 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
56 #define TX_BUFFS_AVAIL(tp) \
57 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
59 /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
60 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
61 static const int multicast_filter_limit
= 32;
63 /* MAC address length */
64 #define MAC_ADDR_LEN 6
66 #define MAX_READ_REQUEST_SHIFT 12
67 #define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
68 #define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
69 #define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
70 #define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
71 #define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
73 #define R8169_REGS_SIZE 256
74 #define R8169_NAPI_WEIGHT 64
75 #define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
76 #define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
77 #define RX_BUF_SIZE 1536 /* Rx Buffer size */
78 #define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
79 #define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
81 #define RTL8169_TX_TIMEOUT (6*HZ)
82 #define RTL8169_PHY_TIMEOUT (10*HZ)
84 #define RTL_EEPROM_SIG cpu_to_le32(0x8129)
85 #define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
86 #define RTL_EEPROM_SIG_ADDR 0x0000
88 /* write/read MMIO register */
89 #define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
90 #define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
91 #define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
92 #define RTL_R8(reg) readb (ioaddr + (reg))
93 #define RTL_R16(reg) readw (ioaddr + (reg))
94 #define RTL_R32(reg) readl (ioaddr + (reg))
97 RTL_GIGA_MAC_NONE
= 0x00,
98 RTL_GIGA_MAC_VER_01
= 0x01, // 8169
99 RTL_GIGA_MAC_VER_02
= 0x02, // 8169S
100 RTL_GIGA_MAC_VER_03
= 0x03, // 8110S
101 RTL_GIGA_MAC_VER_04
= 0x04, // 8169SB
102 RTL_GIGA_MAC_VER_05
= 0x05, // 8110SCd
103 RTL_GIGA_MAC_VER_06
= 0x06, // 8110SCe
104 RTL_GIGA_MAC_VER_07
= 0x07, // 8102e
105 RTL_GIGA_MAC_VER_08
= 0x08, // 8102e
106 RTL_GIGA_MAC_VER_09
= 0x09, // 8102e
107 RTL_GIGA_MAC_VER_10
= 0x0a, // 8101e
108 RTL_GIGA_MAC_VER_11
= 0x0b, // 8168Bb
109 RTL_GIGA_MAC_VER_12
= 0x0c, // 8168Be
110 RTL_GIGA_MAC_VER_13
= 0x0d, // 8101Eb
111 RTL_GIGA_MAC_VER_14
= 0x0e, // 8101 ?
112 RTL_GIGA_MAC_VER_15
= 0x0f, // 8101 ?
113 RTL_GIGA_MAC_VER_16
= 0x11, // 8101Ec
114 RTL_GIGA_MAC_VER_17
= 0x10, // 8168Bf
115 RTL_GIGA_MAC_VER_18
= 0x12, // 8168CP
116 RTL_GIGA_MAC_VER_19
= 0x13, // 8168C
117 RTL_GIGA_MAC_VER_20
= 0x14, // 8168C
118 RTL_GIGA_MAC_VER_21
= 0x15, // 8168C
119 RTL_GIGA_MAC_VER_22
= 0x16, // 8168C
120 RTL_GIGA_MAC_VER_23
= 0x17, // 8168CP
121 RTL_GIGA_MAC_VER_24
= 0x18, // 8168CP
122 RTL_GIGA_MAC_VER_25
= 0x19, // 8168D
123 RTL_GIGA_MAC_VER_26
= 0x1a, // 8168D
124 RTL_GIGA_MAC_VER_27
= 0x1b, // 8168DP
125 RTL_GIGA_MAC_VER_28
= 0x1c, // 8168DP
128 #define _R(NAME,MAC,MASK) \
129 { .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
131 static const struct {
134 u32 RxConfigMask
; /* Clears the bits supported by this chip */
135 } rtl_chip_info
[] = {
136 _R("RTL8169", RTL_GIGA_MAC_VER_01
, 0xff7e1880), // 8169
137 _R("RTL8169s", RTL_GIGA_MAC_VER_02
, 0xff7e1880), // 8169S
138 _R("RTL8110s", RTL_GIGA_MAC_VER_03
, 0xff7e1880), // 8110S
139 _R("RTL8169sb/8110sb", RTL_GIGA_MAC_VER_04
, 0xff7e1880), // 8169SB
140 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_05
, 0xff7e1880), // 8110SCd
141 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_06
, 0xff7e1880), // 8110SCe
142 _R("RTL8102e", RTL_GIGA_MAC_VER_07
, 0xff7e1880), // PCI-E
143 _R("RTL8102e", RTL_GIGA_MAC_VER_08
, 0xff7e1880), // PCI-E
144 _R("RTL8102e", RTL_GIGA_MAC_VER_09
, 0xff7e1880), // PCI-E
145 _R("RTL8101e", RTL_GIGA_MAC_VER_10
, 0xff7e1880), // PCI-E
146 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_11
, 0xff7e1880), // PCI-E
147 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_12
, 0xff7e1880), // PCI-E
148 _R("RTL8101e", RTL_GIGA_MAC_VER_13
, 0xff7e1880), // PCI-E 8139
149 _R("RTL8100e", RTL_GIGA_MAC_VER_14
, 0xff7e1880), // PCI-E 8139
150 _R("RTL8100e", RTL_GIGA_MAC_VER_15
, 0xff7e1880), // PCI-E 8139
151 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_17
, 0xff7e1880), // PCI-E
152 _R("RTL8101e", RTL_GIGA_MAC_VER_16
, 0xff7e1880), // PCI-E
153 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_18
, 0xff7e1880), // PCI-E
154 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_19
, 0xff7e1880), // PCI-E
155 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_20
, 0xff7e1880), // PCI-E
156 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_21
, 0xff7e1880), // PCI-E
157 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_22
, 0xff7e1880), // PCI-E
158 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_23
, 0xff7e1880), // PCI-E
159 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_24
, 0xff7e1880), // PCI-E
160 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_25
, 0xff7e1880), // PCI-E
161 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_26
, 0xff7e1880), // PCI-E
162 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_27
, 0xff7e1880), // PCI-E
163 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_28
, 0xff7e1880) // PCI-E
173 static void rtl_hw_start_8169(struct net_device
*);
174 static void rtl_hw_start_8168(struct net_device
*);
175 static void rtl_hw_start_8101(struct net_device
*);
177 static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl
) = {
178 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8129), 0, 0, RTL_CFG_0
},
179 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8136), 0, 0, RTL_CFG_2
},
180 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8167), 0, 0, RTL_CFG_0
},
181 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8168), 0, 0, RTL_CFG_1
},
182 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK
, 0x8169), 0, 0, RTL_CFG_0
},
183 { PCI_DEVICE(PCI_VENDOR_ID_DLINK
, 0x4300), 0, 0, RTL_CFG_0
},
184 { PCI_DEVICE(PCI_VENDOR_ID_AT
, 0xc107), 0, 0, RTL_CFG_0
},
185 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0
},
186 { PCI_VENDOR_ID_LINKSYS
, 0x1032,
187 PCI_ANY_ID
, 0x0024, 0, 0, RTL_CFG_0
},
189 PCI_ANY_ID
, 0x2410, 0, 0, RTL_CFG_2
},
193 MODULE_DEVICE_TABLE(pci
, rtl8169_pci_tbl
);
195 static int rx_buf_sz
= 16383;
202 MAC0
= 0, /* Ethernet hardware address. */
204 MAR0
= 8, /* Multicast filter. */
205 CounterAddrLow
= 0x10,
206 CounterAddrHigh
= 0x14,
207 TxDescStartAddrLow
= 0x20,
208 TxDescStartAddrHigh
= 0x24,
209 TxHDescStartAddrLow
= 0x28,
210 TxHDescStartAddrHigh
= 0x2c,
233 RxDescAddrLow
= 0xe4,
234 RxDescAddrHigh
= 0xe8,
235 EarlyTxThres
= 0xec, /* 8169. Unit of 32 bytes. */
237 #define NoEarlyTx 0x3f /* Max value : no early transmit. */
239 MaxTxPacketSize
= 0xec, /* 8101/8168. Unit of 128 bytes. */
241 #define TxPacketMax (8064 >> 7)
244 FuncEventMask
= 0xf4,
245 FuncPresetState
= 0xf8,
246 FuncForceEvent
= 0xfc,
249 enum rtl8110_registers
{
255 enum rtl8168_8101_registers
{
258 #define CSIAR_FLAG 0x80000000
259 #define CSIAR_WRITE_CMD 0x80000000
260 #define CSIAR_BYTE_ENABLE 0x0f
261 #define CSIAR_BYTE_ENABLE_SHIFT 12
262 #define CSIAR_ADDR_MASK 0x0fff
265 #define EPHYAR_FLAG 0x80000000
266 #define EPHYAR_WRITE_CMD 0x80000000
267 #define EPHYAR_REG_MASK 0x1f
268 #define EPHYAR_REG_SHIFT 16
269 #define EPHYAR_DATA_MASK 0xffff
271 #define FIX_NAK_1 (1 << 4)
272 #define FIX_NAK_2 (1 << 3)
274 #define EFUSEAR_FLAG 0x80000000
275 #define EFUSEAR_WRITE_CMD 0x80000000
276 #define EFUSEAR_READ_CMD 0x00000000
277 #define EFUSEAR_REG_MASK 0x03ff
278 #define EFUSEAR_REG_SHIFT 8
279 #define EFUSEAR_DATA_MASK 0xff
282 enum rtl8168_registers
{
285 #define ERIAR_FLAG 0x80000000
286 #define ERIAR_WRITE_CMD 0x80000000
287 #define ERIAR_READ_CMD 0x00000000
288 #define ERIAR_ADDR_BYTE_ALIGN 4
289 #define ERIAR_EXGMAC 0
292 #define ERIAR_TYPE_SHIFT 16
293 #define ERIAR_BYTEEN 0x0f
294 #define ERIAR_BYTEEN_SHIFT 12
295 EPHY_RXER_NUM
= 0x7c,
296 OCPDR
= 0xb0, /* OCP GPHY access */
297 #define OCPDR_WRITE_CMD 0x80000000
298 #define OCPDR_READ_CMD 0x00000000
299 #define OCPDR_REG_MASK 0x7f
300 #define OCPDR_GPHY_REG_SHIFT 16
301 #define OCPDR_DATA_MASK 0xffff
303 #define OCPAR_FLAG 0x80000000
304 #define OCPAR_GPHY_WRITE_CMD 0x8000f060
305 #define OCPAR_GPHY_READ_CMD 0x0000f060
306 RDSAR1
= 0xd0 /* 8168c only. Undocumented on 8168dp */
309 enum rtl_register_content
{
310 /* InterruptStatusBits */
314 TxDescUnavail
= 0x0080,
336 /* TXPoll register p.5 */
337 HPQ
= 0x80, /* Poll cmd on the high prio queue */
338 NPQ
= 0x40, /* Poll cmd on the low prio queue */
339 FSWInt
= 0x01, /* Forced software interrupt */
343 Cfg9346_Unlock
= 0xc0,
348 AcceptBroadcast
= 0x08,
349 AcceptMulticast
= 0x04,
351 AcceptAllPhys
= 0x01,
358 TxInterFrameGapShift
= 24,
359 TxDMAShift
= 8, /* DMA burst value (0-7) is shift this many bits */
361 /* Config1 register p.24 */
364 MSIEnable
= (1 << 5), /* Enable Message Signaled Interrupt */
365 Speed_down
= (1 << 4),
369 PMEnable
= (1 << 0), /* Power Management Enable */
371 /* Config2 register p. 25 */
372 PCI_Clock_66MHz
= 0x01,
373 PCI_Clock_33MHz
= 0x00,
375 /* Config3 register p.25 */
376 MagicPacket
= (1 << 5), /* Wake up when receives a Magic Packet */
377 LinkUp
= (1 << 4), /* Wake up when the cable connection is re-established */
378 Beacon_en
= (1 << 0), /* 8168 only. Reserved in the 8168b */
380 /* Config5 register p.27 */
381 BWF
= (1 << 6), /* Accept Broadcast wakeup frame */
382 MWF
= (1 << 5), /* Accept Multicast wakeup frame */
383 UWF
= (1 << 4), /* Accept Unicast wakeup frame */
384 LanWake
= (1 << 1), /* LanWake enable/disable */
385 PMEStatus
= (1 << 0), /* PME status can be reset by PCI RST# */
388 TBIReset
= 0x80000000,
389 TBILoopback
= 0x40000000,
390 TBINwEnable
= 0x20000000,
391 TBINwRestart
= 0x10000000,
392 TBILinkOk
= 0x02000000,
393 TBINwComplete
= 0x01000000,
396 EnableBist
= (1 << 15), // 8168 8101
397 Mac_dbgo_oe
= (1 << 14), // 8168 8101
398 Normal_mode
= (1 << 13), // unused
399 Force_half_dup
= (1 << 12), // 8168 8101
400 Force_rxflow_en
= (1 << 11), // 8168 8101
401 Force_txflow_en
= (1 << 10), // 8168 8101
402 Cxpl_dbg_sel
= (1 << 9), // 8168 8101
403 ASF
= (1 << 8), // 8168 8101
404 PktCntrDisable
= (1 << 7), // 8168 8101
405 Mac_dbgo_sel
= 0x001c, // 8168
410 INTT_0
= 0x0000, // 8168
411 INTT_1
= 0x0001, // 8168
412 INTT_2
= 0x0002, // 8168
413 INTT_3
= 0x0003, // 8168
415 /* rtl8169_PHYstatus */
426 TBILinkOK
= 0x02000000,
428 /* DumpCounterCommand */
432 enum desc_status_bit
{
433 DescOwn
= (1 << 31), /* Descriptor is owned by NIC */
434 RingEnd
= (1 << 30), /* End of descriptor ring */
435 FirstFrag
= (1 << 29), /* First segment of a packet */
436 LastFrag
= (1 << 28), /* Final segment of a packet */
439 LargeSend
= (1 << 27), /* TCP Large Send Offload (TSO) */
440 MSSShift
= 16, /* MSS value position */
441 MSSMask
= 0xfff, /* MSS value + LargeSend bit: 12 bits */
442 IPCS
= (1 << 18), /* Calculate IP checksum */
443 UDPCS
= (1 << 17), /* Calculate UDP/IP checksum */
444 TCPCS
= (1 << 16), /* Calculate TCP/IP checksum */
445 TxVlanTag
= (1 << 17), /* Add VLAN tag */
448 PID1
= (1 << 18), /* Protocol ID bit 1/2 */
449 PID0
= (1 << 17), /* Protocol ID bit 2/2 */
451 #define RxProtoUDP (PID1)
452 #define RxProtoTCP (PID0)
453 #define RxProtoIP (PID1 | PID0)
454 #define RxProtoMask RxProtoIP
456 IPFail
= (1 << 16), /* IP checksum failed */
457 UDPFail
= (1 << 15), /* UDP/IP checksum failed */
458 TCPFail
= (1 << 14), /* TCP/IP checksum failed */
459 RxVlanTag
= (1 << 16), /* VLAN tag available */
462 #define RsvdMask 0x3fffc000
479 u8 __pad
[sizeof(void *) - sizeof(u32
)];
483 RTL_FEATURE_WOL
= (1 << 0),
484 RTL_FEATURE_MSI
= (1 << 1),
485 RTL_FEATURE_GMII
= (1 << 2),
488 struct rtl8169_counters
{
495 __le32 tx_one_collision
;
496 __le32 tx_multi_collision
;
504 struct rtl8169_private
{
505 void __iomem
*mmio_addr
; /* memory map physical address */
506 struct pci_dev
*pci_dev
; /* Index of PCI device */
507 struct net_device
*dev
;
508 struct napi_struct napi
;
509 spinlock_t lock
; /* spin lock flag */
513 u32 cur_rx
; /* Index into the Rx descriptor buffer of next Rx pkt. */
514 u32 cur_tx
; /* Index into the Tx descriptor buffer of next Rx pkt. */
517 struct TxDesc
*TxDescArray
; /* 256-aligned Tx descriptor ring */
518 struct RxDesc
*RxDescArray
; /* 256-aligned Rx descriptor ring */
519 dma_addr_t TxPhyAddr
;
520 dma_addr_t RxPhyAddr
;
521 void *Rx_databuff
[NUM_RX_DESC
]; /* Rx data buffers */
522 struct ring_info tx_skb
[NUM_TX_DESC
]; /* Tx data buffers */
523 struct timer_list timer
;
528 int phy_1000_ctrl_reg
;
529 #ifdef CONFIG_R8169_VLAN
530 struct vlan_group
*vlgrp
;
534 void (*write
)(void __iomem
*, int, int);
535 int (*read
)(void __iomem
*, int);
538 struct pll_power_ops
{
539 void (*down
)(struct rtl8169_private
*);
540 void (*up
)(struct rtl8169_private
*);
543 int (*set_speed
)(struct net_device
*, u8 autoneg
, u16 speed
, u8 duplex
);
544 int (*get_settings
)(struct net_device
*, struct ethtool_cmd
*);
545 void (*phy_reset_enable
)(struct rtl8169_private
*tp
);
546 void (*hw_start
)(struct net_device
*);
547 unsigned int (*phy_reset_pending
)(struct rtl8169_private
*tp
);
548 unsigned int (*link_ok
)(void __iomem
*);
549 int (*do_ioctl
)(struct rtl8169_private
*tp
, struct mii_ioctl_data
*data
, int cmd
);
551 struct delayed_work task
;
554 struct mii_if_info mii
;
555 struct rtl8169_counters counters
;
559 MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
560 MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
561 module_param(use_dac
, int, 0);
562 MODULE_PARM_DESC(use_dac
, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
563 module_param_named(debug
, debug
.msg_enable
, int, 0);
564 MODULE_PARM_DESC(debug
, "Debug verbosity level (0=none, ..., 16=all)");
565 MODULE_LICENSE("GPL");
566 MODULE_VERSION(RTL8169_VERSION
);
567 MODULE_FIRMWARE(FIRMWARE_8168D_1
);
568 MODULE_FIRMWARE(FIRMWARE_8168D_2
);
570 static int rtl8169_open(struct net_device
*dev
);
571 static netdev_tx_t
rtl8169_start_xmit(struct sk_buff
*skb
,
572 struct net_device
*dev
);
573 static irqreturn_t
rtl8169_interrupt(int irq
, void *dev_instance
);
574 static int rtl8169_init_ring(struct net_device
*dev
);
575 static void rtl_hw_start(struct net_device
*dev
);
576 static int rtl8169_close(struct net_device
*dev
);
577 static void rtl_set_rx_mode(struct net_device
*dev
);
578 static void rtl8169_tx_timeout(struct net_device
*dev
);
579 static struct net_device_stats
*rtl8169_get_stats(struct net_device
*dev
);
580 static int rtl8169_rx_interrupt(struct net_device
*, struct rtl8169_private
*,
581 void __iomem
*, u32 budget
);
582 static int rtl8169_change_mtu(struct net_device
*dev
, int new_mtu
);
583 static void rtl8169_down(struct net_device
*dev
);
584 static void rtl8169_rx_clear(struct rtl8169_private
*tp
);
585 static int rtl8169_poll(struct napi_struct
*napi
, int budget
);
587 static const unsigned int rtl8169_rx_config
=
588 (RX_FIFO_THRESH
<< RxCfgFIFOShift
) | (RX_DMA_BURST
<< RxCfgDMAShift
);
590 static u32
ocp_read(struct rtl8169_private
*tp
, u8 mask
, u16 reg
)
592 void __iomem
*ioaddr
= tp
->mmio_addr
;
595 RTL_W32(OCPAR
, ((u32
)mask
& 0x0f) << 12 | (reg
& 0x0fff));
596 for (i
= 0; i
< 20; i
++) {
598 if (RTL_R32(OCPAR
) & OCPAR_FLAG
)
601 return RTL_R32(OCPDR
);
604 static void ocp_write(struct rtl8169_private
*tp
, u8 mask
, u16 reg
, u32 data
)
606 void __iomem
*ioaddr
= tp
->mmio_addr
;
609 RTL_W32(OCPDR
, data
);
610 RTL_W32(OCPAR
, OCPAR_FLAG
| ((u32
)mask
& 0x0f) << 12 | (reg
& 0x0fff));
611 for (i
= 0; i
< 20; i
++) {
613 if ((RTL_R32(OCPAR
) & OCPAR_FLAG
) == 0)
618 static void rtl8168_oob_notify(void __iomem
*ioaddr
, u8 cmd
)
623 RTL_W32(ERIAR
, 0x800010e8);
625 for (i
= 0; i
< 5; i
++) {
627 if (!(RTL_R32(ERIDR
) & ERIAR_FLAG
))
631 ocp_write(ioaddr
, 0x1, 0x30, 0x00000001);
634 #define OOB_CMD_RESET 0x00
635 #define OOB_CMD_DRIVER_START 0x05
636 #define OOB_CMD_DRIVER_STOP 0x06
638 static void rtl8168_driver_start(struct rtl8169_private
*tp
)
642 rtl8168_oob_notify(tp
, OOB_CMD_DRIVER_START
);
644 for (i
= 0; i
< 10; i
++) {
646 if (ocp_read(tp
, 0x0f, 0x0010) & 0x00000800)
651 static void rtl8168_driver_stop(struct rtl8169_private
*tp
)
655 rtl8168_oob_notify(tp
, OOB_CMD_DRIVER_STOP
);
657 for (i
= 0; i
< 10; i
++) {
659 if ((ocp_read(tp
, 0x0f, 0x0010) & 0x00000800) == 0)
665 static void r8169_mdio_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
669 RTL_W32(PHYAR
, 0x80000000 | (reg_addr
& 0x1f) << 16 | (value
& 0xffff));
671 for (i
= 20; i
> 0; i
--) {
673 * Check if the RTL8169 has completed writing to the specified
676 if (!(RTL_R32(PHYAR
) & 0x80000000))
681 * According to hardware specs a 20us delay is required after write
682 * complete indication, but before sending next command.
687 static int r8169_mdio_read(void __iomem
*ioaddr
, int reg_addr
)
691 RTL_W32(PHYAR
, 0x0 | (reg_addr
& 0x1f) << 16);
693 for (i
= 20; i
> 0; i
--) {
695 * Check if the RTL8169 has completed retrieving data from
696 * the specified MII register.
698 if (RTL_R32(PHYAR
) & 0x80000000) {
699 value
= RTL_R32(PHYAR
) & 0xffff;
705 * According to hardware specs a 20us delay is required after read
706 * complete indication, but before sending next command.
713 static void r8168dp_1_mdio_access(void __iomem
*ioaddr
, int reg_addr
, u32 data
)
717 RTL_W32(OCPDR
, data
|
718 ((reg_addr
& OCPDR_REG_MASK
) << OCPDR_GPHY_REG_SHIFT
));
719 RTL_W32(OCPAR
, OCPAR_GPHY_WRITE_CMD
);
720 RTL_W32(EPHY_RXER_NUM
, 0);
722 for (i
= 0; i
< 100; i
++) {
724 if (!(RTL_R32(OCPAR
) & OCPAR_FLAG
))
729 static void r8168dp_1_mdio_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
731 r8168dp_1_mdio_access(ioaddr
, reg_addr
, OCPDR_WRITE_CMD
|
732 (value
& OCPDR_DATA_MASK
));
735 static int r8168dp_1_mdio_read(void __iomem
*ioaddr
, int reg_addr
)
739 r8168dp_1_mdio_access(ioaddr
, reg_addr
, OCPDR_READ_CMD
);
742 RTL_W32(OCPAR
, OCPAR_GPHY_READ_CMD
);
743 RTL_W32(EPHY_RXER_NUM
, 0);
745 for (i
= 0; i
< 100; i
++) {
747 if (RTL_R32(OCPAR
) & OCPAR_FLAG
)
751 return RTL_R32(OCPDR
) & OCPDR_DATA_MASK
;
754 #define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
756 static void r8168dp_2_mdio_start(void __iomem
*ioaddr
)
758 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT
);
761 static void r8168dp_2_mdio_stop(void __iomem
*ioaddr
)
763 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT
);
766 static void r8168dp_2_mdio_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
768 r8168dp_2_mdio_start(ioaddr
);
770 r8169_mdio_write(ioaddr
, reg_addr
, value
);
772 r8168dp_2_mdio_stop(ioaddr
);
775 static int r8168dp_2_mdio_read(void __iomem
*ioaddr
, int reg_addr
)
779 r8168dp_2_mdio_start(ioaddr
);
781 value
= r8169_mdio_read(ioaddr
, reg_addr
);
783 r8168dp_2_mdio_stop(ioaddr
);
788 static void rtl_writephy(struct rtl8169_private
*tp
, int location
, u32 val
)
790 tp
->mdio_ops
.write(tp
->mmio_addr
, location
, val
);
793 static int rtl_readphy(struct rtl8169_private
*tp
, int location
)
795 return tp
->mdio_ops
.read(tp
->mmio_addr
, location
);
798 static void rtl_patchphy(struct rtl8169_private
*tp
, int reg_addr
, int value
)
800 rtl_writephy(tp
, reg_addr
, rtl_readphy(tp
, reg_addr
) | value
);
803 static void rtl_w1w0_phy(struct rtl8169_private
*tp
, int reg_addr
, int p
, int m
)
807 val
= rtl_readphy(tp
, reg_addr
);
808 rtl_writephy(tp
, reg_addr
, (val
| p
) & ~m
);
811 static void rtl_mdio_write(struct net_device
*dev
, int phy_id
, int location
,
814 struct rtl8169_private
*tp
= netdev_priv(dev
);
816 rtl_writephy(tp
, location
, val
);
819 static int rtl_mdio_read(struct net_device
*dev
, int phy_id
, int location
)
821 struct rtl8169_private
*tp
= netdev_priv(dev
);
823 return rtl_readphy(tp
, location
);
826 static void rtl_ephy_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
830 RTL_W32(EPHYAR
, EPHYAR_WRITE_CMD
| (value
& EPHYAR_DATA_MASK
) |
831 (reg_addr
& EPHYAR_REG_MASK
) << EPHYAR_REG_SHIFT
);
833 for (i
= 0; i
< 100; i
++) {
834 if (!(RTL_R32(EPHYAR
) & EPHYAR_FLAG
))
840 static u16
rtl_ephy_read(void __iomem
*ioaddr
, int reg_addr
)
845 RTL_W32(EPHYAR
, (reg_addr
& EPHYAR_REG_MASK
) << EPHYAR_REG_SHIFT
);
847 for (i
= 0; i
< 100; i
++) {
848 if (RTL_R32(EPHYAR
) & EPHYAR_FLAG
) {
849 value
= RTL_R32(EPHYAR
) & EPHYAR_DATA_MASK
;
858 static void rtl_csi_write(void __iomem
*ioaddr
, int addr
, int value
)
862 RTL_W32(CSIDR
, value
);
863 RTL_W32(CSIAR
, CSIAR_WRITE_CMD
| (addr
& CSIAR_ADDR_MASK
) |
864 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
866 for (i
= 0; i
< 100; i
++) {
867 if (!(RTL_R32(CSIAR
) & CSIAR_FLAG
))
873 static u32
rtl_csi_read(void __iomem
*ioaddr
, int addr
)
878 RTL_W32(CSIAR
, (addr
& CSIAR_ADDR_MASK
) |
879 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
881 for (i
= 0; i
< 100; i
++) {
882 if (RTL_R32(CSIAR
) & CSIAR_FLAG
) {
883 value
= RTL_R32(CSIDR
);
892 static u8
rtl8168d_efuse_read(void __iomem
*ioaddr
, int reg_addr
)
897 RTL_W32(EFUSEAR
, (reg_addr
& EFUSEAR_REG_MASK
) << EFUSEAR_REG_SHIFT
);
899 for (i
= 0; i
< 300; i
++) {
900 if (RTL_R32(EFUSEAR
) & EFUSEAR_FLAG
) {
901 value
= RTL_R32(EFUSEAR
) & EFUSEAR_DATA_MASK
;
910 static void rtl8169_irq_mask_and_ack(void __iomem
*ioaddr
)
912 RTL_W16(IntrMask
, 0x0000);
914 RTL_W16(IntrStatus
, 0xffff);
917 static void rtl8169_asic_down(void __iomem
*ioaddr
)
919 RTL_W8(ChipCmd
, 0x00);
920 rtl8169_irq_mask_and_ack(ioaddr
);
924 static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private
*tp
)
926 void __iomem
*ioaddr
= tp
->mmio_addr
;
928 return RTL_R32(TBICSR
) & TBIReset
;
931 static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private
*tp
)
933 return rtl_readphy(tp
, MII_BMCR
) & BMCR_RESET
;
936 static unsigned int rtl8169_tbi_link_ok(void __iomem
*ioaddr
)
938 return RTL_R32(TBICSR
) & TBILinkOk
;
941 static unsigned int rtl8169_xmii_link_ok(void __iomem
*ioaddr
)
943 return RTL_R8(PHYstatus
) & LinkStatus
;
946 static void rtl8169_tbi_reset_enable(struct rtl8169_private
*tp
)
948 void __iomem
*ioaddr
= tp
->mmio_addr
;
950 RTL_W32(TBICSR
, RTL_R32(TBICSR
) | TBIReset
);
953 static void rtl8169_xmii_reset_enable(struct rtl8169_private
*tp
)
957 val
= rtl_readphy(tp
, MII_BMCR
) | BMCR_RESET
;
958 rtl_writephy(tp
, MII_BMCR
, val
& 0xffff);
961 static void __rtl8169_check_link_status(struct net_device
*dev
,
962 struct rtl8169_private
*tp
,
963 void __iomem
*ioaddr
,
968 spin_lock_irqsave(&tp
->lock
, flags
);
969 if (tp
->link_ok(ioaddr
)) {
970 /* This is to cancel a scheduled suspend if there's one. */
972 pm_request_resume(&tp
->pci_dev
->dev
);
973 netif_carrier_on(dev
);
974 netif_info(tp
, ifup
, dev
, "link up\n");
976 netif_carrier_off(dev
);
977 netif_info(tp
, ifdown
, dev
, "link down\n");
979 pm_schedule_suspend(&tp
->pci_dev
->dev
, 100);
981 spin_unlock_irqrestore(&tp
->lock
, flags
);
984 static void rtl8169_check_link_status(struct net_device
*dev
,
985 struct rtl8169_private
*tp
,
986 void __iomem
*ioaddr
)
988 __rtl8169_check_link_status(dev
, tp
, ioaddr
, false);
991 #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
993 static u32
__rtl8169_get_wol(struct rtl8169_private
*tp
)
995 void __iomem
*ioaddr
= tp
->mmio_addr
;
999 options
= RTL_R8(Config1
);
1000 if (!(options
& PMEnable
))
1003 options
= RTL_R8(Config3
);
1004 if (options
& LinkUp
)
1005 wolopts
|= WAKE_PHY
;
1006 if (options
& MagicPacket
)
1007 wolopts
|= WAKE_MAGIC
;
1009 options
= RTL_R8(Config5
);
1011 wolopts
|= WAKE_UCAST
;
1013 wolopts
|= WAKE_BCAST
;
1015 wolopts
|= WAKE_MCAST
;
1020 static void rtl8169_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1022 struct rtl8169_private
*tp
= netdev_priv(dev
);
1024 spin_lock_irq(&tp
->lock
);
1026 wol
->supported
= WAKE_ANY
;
1027 wol
->wolopts
= __rtl8169_get_wol(tp
);
1029 spin_unlock_irq(&tp
->lock
);
1032 static void __rtl8169_set_wol(struct rtl8169_private
*tp
, u32 wolopts
)
1034 void __iomem
*ioaddr
= tp
->mmio_addr
;
1036 static const struct {
1041 { WAKE_ANY
, Config1
, PMEnable
},
1042 { WAKE_PHY
, Config3
, LinkUp
},
1043 { WAKE_MAGIC
, Config3
, MagicPacket
},
1044 { WAKE_UCAST
, Config5
, UWF
},
1045 { WAKE_BCAST
, Config5
, BWF
},
1046 { WAKE_MCAST
, Config5
, MWF
},
1047 { WAKE_ANY
, Config5
, LanWake
}
1050 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
1052 for (i
= 0; i
< ARRAY_SIZE(cfg
); i
++) {
1053 u8 options
= RTL_R8(cfg
[i
].reg
) & ~cfg
[i
].mask
;
1054 if (wolopts
& cfg
[i
].opt
)
1055 options
|= cfg
[i
].mask
;
1056 RTL_W8(cfg
[i
].reg
, options
);
1059 RTL_W8(Cfg9346
, Cfg9346_Lock
);
1062 static int rtl8169_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1064 struct rtl8169_private
*tp
= netdev_priv(dev
);
1066 spin_lock_irq(&tp
->lock
);
1069 tp
->features
|= RTL_FEATURE_WOL
;
1071 tp
->features
&= ~RTL_FEATURE_WOL
;
1072 __rtl8169_set_wol(tp
, wol
->wolopts
);
1073 spin_unlock_irq(&tp
->lock
);
1075 device_set_wakeup_enable(&tp
->pci_dev
->dev
, wol
->wolopts
);
1080 static void rtl8169_get_drvinfo(struct net_device
*dev
,
1081 struct ethtool_drvinfo
*info
)
1083 struct rtl8169_private
*tp
= netdev_priv(dev
);
1085 strcpy(info
->driver
, MODULENAME
);
1086 strcpy(info
->version
, RTL8169_VERSION
);
1087 strcpy(info
->bus_info
, pci_name(tp
->pci_dev
));
1090 static int rtl8169_get_regs_len(struct net_device
*dev
)
1092 return R8169_REGS_SIZE
;
1095 static int rtl8169_set_speed_tbi(struct net_device
*dev
,
1096 u8 autoneg
, u16 speed
, u8 duplex
)
1098 struct rtl8169_private
*tp
= netdev_priv(dev
);
1099 void __iomem
*ioaddr
= tp
->mmio_addr
;
1103 reg
= RTL_R32(TBICSR
);
1104 if ((autoneg
== AUTONEG_DISABLE
) && (speed
== SPEED_1000
) &&
1105 (duplex
== DUPLEX_FULL
)) {
1106 RTL_W32(TBICSR
, reg
& ~(TBINwEnable
| TBINwRestart
));
1107 } else if (autoneg
== AUTONEG_ENABLE
)
1108 RTL_W32(TBICSR
, reg
| TBINwEnable
| TBINwRestart
);
1110 netif_warn(tp
, link
, dev
,
1111 "incorrect speed setting refused in TBI mode\n");
1118 static int rtl8169_set_speed_xmii(struct net_device
*dev
,
1119 u8 autoneg
, u16 speed
, u8 duplex
)
1121 struct rtl8169_private
*tp
= netdev_priv(dev
);
1122 int giga_ctrl
, bmcr
;
1124 if (autoneg
== AUTONEG_ENABLE
) {
1127 auto_nego
= rtl_readphy(tp
, MII_ADVERTISE
);
1128 auto_nego
|= (ADVERTISE_10HALF
| ADVERTISE_10FULL
|
1129 ADVERTISE_100HALF
| ADVERTISE_100FULL
);
1130 auto_nego
|= ADVERTISE_PAUSE_CAP
| ADVERTISE_PAUSE_ASYM
;
1132 giga_ctrl
= rtl_readphy(tp
, MII_CTRL1000
);
1133 giga_ctrl
&= ~(ADVERTISE_1000FULL
| ADVERTISE_1000HALF
);
1135 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1136 if ((tp
->mac_version
!= RTL_GIGA_MAC_VER_07
) &&
1137 (tp
->mac_version
!= RTL_GIGA_MAC_VER_08
) &&
1138 (tp
->mac_version
!= RTL_GIGA_MAC_VER_09
) &&
1139 (tp
->mac_version
!= RTL_GIGA_MAC_VER_10
) &&
1140 (tp
->mac_version
!= RTL_GIGA_MAC_VER_13
) &&
1141 (tp
->mac_version
!= RTL_GIGA_MAC_VER_14
) &&
1142 (tp
->mac_version
!= RTL_GIGA_MAC_VER_15
) &&
1143 (tp
->mac_version
!= RTL_GIGA_MAC_VER_16
)) {
1144 giga_ctrl
|= ADVERTISE_1000FULL
| ADVERTISE_1000HALF
;
1146 netif_info(tp
, link
, dev
,
1147 "PHY does not support 1000Mbps\n");
1150 bmcr
= BMCR_ANENABLE
| BMCR_ANRESTART
;
1152 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_11
) ||
1153 (tp
->mac_version
== RTL_GIGA_MAC_VER_12
) ||
1154 (tp
->mac_version
>= RTL_GIGA_MAC_VER_17
)) {
1157 * Vendor specific (0x1f) and reserved (0x0e) MII
1160 rtl_writephy(tp
, 0x1f, 0x0000);
1161 rtl_writephy(tp
, 0x0e, 0x0000);
1164 rtl_writephy(tp
, MII_ADVERTISE
, auto_nego
);
1165 rtl_writephy(tp
, MII_CTRL1000
, giga_ctrl
);
1169 if (speed
== SPEED_10
)
1171 else if (speed
== SPEED_100
)
1172 bmcr
= BMCR_SPEED100
;
1176 if (duplex
== DUPLEX_FULL
)
1177 bmcr
|= BMCR_FULLDPLX
;
1179 rtl_writephy(tp
, 0x1f, 0x0000);
1182 tp
->phy_1000_ctrl_reg
= giga_ctrl
;
1184 rtl_writephy(tp
, MII_BMCR
, bmcr
);
1186 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_02
) ||
1187 (tp
->mac_version
== RTL_GIGA_MAC_VER_03
)) {
1188 if ((speed
== SPEED_100
) && (autoneg
!= AUTONEG_ENABLE
)) {
1189 rtl_writephy(tp
, 0x17, 0x2138);
1190 rtl_writephy(tp
, 0x0e, 0x0260);
1192 rtl_writephy(tp
, 0x17, 0x2108);
1193 rtl_writephy(tp
, 0x0e, 0x0000);
1200 static int rtl8169_set_speed(struct net_device
*dev
,
1201 u8 autoneg
, u16 speed
, u8 duplex
)
1203 struct rtl8169_private
*tp
= netdev_priv(dev
);
1206 ret
= tp
->set_speed(dev
, autoneg
, speed
, duplex
);
1208 if (netif_running(dev
) && (tp
->phy_1000_ctrl_reg
& ADVERTISE_1000FULL
))
1209 mod_timer(&tp
->timer
, jiffies
+ RTL8169_PHY_TIMEOUT
);
1214 static int rtl8169_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1216 struct rtl8169_private
*tp
= netdev_priv(dev
);
1217 unsigned long flags
;
1220 spin_lock_irqsave(&tp
->lock
, flags
);
1221 ret
= rtl8169_set_speed(dev
, cmd
->autoneg
, cmd
->speed
, cmd
->duplex
);
1222 spin_unlock_irqrestore(&tp
->lock
, flags
);
1227 static u32
rtl8169_get_rx_csum(struct net_device
*dev
)
1229 struct rtl8169_private
*tp
= netdev_priv(dev
);
1231 return tp
->cp_cmd
& RxChkSum
;
1234 static int rtl8169_set_rx_csum(struct net_device
*dev
, u32 data
)
1236 struct rtl8169_private
*tp
= netdev_priv(dev
);
1237 void __iomem
*ioaddr
= tp
->mmio_addr
;
1238 unsigned long flags
;
1240 spin_lock_irqsave(&tp
->lock
, flags
);
1243 tp
->cp_cmd
|= RxChkSum
;
1245 tp
->cp_cmd
&= ~RxChkSum
;
1247 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
1250 spin_unlock_irqrestore(&tp
->lock
, flags
);
1255 #ifdef CONFIG_R8169_VLAN
1257 static inline u32
rtl8169_tx_vlan_tag(struct rtl8169_private
*tp
,
1258 struct sk_buff
*skb
)
1260 return (vlan_tx_tag_present(skb
)) ?
1261 TxVlanTag
| swab16(vlan_tx_tag_get(skb
)) : 0x00;
1264 static void rtl8169_vlan_rx_register(struct net_device
*dev
,
1265 struct vlan_group
*grp
)
1267 struct rtl8169_private
*tp
= netdev_priv(dev
);
1268 void __iomem
*ioaddr
= tp
->mmio_addr
;
1269 unsigned long flags
;
1271 spin_lock_irqsave(&tp
->lock
, flags
);
1274 * Do not disable RxVlan on 8110SCd.
1276 if (tp
->vlgrp
|| (tp
->mac_version
== RTL_GIGA_MAC_VER_05
))
1277 tp
->cp_cmd
|= RxVlan
;
1279 tp
->cp_cmd
&= ~RxVlan
;
1280 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
1282 spin_unlock_irqrestore(&tp
->lock
, flags
);
1285 static int rtl8169_rx_vlan_skb(struct rtl8169_private
*tp
, struct RxDesc
*desc
,
1286 struct sk_buff
*skb
, int polling
)
1288 u32 opts2
= le32_to_cpu(desc
->opts2
);
1289 struct vlan_group
*vlgrp
= tp
->vlgrp
;
1292 if (vlgrp
&& (opts2
& RxVlanTag
)) {
1293 u16 vtag
= swab16(opts2
& 0xffff);
1295 if (likely(polling
))
1296 vlan_gro_receive(&tp
->napi
, vlgrp
, vtag
, skb
);
1298 __vlan_hwaccel_rx(skb
, vlgrp
, vtag
, polling
);
1306 #else /* !CONFIG_R8169_VLAN */
1308 static inline u32
rtl8169_tx_vlan_tag(struct rtl8169_private
*tp
,
1309 struct sk_buff
*skb
)
1314 static int rtl8169_rx_vlan_skb(struct rtl8169_private
*tp
, struct RxDesc
*desc
,
1315 struct sk_buff
*skb
, int polling
)
1322 static int rtl8169_gset_tbi(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1324 struct rtl8169_private
*tp
= netdev_priv(dev
);
1325 void __iomem
*ioaddr
= tp
->mmio_addr
;
1329 SUPPORTED_1000baseT_Full
| SUPPORTED_Autoneg
| SUPPORTED_FIBRE
;
1330 cmd
->port
= PORT_FIBRE
;
1331 cmd
->transceiver
= XCVR_INTERNAL
;
1333 status
= RTL_R32(TBICSR
);
1334 cmd
->advertising
= (status
& TBINwEnable
) ? ADVERTISED_Autoneg
: 0;
1335 cmd
->autoneg
= !!(status
& TBINwEnable
);
1337 cmd
->speed
= SPEED_1000
;
1338 cmd
->duplex
= DUPLEX_FULL
; /* Always set */
1343 static int rtl8169_gset_xmii(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1345 struct rtl8169_private
*tp
= netdev_priv(dev
);
1347 return mii_ethtool_gset(&tp
->mii
, cmd
);
1350 static int rtl8169_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1352 struct rtl8169_private
*tp
= netdev_priv(dev
);
1353 unsigned long flags
;
1356 spin_lock_irqsave(&tp
->lock
, flags
);
1358 rc
= tp
->get_settings(dev
, cmd
);
1360 spin_unlock_irqrestore(&tp
->lock
, flags
);
1364 static void rtl8169_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
,
1367 struct rtl8169_private
*tp
= netdev_priv(dev
);
1368 unsigned long flags
;
1370 if (regs
->len
> R8169_REGS_SIZE
)
1371 regs
->len
= R8169_REGS_SIZE
;
1373 spin_lock_irqsave(&tp
->lock
, flags
);
1374 memcpy_fromio(p
, tp
->mmio_addr
, regs
->len
);
1375 spin_unlock_irqrestore(&tp
->lock
, flags
);
1378 static u32
rtl8169_get_msglevel(struct net_device
*dev
)
1380 struct rtl8169_private
*tp
= netdev_priv(dev
);
1382 return tp
->msg_enable
;
1385 static void rtl8169_set_msglevel(struct net_device
*dev
, u32 value
)
1387 struct rtl8169_private
*tp
= netdev_priv(dev
);
1389 tp
->msg_enable
= value
;
1392 static const char rtl8169_gstrings
[][ETH_GSTRING_LEN
] = {
1399 "tx_single_collisions",
1400 "tx_multi_collisions",
1408 static int rtl8169_get_sset_count(struct net_device
*dev
, int sset
)
1412 return ARRAY_SIZE(rtl8169_gstrings
);
1418 static void rtl8169_update_counters(struct net_device
*dev
)
1420 struct rtl8169_private
*tp
= netdev_priv(dev
);
1421 void __iomem
*ioaddr
= tp
->mmio_addr
;
1422 struct rtl8169_counters
*counters
;
1426 struct device
*d
= &tp
->pci_dev
->dev
;
1429 * Some chips are unable to dump tally counters when the receiver
1432 if ((RTL_R8(ChipCmd
) & CmdRxEnb
) == 0)
1435 counters
= dma_alloc_coherent(d
, sizeof(*counters
), &paddr
, GFP_KERNEL
);
1439 RTL_W32(CounterAddrHigh
, (u64
)paddr
>> 32);
1440 cmd
= (u64
)paddr
& DMA_BIT_MASK(32);
1441 RTL_W32(CounterAddrLow
, cmd
);
1442 RTL_W32(CounterAddrLow
, cmd
| CounterDump
);
1445 if ((RTL_R32(CounterAddrLow
) & CounterDump
) == 0) {
1446 /* copy updated counters */
1447 memcpy(&tp
->counters
, counters
, sizeof(*counters
));
1453 RTL_W32(CounterAddrLow
, 0);
1454 RTL_W32(CounterAddrHigh
, 0);
1456 dma_free_coherent(d
, sizeof(*counters
), counters
, paddr
);
1459 static void rtl8169_get_ethtool_stats(struct net_device
*dev
,
1460 struct ethtool_stats
*stats
, u64
*data
)
1462 struct rtl8169_private
*tp
= netdev_priv(dev
);
1466 rtl8169_update_counters(dev
);
1468 data
[0] = le64_to_cpu(tp
->counters
.tx_packets
);
1469 data
[1] = le64_to_cpu(tp
->counters
.rx_packets
);
1470 data
[2] = le64_to_cpu(tp
->counters
.tx_errors
);
1471 data
[3] = le32_to_cpu(tp
->counters
.rx_errors
);
1472 data
[4] = le16_to_cpu(tp
->counters
.rx_missed
);
1473 data
[5] = le16_to_cpu(tp
->counters
.align_errors
);
1474 data
[6] = le32_to_cpu(tp
->counters
.tx_one_collision
);
1475 data
[7] = le32_to_cpu(tp
->counters
.tx_multi_collision
);
1476 data
[8] = le64_to_cpu(tp
->counters
.rx_unicast
);
1477 data
[9] = le64_to_cpu(tp
->counters
.rx_broadcast
);
1478 data
[10] = le32_to_cpu(tp
->counters
.rx_multicast
);
1479 data
[11] = le16_to_cpu(tp
->counters
.tx_aborted
);
1480 data
[12] = le16_to_cpu(tp
->counters
.tx_underun
);
1483 static void rtl8169_get_strings(struct net_device
*dev
, u32 stringset
, u8
*data
)
1487 memcpy(data
, *rtl8169_gstrings
, sizeof(rtl8169_gstrings
));
1492 static const struct ethtool_ops rtl8169_ethtool_ops
= {
1493 .get_drvinfo
= rtl8169_get_drvinfo
,
1494 .get_regs_len
= rtl8169_get_regs_len
,
1495 .get_link
= ethtool_op_get_link
,
1496 .get_settings
= rtl8169_get_settings
,
1497 .set_settings
= rtl8169_set_settings
,
1498 .get_msglevel
= rtl8169_get_msglevel
,
1499 .set_msglevel
= rtl8169_set_msglevel
,
1500 .get_rx_csum
= rtl8169_get_rx_csum
,
1501 .set_rx_csum
= rtl8169_set_rx_csum
,
1502 .set_tx_csum
= ethtool_op_set_tx_csum
,
1503 .set_sg
= ethtool_op_set_sg
,
1504 .set_tso
= ethtool_op_set_tso
,
1505 .get_regs
= rtl8169_get_regs
,
1506 .get_wol
= rtl8169_get_wol
,
1507 .set_wol
= rtl8169_set_wol
,
1508 .get_strings
= rtl8169_get_strings
,
1509 .get_sset_count
= rtl8169_get_sset_count
,
1510 .get_ethtool_stats
= rtl8169_get_ethtool_stats
,
1513 static void rtl8169_get_mac_version(struct rtl8169_private
*tp
,
1514 void __iomem
*ioaddr
)
1517 * The driver currently handles the 8168Bf and the 8168Be identically
1518 * but they can be identified more specifically through the test below
1521 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
1523 * Same thing for the 8101Eb and the 8101Ec:
1525 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
1527 static const struct {
1533 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26
},
1534 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25
},
1535 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26
},
1537 /* 8168DP family. */
1538 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27
},
1539 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28
},
1542 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24
},
1543 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23
},
1544 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18
},
1545 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24
},
1546 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19
},
1547 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20
},
1548 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21
},
1549 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22
},
1550 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22
},
1553 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12
},
1554 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17
},
1555 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17
},
1556 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11
},
1559 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09
},
1560 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09
},
1561 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08
},
1562 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08
},
1563 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07
},
1564 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07
},
1565 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13
},
1566 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10
},
1567 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16
},
1568 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09
},
1569 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09
},
1570 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16
},
1571 /* FIXME: where did these entries come from ? -- FR */
1572 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15
},
1573 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14
},
1576 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06
},
1577 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05
},
1578 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04
},
1579 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03
},
1580 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02
},
1581 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01
},
1584 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE
}
1588 reg
= RTL_R32(TxConfig
);
1589 while ((reg
& p
->mask
) != p
->val
)
1591 tp
->mac_version
= p
->mac_version
;
1594 static void rtl8169_print_mac_version(struct rtl8169_private
*tp
)
1596 dprintk("mac_version = 0x%02x\n", tp
->mac_version
);
1604 static void rtl_writephy_batch(struct rtl8169_private
*tp
,
1605 const struct phy_reg
*regs
, int len
)
1608 rtl_writephy(tp
, regs
->reg
, regs
->val
);
1613 #define PHY_READ 0x00000000
1614 #define PHY_DATA_OR 0x10000000
1615 #define PHY_DATA_AND 0x20000000
1616 #define PHY_BJMPN 0x30000000
1617 #define PHY_READ_EFUSE 0x40000000
1618 #define PHY_READ_MAC_BYTE 0x50000000
1619 #define PHY_WRITE_MAC_BYTE 0x60000000
1620 #define PHY_CLEAR_READCOUNT 0x70000000
1621 #define PHY_WRITE 0x80000000
1622 #define PHY_READCOUNT_EQ_SKIP 0x90000000
1623 #define PHY_COMP_EQ_SKIPN 0xa0000000
1624 #define PHY_COMP_NEQ_SKIPN 0xb0000000
1625 #define PHY_WRITE_PREVIOUS 0xc0000000
1626 #define PHY_SKIPN 0xd0000000
1627 #define PHY_DELAY_MS 0xe0000000
1628 #define PHY_WRITE_ERI_WORD 0xf0000000
1631 rtl_phy_write_fw(struct rtl8169_private
*tp
, const struct firmware
*fw
)
1633 __le32
*phytable
= (__le32
*)fw
->data
;
1634 struct net_device
*dev
= tp
->dev
;
1635 size_t index
, fw_size
= fw
->size
/ sizeof(*phytable
);
1638 if (fw
->size
% sizeof(*phytable
)) {
1639 netif_err(tp
, probe
, dev
, "odd sized firmware %zd\n", fw
->size
);
1643 for (index
= 0; index
< fw_size
; index
++) {
1644 u32 action
= le32_to_cpu(phytable
[index
]);
1645 u32 regno
= (action
& 0x0fff0000) >> 16;
1647 switch(action
& 0xf0000000) {
1651 case PHY_READ_EFUSE
:
1652 case PHY_CLEAR_READCOUNT
:
1654 case PHY_WRITE_PREVIOUS
:
1659 if (regno
> index
) {
1660 netif_err(tp
, probe
, tp
->dev
,
1661 "Out of range of firmware\n");
1665 case PHY_READCOUNT_EQ_SKIP
:
1666 if (index
+ 2 >= fw_size
) {
1667 netif_err(tp
, probe
, tp
->dev
,
1668 "Out of range of firmware\n");
1672 case PHY_COMP_EQ_SKIPN
:
1673 case PHY_COMP_NEQ_SKIPN
:
1675 if (index
+ 1 + regno
>= fw_size
) {
1676 netif_err(tp
, probe
, tp
->dev
,
1677 "Out of range of firmware\n");
1682 case PHY_READ_MAC_BYTE
:
1683 case PHY_WRITE_MAC_BYTE
:
1684 case PHY_WRITE_ERI_WORD
:
1686 netif_err(tp
, probe
, tp
->dev
,
1687 "Invalid action 0x%08x\n", action
);
1695 for (index
= 0; index
< fw_size
; ) {
1696 u32 action
= le32_to_cpu(phytable
[index
]);
1697 u32 data
= action
& 0x0000ffff;
1698 u32 regno
= (action
& 0x0fff0000) >> 16;
1703 switch(action
& 0xf0000000) {
1705 predata
= rtl_readphy(tp
, regno
);
1720 case PHY_READ_EFUSE
:
1721 predata
= rtl8168d_efuse_read(tp
->mmio_addr
, regno
);
1724 case PHY_CLEAR_READCOUNT
:
1729 rtl_writephy(tp
, regno
, data
);
1732 case PHY_READCOUNT_EQ_SKIP
:
1738 case PHY_COMP_EQ_SKIPN
:
1739 if (predata
== data
)
1743 case PHY_COMP_NEQ_SKIPN
:
1744 if (predata
!= data
)
1748 case PHY_WRITE_PREVIOUS
:
1749 rtl_writephy(tp
, regno
, predata
);
1760 case PHY_READ_MAC_BYTE
:
1761 case PHY_WRITE_MAC_BYTE
:
1762 case PHY_WRITE_ERI_WORD
:
1769 static void rtl8169s_hw_phy_config(struct rtl8169_private
*tp
)
1771 static const struct phy_reg phy_reg_init
[] = {
1833 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1836 static void rtl8169sb_hw_phy_config(struct rtl8169_private
*tp
)
1838 static const struct phy_reg phy_reg_init
[] = {
1844 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1847 static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private
*tp
)
1849 struct pci_dev
*pdev
= tp
->pci_dev
;
1850 u16 vendor_id
, device_id
;
1852 pci_read_config_word(pdev
, PCI_SUBSYSTEM_VENDOR_ID
, &vendor_id
);
1853 pci_read_config_word(pdev
, PCI_SUBSYSTEM_ID
, &device_id
);
1855 if ((vendor_id
!= PCI_VENDOR_ID_GIGABYTE
) || (device_id
!= 0xe000))
1858 rtl_writephy(tp
, 0x1f, 0x0001);
1859 rtl_writephy(tp
, 0x10, 0xf01b);
1860 rtl_writephy(tp
, 0x1f, 0x0000);
1863 static void rtl8169scd_hw_phy_config(struct rtl8169_private
*tp
)
1865 static const struct phy_reg phy_reg_init
[] = {
1905 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1907 rtl8169scd_hw_phy_config_quirk(tp
);
1910 static void rtl8169sce_hw_phy_config(struct rtl8169_private
*tp
)
1912 static const struct phy_reg phy_reg_init
[] = {
1960 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1963 static void rtl8168bb_hw_phy_config(struct rtl8169_private
*tp
)
1965 static const struct phy_reg phy_reg_init
[] = {
1970 rtl_writephy(tp
, 0x1f, 0x0001);
1971 rtl_patchphy(tp
, 0x16, 1 << 0);
1973 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1976 static void rtl8168bef_hw_phy_config(struct rtl8169_private
*tp
)
1978 static const struct phy_reg phy_reg_init
[] = {
1984 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1987 static void rtl8168cp_1_hw_phy_config(struct rtl8169_private
*tp
)
1989 static const struct phy_reg phy_reg_init
[] = {
1997 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2000 static void rtl8168cp_2_hw_phy_config(struct rtl8169_private
*tp
)
2002 static const struct phy_reg phy_reg_init
[] = {
2008 rtl_writephy(tp
, 0x1f, 0x0000);
2009 rtl_patchphy(tp
, 0x14, 1 << 5);
2010 rtl_patchphy(tp
, 0x0d, 1 << 5);
2012 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2015 static void rtl8168c_1_hw_phy_config(struct rtl8169_private
*tp
)
2017 static const struct phy_reg phy_reg_init
[] = {
2037 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2039 rtl_patchphy(tp
, 0x14, 1 << 5);
2040 rtl_patchphy(tp
, 0x0d, 1 << 5);
2041 rtl_writephy(tp
, 0x1f, 0x0000);
2044 static void rtl8168c_2_hw_phy_config(struct rtl8169_private
*tp
)
2046 static const struct phy_reg phy_reg_init
[] = {
2064 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2066 rtl_patchphy(tp
, 0x16, 1 << 0);
2067 rtl_patchphy(tp
, 0x14, 1 << 5);
2068 rtl_patchphy(tp
, 0x0d, 1 << 5);
2069 rtl_writephy(tp
, 0x1f, 0x0000);
2072 static void rtl8168c_3_hw_phy_config(struct rtl8169_private
*tp
)
2074 static const struct phy_reg phy_reg_init
[] = {
2086 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2088 rtl_patchphy(tp
, 0x16, 1 << 0);
2089 rtl_patchphy(tp
, 0x14, 1 << 5);
2090 rtl_patchphy(tp
, 0x0d, 1 << 5);
2091 rtl_writephy(tp
, 0x1f, 0x0000);
2094 static void rtl8168c_4_hw_phy_config(struct rtl8169_private
*tp
)
2096 rtl8168c_3_hw_phy_config(tp
);
2099 static void rtl8168d_1_hw_phy_config(struct rtl8169_private
*tp
)
2101 static const struct phy_reg phy_reg_init_0
[] = {
2102 /* Channel Estimation */
2123 * enhance line driver power
2132 * Can not link to 1Gbps with bad cable
2133 * Decrease SNR threshold form 21.07dB to 19.04dB
2141 void __iomem
*ioaddr
= tp
->mmio_addr
;
2142 const struct firmware
*fw
;
2144 rtl_writephy_batch(tp
, phy_reg_init_0
, ARRAY_SIZE(phy_reg_init_0
));
2148 * Fine Tune Switching regulator parameter
2150 rtl_writephy(tp
, 0x1f, 0x0002);
2151 rtl_w1w0_phy(tp
, 0x0b, 0x0010, 0x00ef);
2152 rtl_w1w0_phy(tp
, 0x0c, 0xa200, 0x5d00);
2154 if (rtl8168d_efuse_read(ioaddr
, 0x01) == 0xb1) {
2155 static const struct phy_reg phy_reg_init
[] = {
2165 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2167 val
= rtl_readphy(tp
, 0x0d);
2169 if ((val
& 0x00ff) != 0x006c) {
2170 static const u32 set
[] = {
2171 0x0065, 0x0066, 0x0067, 0x0068,
2172 0x0069, 0x006a, 0x006b, 0x006c
2176 rtl_writephy(tp
, 0x1f, 0x0002);
2179 for (i
= 0; i
< ARRAY_SIZE(set
); i
++)
2180 rtl_writephy(tp
, 0x0d, val
| set
[i
]);
2183 static const struct phy_reg phy_reg_init
[] = {
2191 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2194 /* RSET couple improve */
2195 rtl_writephy(tp
, 0x1f, 0x0002);
2196 rtl_patchphy(tp
, 0x0d, 0x0300);
2197 rtl_patchphy(tp
, 0x0f, 0x0010);
2199 /* Fine tune PLL performance */
2200 rtl_writephy(tp
, 0x1f, 0x0002);
2201 rtl_w1w0_phy(tp
, 0x02, 0x0100, 0x0600);
2202 rtl_w1w0_phy(tp
, 0x03, 0x0000, 0xe000);
2204 rtl_writephy(tp
, 0x1f, 0x0005);
2205 rtl_writephy(tp
, 0x05, 0x001b);
2206 if (rtl_readphy(tp
, 0x06) == 0xbf00 &&
2207 request_firmware(&fw
, FIRMWARE_8168D_1
, &tp
->pci_dev
->dev
) == 0) {
2208 rtl_phy_write_fw(tp
, fw
);
2209 release_firmware(fw
);
2211 netif_warn(tp
, probe
, tp
->dev
, "unable to apply firmware patch\n");
2214 rtl_writephy(tp
, 0x1f, 0x0000);
2217 static void rtl8168d_2_hw_phy_config(struct rtl8169_private
*tp
)
2219 static const struct phy_reg phy_reg_init_0
[] = {
2220 /* Channel Estimation */
2241 * enhance line driver power
2250 * Can not link to 1Gbps with bad cable
2251 * Decrease SNR threshold form 21.07dB to 19.04dB
2259 void __iomem
*ioaddr
= tp
->mmio_addr
;
2260 const struct firmware
*fw
;
2262 rtl_writephy_batch(tp
, phy_reg_init_0
, ARRAY_SIZE(phy_reg_init_0
));
2264 if (rtl8168d_efuse_read(ioaddr
, 0x01) == 0xb1) {
2265 static const struct phy_reg phy_reg_init
[] = {
2276 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2278 val
= rtl_readphy(tp
, 0x0d);
2279 if ((val
& 0x00ff) != 0x006c) {
2280 static const u32 set
[] = {
2281 0x0065, 0x0066, 0x0067, 0x0068,
2282 0x0069, 0x006a, 0x006b, 0x006c
2286 rtl_writephy(tp
, 0x1f, 0x0002);
2289 for (i
= 0; i
< ARRAY_SIZE(set
); i
++)
2290 rtl_writephy(tp
, 0x0d, val
| set
[i
]);
2293 static const struct phy_reg phy_reg_init
[] = {
2301 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2304 /* Fine tune PLL performance */
2305 rtl_writephy(tp
, 0x1f, 0x0002);
2306 rtl_w1w0_phy(tp
, 0x02, 0x0100, 0x0600);
2307 rtl_w1w0_phy(tp
, 0x03, 0x0000, 0xe000);
2309 /* Switching regulator Slew rate */
2310 rtl_writephy(tp
, 0x1f, 0x0002);
2311 rtl_patchphy(tp
, 0x0f, 0x0017);
2313 rtl_writephy(tp
, 0x1f, 0x0005);
2314 rtl_writephy(tp
, 0x05, 0x001b);
2315 if (rtl_readphy(tp
, 0x06) == 0xb300 &&
2316 request_firmware(&fw
, FIRMWARE_8168D_2
, &tp
->pci_dev
->dev
) == 0) {
2317 rtl_phy_write_fw(tp
, fw
);
2318 release_firmware(fw
);
2320 netif_warn(tp
, probe
, tp
->dev
, "unable to apply firmware patch\n");
2323 rtl_writephy(tp
, 0x1f, 0x0000);
2326 static void rtl8168d_3_hw_phy_config(struct rtl8169_private
*tp
)
2328 static const struct phy_reg phy_reg_init
[] = {
2384 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2387 static void rtl8168d_4_hw_phy_config(struct rtl8169_private
*tp
)
2389 static const struct phy_reg phy_reg_init
[] = {
2399 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2400 rtl_patchphy(tp
, 0x0d, 1 << 5);
2403 static void rtl8102e_hw_phy_config(struct rtl8169_private
*tp
)
2405 static const struct phy_reg phy_reg_init
[] = {
2412 rtl_writephy(tp
, 0x1f, 0x0000);
2413 rtl_patchphy(tp
, 0x11, 1 << 12);
2414 rtl_patchphy(tp
, 0x19, 1 << 13);
2415 rtl_patchphy(tp
, 0x10, 1 << 15);
2417 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2420 static void rtl_hw_phy_config(struct net_device
*dev
)
2422 struct rtl8169_private
*tp
= netdev_priv(dev
);
2424 rtl8169_print_mac_version(tp
);
2426 switch (tp
->mac_version
) {
2427 case RTL_GIGA_MAC_VER_01
:
2429 case RTL_GIGA_MAC_VER_02
:
2430 case RTL_GIGA_MAC_VER_03
:
2431 rtl8169s_hw_phy_config(tp
);
2433 case RTL_GIGA_MAC_VER_04
:
2434 rtl8169sb_hw_phy_config(tp
);
2436 case RTL_GIGA_MAC_VER_05
:
2437 rtl8169scd_hw_phy_config(tp
);
2439 case RTL_GIGA_MAC_VER_06
:
2440 rtl8169sce_hw_phy_config(tp
);
2442 case RTL_GIGA_MAC_VER_07
:
2443 case RTL_GIGA_MAC_VER_08
:
2444 case RTL_GIGA_MAC_VER_09
:
2445 rtl8102e_hw_phy_config(tp
);
2447 case RTL_GIGA_MAC_VER_11
:
2448 rtl8168bb_hw_phy_config(tp
);
2450 case RTL_GIGA_MAC_VER_12
:
2451 rtl8168bef_hw_phy_config(tp
);
2453 case RTL_GIGA_MAC_VER_17
:
2454 rtl8168bef_hw_phy_config(tp
);
2456 case RTL_GIGA_MAC_VER_18
:
2457 rtl8168cp_1_hw_phy_config(tp
);
2459 case RTL_GIGA_MAC_VER_19
:
2460 rtl8168c_1_hw_phy_config(tp
);
2462 case RTL_GIGA_MAC_VER_20
:
2463 rtl8168c_2_hw_phy_config(tp
);
2465 case RTL_GIGA_MAC_VER_21
:
2466 rtl8168c_3_hw_phy_config(tp
);
2468 case RTL_GIGA_MAC_VER_22
:
2469 rtl8168c_4_hw_phy_config(tp
);
2471 case RTL_GIGA_MAC_VER_23
:
2472 case RTL_GIGA_MAC_VER_24
:
2473 rtl8168cp_2_hw_phy_config(tp
);
2475 case RTL_GIGA_MAC_VER_25
:
2476 rtl8168d_1_hw_phy_config(tp
);
2478 case RTL_GIGA_MAC_VER_26
:
2479 rtl8168d_2_hw_phy_config(tp
);
2481 case RTL_GIGA_MAC_VER_27
:
2482 rtl8168d_3_hw_phy_config(tp
);
2484 case RTL_GIGA_MAC_VER_28
:
2485 rtl8168d_4_hw_phy_config(tp
);
2493 static void rtl8169_phy_timer(unsigned long __opaque
)
2495 struct net_device
*dev
= (struct net_device
*)__opaque
;
2496 struct rtl8169_private
*tp
= netdev_priv(dev
);
2497 struct timer_list
*timer
= &tp
->timer
;
2498 void __iomem
*ioaddr
= tp
->mmio_addr
;
2499 unsigned long timeout
= RTL8169_PHY_TIMEOUT
;
2501 assert(tp
->mac_version
> RTL_GIGA_MAC_VER_01
);
2503 if (!(tp
->phy_1000_ctrl_reg
& ADVERTISE_1000FULL
))
2506 spin_lock_irq(&tp
->lock
);
2508 if (tp
->phy_reset_pending(tp
)) {
2510 * A busy loop could burn quite a few cycles on nowadays CPU.
2511 * Let's delay the execution of the timer for a few ticks.
2517 if (tp
->link_ok(ioaddr
))
2520 netif_warn(tp
, link
, dev
, "PHY reset until link up\n");
2522 tp
->phy_reset_enable(tp
);
2525 mod_timer(timer
, jiffies
+ timeout
);
2527 spin_unlock_irq(&tp
->lock
);
2530 static inline void rtl8169_delete_timer(struct net_device
*dev
)
2532 struct rtl8169_private
*tp
= netdev_priv(dev
);
2533 struct timer_list
*timer
= &tp
->timer
;
2535 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_01
)
2538 del_timer_sync(timer
);
2541 static inline void rtl8169_request_timer(struct net_device
*dev
)
2543 struct rtl8169_private
*tp
= netdev_priv(dev
);
2544 struct timer_list
*timer
= &tp
->timer
;
2546 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_01
)
2549 mod_timer(timer
, jiffies
+ RTL8169_PHY_TIMEOUT
);
2552 #ifdef CONFIG_NET_POLL_CONTROLLER
2554 * Polling 'interrupt' - used by things like netconsole to send skbs
2555 * without having to re-enable interrupts. It's not called while
2556 * the interrupt routine is executing.
2558 static void rtl8169_netpoll(struct net_device
*dev
)
2560 struct rtl8169_private
*tp
= netdev_priv(dev
);
2561 struct pci_dev
*pdev
= tp
->pci_dev
;
2563 disable_irq(pdev
->irq
);
2564 rtl8169_interrupt(pdev
->irq
, dev
);
2565 enable_irq(pdev
->irq
);
2569 static void rtl8169_release_board(struct pci_dev
*pdev
, struct net_device
*dev
,
2570 void __iomem
*ioaddr
)
2573 pci_release_regions(pdev
);
2574 pci_clear_mwi(pdev
);
2575 pci_disable_device(pdev
);
2579 static void rtl8169_phy_reset(struct net_device
*dev
,
2580 struct rtl8169_private
*tp
)
2584 tp
->phy_reset_enable(tp
);
2585 for (i
= 0; i
< 100; i
++) {
2586 if (!tp
->phy_reset_pending(tp
))
2590 netif_err(tp
, link
, dev
, "PHY reset failed\n");
2593 static void rtl8169_init_phy(struct net_device
*dev
, struct rtl8169_private
*tp
)
2595 void __iomem
*ioaddr
= tp
->mmio_addr
;
2597 rtl_hw_phy_config(dev
);
2599 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_06
) {
2600 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2604 pci_write_config_byte(tp
->pci_dev
, PCI_LATENCY_TIMER
, 0x40);
2606 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_06
)
2607 pci_write_config_byte(tp
->pci_dev
, PCI_CACHE_LINE_SIZE
, 0x08);
2609 if (tp
->mac_version
== RTL_GIGA_MAC_VER_02
) {
2610 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2612 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
2613 rtl_writephy(tp
, 0x0b, 0x0000); //w 0x0b 15 0 0
2616 rtl8169_phy_reset(dev
, tp
);
2619 * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
2620 * only 8101. Don't panic.
2622 rtl8169_set_speed(dev
, AUTONEG_ENABLE
, SPEED_1000
, DUPLEX_FULL
);
2624 if (RTL_R8(PHYstatus
) & TBI_Enable
)
2625 netif_info(tp
, link
, dev
, "TBI auto-negotiating\n");
2628 static void rtl_rar_set(struct rtl8169_private
*tp
, u8
*addr
)
2630 void __iomem
*ioaddr
= tp
->mmio_addr
;
2634 low
= addr
[0] | (addr
[1] << 8) | (addr
[2] << 16) | (addr
[3] << 24);
2635 high
= addr
[4] | (addr
[5] << 8);
2637 spin_lock_irq(&tp
->lock
);
2639 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
2641 RTL_W32(MAC4
, high
);
2647 RTL_W8(Cfg9346
, Cfg9346_Lock
);
2649 spin_unlock_irq(&tp
->lock
);
2652 static int rtl_set_mac_address(struct net_device
*dev
, void *p
)
2654 struct rtl8169_private
*tp
= netdev_priv(dev
);
2655 struct sockaddr
*addr
= p
;
2657 if (!is_valid_ether_addr(addr
->sa_data
))
2658 return -EADDRNOTAVAIL
;
2660 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
2662 rtl_rar_set(tp
, dev
->dev_addr
);
2667 static int rtl8169_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
2669 struct rtl8169_private
*tp
= netdev_priv(dev
);
2670 struct mii_ioctl_data
*data
= if_mii(ifr
);
2672 return netif_running(dev
) ? tp
->do_ioctl(tp
, data
, cmd
) : -ENODEV
;
2675 static int rtl_xmii_ioctl(struct rtl8169_private
*tp
, struct mii_ioctl_data
*data
, int cmd
)
2679 data
->phy_id
= 32; /* Internal PHY */
2683 data
->val_out
= rtl_readphy(tp
, data
->reg_num
& 0x1f);
2687 rtl_writephy(tp
, data
->reg_num
& 0x1f, data
->val_in
);
2693 static int rtl_tbi_ioctl(struct rtl8169_private
*tp
, struct mii_ioctl_data
*data
, int cmd
)
2698 static const struct rtl_cfg_info
{
2699 void (*hw_start
)(struct net_device
*);
2700 unsigned int region
;
2706 } rtl_cfg_infos
[] = {
2708 .hw_start
= rtl_hw_start_8169
,
2711 .intr_event
= SYSErr
| LinkChg
| RxOverflow
|
2712 RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxErr
,
2713 .napi_event
= RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxOverflow
,
2714 .features
= RTL_FEATURE_GMII
,
2715 .default_ver
= RTL_GIGA_MAC_VER_01
,
2718 .hw_start
= rtl_hw_start_8168
,
2721 .intr_event
= SYSErr
| LinkChg
| RxOverflow
|
2722 TxErr
| TxOK
| RxOK
| RxErr
,
2723 .napi_event
= TxErr
| TxOK
| RxOK
| RxOverflow
,
2724 .features
= RTL_FEATURE_GMII
| RTL_FEATURE_MSI
,
2725 .default_ver
= RTL_GIGA_MAC_VER_11
,
2728 .hw_start
= rtl_hw_start_8101
,
2731 .intr_event
= SYSErr
| LinkChg
| RxOverflow
| PCSTimeout
|
2732 RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxErr
,
2733 .napi_event
= RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxOverflow
,
2734 .features
= RTL_FEATURE_MSI
,
2735 .default_ver
= RTL_GIGA_MAC_VER_13
,
2739 /* Cfg9346_Unlock assumed. */
2740 static unsigned rtl_try_msi(struct pci_dev
*pdev
, void __iomem
*ioaddr
,
2741 const struct rtl_cfg_info
*cfg
)
2746 cfg2
= RTL_R8(Config2
) & ~MSIEnable
;
2747 if (cfg
->features
& RTL_FEATURE_MSI
) {
2748 if (pci_enable_msi(pdev
)) {
2749 dev_info(&pdev
->dev
, "no MSI. Back to INTx.\n");
2752 msi
= RTL_FEATURE_MSI
;
2755 RTL_W8(Config2
, cfg2
);
2759 static void rtl_disable_msi(struct pci_dev
*pdev
, struct rtl8169_private
*tp
)
2761 if (tp
->features
& RTL_FEATURE_MSI
) {
2762 pci_disable_msi(pdev
);
2763 tp
->features
&= ~RTL_FEATURE_MSI
;
2767 static const struct net_device_ops rtl8169_netdev_ops
= {
2768 .ndo_open
= rtl8169_open
,
2769 .ndo_stop
= rtl8169_close
,
2770 .ndo_get_stats
= rtl8169_get_stats
,
2771 .ndo_start_xmit
= rtl8169_start_xmit
,
2772 .ndo_tx_timeout
= rtl8169_tx_timeout
,
2773 .ndo_validate_addr
= eth_validate_addr
,
2774 .ndo_change_mtu
= rtl8169_change_mtu
,
2775 .ndo_set_mac_address
= rtl_set_mac_address
,
2776 .ndo_do_ioctl
= rtl8169_ioctl
,
2777 .ndo_set_multicast_list
= rtl_set_rx_mode
,
2778 #ifdef CONFIG_R8169_VLAN
2779 .ndo_vlan_rx_register
= rtl8169_vlan_rx_register
,
2781 #ifdef CONFIG_NET_POLL_CONTROLLER
2782 .ndo_poll_controller
= rtl8169_netpoll
,
2787 static void __devinit
rtl_init_mdio_ops(struct rtl8169_private
*tp
)
2789 struct mdio_ops
*ops
= &tp
->mdio_ops
;
2791 switch (tp
->mac_version
) {
2792 case RTL_GIGA_MAC_VER_27
:
2793 ops
->write
= r8168dp_1_mdio_write
;
2794 ops
->read
= r8168dp_1_mdio_read
;
2796 case RTL_GIGA_MAC_VER_28
:
2797 ops
->write
= r8168dp_2_mdio_write
;
2798 ops
->read
= r8168dp_2_mdio_read
;
2801 ops
->write
= r8169_mdio_write
;
2802 ops
->read
= r8169_mdio_read
;
2807 static void r810x_phy_power_down(struct rtl8169_private
*tp
)
2809 rtl_writephy(tp
, 0x1f, 0x0000);
2810 rtl_writephy(tp
, MII_BMCR
, BMCR_PDOWN
);
2813 static void r810x_phy_power_up(struct rtl8169_private
*tp
)
2815 rtl_writephy(tp
, 0x1f, 0x0000);
2816 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
);
2819 static void r810x_pll_power_down(struct rtl8169_private
*tp
)
2821 if (__rtl8169_get_wol(tp
) & WAKE_ANY
) {
2822 rtl_writephy(tp
, 0x1f, 0x0000);
2823 rtl_writephy(tp
, MII_BMCR
, 0x0000);
2827 r810x_phy_power_down(tp
);
2830 static void r810x_pll_power_up(struct rtl8169_private
*tp
)
2832 r810x_phy_power_up(tp
);
2835 static void r8168_phy_power_up(struct rtl8169_private
*tp
)
2837 rtl_writephy(tp
, 0x1f, 0x0000);
2838 rtl_writephy(tp
, 0x0e, 0x0000);
2839 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
);
2842 static void r8168_phy_power_down(struct rtl8169_private
*tp
)
2844 rtl_writephy(tp
, 0x1f, 0x0000);
2845 rtl_writephy(tp
, 0x0e, 0x0200);
2846 rtl_writephy(tp
, MII_BMCR
, BMCR_PDOWN
);
2849 static void r8168_pll_power_down(struct rtl8169_private
*tp
)
2851 void __iomem
*ioaddr
= tp
->mmio_addr
;
2853 if (tp
->mac_version
== RTL_GIGA_MAC_VER_27
)
2856 if (((tp
->mac_version
== RTL_GIGA_MAC_VER_23
) ||
2857 (tp
->mac_version
== RTL_GIGA_MAC_VER_24
)) &&
2858 (RTL_R16(CPlusCmd
) & ASF
)) {
2862 if (__rtl8169_get_wol(tp
) & WAKE_ANY
) {
2863 rtl_writephy(tp
, 0x1f, 0x0000);
2864 rtl_writephy(tp
, MII_BMCR
, 0x0000);
2866 RTL_W32(RxConfig
, RTL_R32(RxConfig
) |
2867 AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
);
2871 r8168_phy_power_down(tp
);
2873 switch (tp
->mac_version
) {
2874 case RTL_GIGA_MAC_VER_25
:
2875 case RTL_GIGA_MAC_VER_26
:
2876 RTL_W8(PMCH
, RTL_R8(PMCH
) & ~0x80);
2881 static void r8168_pll_power_up(struct rtl8169_private
*tp
)
2883 void __iomem
*ioaddr
= tp
->mmio_addr
;
2885 if (tp
->mac_version
== RTL_GIGA_MAC_VER_27
)
2888 switch (tp
->mac_version
) {
2889 case RTL_GIGA_MAC_VER_25
:
2890 case RTL_GIGA_MAC_VER_26
:
2891 RTL_W8(PMCH
, RTL_R8(PMCH
) | 0x80);
2895 r8168_phy_power_up(tp
);
2898 static void rtl_pll_power_op(struct rtl8169_private
*tp
,
2899 void (*op
)(struct rtl8169_private
*))
2905 static void rtl_pll_power_down(struct rtl8169_private
*tp
)
2907 rtl_pll_power_op(tp
, tp
->pll_power_ops
.down
);
2910 static void rtl_pll_power_up(struct rtl8169_private
*tp
)
2912 rtl_pll_power_op(tp
, tp
->pll_power_ops
.up
);
2915 static void __devinit
rtl_init_pll_power_ops(struct rtl8169_private
*tp
)
2917 struct pll_power_ops
*ops
= &tp
->pll_power_ops
;
2919 switch (tp
->mac_version
) {
2920 case RTL_GIGA_MAC_VER_07
:
2921 case RTL_GIGA_MAC_VER_08
:
2922 case RTL_GIGA_MAC_VER_09
:
2923 case RTL_GIGA_MAC_VER_10
:
2924 case RTL_GIGA_MAC_VER_16
:
2925 ops
->down
= r810x_pll_power_down
;
2926 ops
->up
= r810x_pll_power_up
;
2929 case RTL_GIGA_MAC_VER_11
:
2930 case RTL_GIGA_MAC_VER_12
:
2931 case RTL_GIGA_MAC_VER_17
:
2932 case RTL_GIGA_MAC_VER_18
:
2933 case RTL_GIGA_MAC_VER_19
:
2934 case RTL_GIGA_MAC_VER_20
:
2935 case RTL_GIGA_MAC_VER_21
:
2936 case RTL_GIGA_MAC_VER_22
:
2937 case RTL_GIGA_MAC_VER_23
:
2938 case RTL_GIGA_MAC_VER_24
:
2939 case RTL_GIGA_MAC_VER_25
:
2940 case RTL_GIGA_MAC_VER_26
:
2941 case RTL_GIGA_MAC_VER_27
:
2942 case RTL_GIGA_MAC_VER_28
:
2943 ops
->down
= r8168_pll_power_down
;
2944 ops
->up
= r8168_pll_power_up
;
2954 static int __devinit
2955 rtl8169_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
2957 const struct rtl_cfg_info
*cfg
= rtl_cfg_infos
+ ent
->driver_data
;
2958 const unsigned int region
= cfg
->region
;
2959 struct rtl8169_private
*tp
;
2960 struct mii_if_info
*mii
;
2961 struct net_device
*dev
;
2962 void __iomem
*ioaddr
;
2966 if (netif_msg_drv(&debug
)) {
2967 printk(KERN_INFO
"%s Gigabit Ethernet driver %s loaded\n",
2968 MODULENAME
, RTL8169_VERSION
);
2971 dev
= alloc_etherdev(sizeof (*tp
));
2973 if (netif_msg_drv(&debug
))
2974 dev_err(&pdev
->dev
, "unable to alloc new ethernet\n");
2979 SET_NETDEV_DEV(dev
, &pdev
->dev
);
2980 dev
->netdev_ops
= &rtl8169_netdev_ops
;
2981 tp
= netdev_priv(dev
);
2984 tp
->msg_enable
= netif_msg_init(debug
.msg_enable
, R8169_MSG_DEFAULT
);
2988 mii
->mdio_read
= rtl_mdio_read
;
2989 mii
->mdio_write
= rtl_mdio_write
;
2990 mii
->phy_id_mask
= 0x1f;
2991 mii
->reg_num_mask
= 0x1f;
2992 mii
->supports_gmii
= !!(cfg
->features
& RTL_FEATURE_GMII
);
2994 /* enable device (incl. PCI PM wakeup and hotplug setup) */
2995 rc
= pci_enable_device(pdev
);
2997 netif_err(tp
, probe
, dev
, "enable failure\n");
2998 goto err_out_free_dev_1
;
3001 if (pci_set_mwi(pdev
) < 0)
3002 netif_info(tp
, probe
, dev
, "Mem-Wr-Inval unavailable\n");
3004 /* make sure PCI base addr 1 is MMIO */
3005 if (!(pci_resource_flags(pdev
, region
) & IORESOURCE_MEM
)) {
3006 netif_err(tp
, probe
, dev
,
3007 "region #%d not an MMIO resource, aborting\n",
3013 /* check for weird/broken PCI region reporting */
3014 if (pci_resource_len(pdev
, region
) < R8169_REGS_SIZE
) {
3015 netif_err(tp
, probe
, dev
,
3016 "Invalid PCI region size(s), aborting\n");
3021 rc
= pci_request_regions(pdev
, MODULENAME
);
3023 netif_err(tp
, probe
, dev
, "could not request regions\n");
3027 tp
->cp_cmd
= PCIMulRW
| RxChkSum
;
3029 if ((sizeof(dma_addr_t
) > 4) &&
3030 !pci_set_dma_mask(pdev
, DMA_BIT_MASK(64)) && use_dac
) {
3031 tp
->cp_cmd
|= PCIDAC
;
3032 dev
->features
|= NETIF_F_HIGHDMA
;
3034 rc
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
3036 netif_err(tp
, probe
, dev
, "DMA configuration failed\n");
3037 goto err_out_free_res_3
;
3041 /* ioremap MMIO region */
3042 ioaddr
= ioremap(pci_resource_start(pdev
, region
), R8169_REGS_SIZE
);
3044 netif_err(tp
, probe
, dev
, "cannot remap MMIO, aborting\n");
3046 goto err_out_free_res_3
;
3049 tp
->pcie_cap
= pci_find_capability(pdev
, PCI_CAP_ID_EXP
);
3051 netif_info(tp
, probe
, dev
, "no PCI Express capability\n");
3053 RTL_W16(IntrMask
, 0x0000);
3055 /* Soft reset the chip. */
3056 RTL_W8(ChipCmd
, CmdReset
);
3058 /* Check that the chip has finished the reset. */
3059 for (i
= 0; i
< 100; i
++) {
3060 if ((RTL_R8(ChipCmd
) & CmdReset
) == 0)
3062 msleep_interruptible(1);
3065 RTL_W16(IntrStatus
, 0xffff);
3067 pci_set_master(pdev
);
3069 /* Identify chip attached to board */
3070 rtl8169_get_mac_version(tp
, ioaddr
);
3072 rtl_init_mdio_ops(tp
);
3073 rtl_init_pll_power_ops(tp
);
3075 /* Use appropriate default if unknown */
3076 if (tp
->mac_version
== RTL_GIGA_MAC_NONE
) {
3077 netif_notice(tp
, probe
, dev
,
3078 "unknown MAC, using family default\n");
3079 tp
->mac_version
= cfg
->default_ver
;
3082 rtl8169_print_mac_version(tp
);
3084 for (i
= 0; i
< ARRAY_SIZE(rtl_chip_info
); i
++) {
3085 if (tp
->mac_version
== rtl_chip_info
[i
].mac_version
)
3088 if (i
== ARRAY_SIZE(rtl_chip_info
)) {
3090 "driver bug, MAC version not found in rtl_chip_info\n");
3095 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
3096 RTL_W8(Config1
, RTL_R8(Config1
) | PMEnable
);
3097 RTL_W8(Config5
, RTL_R8(Config5
) & PMEStatus
);
3098 if ((RTL_R8(Config3
) & (LinkUp
| MagicPacket
)) != 0)
3099 tp
->features
|= RTL_FEATURE_WOL
;
3100 if ((RTL_R8(Config5
) & (UWF
| BWF
| MWF
)) != 0)
3101 tp
->features
|= RTL_FEATURE_WOL
;
3102 tp
->features
|= rtl_try_msi(pdev
, ioaddr
, cfg
);
3103 RTL_W8(Cfg9346
, Cfg9346_Lock
);
3105 if ((tp
->mac_version
<= RTL_GIGA_MAC_VER_06
) &&
3106 (RTL_R8(PHYstatus
) & TBI_Enable
)) {
3107 tp
->set_speed
= rtl8169_set_speed_tbi
;
3108 tp
->get_settings
= rtl8169_gset_tbi
;
3109 tp
->phy_reset_enable
= rtl8169_tbi_reset_enable
;
3110 tp
->phy_reset_pending
= rtl8169_tbi_reset_pending
;
3111 tp
->link_ok
= rtl8169_tbi_link_ok
;
3112 tp
->do_ioctl
= rtl_tbi_ioctl
;
3114 tp
->phy_1000_ctrl_reg
= ADVERTISE_1000FULL
; /* Implied by TBI */
3116 tp
->set_speed
= rtl8169_set_speed_xmii
;
3117 tp
->get_settings
= rtl8169_gset_xmii
;
3118 tp
->phy_reset_enable
= rtl8169_xmii_reset_enable
;
3119 tp
->phy_reset_pending
= rtl8169_xmii_reset_pending
;
3120 tp
->link_ok
= rtl8169_xmii_link_ok
;
3121 tp
->do_ioctl
= rtl_xmii_ioctl
;
3124 spin_lock_init(&tp
->lock
);
3126 tp
->mmio_addr
= ioaddr
;
3128 /* Get MAC address */
3129 for (i
= 0; i
< MAC_ADDR_LEN
; i
++)
3130 dev
->dev_addr
[i
] = RTL_R8(MAC0
+ i
);
3131 memcpy(dev
->perm_addr
, dev
->dev_addr
, dev
->addr_len
);
3133 SET_ETHTOOL_OPS(dev
, &rtl8169_ethtool_ops
);
3134 dev
->watchdog_timeo
= RTL8169_TX_TIMEOUT
;
3135 dev
->irq
= pdev
->irq
;
3136 dev
->base_addr
= (unsigned long) ioaddr
;
3138 netif_napi_add(dev
, &tp
->napi
, rtl8169_poll
, R8169_NAPI_WEIGHT
);
3140 #ifdef CONFIG_R8169_VLAN
3141 dev
->features
|= NETIF_F_HW_VLAN_TX
| NETIF_F_HW_VLAN_RX
;
3143 dev
->features
|= NETIF_F_GRO
;
3145 tp
->intr_mask
= 0xffff;
3146 tp
->hw_start
= cfg
->hw_start
;
3147 tp
->intr_event
= cfg
->intr_event
;
3148 tp
->napi_event
= cfg
->napi_event
;
3150 init_timer(&tp
->timer
);
3151 tp
->timer
.data
= (unsigned long) dev
;
3152 tp
->timer
.function
= rtl8169_phy_timer
;
3154 rc
= register_netdev(dev
);
3158 pci_set_drvdata(pdev
, dev
);
3160 netif_info(tp
, probe
, dev
, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
3161 rtl_chip_info
[tp
->chipset
].name
,
3162 dev
->base_addr
, dev
->dev_addr
,
3163 (u32
)(RTL_R32(TxConfig
) & 0x9cf0f8ff), dev
->irq
);
3165 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_27
) ||
3166 (tp
->mac_version
== RTL_GIGA_MAC_VER_28
)) {
3167 rtl8168_driver_start(tp
);
3170 device_set_wakeup_enable(&pdev
->dev
, tp
->features
& RTL_FEATURE_WOL
);
3172 if (pci_dev_run_wake(pdev
))
3173 pm_runtime_put_noidle(&pdev
->dev
);
3179 rtl_disable_msi(pdev
, tp
);
3182 pci_release_regions(pdev
);
3184 pci_clear_mwi(pdev
);
3185 pci_disable_device(pdev
);
3191 static void __devexit
rtl8169_remove_one(struct pci_dev
*pdev
)
3193 struct net_device
*dev
= pci_get_drvdata(pdev
);
3194 struct rtl8169_private
*tp
= netdev_priv(dev
);
3196 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_27
) ||
3197 (tp
->mac_version
== RTL_GIGA_MAC_VER_28
)) {
3198 rtl8168_driver_stop(tp
);
3201 cancel_delayed_work_sync(&tp
->task
);
3203 unregister_netdev(dev
);
3205 if (pci_dev_run_wake(pdev
))
3206 pm_runtime_get_noresume(&pdev
->dev
);
3208 /* restore original MAC address */
3209 rtl_rar_set(tp
, dev
->perm_addr
);
3211 rtl_disable_msi(pdev
, tp
);
3212 rtl8169_release_board(pdev
, dev
, tp
->mmio_addr
);
3213 pci_set_drvdata(pdev
, NULL
);
3216 static int rtl8169_open(struct net_device
*dev
)
3218 struct rtl8169_private
*tp
= netdev_priv(dev
);
3219 void __iomem
*ioaddr
= tp
->mmio_addr
;
3220 struct pci_dev
*pdev
= tp
->pci_dev
;
3221 int retval
= -ENOMEM
;
3223 pm_runtime_get_sync(&pdev
->dev
);
3226 * Rx and Tx desscriptors needs 256 bytes alignment.
3227 * dma_alloc_coherent provides more.
3229 tp
->TxDescArray
= dma_alloc_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
,
3230 &tp
->TxPhyAddr
, GFP_KERNEL
);
3231 if (!tp
->TxDescArray
)
3232 goto err_pm_runtime_put
;
3234 tp
->RxDescArray
= dma_alloc_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
,
3235 &tp
->RxPhyAddr
, GFP_KERNEL
);
3236 if (!tp
->RxDescArray
)
3239 retval
= rtl8169_init_ring(dev
);
3243 INIT_DELAYED_WORK(&tp
->task
, NULL
);
3247 retval
= request_irq(dev
->irq
, rtl8169_interrupt
,
3248 (tp
->features
& RTL_FEATURE_MSI
) ? 0 : IRQF_SHARED
,
3251 goto err_release_ring_2
;
3253 napi_enable(&tp
->napi
);
3255 rtl8169_init_phy(dev
, tp
);
3258 * Pretend we are using VLANs; This bypasses a nasty bug where
3259 * Interrupts stop flowing on high load on 8110SCd controllers.
3261 if (tp
->mac_version
== RTL_GIGA_MAC_VER_05
)
3262 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) | RxVlan
);
3264 rtl_pll_power_up(tp
);
3268 rtl8169_request_timer(dev
);
3270 tp
->saved_wolopts
= 0;
3271 pm_runtime_put_noidle(&pdev
->dev
);
3273 rtl8169_check_link_status(dev
, tp
, ioaddr
);
3278 rtl8169_rx_clear(tp
);
3280 dma_free_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
, tp
->RxDescArray
,
3282 tp
->RxDescArray
= NULL
;
3284 dma_free_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
, tp
->TxDescArray
,
3286 tp
->TxDescArray
= NULL
;
3288 pm_runtime_put_noidle(&pdev
->dev
);
3292 static void rtl8169_hw_reset(struct rtl8169_private
*tp
)
3294 void __iomem
*ioaddr
= tp
->mmio_addr
;
3296 /* Disable interrupts */
3297 rtl8169_irq_mask_and_ack(ioaddr
);
3299 if (tp
->mac_version
== RTL_GIGA_MAC_VER_28
) {
3300 while (RTL_R8(TxPoll
) & NPQ
)
3305 /* Reset the chipset */
3306 RTL_W8(ChipCmd
, CmdReset
);
3312 static void rtl_set_rx_tx_config_registers(struct rtl8169_private
*tp
)
3314 void __iomem
*ioaddr
= tp
->mmio_addr
;
3315 u32 cfg
= rtl8169_rx_config
;
3317 cfg
|= (RTL_R32(RxConfig
) & rtl_chip_info
[tp
->chipset
].RxConfigMask
);
3318 RTL_W32(RxConfig
, cfg
);
3320 /* Set DMA burst size and Interframe Gap Time */
3321 RTL_W32(TxConfig
, (TX_DMA_BURST
<< TxDMAShift
) |
3322 (InterFrameGap
<< TxInterFrameGapShift
));
3325 static void rtl_hw_start(struct net_device
*dev
)
3327 struct rtl8169_private
*tp
= netdev_priv(dev
);
3328 void __iomem
*ioaddr
= tp
->mmio_addr
;
3331 /* Soft reset the chip. */
3332 RTL_W8(ChipCmd
, CmdReset
);
3334 /* Check that the chip has finished the reset. */
3335 for (i
= 0; i
< 100; i
++) {
3336 if ((RTL_R8(ChipCmd
) & CmdReset
) == 0)
3338 msleep_interruptible(1);
3343 netif_start_queue(dev
);
3347 static void rtl_set_rx_tx_desc_registers(struct rtl8169_private
*tp
,
3348 void __iomem
*ioaddr
)
3351 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3352 * register to be written before TxDescAddrLow to work.
3353 * Switching from MMIO to I/O access fixes the issue as well.
3355 RTL_W32(TxDescStartAddrHigh
, ((u64
) tp
->TxPhyAddr
) >> 32);
3356 RTL_W32(TxDescStartAddrLow
, ((u64
) tp
->TxPhyAddr
) & DMA_BIT_MASK(32));
3357 RTL_W32(RxDescAddrHigh
, ((u64
) tp
->RxPhyAddr
) >> 32);
3358 RTL_W32(RxDescAddrLow
, ((u64
) tp
->RxPhyAddr
) & DMA_BIT_MASK(32));
3361 static u16
rtl_rw_cpluscmd(void __iomem
*ioaddr
)
3365 cmd
= RTL_R16(CPlusCmd
);
3366 RTL_W16(CPlusCmd
, cmd
);
3370 static void rtl_set_rx_max_size(void __iomem
*ioaddr
, unsigned int rx_buf_sz
)
3372 /* Low hurts. Let's disable the filtering. */
3373 RTL_W16(RxMaxSize
, rx_buf_sz
+ 1);
3376 static void rtl8169_set_magic_reg(void __iomem
*ioaddr
, unsigned mac_version
)
3378 static const struct {
3383 { RTL_GIGA_MAC_VER_05
, PCI_Clock_33MHz
, 0x000fff00 }, // 8110SCd
3384 { RTL_GIGA_MAC_VER_05
, PCI_Clock_66MHz
, 0x000fffff },
3385 { RTL_GIGA_MAC_VER_06
, PCI_Clock_33MHz
, 0x00ffff00 }, // 8110SCe
3386 { RTL_GIGA_MAC_VER_06
, PCI_Clock_66MHz
, 0x00ffffff }
3391 clk
= RTL_R8(Config2
) & PCI_Clock_66MHz
;
3392 for (i
= 0; i
< ARRAY_SIZE(cfg2_info
); i
++, p
++) {
3393 if ((p
->mac_version
== mac_version
) && (p
->clk
== clk
)) {
3394 RTL_W32(0x7c, p
->val
);
3400 static void rtl_hw_start_8169(struct net_device
*dev
)
3402 struct rtl8169_private
*tp
= netdev_priv(dev
);
3403 void __iomem
*ioaddr
= tp
->mmio_addr
;
3404 struct pci_dev
*pdev
= tp
->pci_dev
;
3406 if (tp
->mac_version
== RTL_GIGA_MAC_VER_05
) {
3407 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) | PCIMulRW
);
3408 pci_write_config_byte(pdev
, PCI_CACHE_LINE_SIZE
, 0x08);
3411 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
3412 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_01
) ||
3413 (tp
->mac_version
== RTL_GIGA_MAC_VER_02
) ||
3414 (tp
->mac_version
== RTL_GIGA_MAC_VER_03
) ||
3415 (tp
->mac_version
== RTL_GIGA_MAC_VER_04
))
3416 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3418 RTL_W8(EarlyTxThres
, NoEarlyTx
);
3420 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
3422 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_01
) ||
3423 (tp
->mac_version
== RTL_GIGA_MAC_VER_02
) ||
3424 (tp
->mac_version
== RTL_GIGA_MAC_VER_03
) ||
3425 (tp
->mac_version
== RTL_GIGA_MAC_VER_04
))
3426 rtl_set_rx_tx_config_registers(tp
);
3428 tp
->cp_cmd
|= rtl_rw_cpluscmd(ioaddr
) | PCIMulRW
;
3430 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_02
) ||
3431 (tp
->mac_version
== RTL_GIGA_MAC_VER_03
)) {
3432 dprintk("Set MAC Reg C+CR Offset 0xE0. "
3433 "Bit-3 and bit-14 MUST be 1\n");
3434 tp
->cp_cmd
|= (1 << 14);
3437 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
3439 rtl8169_set_magic_reg(ioaddr
, tp
->mac_version
);
3442 * Undocumented corner. Supposedly:
3443 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3445 RTL_W16(IntrMitigate
, 0x0000);
3447 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
3449 if ((tp
->mac_version
!= RTL_GIGA_MAC_VER_01
) &&
3450 (tp
->mac_version
!= RTL_GIGA_MAC_VER_02
) &&
3451 (tp
->mac_version
!= RTL_GIGA_MAC_VER_03
) &&
3452 (tp
->mac_version
!= RTL_GIGA_MAC_VER_04
)) {
3453 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3454 rtl_set_rx_tx_config_registers(tp
);
3457 RTL_W8(Cfg9346
, Cfg9346_Lock
);
3459 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3462 RTL_W32(RxMissed
, 0);
3464 rtl_set_rx_mode(dev
);
3466 /* no early-rx interrupts */
3467 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xF000);
3469 /* Enable all known interrupts by setting the interrupt mask. */
3470 RTL_W16(IntrMask
, tp
->intr_event
);
3473 static void rtl_tx_performance_tweak(struct pci_dev
*pdev
, u16 force
)
3475 struct net_device
*dev
= pci_get_drvdata(pdev
);
3476 struct rtl8169_private
*tp
= netdev_priv(dev
);
3477 int cap
= tp
->pcie_cap
;
3482 pci_read_config_word(pdev
, cap
+ PCI_EXP_DEVCTL
, &ctl
);
3483 ctl
= (ctl
& ~PCI_EXP_DEVCTL_READRQ
) | force
;
3484 pci_write_config_word(pdev
, cap
+ PCI_EXP_DEVCTL
, ctl
);
3488 static void rtl_csi_access_enable(void __iomem
*ioaddr
, u32 bits
)
3492 csi
= rtl_csi_read(ioaddr
, 0x070c) & 0x00ffffff;
3493 rtl_csi_write(ioaddr
, 0x070c, csi
| bits
);
3496 static void rtl_csi_access_enable_1(void __iomem
*ioaddr
)
3498 rtl_csi_access_enable(ioaddr
, 0x17000000);
3501 static void rtl_csi_access_enable_2(void __iomem
*ioaddr
)
3503 rtl_csi_access_enable(ioaddr
, 0x27000000);
3507 unsigned int offset
;
3512 static void rtl_ephy_init(void __iomem
*ioaddr
, const struct ephy_info
*e
, int len
)
3517 w
= (rtl_ephy_read(ioaddr
, e
->offset
) & ~e
->mask
) | e
->bits
;
3518 rtl_ephy_write(ioaddr
, e
->offset
, w
);
3523 static void rtl_disable_clock_request(struct pci_dev
*pdev
)
3525 struct net_device
*dev
= pci_get_drvdata(pdev
);
3526 struct rtl8169_private
*tp
= netdev_priv(dev
);
3527 int cap
= tp
->pcie_cap
;
3532 pci_read_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, &ctl
);
3533 ctl
&= ~PCI_EXP_LNKCTL_CLKREQ_EN
;
3534 pci_write_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, ctl
);
3538 static void rtl_enable_clock_request(struct pci_dev
*pdev
)
3540 struct net_device
*dev
= pci_get_drvdata(pdev
);
3541 struct rtl8169_private
*tp
= netdev_priv(dev
);
3542 int cap
= tp
->pcie_cap
;
3547 pci_read_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, &ctl
);
3548 ctl
|= PCI_EXP_LNKCTL_CLKREQ_EN
;
3549 pci_write_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, ctl
);
3553 #define R8168_CPCMD_QUIRK_MASK (\
3564 static void rtl_hw_start_8168bb(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3566 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3568 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3570 rtl_tx_performance_tweak(pdev
,
3571 (0x5 << MAX_READ_REQUEST_SHIFT
) | PCI_EXP_DEVCTL_NOSNOOP_EN
);
3574 static void rtl_hw_start_8168bef(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3576 rtl_hw_start_8168bb(ioaddr
, pdev
);
3578 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3580 RTL_W8(Config4
, RTL_R8(Config4
) & ~(1 << 0));
3583 static void __rtl_hw_start_8168cp(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3585 RTL_W8(Config1
, RTL_R8(Config1
) | Speed_down
);
3587 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3589 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3591 rtl_disable_clock_request(pdev
);
3593 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3596 static void rtl_hw_start_8168cp_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3598 static const struct ephy_info e_info_8168cp
[] = {
3599 { 0x01, 0, 0x0001 },
3600 { 0x02, 0x0800, 0x1000 },
3601 { 0x03, 0, 0x0042 },
3602 { 0x06, 0x0080, 0x0000 },
3606 rtl_csi_access_enable_2(ioaddr
);
3608 rtl_ephy_init(ioaddr
, e_info_8168cp
, ARRAY_SIZE(e_info_8168cp
));
3610 __rtl_hw_start_8168cp(ioaddr
, pdev
);
3613 static void rtl_hw_start_8168cp_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3615 rtl_csi_access_enable_2(ioaddr
);
3617 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3619 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3621 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3624 static void rtl_hw_start_8168cp_3(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3626 rtl_csi_access_enable_2(ioaddr
);
3628 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3631 RTL_W8(DBG_REG
, 0x20);
3633 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3635 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3637 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3640 static void rtl_hw_start_8168c_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3642 static const struct ephy_info e_info_8168c_1
[] = {
3643 { 0x02, 0x0800, 0x1000 },
3644 { 0x03, 0, 0x0002 },
3645 { 0x06, 0x0080, 0x0000 }
3648 rtl_csi_access_enable_2(ioaddr
);
3650 RTL_W8(DBG_REG
, 0x06 | FIX_NAK_1
| FIX_NAK_2
);
3652 rtl_ephy_init(ioaddr
, e_info_8168c_1
, ARRAY_SIZE(e_info_8168c_1
));
3654 __rtl_hw_start_8168cp(ioaddr
, pdev
);
3657 static void rtl_hw_start_8168c_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3659 static const struct ephy_info e_info_8168c_2
[] = {
3660 { 0x01, 0, 0x0001 },
3661 { 0x03, 0x0400, 0x0220 }
3664 rtl_csi_access_enable_2(ioaddr
);
3666 rtl_ephy_init(ioaddr
, e_info_8168c_2
, ARRAY_SIZE(e_info_8168c_2
));
3668 __rtl_hw_start_8168cp(ioaddr
, pdev
);
3671 static void rtl_hw_start_8168c_3(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3673 rtl_hw_start_8168c_2(ioaddr
, pdev
);
3676 static void rtl_hw_start_8168c_4(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3678 rtl_csi_access_enable_2(ioaddr
);
3680 __rtl_hw_start_8168cp(ioaddr
, pdev
);
3683 static void rtl_hw_start_8168d(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3685 rtl_csi_access_enable_2(ioaddr
);
3687 rtl_disable_clock_request(pdev
);
3689 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3691 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3693 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3696 static void rtl_hw_start_8168d_4(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3698 static const struct ephy_info e_info_8168d_4
[] = {
3700 { 0x19, 0x20, 0x50 },
3705 rtl_csi_access_enable_1(ioaddr
);
3707 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3709 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3711 for (i
= 0; i
< ARRAY_SIZE(e_info_8168d_4
); i
++) {
3712 const struct ephy_info
*e
= e_info_8168d_4
+ i
;
3715 w
= rtl_ephy_read(ioaddr
, e
->offset
);
3716 rtl_ephy_write(ioaddr
, 0x03, (w
& e
->mask
) | e
->bits
);
3719 rtl_enable_clock_request(pdev
);
3722 static void rtl_hw_start_8168(struct net_device
*dev
)
3724 struct rtl8169_private
*tp
= netdev_priv(dev
);
3725 void __iomem
*ioaddr
= tp
->mmio_addr
;
3726 struct pci_dev
*pdev
= tp
->pci_dev
;
3728 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
3730 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3732 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
3734 tp
->cp_cmd
|= RTL_R16(CPlusCmd
) | PktCntrDisable
| INTT_1
;
3736 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
3738 RTL_W16(IntrMitigate
, 0x5151);
3740 /* Work around for RxFIFO overflow. */
3741 if (tp
->mac_version
== RTL_GIGA_MAC_VER_11
) {
3742 tp
->intr_event
|= RxFIFOOver
| PCSTimeout
;
3743 tp
->intr_event
&= ~RxOverflow
;
3746 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
3748 rtl_set_rx_mode(dev
);
3750 RTL_W32(TxConfig
, (TX_DMA_BURST
<< TxDMAShift
) |
3751 (InterFrameGap
<< TxInterFrameGapShift
));
3755 switch (tp
->mac_version
) {
3756 case RTL_GIGA_MAC_VER_11
:
3757 rtl_hw_start_8168bb(ioaddr
, pdev
);
3760 case RTL_GIGA_MAC_VER_12
:
3761 case RTL_GIGA_MAC_VER_17
:
3762 rtl_hw_start_8168bef(ioaddr
, pdev
);
3765 case RTL_GIGA_MAC_VER_18
:
3766 rtl_hw_start_8168cp_1(ioaddr
, pdev
);
3769 case RTL_GIGA_MAC_VER_19
:
3770 rtl_hw_start_8168c_1(ioaddr
, pdev
);
3773 case RTL_GIGA_MAC_VER_20
:
3774 rtl_hw_start_8168c_2(ioaddr
, pdev
);
3777 case RTL_GIGA_MAC_VER_21
:
3778 rtl_hw_start_8168c_3(ioaddr
, pdev
);
3781 case RTL_GIGA_MAC_VER_22
:
3782 rtl_hw_start_8168c_4(ioaddr
, pdev
);
3785 case RTL_GIGA_MAC_VER_23
:
3786 rtl_hw_start_8168cp_2(ioaddr
, pdev
);
3789 case RTL_GIGA_MAC_VER_24
:
3790 rtl_hw_start_8168cp_3(ioaddr
, pdev
);
3793 case RTL_GIGA_MAC_VER_25
:
3794 case RTL_GIGA_MAC_VER_26
:
3795 case RTL_GIGA_MAC_VER_27
:
3796 rtl_hw_start_8168d(ioaddr
, pdev
);
3799 case RTL_GIGA_MAC_VER_28
:
3800 rtl_hw_start_8168d_4(ioaddr
, pdev
);
3804 printk(KERN_ERR PFX
"%s: unknown chipset (mac_version = %d).\n",
3805 dev
->name
, tp
->mac_version
);
3809 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3811 RTL_W8(Cfg9346
, Cfg9346_Lock
);
3813 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xF000);
3815 RTL_W16(IntrMask
, tp
->intr_event
);
3818 #define R810X_CPCMD_QUIRK_MASK (\
3830 static void rtl_hw_start_8102e_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3832 static const struct ephy_info e_info_8102e_1
[] = {
3833 { 0x01, 0, 0x6e65 },
3834 { 0x02, 0, 0x091f },
3835 { 0x03, 0, 0xc2f9 },
3836 { 0x06, 0, 0xafb5 },
3837 { 0x07, 0, 0x0e00 },
3838 { 0x19, 0, 0xec80 },
3839 { 0x01, 0, 0x2e65 },
3844 rtl_csi_access_enable_2(ioaddr
);
3846 RTL_W8(DBG_REG
, FIX_NAK_1
);
3848 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3851 LEDS1
| LEDS0
| Speed_down
| MEMMAP
| IOMAP
| VPD
| PMEnable
);
3852 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3854 cfg1
= RTL_R8(Config1
);
3855 if ((cfg1
& LEDS0
) && (cfg1
& LEDS1
))
3856 RTL_W8(Config1
, cfg1
& ~LEDS0
);
3858 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R810X_CPCMD_QUIRK_MASK
);
3860 rtl_ephy_init(ioaddr
, e_info_8102e_1
, ARRAY_SIZE(e_info_8102e_1
));
3863 static void rtl_hw_start_8102e_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3865 rtl_csi_access_enable_2(ioaddr
);
3867 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3869 RTL_W8(Config1
, MEMMAP
| IOMAP
| VPD
| PMEnable
);
3870 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3872 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R810X_CPCMD_QUIRK_MASK
);
3875 static void rtl_hw_start_8102e_3(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3877 rtl_hw_start_8102e_2(ioaddr
, pdev
);
3879 rtl_ephy_write(ioaddr
, 0x03, 0xc2f9);
3882 static void rtl_hw_start_8101(struct net_device
*dev
)
3884 struct rtl8169_private
*tp
= netdev_priv(dev
);
3885 void __iomem
*ioaddr
= tp
->mmio_addr
;
3886 struct pci_dev
*pdev
= tp
->pci_dev
;
3888 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_13
) ||
3889 (tp
->mac_version
== RTL_GIGA_MAC_VER_16
)) {
3890 int cap
= tp
->pcie_cap
;
3893 pci_write_config_word(pdev
, cap
+ PCI_EXP_DEVCTL
,
3894 PCI_EXP_DEVCTL_NOSNOOP_EN
);
3898 switch (tp
->mac_version
) {
3899 case RTL_GIGA_MAC_VER_07
:
3900 rtl_hw_start_8102e_1(ioaddr
, pdev
);
3903 case RTL_GIGA_MAC_VER_08
:
3904 rtl_hw_start_8102e_3(ioaddr
, pdev
);
3907 case RTL_GIGA_MAC_VER_09
:
3908 rtl_hw_start_8102e_2(ioaddr
, pdev
);
3912 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
3914 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3916 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
3918 tp
->cp_cmd
|= rtl_rw_cpluscmd(ioaddr
) | PCIMulRW
;
3920 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
3922 RTL_W16(IntrMitigate
, 0x0000);
3924 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
3926 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3927 rtl_set_rx_tx_config_registers(tp
);
3929 RTL_W8(Cfg9346
, Cfg9346_Lock
);
3933 rtl_set_rx_mode(dev
);
3935 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3937 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xf000);
3939 RTL_W16(IntrMask
, tp
->intr_event
);
3942 static int rtl8169_change_mtu(struct net_device
*dev
, int new_mtu
)
3944 if (new_mtu
< ETH_ZLEN
|| new_mtu
> SafeMtu
)
3951 static inline void rtl8169_make_unusable_by_asic(struct RxDesc
*desc
)
3953 desc
->addr
= cpu_to_le64(0x0badbadbadbadbadull
);
3954 desc
->opts1
&= ~cpu_to_le32(DescOwn
| RsvdMask
);
3957 static void rtl8169_free_rx_databuff(struct rtl8169_private
*tp
,
3958 void **data_buff
, struct RxDesc
*desc
)
3960 dma_unmap_single(&tp
->pci_dev
->dev
, le64_to_cpu(desc
->addr
), rx_buf_sz
,
3965 rtl8169_make_unusable_by_asic(desc
);
3968 static inline void rtl8169_mark_to_asic(struct RxDesc
*desc
, u32 rx_buf_sz
)
3970 u32 eor
= le32_to_cpu(desc
->opts1
) & RingEnd
;
3972 desc
->opts1
= cpu_to_le32(DescOwn
| eor
| rx_buf_sz
);
3975 static inline void rtl8169_map_to_asic(struct RxDesc
*desc
, dma_addr_t mapping
,
3978 desc
->addr
= cpu_to_le64(mapping
);
3980 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
3983 static inline void *rtl8169_align(void *data
)
3985 return (void *)ALIGN((long)data
, 16);
3988 static struct sk_buff
*rtl8169_alloc_rx_data(struct rtl8169_private
*tp
,
3989 struct RxDesc
*desc
)
3993 struct device
*d
= &tp
->pci_dev
->dev
;
3994 struct net_device
*dev
= tp
->dev
;
3995 int node
= dev
->dev
.parent
? dev_to_node(dev
->dev
.parent
) : -1;
3997 data
= kmalloc_node(rx_buf_sz
, GFP_KERNEL
, node
);
4001 if (rtl8169_align(data
) != data
) {
4003 data
= kmalloc_node(rx_buf_sz
+ 15, GFP_KERNEL
, node
);
4008 mapping
= dma_map_single(d
, rtl8169_align(data
), rx_buf_sz
,
4010 if (unlikely(dma_mapping_error(d
, mapping
))) {
4011 if (net_ratelimit())
4012 netif_err(tp
, drv
, tp
->dev
, "Failed to map RX DMA!\n");
4016 rtl8169_map_to_asic(desc
, mapping
, rx_buf_sz
);
4024 static void rtl8169_rx_clear(struct rtl8169_private
*tp
)
4028 for (i
= 0; i
< NUM_RX_DESC
; i
++) {
4029 if (tp
->Rx_databuff
[i
]) {
4030 rtl8169_free_rx_databuff(tp
, tp
->Rx_databuff
+ i
,
4031 tp
->RxDescArray
+ i
);
4036 static inline void rtl8169_mark_as_last_descriptor(struct RxDesc
*desc
)
4038 desc
->opts1
|= cpu_to_le32(RingEnd
);
4041 static int rtl8169_rx_fill(struct rtl8169_private
*tp
)
4045 for (i
= 0; i
< NUM_RX_DESC
; i
++) {
4048 if (tp
->Rx_databuff
[i
])
4051 data
= rtl8169_alloc_rx_data(tp
, tp
->RxDescArray
+ i
);
4053 rtl8169_make_unusable_by_asic(tp
->RxDescArray
+ i
);
4056 tp
->Rx_databuff
[i
] = data
;
4059 rtl8169_mark_as_last_descriptor(tp
->RxDescArray
+ NUM_RX_DESC
- 1);
4063 rtl8169_rx_clear(tp
);
4067 static void rtl8169_init_ring_indexes(struct rtl8169_private
*tp
)
4069 tp
->dirty_tx
= tp
->dirty_rx
= tp
->cur_tx
= tp
->cur_rx
= 0;
4072 static int rtl8169_init_ring(struct net_device
*dev
)
4074 struct rtl8169_private
*tp
= netdev_priv(dev
);
4076 rtl8169_init_ring_indexes(tp
);
4078 memset(tp
->tx_skb
, 0x0, NUM_TX_DESC
* sizeof(struct ring_info
));
4079 memset(tp
->Rx_databuff
, 0x0, NUM_RX_DESC
* sizeof(void *));
4081 return rtl8169_rx_fill(tp
);
4084 static void rtl8169_unmap_tx_skb(struct device
*d
, struct ring_info
*tx_skb
,
4085 struct TxDesc
*desc
)
4087 unsigned int len
= tx_skb
->len
;
4089 dma_unmap_single(d
, le64_to_cpu(desc
->addr
), len
, DMA_TO_DEVICE
);
4097 static void rtl8169_tx_clear_range(struct rtl8169_private
*tp
, u32 start
,
4102 for (i
= 0; i
< n
; i
++) {
4103 unsigned int entry
= (start
+ i
) % NUM_TX_DESC
;
4104 struct ring_info
*tx_skb
= tp
->tx_skb
+ entry
;
4105 unsigned int len
= tx_skb
->len
;
4108 struct sk_buff
*skb
= tx_skb
->skb
;
4110 rtl8169_unmap_tx_skb(&tp
->pci_dev
->dev
, tx_skb
,
4111 tp
->TxDescArray
+ entry
);
4113 tp
->dev
->stats
.tx_dropped
++;
4121 static void rtl8169_tx_clear(struct rtl8169_private
*tp
)
4123 rtl8169_tx_clear_range(tp
, tp
->dirty_tx
, NUM_TX_DESC
);
4124 tp
->cur_tx
= tp
->dirty_tx
= 0;
4127 static void rtl8169_schedule_work(struct net_device
*dev
, work_func_t task
)
4129 struct rtl8169_private
*tp
= netdev_priv(dev
);
4131 PREPARE_DELAYED_WORK(&tp
->task
, task
);
4132 schedule_delayed_work(&tp
->task
, 4);
4135 static void rtl8169_wait_for_quiescence(struct net_device
*dev
)
4137 struct rtl8169_private
*tp
= netdev_priv(dev
);
4138 void __iomem
*ioaddr
= tp
->mmio_addr
;
4140 synchronize_irq(dev
->irq
);
4142 /* Wait for any pending NAPI task to complete */
4143 napi_disable(&tp
->napi
);
4145 rtl8169_irq_mask_and_ack(ioaddr
);
4147 tp
->intr_mask
= 0xffff;
4148 RTL_W16(IntrMask
, tp
->intr_event
);
4149 napi_enable(&tp
->napi
);
4152 static void rtl8169_reinit_task(struct work_struct
*work
)
4154 struct rtl8169_private
*tp
=
4155 container_of(work
, struct rtl8169_private
, task
.work
);
4156 struct net_device
*dev
= tp
->dev
;
4161 if (!netif_running(dev
))
4164 rtl8169_wait_for_quiescence(dev
);
4167 ret
= rtl8169_open(dev
);
4168 if (unlikely(ret
< 0)) {
4169 if (net_ratelimit())
4170 netif_err(tp
, drv
, dev
,
4171 "reinit failure (status = %d). Rescheduling\n",
4173 rtl8169_schedule_work(dev
, rtl8169_reinit_task
);
4180 static void rtl8169_reset_task(struct work_struct
*work
)
4182 struct rtl8169_private
*tp
=
4183 container_of(work
, struct rtl8169_private
, task
.work
);
4184 struct net_device
*dev
= tp
->dev
;
4188 if (!netif_running(dev
))
4191 rtl8169_wait_for_quiescence(dev
);
4193 rtl8169_rx_interrupt(dev
, tp
, tp
->mmio_addr
, ~(u32
)0);
4194 rtl8169_tx_clear(tp
);
4196 if (tp
->dirty_rx
== tp
->cur_rx
) {
4197 rtl8169_init_ring_indexes(tp
);
4199 netif_wake_queue(dev
);
4200 rtl8169_check_link_status(dev
, tp
, tp
->mmio_addr
);
4202 if (net_ratelimit())
4203 netif_emerg(tp
, intr
, dev
, "Rx buffers shortage\n");
4204 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
4211 static void rtl8169_tx_timeout(struct net_device
*dev
)
4213 struct rtl8169_private
*tp
= netdev_priv(dev
);
4215 rtl8169_hw_reset(tp
);
4217 /* Let's wait a bit while any (async) irq lands on */
4218 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
4221 static int rtl8169_xmit_frags(struct rtl8169_private
*tp
, struct sk_buff
*skb
,
4224 struct skb_shared_info
*info
= skb_shinfo(skb
);
4225 unsigned int cur_frag
, entry
;
4226 struct TxDesc
* uninitialized_var(txd
);
4227 struct device
*d
= &tp
->pci_dev
->dev
;
4230 for (cur_frag
= 0; cur_frag
< info
->nr_frags
; cur_frag
++) {
4231 skb_frag_t
*frag
= info
->frags
+ cur_frag
;
4236 entry
= (entry
+ 1) % NUM_TX_DESC
;
4238 txd
= tp
->TxDescArray
+ entry
;
4240 addr
= ((void *) page_address(frag
->page
)) + frag
->page_offset
;
4241 mapping
= dma_map_single(d
, addr
, len
, DMA_TO_DEVICE
);
4242 if (unlikely(dma_mapping_error(d
, mapping
))) {
4243 if (net_ratelimit())
4244 netif_err(tp
, drv
, tp
->dev
,
4245 "Failed to map TX fragments DMA!\n");
4249 /* anti gcc 2.95.3 bugware (sic) */
4250 status
= opts1
| len
| (RingEnd
* !((entry
+ 1) % NUM_TX_DESC
));
4252 txd
->opts1
= cpu_to_le32(status
);
4253 txd
->addr
= cpu_to_le64(mapping
);
4255 tp
->tx_skb
[entry
].len
= len
;
4259 tp
->tx_skb
[entry
].skb
= skb
;
4260 txd
->opts1
|= cpu_to_le32(LastFrag
);
4266 rtl8169_tx_clear_range(tp
, tp
->cur_tx
+ 1, cur_frag
);
4270 static inline u32
rtl8169_tso_csum(struct sk_buff
*skb
, struct net_device
*dev
)
4272 if (dev
->features
& NETIF_F_TSO
) {
4273 u32 mss
= skb_shinfo(skb
)->gso_size
;
4276 return LargeSend
| ((mss
& MSSMask
) << MSSShift
);
4278 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
4279 const struct iphdr
*ip
= ip_hdr(skb
);
4281 if (ip
->protocol
== IPPROTO_TCP
)
4282 return IPCS
| TCPCS
;
4283 else if (ip
->protocol
== IPPROTO_UDP
)
4284 return IPCS
| UDPCS
;
4285 WARN_ON(1); /* we need a WARN() */
4290 static netdev_tx_t
rtl8169_start_xmit(struct sk_buff
*skb
,
4291 struct net_device
*dev
)
4293 struct rtl8169_private
*tp
= netdev_priv(dev
);
4294 unsigned int entry
= tp
->cur_tx
% NUM_TX_DESC
;
4295 struct TxDesc
*txd
= tp
->TxDescArray
+ entry
;
4296 void __iomem
*ioaddr
= tp
->mmio_addr
;
4297 struct device
*d
= &tp
->pci_dev
->dev
;
4303 if (unlikely(TX_BUFFS_AVAIL(tp
) < skb_shinfo(skb
)->nr_frags
)) {
4304 netif_err(tp
, drv
, dev
, "BUG! Tx Ring full when queue awake!\n");
4308 if (unlikely(le32_to_cpu(txd
->opts1
) & DescOwn
))
4311 len
= skb_headlen(skb
);
4312 mapping
= dma_map_single(d
, skb
->data
, len
, DMA_TO_DEVICE
);
4313 if (unlikely(dma_mapping_error(d
, mapping
))) {
4314 if (net_ratelimit())
4315 netif_err(tp
, drv
, dev
, "Failed to map TX DMA!\n");
4319 tp
->tx_skb
[entry
].len
= len
;
4320 txd
->addr
= cpu_to_le64(mapping
);
4321 txd
->opts2
= cpu_to_le32(rtl8169_tx_vlan_tag(tp
, skb
));
4323 opts1
= DescOwn
| rtl8169_tso_csum(skb
, dev
);
4325 frags
= rtl8169_xmit_frags(tp
, skb
, opts1
);
4331 opts1
|= FirstFrag
| LastFrag
;
4332 tp
->tx_skb
[entry
].skb
= skb
;
4337 /* anti gcc 2.95.3 bugware (sic) */
4338 status
= opts1
| len
| (RingEnd
* !((entry
+ 1) % NUM_TX_DESC
));
4339 txd
->opts1
= cpu_to_le32(status
);
4341 tp
->cur_tx
+= frags
+ 1;
4345 RTL_W8(TxPoll
, NPQ
); /* set polling bit */
4347 if (TX_BUFFS_AVAIL(tp
) < MAX_SKB_FRAGS
) {
4348 netif_stop_queue(dev
);
4350 if (TX_BUFFS_AVAIL(tp
) >= MAX_SKB_FRAGS
)
4351 netif_wake_queue(dev
);
4354 return NETDEV_TX_OK
;
4357 rtl8169_unmap_tx_skb(d
, tp
->tx_skb
+ entry
, txd
);
4360 dev
->stats
.tx_dropped
++;
4361 return NETDEV_TX_OK
;
4364 netif_stop_queue(dev
);
4365 dev
->stats
.tx_dropped
++;
4366 return NETDEV_TX_BUSY
;
4369 static void rtl8169_pcierr_interrupt(struct net_device
*dev
)
4371 struct rtl8169_private
*tp
= netdev_priv(dev
);
4372 struct pci_dev
*pdev
= tp
->pci_dev
;
4373 u16 pci_status
, pci_cmd
;
4375 pci_read_config_word(pdev
, PCI_COMMAND
, &pci_cmd
);
4376 pci_read_config_word(pdev
, PCI_STATUS
, &pci_status
);
4378 netif_err(tp
, intr
, dev
, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4379 pci_cmd
, pci_status
);
4382 * The recovery sequence below admits a very elaborated explanation:
4383 * - it seems to work;
4384 * - I did not see what else could be done;
4385 * - it makes iop3xx happy.
4387 * Feel free to adjust to your needs.
4389 if (pdev
->broken_parity_status
)
4390 pci_cmd
&= ~PCI_COMMAND_PARITY
;
4392 pci_cmd
|= PCI_COMMAND_SERR
| PCI_COMMAND_PARITY
;
4394 pci_write_config_word(pdev
, PCI_COMMAND
, pci_cmd
);
4396 pci_write_config_word(pdev
, PCI_STATUS
,
4397 pci_status
& (PCI_STATUS_DETECTED_PARITY
|
4398 PCI_STATUS_SIG_SYSTEM_ERROR
| PCI_STATUS_REC_MASTER_ABORT
|
4399 PCI_STATUS_REC_TARGET_ABORT
| PCI_STATUS_SIG_TARGET_ABORT
));
4401 /* The infamous DAC f*ckup only happens at boot time */
4402 if ((tp
->cp_cmd
& PCIDAC
) && !tp
->dirty_rx
&& !tp
->cur_rx
) {
4403 void __iomem
*ioaddr
= tp
->mmio_addr
;
4405 netif_info(tp
, intr
, dev
, "disabling PCI DAC\n");
4406 tp
->cp_cmd
&= ~PCIDAC
;
4407 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
4408 dev
->features
&= ~NETIF_F_HIGHDMA
;
4411 rtl8169_hw_reset(tp
);
4413 rtl8169_schedule_work(dev
, rtl8169_reinit_task
);
4416 static void rtl8169_tx_interrupt(struct net_device
*dev
,
4417 struct rtl8169_private
*tp
,
4418 void __iomem
*ioaddr
)
4420 unsigned int dirty_tx
, tx_left
;
4422 dirty_tx
= tp
->dirty_tx
;
4424 tx_left
= tp
->cur_tx
- dirty_tx
;
4426 while (tx_left
> 0) {
4427 unsigned int entry
= dirty_tx
% NUM_TX_DESC
;
4428 struct ring_info
*tx_skb
= tp
->tx_skb
+ entry
;
4432 status
= le32_to_cpu(tp
->TxDescArray
[entry
].opts1
);
4433 if (status
& DescOwn
)
4436 rtl8169_unmap_tx_skb(&tp
->pci_dev
->dev
, tx_skb
,
4437 tp
->TxDescArray
+ entry
);
4438 if (status
& LastFrag
) {
4439 dev
->stats
.tx_packets
++;
4440 dev
->stats
.tx_bytes
+= tx_skb
->skb
->len
;
4441 dev_kfree_skb(tx_skb
->skb
);
4448 if (tp
->dirty_tx
!= dirty_tx
) {
4449 tp
->dirty_tx
= dirty_tx
;
4451 if (netif_queue_stopped(dev
) &&
4452 (TX_BUFFS_AVAIL(tp
) >= MAX_SKB_FRAGS
)) {
4453 netif_wake_queue(dev
);
4456 * 8168 hack: TxPoll requests are lost when the Tx packets are
4457 * too close. Let's kick an extra TxPoll request when a burst
4458 * of start_xmit activity is detected (if it is not detected,
4459 * it is slow enough). -- FR
4462 if (tp
->cur_tx
!= dirty_tx
)
4463 RTL_W8(TxPoll
, NPQ
);
4467 static inline int rtl8169_fragmented_frame(u32 status
)
4469 return (status
& (FirstFrag
| LastFrag
)) != (FirstFrag
| LastFrag
);
4472 static inline void rtl8169_rx_csum(struct sk_buff
*skb
, u32 opts1
)
4474 u32 status
= opts1
& RxProtoMask
;
4476 if (((status
== RxProtoTCP
) && !(opts1
& TCPFail
)) ||
4477 ((status
== RxProtoUDP
) && !(opts1
& UDPFail
)))
4478 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
4480 skb_checksum_none_assert(skb
);
4483 static struct sk_buff
*rtl8169_try_rx_copy(void *data
,
4484 struct rtl8169_private
*tp
,
4488 struct sk_buff
*skb
;
4489 struct device
*d
= &tp
->pci_dev
->dev
;
4491 data
= rtl8169_align(data
);
4492 dma_sync_single_for_cpu(d
, addr
, pkt_size
, DMA_FROM_DEVICE
);
4494 skb
= netdev_alloc_skb_ip_align(tp
->dev
, pkt_size
);
4496 memcpy(skb
->data
, data
, pkt_size
);
4497 dma_sync_single_for_device(d
, addr
, pkt_size
, DMA_FROM_DEVICE
);
4503 * Warning : rtl8169_rx_interrupt() might be called :
4504 * 1) from NAPI (softirq) context
4505 * (polling = 1 : we should call netif_receive_skb())
4506 * 2) from process context (rtl8169_reset_task())
4507 * (polling = 0 : we must call netif_rx() instead)
4509 static int rtl8169_rx_interrupt(struct net_device
*dev
,
4510 struct rtl8169_private
*tp
,
4511 void __iomem
*ioaddr
, u32 budget
)
4513 unsigned int cur_rx
, rx_left
;
4515 int polling
= (budget
!= ~(u32
)0) ? 1 : 0;
4517 cur_rx
= tp
->cur_rx
;
4518 rx_left
= NUM_RX_DESC
+ tp
->dirty_rx
- cur_rx
;
4519 rx_left
= min(rx_left
, budget
);
4521 for (; rx_left
> 0; rx_left
--, cur_rx
++) {
4522 unsigned int entry
= cur_rx
% NUM_RX_DESC
;
4523 struct RxDesc
*desc
= tp
->RxDescArray
+ entry
;
4527 status
= le32_to_cpu(desc
->opts1
);
4529 if (status
& DescOwn
)
4531 if (unlikely(status
& RxRES
)) {
4532 netif_info(tp
, rx_err
, dev
, "Rx ERROR. status = %08x\n",
4534 dev
->stats
.rx_errors
++;
4535 if (status
& (RxRWT
| RxRUNT
))
4536 dev
->stats
.rx_length_errors
++;
4538 dev
->stats
.rx_crc_errors
++;
4539 if (status
& RxFOVF
) {
4540 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
4541 dev
->stats
.rx_fifo_errors
++;
4543 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
4545 struct sk_buff
*skb
;
4546 dma_addr_t addr
= le64_to_cpu(desc
->addr
);
4547 int pkt_size
= (status
& 0x00001FFF) - 4;
4550 * The driver does not support incoming fragmented
4551 * frames. They are seen as a symptom of over-mtu
4554 if (unlikely(rtl8169_fragmented_frame(status
))) {
4555 dev
->stats
.rx_dropped
++;
4556 dev
->stats
.rx_length_errors
++;
4557 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
4561 skb
= rtl8169_try_rx_copy(tp
->Rx_databuff
[entry
],
4562 tp
, pkt_size
, addr
);
4563 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
4565 dev
->stats
.rx_dropped
++;
4569 rtl8169_rx_csum(skb
, status
);
4570 skb_put(skb
, pkt_size
);
4571 skb
->protocol
= eth_type_trans(skb
, dev
);
4573 if (rtl8169_rx_vlan_skb(tp
, desc
, skb
, polling
) < 0) {
4574 if (likely(polling
))
4575 napi_gro_receive(&tp
->napi
, skb
);
4580 dev
->stats
.rx_bytes
+= pkt_size
;
4581 dev
->stats
.rx_packets
++;
4584 /* Work around for AMD plateform. */
4585 if ((desc
->opts2
& cpu_to_le32(0xfffe000)) &&
4586 (tp
->mac_version
== RTL_GIGA_MAC_VER_05
)) {
4592 count
= cur_rx
- tp
->cur_rx
;
4593 tp
->cur_rx
= cur_rx
;
4595 tp
->dirty_rx
+= count
;
4600 static irqreturn_t
rtl8169_interrupt(int irq
, void *dev_instance
)
4602 struct net_device
*dev
= dev_instance
;
4603 struct rtl8169_private
*tp
= netdev_priv(dev
);
4604 void __iomem
*ioaddr
= tp
->mmio_addr
;
4608 /* loop handling interrupts until we have no new ones or
4609 * we hit a invalid/hotplug case.
4611 status
= RTL_R16(IntrStatus
);
4612 while (status
&& status
!= 0xffff) {
4615 /* Handle all of the error cases first. These will reset
4616 * the chip, so just exit the loop.
4618 if (unlikely(!netif_running(dev
))) {
4619 rtl8169_asic_down(ioaddr
);
4623 /* Work around for rx fifo overflow */
4624 if (unlikely(status
& RxFIFOOver
) &&
4625 (tp
->mac_version
== RTL_GIGA_MAC_VER_11
)) {
4626 netif_stop_queue(dev
);
4627 rtl8169_tx_timeout(dev
);
4631 if (unlikely(status
& SYSErr
)) {
4632 rtl8169_pcierr_interrupt(dev
);
4636 if (status
& LinkChg
)
4637 __rtl8169_check_link_status(dev
, tp
, ioaddr
, true);
4639 /* We need to see the lastest version of tp->intr_mask to
4640 * avoid ignoring an MSI interrupt and having to wait for
4641 * another event which may never come.
4644 if (status
& tp
->intr_mask
& tp
->napi_event
) {
4645 RTL_W16(IntrMask
, tp
->intr_event
& ~tp
->napi_event
);
4646 tp
->intr_mask
= ~tp
->napi_event
;
4648 if (likely(napi_schedule_prep(&tp
->napi
)))
4649 __napi_schedule(&tp
->napi
);
4651 netif_info(tp
, intr
, dev
,
4652 "interrupt %04x in poll\n", status
);
4655 /* We only get a new MSI interrupt when all active irq
4656 * sources on the chip have been acknowledged. So, ack
4657 * everything we've seen and check if new sources have become
4658 * active to avoid blocking all interrupts from the chip.
4661 (status
& RxFIFOOver
) ? (status
| RxOverflow
) : status
);
4662 status
= RTL_R16(IntrStatus
);
4665 return IRQ_RETVAL(handled
);
4668 static int rtl8169_poll(struct napi_struct
*napi
, int budget
)
4670 struct rtl8169_private
*tp
= container_of(napi
, struct rtl8169_private
, napi
);
4671 struct net_device
*dev
= tp
->dev
;
4672 void __iomem
*ioaddr
= tp
->mmio_addr
;
4675 work_done
= rtl8169_rx_interrupt(dev
, tp
, ioaddr
, (u32
) budget
);
4676 rtl8169_tx_interrupt(dev
, tp
, ioaddr
);
4678 if (work_done
< budget
) {
4679 napi_complete(napi
);
4681 /* We need for force the visibility of tp->intr_mask
4682 * for other CPUs, as we can loose an MSI interrupt
4683 * and potentially wait for a retransmit timeout if we don't.
4684 * The posted write to IntrMask is safe, as it will
4685 * eventually make it to the chip and we won't loose anything
4688 tp
->intr_mask
= 0xffff;
4690 RTL_W16(IntrMask
, tp
->intr_event
);
4696 static void rtl8169_rx_missed(struct net_device
*dev
, void __iomem
*ioaddr
)
4698 struct rtl8169_private
*tp
= netdev_priv(dev
);
4700 if (tp
->mac_version
> RTL_GIGA_MAC_VER_06
)
4703 dev
->stats
.rx_missed_errors
+= (RTL_R32(RxMissed
) & 0xffffff);
4704 RTL_W32(RxMissed
, 0);
4707 static void rtl8169_down(struct net_device
*dev
)
4709 struct rtl8169_private
*tp
= netdev_priv(dev
);
4710 void __iomem
*ioaddr
= tp
->mmio_addr
;
4712 rtl8169_delete_timer(dev
);
4714 netif_stop_queue(dev
);
4716 napi_disable(&tp
->napi
);
4718 spin_lock_irq(&tp
->lock
);
4720 rtl8169_asic_down(ioaddr
);
4722 * At this point device interrupts can not be enabled in any function,
4723 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
4724 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
4726 rtl8169_rx_missed(dev
, ioaddr
);
4728 spin_unlock_irq(&tp
->lock
);
4730 synchronize_irq(dev
->irq
);
4732 /* Give a racing hard_start_xmit a few cycles to complete. */
4733 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
4735 rtl8169_tx_clear(tp
);
4737 rtl8169_rx_clear(tp
);
4739 rtl_pll_power_down(tp
);
4742 static int rtl8169_close(struct net_device
*dev
)
4744 struct rtl8169_private
*tp
= netdev_priv(dev
);
4745 struct pci_dev
*pdev
= tp
->pci_dev
;
4747 pm_runtime_get_sync(&pdev
->dev
);
4749 /* update counters before going down */
4750 rtl8169_update_counters(dev
);
4754 free_irq(dev
->irq
, dev
);
4756 dma_free_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
, tp
->RxDescArray
,
4758 dma_free_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
, tp
->TxDescArray
,
4760 tp
->TxDescArray
= NULL
;
4761 tp
->RxDescArray
= NULL
;
4763 pm_runtime_put_sync(&pdev
->dev
);
4768 static void rtl_set_rx_mode(struct net_device
*dev
)
4770 struct rtl8169_private
*tp
= netdev_priv(dev
);
4771 void __iomem
*ioaddr
= tp
->mmio_addr
;
4772 unsigned long flags
;
4773 u32 mc_filter
[2]; /* Multicast hash filter */
4777 if (dev
->flags
& IFF_PROMISC
) {
4778 /* Unconditionally log net taps. */
4779 netif_notice(tp
, link
, dev
, "Promiscuous mode enabled\n");
4781 AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
|
4783 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
4784 } else if ((netdev_mc_count(dev
) > multicast_filter_limit
) ||
4785 (dev
->flags
& IFF_ALLMULTI
)) {
4786 /* Too many to filter perfectly -- accept all multicasts. */
4787 rx_mode
= AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
;
4788 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
4790 struct netdev_hw_addr
*ha
;
4792 rx_mode
= AcceptBroadcast
| AcceptMyPhys
;
4793 mc_filter
[1] = mc_filter
[0] = 0;
4794 netdev_for_each_mc_addr(ha
, dev
) {
4795 int bit_nr
= ether_crc(ETH_ALEN
, ha
->addr
) >> 26;
4796 mc_filter
[bit_nr
>> 5] |= 1 << (bit_nr
& 31);
4797 rx_mode
|= AcceptMulticast
;
4801 spin_lock_irqsave(&tp
->lock
, flags
);
4803 tmp
= rtl8169_rx_config
| rx_mode
|
4804 (RTL_R32(RxConfig
) & rtl_chip_info
[tp
->chipset
].RxConfigMask
);
4806 if (tp
->mac_version
> RTL_GIGA_MAC_VER_06
) {
4807 u32 data
= mc_filter
[0];
4809 mc_filter
[0] = swab32(mc_filter
[1]);
4810 mc_filter
[1] = swab32(data
);
4813 RTL_W32(MAR0
+ 4, mc_filter
[1]);
4814 RTL_W32(MAR0
+ 0, mc_filter
[0]);
4816 RTL_W32(RxConfig
, tmp
);
4818 spin_unlock_irqrestore(&tp
->lock
, flags
);
4822 * rtl8169_get_stats - Get rtl8169 read/write statistics
4823 * @dev: The Ethernet Device to get statistics for
4825 * Get TX/RX statistics for rtl8169
4827 static struct net_device_stats
*rtl8169_get_stats(struct net_device
*dev
)
4829 struct rtl8169_private
*tp
= netdev_priv(dev
);
4830 void __iomem
*ioaddr
= tp
->mmio_addr
;
4831 unsigned long flags
;
4833 if (netif_running(dev
)) {
4834 spin_lock_irqsave(&tp
->lock
, flags
);
4835 rtl8169_rx_missed(dev
, ioaddr
);
4836 spin_unlock_irqrestore(&tp
->lock
, flags
);
4842 static void rtl8169_net_suspend(struct net_device
*dev
)
4844 struct rtl8169_private
*tp
= netdev_priv(dev
);
4846 if (!netif_running(dev
))
4849 rtl_pll_power_down(tp
);
4851 netif_device_detach(dev
);
4852 netif_stop_queue(dev
);
4857 static int rtl8169_suspend(struct device
*device
)
4859 struct pci_dev
*pdev
= to_pci_dev(device
);
4860 struct net_device
*dev
= pci_get_drvdata(pdev
);
4862 rtl8169_net_suspend(dev
);
4867 static void __rtl8169_resume(struct net_device
*dev
)
4869 struct rtl8169_private
*tp
= netdev_priv(dev
);
4871 netif_device_attach(dev
);
4873 rtl_pll_power_up(tp
);
4875 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
4878 static int rtl8169_resume(struct device
*device
)
4880 struct pci_dev
*pdev
= to_pci_dev(device
);
4881 struct net_device
*dev
= pci_get_drvdata(pdev
);
4882 struct rtl8169_private
*tp
= netdev_priv(dev
);
4884 rtl8169_init_phy(dev
, tp
);
4886 if (netif_running(dev
))
4887 __rtl8169_resume(dev
);
4892 static int rtl8169_runtime_suspend(struct device
*device
)
4894 struct pci_dev
*pdev
= to_pci_dev(device
);
4895 struct net_device
*dev
= pci_get_drvdata(pdev
);
4896 struct rtl8169_private
*tp
= netdev_priv(dev
);
4898 if (!tp
->TxDescArray
)
4901 spin_lock_irq(&tp
->lock
);
4902 tp
->saved_wolopts
= __rtl8169_get_wol(tp
);
4903 __rtl8169_set_wol(tp
, WAKE_ANY
);
4904 spin_unlock_irq(&tp
->lock
);
4906 rtl8169_net_suspend(dev
);
4911 static int rtl8169_runtime_resume(struct device
*device
)
4913 struct pci_dev
*pdev
= to_pci_dev(device
);
4914 struct net_device
*dev
= pci_get_drvdata(pdev
);
4915 struct rtl8169_private
*tp
= netdev_priv(dev
);
4917 if (!tp
->TxDescArray
)
4920 spin_lock_irq(&tp
->lock
);
4921 __rtl8169_set_wol(tp
, tp
->saved_wolopts
);
4922 tp
->saved_wolopts
= 0;
4923 spin_unlock_irq(&tp
->lock
);
4925 rtl8169_init_phy(dev
, tp
);
4927 __rtl8169_resume(dev
);
4932 static int rtl8169_runtime_idle(struct device
*device
)
4934 struct pci_dev
*pdev
= to_pci_dev(device
);
4935 struct net_device
*dev
= pci_get_drvdata(pdev
);
4936 struct rtl8169_private
*tp
= netdev_priv(dev
);
4938 return tp
->TxDescArray
? -EBUSY
: 0;
4941 static const struct dev_pm_ops rtl8169_pm_ops
= {
4942 .suspend
= rtl8169_suspend
,
4943 .resume
= rtl8169_resume
,
4944 .freeze
= rtl8169_suspend
,
4945 .thaw
= rtl8169_resume
,
4946 .poweroff
= rtl8169_suspend
,
4947 .restore
= rtl8169_resume
,
4948 .runtime_suspend
= rtl8169_runtime_suspend
,
4949 .runtime_resume
= rtl8169_runtime_resume
,
4950 .runtime_idle
= rtl8169_runtime_idle
,
4953 #define RTL8169_PM_OPS (&rtl8169_pm_ops)
4955 #else /* !CONFIG_PM */
4957 #define RTL8169_PM_OPS NULL
4959 #endif /* !CONFIG_PM */
4961 static void rtl_shutdown(struct pci_dev
*pdev
)
4963 struct net_device
*dev
= pci_get_drvdata(pdev
);
4964 struct rtl8169_private
*tp
= netdev_priv(dev
);
4965 void __iomem
*ioaddr
= tp
->mmio_addr
;
4967 rtl8169_net_suspend(dev
);
4969 /* restore original MAC address */
4970 rtl_rar_set(tp
, dev
->perm_addr
);
4972 spin_lock_irq(&tp
->lock
);
4974 rtl8169_asic_down(ioaddr
);
4976 spin_unlock_irq(&tp
->lock
);
4978 if (system_state
== SYSTEM_POWER_OFF
) {
4979 /* WoL fails with some 8168 when the receiver is disabled. */
4980 if (tp
->features
& RTL_FEATURE_WOL
) {
4981 pci_clear_master(pdev
);
4983 RTL_W8(ChipCmd
, CmdRxEnb
);
4988 pci_wake_from_d3(pdev
, true);
4989 pci_set_power_state(pdev
, PCI_D3hot
);
4993 static struct pci_driver rtl8169_pci_driver
= {
4995 .id_table
= rtl8169_pci_tbl
,
4996 .probe
= rtl8169_init_one
,
4997 .remove
= __devexit_p(rtl8169_remove_one
),
4998 .shutdown
= rtl_shutdown
,
4999 .driver
.pm
= RTL8169_PM_OPS
,
5002 static int __init
rtl8169_init_module(void)
5004 return pci_register_driver(&rtl8169_pci_driver
);
5007 static void __exit
rtl8169_cleanup_module(void)
5009 pci_unregister_driver(&rtl8169_pci_driver
);
5012 module_init(rtl8169_init_module
);
5013 module_exit(rtl8169_cleanup_module
);