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
;
558 const struct firmware
*fw
;
561 MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
562 MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
563 module_param(use_dac
, int, 0);
564 MODULE_PARM_DESC(use_dac
, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
565 module_param_named(debug
, debug
.msg_enable
, int, 0);
566 MODULE_PARM_DESC(debug
, "Debug verbosity level (0=none, ..., 16=all)");
567 MODULE_LICENSE("GPL");
568 MODULE_VERSION(RTL8169_VERSION
);
569 MODULE_FIRMWARE(FIRMWARE_8168D_1
);
570 MODULE_FIRMWARE(FIRMWARE_8168D_2
);
572 static int rtl8169_open(struct net_device
*dev
);
573 static netdev_tx_t
rtl8169_start_xmit(struct sk_buff
*skb
,
574 struct net_device
*dev
);
575 static irqreturn_t
rtl8169_interrupt(int irq
, void *dev_instance
);
576 static int rtl8169_init_ring(struct net_device
*dev
);
577 static void rtl_hw_start(struct net_device
*dev
);
578 static int rtl8169_close(struct net_device
*dev
);
579 static void rtl_set_rx_mode(struct net_device
*dev
);
580 static void rtl8169_tx_timeout(struct net_device
*dev
);
581 static struct net_device_stats
*rtl8169_get_stats(struct net_device
*dev
);
582 static int rtl8169_rx_interrupt(struct net_device
*, struct rtl8169_private
*,
583 void __iomem
*, u32 budget
);
584 static int rtl8169_change_mtu(struct net_device
*dev
, int new_mtu
);
585 static void rtl8169_down(struct net_device
*dev
);
586 static void rtl8169_rx_clear(struct rtl8169_private
*tp
);
587 static int rtl8169_poll(struct napi_struct
*napi
, int budget
);
589 static const unsigned int rtl8169_rx_config
=
590 (RX_FIFO_THRESH
<< RxCfgFIFOShift
) | (RX_DMA_BURST
<< RxCfgDMAShift
);
592 static u32
ocp_read(struct rtl8169_private
*tp
, u8 mask
, u16 reg
)
594 void __iomem
*ioaddr
= tp
->mmio_addr
;
597 RTL_W32(OCPAR
, ((u32
)mask
& 0x0f) << 12 | (reg
& 0x0fff));
598 for (i
= 0; i
< 20; i
++) {
600 if (RTL_R32(OCPAR
) & OCPAR_FLAG
)
603 return RTL_R32(OCPDR
);
606 static void ocp_write(struct rtl8169_private
*tp
, u8 mask
, u16 reg
, u32 data
)
608 void __iomem
*ioaddr
= tp
->mmio_addr
;
611 RTL_W32(OCPDR
, data
);
612 RTL_W32(OCPAR
, OCPAR_FLAG
| ((u32
)mask
& 0x0f) << 12 | (reg
& 0x0fff));
613 for (i
= 0; i
< 20; i
++) {
615 if ((RTL_R32(OCPAR
) & OCPAR_FLAG
) == 0)
620 static void rtl8168_oob_notify(void __iomem
*ioaddr
, u8 cmd
)
625 RTL_W32(ERIAR
, 0x800010e8);
627 for (i
= 0; i
< 5; i
++) {
629 if (!(RTL_R32(ERIDR
) & ERIAR_FLAG
))
633 ocp_write(ioaddr
, 0x1, 0x30, 0x00000001);
636 #define OOB_CMD_RESET 0x00
637 #define OOB_CMD_DRIVER_START 0x05
638 #define OOB_CMD_DRIVER_STOP 0x06
640 static void rtl8168_driver_start(struct rtl8169_private
*tp
)
644 rtl8168_oob_notify(tp
, OOB_CMD_DRIVER_START
);
646 for (i
= 0; i
< 10; i
++) {
648 if (ocp_read(tp
, 0x0f, 0x0010) & 0x00000800)
653 static void rtl8168_driver_stop(struct rtl8169_private
*tp
)
657 rtl8168_oob_notify(tp
, OOB_CMD_DRIVER_STOP
);
659 for (i
= 0; i
< 10; i
++) {
661 if ((ocp_read(tp
, 0x0f, 0x0010) & 0x00000800) == 0)
667 static void r8169_mdio_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
671 RTL_W32(PHYAR
, 0x80000000 | (reg_addr
& 0x1f) << 16 | (value
& 0xffff));
673 for (i
= 20; i
> 0; i
--) {
675 * Check if the RTL8169 has completed writing to the specified
678 if (!(RTL_R32(PHYAR
) & 0x80000000))
683 * According to hardware specs a 20us delay is required after write
684 * complete indication, but before sending next command.
689 static int r8169_mdio_read(void __iomem
*ioaddr
, int reg_addr
)
693 RTL_W32(PHYAR
, 0x0 | (reg_addr
& 0x1f) << 16);
695 for (i
= 20; i
> 0; i
--) {
697 * Check if the RTL8169 has completed retrieving data from
698 * the specified MII register.
700 if (RTL_R32(PHYAR
) & 0x80000000) {
701 value
= RTL_R32(PHYAR
) & 0xffff;
707 * According to hardware specs a 20us delay is required after read
708 * complete indication, but before sending next command.
715 static void r8168dp_1_mdio_access(void __iomem
*ioaddr
, int reg_addr
, u32 data
)
719 RTL_W32(OCPDR
, data
|
720 ((reg_addr
& OCPDR_REG_MASK
) << OCPDR_GPHY_REG_SHIFT
));
721 RTL_W32(OCPAR
, OCPAR_GPHY_WRITE_CMD
);
722 RTL_W32(EPHY_RXER_NUM
, 0);
724 for (i
= 0; i
< 100; i
++) {
726 if (!(RTL_R32(OCPAR
) & OCPAR_FLAG
))
731 static void r8168dp_1_mdio_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
733 r8168dp_1_mdio_access(ioaddr
, reg_addr
, OCPDR_WRITE_CMD
|
734 (value
& OCPDR_DATA_MASK
));
737 static int r8168dp_1_mdio_read(void __iomem
*ioaddr
, int reg_addr
)
741 r8168dp_1_mdio_access(ioaddr
, reg_addr
, OCPDR_READ_CMD
);
744 RTL_W32(OCPAR
, OCPAR_GPHY_READ_CMD
);
745 RTL_W32(EPHY_RXER_NUM
, 0);
747 for (i
= 0; i
< 100; i
++) {
749 if (RTL_R32(OCPAR
) & OCPAR_FLAG
)
753 return RTL_R32(OCPDR
) & OCPDR_DATA_MASK
;
756 #define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
758 static void r8168dp_2_mdio_start(void __iomem
*ioaddr
)
760 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT
);
763 static void r8168dp_2_mdio_stop(void __iomem
*ioaddr
)
765 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT
);
768 static void r8168dp_2_mdio_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
770 r8168dp_2_mdio_start(ioaddr
);
772 r8169_mdio_write(ioaddr
, reg_addr
, value
);
774 r8168dp_2_mdio_stop(ioaddr
);
777 static int r8168dp_2_mdio_read(void __iomem
*ioaddr
, int reg_addr
)
781 r8168dp_2_mdio_start(ioaddr
);
783 value
= r8169_mdio_read(ioaddr
, reg_addr
);
785 r8168dp_2_mdio_stop(ioaddr
);
790 static void rtl_writephy(struct rtl8169_private
*tp
, int location
, u32 val
)
792 tp
->mdio_ops
.write(tp
->mmio_addr
, location
, val
);
795 static int rtl_readphy(struct rtl8169_private
*tp
, int location
)
797 return tp
->mdio_ops
.read(tp
->mmio_addr
, location
);
800 static void rtl_patchphy(struct rtl8169_private
*tp
, int reg_addr
, int value
)
802 rtl_writephy(tp
, reg_addr
, rtl_readphy(tp
, reg_addr
) | value
);
805 static void rtl_w1w0_phy(struct rtl8169_private
*tp
, int reg_addr
, int p
, int m
)
809 val
= rtl_readphy(tp
, reg_addr
);
810 rtl_writephy(tp
, reg_addr
, (val
| p
) & ~m
);
813 static void rtl_mdio_write(struct net_device
*dev
, int phy_id
, int location
,
816 struct rtl8169_private
*tp
= netdev_priv(dev
);
818 rtl_writephy(tp
, location
, val
);
821 static int rtl_mdio_read(struct net_device
*dev
, int phy_id
, int location
)
823 struct rtl8169_private
*tp
= netdev_priv(dev
);
825 return rtl_readphy(tp
, location
);
828 static void rtl_ephy_write(void __iomem
*ioaddr
, int reg_addr
, int value
)
832 RTL_W32(EPHYAR
, EPHYAR_WRITE_CMD
| (value
& EPHYAR_DATA_MASK
) |
833 (reg_addr
& EPHYAR_REG_MASK
) << EPHYAR_REG_SHIFT
);
835 for (i
= 0; i
< 100; i
++) {
836 if (!(RTL_R32(EPHYAR
) & EPHYAR_FLAG
))
842 static u16
rtl_ephy_read(void __iomem
*ioaddr
, int reg_addr
)
847 RTL_W32(EPHYAR
, (reg_addr
& EPHYAR_REG_MASK
) << EPHYAR_REG_SHIFT
);
849 for (i
= 0; i
< 100; i
++) {
850 if (RTL_R32(EPHYAR
) & EPHYAR_FLAG
) {
851 value
= RTL_R32(EPHYAR
) & EPHYAR_DATA_MASK
;
860 static void rtl_csi_write(void __iomem
*ioaddr
, int addr
, int value
)
864 RTL_W32(CSIDR
, value
);
865 RTL_W32(CSIAR
, CSIAR_WRITE_CMD
| (addr
& CSIAR_ADDR_MASK
) |
866 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
868 for (i
= 0; i
< 100; i
++) {
869 if (!(RTL_R32(CSIAR
) & CSIAR_FLAG
))
875 static u32
rtl_csi_read(void __iomem
*ioaddr
, int addr
)
880 RTL_W32(CSIAR
, (addr
& CSIAR_ADDR_MASK
) |
881 CSIAR_BYTE_ENABLE
<< CSIAR_BYTE_ENABLE_SHIFT
);
883 for (i
= 0; i
< 100; i
++) {
884 if (RTL_R32(CSIAR
) & CSIAR_FLAG
) {
885 value
= RTL_R32(CSIDR
);
894 static u8
rtl8168d_efuse_read(void __iomem
*ioaddr
, int reg_addr
)
899 RTL_W32(EFUSEAR
, (reg_addr
& EFUSEAR_REG_MASK
) << EFUSEAR_REG_SHIFT
);
901 for (i
= 0; i
< 300; i
++) {
902 if (RTL_R32(EFUSEAR
) & EFUSEAR_FLAG
) {
903 value
= RTL_R32(EFUSEAR
) & EFUSEAR_DATA_MASK
;
912 static void rtl8169_irq_mask_and_ack(void __iomem
*ioaddr
)
914 RTL_W16(IntrMask
, 0x0000);
916 RTL_W16(IntrStatus
, 0xffff);
919 static void rtl8169_asic_down(void __iomem
*ioaddr
)
921 RTL_W8(ChipCmd
, 0x00);
922 rtl8169_irq_mask_and_ack(ioaddr
);
926 static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private
*tp
)
928 void __iomem
*ioaddr
= tp
->mmio_addr
;
930 return RTL_R32(TBICSR
) & TBIReset
;
933 static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private
*tp
)
935 return rtl_readphy(tp
, MII_BMCR
) & BMCR_RESET
;
938 static unsigned int rtl8169_tbi_link_ok(void __iomem
*ioaddr
)
940 return RTL_R32(TBICSR
) & TBILinkOk
;
943 static unsigned int rtl8169_xmii_link_ok(void __iomem
*ioaddr
)
945 return RTL_R8(PHYstatus
) & LinkStatus
;
948 static void rtl8169_tbi_reset_enable(struct rtl8169_private
*tp
)
950 void __iomem
*ioaddr
= tp
->mmio_addr
;
952 RTL_W32(TBICSR
, RTL_R32(TBICSR
) | TBIReset
);
955 static void rtl8169_xmii_reset_enable(struct rtl8169_private
*tp
)
959 val
= rtl_readphy(tp
, MII_BMCR
) | BMCR_RESET
;
960 rtl_writephy(tp
, MII_BMCR
, val
& 0xffff);
963 static void __rtl8169_check_link_status(struct net_device
*dev
,
964 struct rtl8169_private
*tp
,
965 void __iomem
*ioaddr
,
970 spin_lock_irqsave(&tp
->lock
, flags
);
971 if (tp
->link_ok(ioaddr
)) {
972 /* This is to cancel a scheduled suspend if there's one. */
974 pm_request_resume(&tp
->pci_dev
->dev
);
975 netif_carrier_on(dev
);
977 netif_info(tp
, ifup
, dev
, "link up\n");
979 netif_carrier_off(dev
);
980 netif_info(tp
, ifdown
, dev
, "link down\n");
982 pm_schedule_suspend(&tp
->pci_dev
->dev
, 100);
984 spin_unlock_irqrestore(&tp
->lock
, flags
);
987 static void rtl8169_check_link_status(struct net_device
*dev
,
988 struct rtl8169_private
*tp
,
989 void __iomem
*ioaddr
)
991 __rtl8169_check_link_status(dev
, tp
, ioaddr
, false);
994 #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
996 static u32
__rtl8169_get_wol(struct rtl8169_private
*tp
)
998 void __iomem
*ioaddr
= tp
->mmio_addr
;
1002 options
= RTL_R8(Config1
);
1003 if (!(options
& PMEnable
))
1006 options
= RTL_R8(Config3
);
1007 if (options
& LinkUp
)
1008 wolopts
|= WAKE_PHY
;
1009 if (options
& MagicPacket
)
1010 wolopts
|= WAKE_MAGIC
;
1012 options
= RTL_R8(Config5
);
1014 wolopts
|= WAKE_UCAST
;
1016 wolopts
|= WAKE_BCAST
;
1018 wolopts
|= WAKE_MCAST
;
1023 static void rtl8169_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1025 struct rtl8169_private
*tp
= netdev_priv(dev
);
1027 spin_lock_irq(&tp
->lock
);
1029 wol
->supported
= WAKE_ANY
;
1030 wol
->wolopts
= __rtl8169_get_wol(tp
);
1032 spin_unlock_irq(&tp
->lock
);
1035 static void __rtl8169_set_wol(struct rtl8169_private
*tp
, u32 wolopts
)
1037 void __iomem
*ioaddr
= tp
->mmio_addr
;
1039 static const struct {
1044 { WAKE_ANY
, Config1
, PMEnable
},
1045 { WAKE_PHY
, Config3
, LinkUp
},
1046 { WAKE_MAGIC
, Config3
, MagicPacket
},
1047 { WAKE_UCAST
, Config5
, UWF
},
1048 { WAKE_BCAST
, Config5
, BWF
},
1049 { WAKE_MCAST
, Config5
, MWF
},
1050 { WAKE_ANY
, Config5
, LanWake
}
1053 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
1055 for (i
= 0; i
< ARRAY_SIZE(cfg
); i
++) {
1056 u8 options
= RTL_R8(cfg
[i
].reg
) & ~cfg
[i
].mask
;
1057 if (wolopts
& cfg
[i
].opt
)
1058 options
|= cfg
[i
].mask
;
1059 RTL_W8(cfg
[i
].reg
, options
);
1062 RTL_W8(Cfg9346
, Cfg9346_Lock
);
1065 static int rtl8169_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1067 struct rtl8169_private
*tp
= netdev_priv(dev
);
1069 spin_lock_irq(&tp
->lock
);
1072 tp
->features
|= RTL_FEATURE_WOL
;
1074 tp
->features
&= ~RTL_FEATURE_WOL
;
1075 __rtl8169_set_wol(tp
, wol
->wolopts
);
1076 spin_unlock_irq(&tp
->lock
);
1078 device_set_wakeup_enable(&tp
->pci_dev
->dev
, wol
->wolopts
);
1083 static void rtl8169_get_drvinfo(struct net_device
*dev
,
1084 struct ethtool_drvinfo
*info
)
1086 struct rtl8169_private
*tp
= netdev_priv(dev
);
1088 strcpy(info
->driver
, MODULENAME
);
1089 strcpy(info
->version
, RTL8169_VERSION
);
1090 strcpy(info
->bus_info
, pci_name(tp
->pci_dev
));
1093 static int rtl8169_get_regs_len(struct net_device
*dev
)
1095 return R8169_REGS_SIZE
;
1098 static int rtl8169_set_speed_tbi(struct net_device
*dev
,
1099 u8 autoneg
, u16 speed
, u8 duplex
)
1101 struct rtl8169_private
*tp
= netdev_priv(dev
);
1102 void __iomem
*ioaddr
= tp
->mmio_addr
;
1106 reg
= RTL_R32(TBICSR
);
1107 if ((autoneg
== AUTONEG_DISABLE
) && (speed
== SPEED_1000
) &&
1108 (duplex
== DUPLEX_FULL
)) {
1109 RTL_W32(TBICSR
, reg
& ~(TBINwEnable
| TBINwRestart
));
1110 } else if (autoneg
== AUTONEG_ENABLE
)
1111 RTL_W32(TBICSR
, reg
| TBINwEnable
| TBINwRestart
);
1113 netif_warn(tp
, link
, dev
,
1114 "incorrect speed setting refused in TBI mode\n");
1121 static int rtl8169_set_speed_xmii(struct net_device
*dev
,
1122 u8 autoneg
, u16 speed
, u8 duplex
)
1124 struct rtl8169_private
*tp
= netdev_priv(dev
);
1125 int giga_ctrl
, bmcr
;
1127 if (autoneg
== AUTONEG_ENABLE
) {
1130 auto_nego
= rtl_readphy(tp
, MII_ADVERTISE
);
1131 auto_nego
|= (ADVERTISE_10HALF
| ADVERTISE_10FULL
|
1132 ADVERTISE_100HALF
| ADVERTISE_100FULL
);
1133 auto_nego
|= ADVERTISE_PAUSE_CAP
| ADVERTISE_PAUSE_ASYM
;
1135 giga_ctrl
= rtl_readphy(tp
, MII_CTRL1000
);
1136 giga_ctrl
&= ~(ADVERTISE_1000FULL
| ADVERTISE_1000HALF
);
1138 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1139 if ((tp
->mac_version
!= RTL_GIGA_MAC_VER_07
) &&
1140 (tp
->mac_version
!= RTL_GIGA_MAC_VER_08
) &&
1141 (tp
->mac_version
!= RTL_GIGA_MAC_VER_09
) &&
1142 (tp
->mac_version
!= RTL_GIGA_MAC_VER_10
) &&
1143 (tp
->mac_version
!= RTL_GIGA_MAC_VER_13
) &&
1144 (tp
->mac_version
!= RTL_GIGA_MAC_VER_14
) &&
1145 (tp
->mac_version
!= RTL_GIGA_MAC_VER_15
) &&
1146 (tp
->mac_version
!= RTL_GIGA_MAC_VER_16
)) {
1147 giga_ctrl
|= ADVERTISE_1000FULL
| ADVERTISE_1000HALF
;
1149 netif_info(tp
, link
, dev
,
1150 "PHY does not support 1000Mbps\n");
1153 bmcr
= BMCR_ANENABLE
| BMCR_ANRESTART
;
1155 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_11
) ||
1156 (tp
->mac_version
== RTL_GIGA_MAC_VER_12
) ||
1157 (tp
->mac_version
>= RTL_GIGA_MAC_VER_17
)) {
1160 * Vendor specific (0x1f) and reserved (0x0e) MII
1163 rtl_writephy(tp
, 0x1f, 0x0000);
1164 rtl_writephy(tp
, 0x0e, 0x0000);
1167 rtl_writephy(tp
, MII_ADVERTISE
, auto_nego
);
1168 rtl_writephy(tp
, MII_CTRL1000
, giga_ctrl
);
1172 if (speed
== SPEED_10
)
1174 else if (speed
== SPEED_100
)
1175 bmcr
= BMCR_SPEED100
;
1179 if (duplex
== DUPLEX_FULL
)
1180 bmcr
|= BMCR_FULLDPLX
;
1182 rtl_writephy(tp
, 0x1f, 0x0000);
1185 tp
->phy_1000_ctrl_reg
= giga_ctrl
;
1187 rtl_writephy(tp
, MII_BMCR
, bmcr
);
1189 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_02
) ||
1190 (tp
->mac_version
== RTL_GIGA_MAC_VER_03
)) {
1191 if ((speed
== SPEED_100
) && (autoneg
!= AUTONEG_ENABLE
)) {
1192 rtl_writephy(tp
, 0x17, 0x2138);
1193 rtl_writephy(tp
, 0x0e, 0x0260);
1195 rtl_writephy(tp
, 0x17, 0x2108);
1196 rtl_writephy(tp
, 0x0e, 0x0000);
1203 static int rtl8169_set_speed(struct net_device
*dev
,
1204 u8 autoneg
, u16 speed
, u8 duplex
)
1206 struct rtl8169_private
*tp
= netdev_priv(dev
);
1209 ret
= tp
->set_speed(dev
, autoneg
, speed
, duplex
);
1211 if (netif_running(dev
) && (tp
->phy_1000_ctrl_reg
& ADVERTISE_1000FULL
))
1212 mod_timer(&tp
->timer
, jiffies
+ RTL8169_PHY_TIMEOUT
);
1217 static int rtl8169_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1219 struct rtl8169_private
*tp
= netdev_priv(dev
);
1220 unsigned long flags
;
1223 spin_lock_irqsave(&tp
->lock
, flags
);
1224 ret
= rtl8169_set_speed(dev
, cmd
->autoneg
, cmd
->speed
, cmd
->duplex
);
1225 spin_unlock_irqrestore(&tp
->lock
, flags
);
1230 static u32
rtl8169_get_rx_csum(struct net_device
*dev
)
1232 struct rtl8169_private
*tp
= netdev_priv(dev
);
1234 return tp
->cp_cmd
& RxChkSum
;
1237 static int rtl8169_set_rx_csum(struct net_device
*dev
, u32 data
)
1239 struct rtl8169_private
*tp
= netdev_priv(dev
);
1240 void __iomem
*ioaddr
= tp
->mmio_addr
;
1241 unsigned long flags
;
1243 spin_lock_irqsave(&tp
->lock
, flags
);
1246 tp
->cp_cmd
|= RxChkSum
;
1248 tp
->cp_cmd
&= ~RxChkSum
;
1250 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
1253 spin_unlock_irqrestore(&tp
->lock
, flags
);
1258 #ifdef CONFIG_R8169_VLAN
1260 static inline u32
rtl8169_tx_vlan_tag(struct rtl8169_private
*tp
,
1261 struct sk_buff
*skb
)
1263 return (vlan_tx_tag_present(skb
)) ?
1264 TxVlanTag
| swab16(vlan_tx_tag_get(skb
)) : 0x00;
1267 static void rtl8169_vlan_rx_register(struct net_device
*dev
,
1268 struct vlan_group
*grp
)
1270 struct rtl8169_private
*tp
= netdev_priv(dev
);
1271 void __iomem
*ioaddr
= tp
->mmio_addr
;
1272 unsigned long flags
;
1274 spin_lock_irqsave(&tp
->lock
, flags
);
1277 * Do not disable RxVlan on 8110SCd.
1279 if (tp
->vlgrp
|| (tp
->mac_version
== RTL_GIGA_MAC_VER_05
))
1280 tp
->cp_cmd
|= RxVlan
;
1282 tp
->cp_cmd
&= ~RxVlan
;
1283 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
1285 spin_unlock_irqrestore(&tp
->lock
, flags
);
1288 static int rtl8169_rx_vlan_skb(struct rtl8169_private
*tp
, struct RxDesc
*desc
,
1289 struct sk_buff
*skb
, int polling
)
1291 u32 opts2
= le32_to_cpu(desc
->opts2
);
1292 struct vlan_group
*vlgrp
= tp
->vlgrp
;
1295 if (vlgrp
&& (opts2
& RxVlanTag
)) {
1296 u16 vtag
= swab16(opts2
& 0xffff);
1298 if (likely(polling
))
1299 vlan_gro_receive(&tp
->napi
, vlgrp
, vtag
, skb
);
1301 __vlan_hwaccel_rx(skb
, vlgrp
, vtag
, polling
);
1309 #else /* !CONFIG_R8169_VLAN */
1311 static inline u32
rtl8169_tx_vlan_tag(struct rtl8169_private
*tp
,
1312 struct sk_buff
*skb
)
1317 static int rtl8169_rx_vlan_skb(struct rtl8169_private
*tp
, struct RxDesc
*desc
,
1318 struct sk_buff
*skb
, int polling
)
1325 static int rtl8169_gset_tbi(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1327 struct rtl8169_private
*tp
= netdev_priv(dev
);
1328 void __iomem
*ioaddr
= tp
->mmio_addr
;
1332 SUPPORTED_1000baseT_Full
| SUPPORTED_Autoneg
| SUPPORTED_FIBRE
;
1333 cmd
->port
= PORT_FIBRE
;
1334 cmd
->transceiver
= XCVR_INTERNAL
;
1336 status
= RTL_R32(TBICSR
);
1337 cmd
->advertising
= (status
& TBINwEnable
) ? ADVERTISED_Autoneg
: 0;
1338 cmd
->autoneg
= !!(status
& TBINwEnable
);
1340 cmd
->speed
= SPEED_1000
;
1341 cmd
->duplex
= DUPLEX_FULL
; /* Always set */
1346 static int rtl8169_gset_xmii(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1348 struct rtl8169_private
*tp
= netdev_priv(dev
);
1350 return mii_ethtool_gset(&tp
->mii
, cmd
);
1353 static int rtl8169_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1355 struct rtl8169_private
*tp
= netdev_priv(dev
);
1356 unsigned long flags
;
1359 spin_lock_irqsave(&tp
->lock
, flags
);
1361 rc
= tp
->get_settings(dev
, cmd
);
1363 spin_unlock_irqrestore(&tp
->lock
, flags
);
1367 static void rtl8169_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
,
1370 struct rtl8169_private
*tp
= netdev_priv(dev
);
1371 unsigned long flags
;
1373 if (regs
->len
> R8169_REGS_SIZE
)
1374 regs
->len
= R8169_REGS_SIZE
;
1376 spin_lock_irqsave(&tp
->lock
, flags
);
1377 memcpy_fromio(p
, tp
->mmio_addr
, regs
->len
);
1378 spin_unlock_irqrestore(&tp
->lock
, flags
);
1381 static u32
rtl8169_get_msglevel(struct net_device
*dev
)
1383 struct rtl8169_private
*tp
= netdev_priv(dev
);
1385 return tp
->msg_enable
;
1388 static void rtl8169_set_msglevel(struct net_device
*dev
, u32 value
)
1390 struct rtl8169_private
*tp
= netdev_priv(dev
);
1392 tp
->msg_enable
= value
;
1395 static const char rtl8169_gstrings
[][ETH_GSTRING_LEN
] = {
1402 "tx_single_collisions",
1403 "tx_multi_collisions",
1411 static int rtl8169_get_sset_count(struct net_device
*dev
, int sset
)
1415 return ARRAY_SIZE(rtl8169_gstrings
);
1421 static void rtl8169_update_counters(struct net_device
*dev
)
1423 struct rtl8169_private
*tp
= netdev_priv(dev
);
1424 void __iomem
*ioaddr
= tp
->mmio_addr
;
1425 struct rtl8169_counters
*counters
;
1429 struct device
*d
= &tp
->pci_dev
->dev
;
1432 * Some chips are unable to dump tally counters when the receiver
1435 if ((RTL_R8(ChipCmd
) & CmdRxEnb
) == 0)
1438 counters
= dma_alloc_coherent(d
, sizeof(*counters
), &paddr
, GFP_KERNEL
);
1442 RTL_W32(CounterAddrHigh
, (u64
)paddr
>> 32);
1443 cmd
= (u64
)paddr
& DMA_BIT_MASK(32);
1444 RTL_W32(CounterAddrLow
, cmd
);
1445 RTL_W32(CounterAddrLow
, cmd
| CounterDump
);
1448 if ((RTL_R32(CounterAddrLow
) & CounterDump
) == 0) {
1449 /* copy updated counters */
1450 memcpy(&tp
->counters
, counters
, sizeof(*counters
));
1456 RTL_W32(CounterAddrLow
, 0);
1457 RTL_W32(CounterAddrHigh
, 0);
1459 dma_free_coherent(d
, sizeof(*counters
), counters
, paddr
);
1462 static void rtl8169_get_ethtool_stats(struct net_device
*dev
,
1463 struct ethtool_stats
*stats
, u64
*data
)
1465 struct rtl8169_private
*tp
= netdev_priv(dev
);
1469 rtl8169_update_counters(dev
);
1471 data
[0] = le64_to_cpu(tp
->counters
.tx_packets
);
1472 data
[1] = le64_to_cpu(tp
->counters
.rx_packets
);
1473 data
[2] = le64_to_cpu(tp
->counters
.tx_errors
);
1474 data
[3] = le32_to_cpu(tp
->counters
.rx_errors
);
1475 data
[4] = le16_to_cpu(tp
->counters
.rx_missed
);
1476 data
[5] = le16_to_cpu(tp
->counters
.align_errors
);
1477 data
[6] = le32_to_cpu(tp
->counters
.tx_one_collision
);
1478 data
[7] = le32_to_cpu(tp
->counters
.tx_multi_collision
);
1479 data
[8] = le64_to_cpu(tp
->counters
.rx_unicast
);
1480 data
[9] = le64_to_cpu(tp
->counters
.rx_broadcast
);
1481 data
[10] = le32_to_cpu(tp
->counters
.rx_multicast
);
1482 data
[11] = le16_to_cpu(tp
->counters
.tx_aborted
);
1483 data
[12] = le16_to_cpu(tp
->counters
.tx_underun
);
1486 static void rtl8169_get_strings(struct net_device
*dev
, u32 stringset
, u8
*data
)
1490 memcpy(data
, *rtl8169_gstrings
, sizeof(rtl8169_gstrings
));
1495 static const struct ethtool_ops rtl8169_ethtool_ops
= {
1496 .get_drvinfo
= rtl8169_get_drvinfo
,
1497 .get_regs_len
= rtl8169_get_regs_len
,
1498 .get_link
= ethtool_op_get_link
,
1499 .get_settings
= rtl8169_get_settings
,
1500 .set_settings
= rtl8169_set_settings
,
1501 .get_msglevel
= rtl8169_get_msglevel
,
1502 .set_msglevel
= rtl8169_set_msglevel
,
1503 .get_rx_csum
= rtl8169_get_rx_csum
,
1504 .set_rx_csum
= rtl8169_set_rx_csum
,
1505 .set_tx_csum
= ethtool_op_set_tx_csum
,
1506 .set_sg
= ethtool_op_set_sg
,
1507 .set_tso
= ethtool_op_set_tso
,
1508 .get_regs
= rtl8169_get_regs
,
1509 .get_wol
= rtl8169_get_wol
,
1510 .set_wol
= rtl8169_set_wol
,
1511 .get_strings
= rtl8169_get_strings
,
1512 .get_sset_count
= rtl8169_get_sset_count
,
1513 .get_ethtool_stats
= rtl8169_get_ethtool_stats
,
1516 static void rtl8169_get_mac_version(struct rtl8169_private
*tp
,
1517 void __iomem
*ioaddr
)
1520 * The driver currently handles the 8168Bf and the 8168Be identically
1521 * but they can be identified more specifically through the test below
1524 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
1526 * Same thing for the 8101Eb and the 8101Ec:
1528 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
1530 static const struct {
1536 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26
},
1537 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25
},
1538 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26
},
1540 /* 8168DP family. */
1541 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27
},
1542 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28
},
1545 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24
},
1546 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23
},
1547 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18
},
1548 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24
},
1549 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19
},
1550 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20
},
1551 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21
},
1552 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22
},
1553 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22
},
1556 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12
},
1557 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17
},
1558 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17
},
1559 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11
},
1562 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09
},
1563 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09
},
1564 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08
},
1565 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08
},
1566 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07
},
1567 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07
},
1568 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13
},
1569 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10
},
1570 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16
},
1571 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09
},
1572 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09
},
1573 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16
},
1574 /* FIXME: where did these entries come from ? -- FR */
1575 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15
},
1576 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14
},
1579 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06
},
1580 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05
},
1581 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04
},
1582 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03
},
1583 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02
},
1584 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01
},
1587 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE
}
1591 reg
= RTL_R32(TxConfig
);
1592 while ((reg
& p
->mask
) != p
->val
)
1594 tp
->mac_version
= p
->mac_version
;
1597 static void rtl8169_print_mac_version(struct rtl8169_private
*tp
)
1599 dprintk("mac_version = 0x%02x\n", tp
->mac_version
);
1607 static void rtl_writephy_batch(struct rtl8169_private
*tp
,
1608 const struct phy_reg
*regs
, int len
)
1611 rtl_writephy(tp
, regs
->reg
, regs
->val
);
1616 #define PHY_READ 0x00000000
1617 #define PHY_DATA_OR 0x10000000
1618 #define PHY_DATA_AND 0x20000000
1619 #define PHY_BJMPN 0x30000000
1620 #define PHY_READ_EFUSE 0x40000000
1621 #define PHY_READ_MAC_BYTE 0x50000000
1622 #define PHY_WRITE_MAC_BYTE 0x60000000
1623 #define PHY_CLEAR_READCOUNT 0x70000000
1624 #define PHY_WRITE 0x80000000
1625 #define PHY_READCOUNT_EQ_SKIP 0x90000000
1626 #define PHY_COMP_EQ_SKIPN 0xa0000000
1627 #define PHY_COMP_NEQ_SKIPN 0xb0000000
1628 #define PHY_WRITE_PREVIOUS 0xc0000000
1629 #define PHY_SKIPN 0xd0000000
1630 #define PHY_DELAY_MS 0xe0000000
1631 #define PHY_WRITE_ERI_WORD 0xf0000000
1634 rtl_phy_write_fw(struct rtl8169_private
*tp
, const struct firmware
*fw
)
1636 __le32
*phytable
= (__le32
*)fw
->data
;
1637 struct net_device
*dev
= tp
->dev
;
1638 size_t index
, fw_size
= fw
->size
/ sizeof(*phytable
);
1641 if (fw
->size
% sizeof(*phytable
)) {
1642 netif_err(tp
, probe
, dev
, "odd sized firmware %zd\n", fw
->size
);
1646 for (index
= 0; index
< fw_size
; index
++) {
1647 u32 action
= le32_to_cpu(phytable
[index
]);
1648 u32 regno
= (action
& 0x0fff0000) >> 16;
1650 switch(action
& 0xf0000000) {
1654 case PHY_READ_EFUSE
:
1655 case PHY_CLEAR_READCOUNT
:
1657 case PHY_WRITE_PREVIOUS
:
1662 if (regno
> index
) {
1663 netif_err(tp
, probe
, tp
->dev
,
1664 "Out of range of firmware\n");
1668 case PHY_READCOUNT_EQ_SKIP
:
1669 if (index
+ 2 >= fw_size
) {
1670 netif_err(tp
, probe
, tp
->dev
,
1671 "Out of range of firmware\n");
1675 case PHY_COMP_EQ_SKIPN
:
1676 case PHY_COMP_NEQ_SKIPN
:
1678 if (index
+ 1 + regno
>= fw_size
) {
1679 netif_err(tp
, probe
, tp
->dev
,
1680 "Out of range of firmware\n");
1685 case PHY_READ_MAC_BYTE
:
1686 case PHY_WRITE_MAC_BYTE
:
1687 case PHY_WRITE_ERI_WORD
:
1689 netif_err(tp
, probe
, tp
->dev
,
1690 "Invalid action 0x%08x\n", action
);
1698 for (index
= 0; index
< fw_size
; ) {
1699 u32 action
= le32_to_cpu(phytable
[index
]);
1700 u32 data
= action
& 0x0000ffff;
1701 u32 regno
= (action
& 0x0fff0000) >> 16;
1706 switch(action
& 0xf0000000) {
1708 predata
= rtl_readphy(tp
, regno
);
1723 case PHY_READ_EFUSE
:
1724 predata
= rtl8168d_efuse_read(tp
->mmio_addr
, regno
);
1727 case PHY_CLEAR_READCOUNT
:
1732 rtl_writephy(tp
, regno
, data
);
1735 case PHY_READCOUNT_EQ_SKIP
:
1741 case PHY_COMP_EQ_SKIPN
:
1742 if (predata
== data
)
1746 case PHY_COMP_NEQ_SKIPN
:
1747 if (predata
!= data
)
1751 case PHY_WRITE_PREVIOUS
:
1752 rtl_writephy(tp
, regno
, predata
);
1763 case PHY_READ_MAC_BYTE
:
1764 case PHY_WRITE_MAC_BYTE
:
1765 case PHY_WRITE_ERI_WORD
:
1772 static void rtl_release_firmware(struct rtl8169_private
*tp
)
1774 release_firmware(tp
->fw
);
1778 static int rtl_apply_firmware(struct rtl8169_private
*tp
, const char *fw_name
)
1780 const struct firmware
**fw
= &tp
->fw
;
1784 rc
= request_firmware(fw
, fw_name
, &tp
->pci_dev
->dev
);
1789 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
1790 rtl_phy_write_fw(tp
, *fw
);
1795 static void rtl8169s_hw_phy_config(struct rtl8169_private
*tp
)
1797 static const struct phy_reg phy_reg_init
[] = {
1859 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1862 static void rtl8169sb_hw_phy_config(struct rtl8169_private
*tp
)
1864 static const struct phy_reg phy_reg_init
[] = {
1870 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1873 static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private
*tp
)
1875 struct pci_dev
*pdev
= tp
->pci_dev
;
1876 u16 vendor_id
, device_id
;
1878 pci_read_config_word(pdev
, PCI_SUBSYSTEM_VENDOR_ID
, &vendor_id
);
1879 pci_read_config_word(pdev
, PCI_SUBSYSTEM_ID
, &device_id
);
1881 if ((vendor_id
!= PCI_VENDOR_ID_GIGABYTE
) || (device_id
!= 0xe000))
1884 rtl_writephy(tp
, 0x1f, 0x0001);
1885 rtl_writephy(tp
, 0x10, 0xf01b);
1886 rtl_writephy(tp
, 0x1f, 0x0000);
1889 static void rtl8169scd_hw_phy_config(struct rtl8169_private
*tp
)
1891 static const struct phy_reg phy_reg_init
[] = {
1931 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1933 rtl8169scd_hw_phy_config_quirk(tp
);
1936 static void rtl8169sce_hw_phy_config(struct rtl8169_private
*tp
)
1938 static const struct phy_reg phy_reg_init
[] = {
1986 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
1989 static void rtl8168bb_hw_phy_config(struct rtl8169_private
*tp
)
1991 static const struct phy_reg phy_reg_init
[] = {
1996 rtl_writephy(tp
, 0x1f, 0x0001);
1997 rtl_patchphy(tp
, 0x16, 1 << 0);
1999 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2002 static void rtl8168bef_hw_phy_config(struct rtl8169_private
*tp
)
2004 static const struct phy_reg phy_reg_init
[] = {
2010 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2013 static void rtl8168cp_1_hw_phy_config(struct rtl8169_private
*tp
)
2015 static const struct phy_reg phy_reg_init
[] = {
2023 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2026 static void rtl8168cp_2_hw_phy_config(struct rtl8169_private
*tp
)
2028 static const struct phy_reg phy_reg_init
[] = {
2034 rtl_writephy(tp
, 0x1f, 0x0000);
2035 rtl_patchphy(tp
, 0x14, 1 << 5);
2036 rtl_patchphy(tp
, 0x0d, 1 << 5);
2038 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2041 static void rtl8168c_1_hw_phy_config(struct rtl8169_private
*tp
)
2043 static const struct phy_reg phy_reg_init
[] = {
2063 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2065 rtl_patchphy(tp
, 0x14, 1 << 5);
2066 rtl_patchphy(tp
, 0x0d, 1 << 5);
2067 rtl_writephy(tp
, 0x1f, 0x0000);
2070 static void rtl8168c_2_hw_phy_config(struct rtl8169_private
*tp
)
2072 static const struct phy_reg phy_reg_init
[] = {
2090 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2092 rtl_patchphy(tp
, 0x16, 1 << 0);
2093 rtl_patchphy(tp
, 0x14, 1 << 5);
2094 rtl_patchphy(tp
, 0x0d, 1 << 5);
2095 rtl_writephy(tp
, 0x1f, 0x0000);
2098 static void rtl8168c_3_hw_phy_config(struct rtl8169_private
*tp
)
2100 static const struct phy_reg phy_reg_init
[] = {
2112 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2114 rtl_patchphy(tp
, 0x16, 1 << 0);
2115 rtl_patchphy(tp
, 0x14, 1 << 5);
2116 rtl_patchphy(tp
, 0x0d, 1 << 5);
2117 rtl_writephy(tp
, 0x1f, 0x0000);
2120 static void rtl8168c_4_hw_phy_config(struct rtl8169_private
*tp
)
2122 rtl8168c_3_hw_phy_config(tp
);
2125 static void rtl8168d_1_hw_phy_config(struct rtl8169_private
*tp
)
2127 static const struct phy_reg phy_reg_init_0
[] = {
2128 /* Channel Estimation */
2149 * enhance line driver power
2158 * Can not link to 1Gbps with bad cable
2159 * Decrease SNR threshold form 21.07dB to 19.04dB
2167 void __iomem
*ioaddr
= tp
->mmio_addr
;
2169 rtl_writephy_batch(tp
, phy_reg_init_0
, ARRAY_SIZE(phy_reg_init_0
));
2173 * Fine Tune Switching regulator parameter
2175 rtl_writephy(tp
, 0x1f, 0x0002);
2176 rtl_w1w0_phy(tp
, 0x0b, 0x0010, 0x00ef);
2177 rtl_w1w0_phy(tp
, 0x0c, 0xa200, 0x5d00);
2179 if (rtl8168d_efuse_read(ioaddr
, 0x01) == 0xb1) {
2180 static const struct phy_reg phy_reg_init
[] = {
2190 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2192 val
= rtl_readphy(tp
, 0x0d);
2194 if ((val
& 0x00ff) != 0x006c) {
2195 static const u32 set
[] = {
2196 0x0065, 0x0066, 0x0067, 0x0068,
2197 0x0069, 0x006a, 0x006b, 0x006c
2201 rtl_writephy(tp
, 0x1f, 0x0002);
2204 for (i
= 0; i
< ARRAY_SIZE(set
); i
++)
2205 rtl_writephy(tp
, 0x0d, val
| set
[i
]);
2208 static const struct phy_reg phy_reg_init
[] = {
2216 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2219 /* RSET couple improve */
2220 rtl_writephy(tp
, 0x1f, 0x0002);
2221 rtl_patchphy(tp
, 0x0d, 0x0300);
2222 rtl_patchphy(tp
, 0x0f, 0x0010);
2224 /* Fine tune PLL performance */
2225 rtl_writephy(tp
, 0x1f, 0x0002);
2226 rtl_w1w0_phy(tp
, 0x02, 0x0100, 0x0600);
2227 rtl_w1w0_phy(tp
, 0x03, 0x0000, 0xe000);
2229 rtl_writephy(tp
, 0x1f, 0x0005);
2230 rtl_writephy(tp
, 0x05, 0x001b);
2231 if ((rtl_readphy(tp
, 0x06) != 0xbf00) ||
2232 (rtl_apply_firmware(tp
, FIRMWARE_8168D_1
) < 0)) {
2233 netif_warn(tp
, probe
, tp
->dev
, "unable to apply firmware patch\n");
2236 rtl_writephy(tp
, 0x1f, 0x0000);
2239 static void rtl8168d_2_hw_phy_config(struct rtl8169_private
*tp
)
2241 static const struct phy_reg phy_reg_init_0
[] = {
2242 /* Channel Estimation */
2263 * enhance line driver power
2272 * Can not link to 1Gbps with bad cable
2273 * Decrease SNR threshold form 21.07dB to 19.04dB
2281 void __iomem
*ioaddr
= tp
->mmio_addr
;
2283 rtl_writephy_batch(tp
, phy_reg_init_0
, ARRAY_SIZE(phy_reg_init_0
));
2285 if (rtl8168d_efuse_read(ioaddr
, 0x01) == 0xb1) {
2286 static const struct phy_reg phy_reg_init
[] = {
2297 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2299 val
= rtl_readphy(tp
, 0x0d);
2300 if ((val
& 0x00ff) != 0x006c) {
2301 static const u32 set
[] = {
2302 0x0065, 0x0066, 0x0067, 0x0068,
2303 0x0069, 0x006a, 0x006b, 0x006c
2307 rtl_writephy(tp
, 0x1f, 0x0002);
2310 for (i
= 0; i
< ARRAY_SIZE(set
); i
++)
2311 rtl_writephy(tp
, 0x0d, val
| set
[i
]);
2314 static const struct phy_reg phy_reg_init
[] = {
2322 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2325 /* Fine tune PLL performance */
2326 rtl_writephy(tp
, 0x1f, 0x0002);
2327 rtl_w1w0_phy(tp
, 0x02, 0x0100, 0x0600);
2328 rtl_w1w0_phy(tp
, 0x03, 0x0000, 0xe000);
2330 /* Switching regulator Slew rate */
2331 rtl_writephy(tp
, 0x1f, 0x0002);
2332 rtl_patchphy(tp
, 0x0f, 0x0017);
2334 rtl_writephy(tp
, 0x1f, 0x0005);
2335 rtl_writephy(tp
, 0x05, 0x001b);
2336 if ((rtl_readphy(tp
, 0x06) != 0xb300) ||
2337 (rtl_apply_firmware(tp
, FIRMWARE_8168D_2
) < 0)) {
2338 netif_warn(tp
, probe
, tp
->dev
, "unable to apply firmware patch\n");
2341 rtl_writephy(tp
, 0x1f, 0x0000);
2344 static void rtl8168d_3_hw_phy_config(struct rtl8169_private
*tp
)
2346 static const struct phy_reg phy_reg_init
[] = {
2402 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2405 static void rtl8168d_4_hw_phy_config(struct rtl8169_private
*tp
)
2407 static const struct phy_reg phy_reg_init
[] = {
2417 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2418 rtl_patchphy(tp
, 0x0d, 1 << 5);
2421 static void rtl8102e_hw_phy_config(struct rtl8169_private
*tp
)
2423 static const struct phy_reg phy_reg_init
[] = {
2430 rtl_writephy(tp
, 0x1f, 0x0000);
2431 rtl_patchphy(tp
, 0x11, 1 << 12);
2432 rtl_patchphy(tp
, 0x19, 1 << 13);
2433 rtl_patchphy(tp
, 0x10, 1 << 15);
2435 rtl_writephy_batch(tp
, phy_reg_init
, ARRAY_SIZE(phy_reg_init
));
2438 static void rtl_hw_phy_config(struct net_device
*dev
)
2440 struct rtl8169_private
*tp
= netdev_priv(dev
);
2442 rtl8169_print_mac_version(tp
);
2444 switch (tp
->mac_version
) {
2445 case RTL_GIGA_MAC_VER_01
:
2447 case RTL_GIGA_MAC_VER_02
:
2448 case RTL_GIGA_MAC_VER_03
:
2449 rtl8169s_hw_phy_config(tp
);
2451 case RTL_GIGA_MAC_VER_04
:
2452 rtl8169sb_hw_phy_config(tp
);
2454 case RTL_GIGA_MAC_VER_05
:
2455 rtl8169scd_hw_phy_config(tp
);
2457 case RTL_GIGA_MAC_VER_06
:
2458 rtl8169sce_hw_phy_config(tp
);
2460 case RTL_GIGA_MAC_VER_07
:
2461 case RTL_GIGA_MAC_VER_08
:
2462 case RTL_GIGA_MAC_VER_09
:
2463 rtl8102e_hw_phy_config(tp
);
2465 case RTL_GIGA_MAC_VER_11
:
2466 rtl8168bb_hw_phy_config(tp
);
2468 case RTL_GIGA_MAC_VER_12
:
2469 rtl8168bef_hw_phy_config(tp
);
2471 case RTL_GIGA_MAC_VER_17
:
2472 rtl8168bef_hw_phy_config(tp
);
2474 case RTL_GIGA_MAC_VER_18
:
2475 rtl8168cp_1_hw_phy_config(tp
);
2477 case RTL_GIGA_MAC_VER_19
:
2478 rtl8168c_1_hw_phy_config(tp
);
2480 case RTL_GIGA_MAC_VER_20
:
2481 rtl8168c_2_hw_phy_config(tp
);
2483 case RTL_GIGA_MAC_VER_21
:
2484 rtl8168c_3_hw_phy_config(tp
);
2486 case RTL_GIGA_MAC_VER_22
:
2487 rtl8168c_4_hw_phy_config(tp
);
2489 case RTL_GIGA_MAC_VER_23
:
2490 case RTL_GIGA_MAC_VER_24
:
2491 rtl8168cp_2_hw_phy_config(tp
);
2493 case RTL_GIGA_MAC_VER_25
:
2494 rtl8168d_1_hw_phy_config(tp
);
2496 case RTL_GIGA_MAC_VER_26
:
2497 rtl8168d_2_hw_phy_config(tp
);
2499 case RTL_GIGA_MAC_VER_27
:
2500 rtl8168d_3_hw_phy_config(tp
);
2502 case RTL_GIGA_MAC_VER_28
:
2503 rtl8168d_4_hw_phy_config(tp
);
2511 static void rtl8169_phy_timer(unsigned long __opaque
)
2513 struct net_device
*dev
= (struct net_device
*)__opaque
;
2514 struct rtl8169_private
*tp
= netdev_priv(dev
);
2515 struct timer_list
*timer
= &tp
->timer
;
2516 void __iomem
*ioaddr
= tp
->mmio_addr
;
2517 unsigned long timeout
= RTL8169_PHY_TIMEOUT
;
2519 assert(tp
->mac_version
> RTL_GIGA_MAC_VER_01
);
2521 if (!(tp
->phy_1000_ctrl_reg
& ADVERTISE_1000FULL
))
2524 spin_lock_irq(&tp
->lock
);
2526 if (tp
->phy_reset_pending(tp
)) {
2528 * A busy loop could burn quite a few cycles on nowadays CPU.
2529 * Let's delay the execution of the timer for a few ticks.
2535 if (tp
->link_ok(ioaddr
))
2538 netif_warn(tp
, link
, dev
, "PHY reset until link up\n");
2540 tp
->phy_reset_enable(tp
);
2543 mod_timer(timer
, jiffies
+ timeout
);
2545 spin_unlock_irq(&tp
->lock
);
2548 static inline void rtl8169_delete_timer(struct net_device
*dev
)
2550 struct rtl8169_private
*tp
= netdev_priv(dev
);
2551 struct timer_list
*timer
= &tp
->timer
;
2553 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_01
)
2556 del_timer_sync(timer
);
2559 static inline void rtl8169_request_timer(struct net_device
*dev
)
2561 struct rtl8169_private
*tp
= netdev_priv(dev
);
2562 struct timer_list
*timer
= &tp
->timer
;
2564 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_01
)
2567 mod_timer(timer
, jiffies
+ RTL8169_PHY_TIMEOUT
);
2570 #ifdef CONFIG_NET_POLL_CONTROLLER
2572 * Polling 'interrupt' - used by things like netconsole to send skbs
2573 * without having to re-enable interrupts. It's not called while
2574 * the interrupt routine is executing.
2576 static void rtl8169_netpoll(struct net_device
*dev
)
2578 struct rtl8169_private
*tp
= netdev_priv(dev
);
2579 struct pci_dev
*pdev
= tp
->pci_dev
;
2581 disable_irq(pdev
->irq
);
2582 rtl8169_interrupt(pdev
->irq
, dev
);
2583 enable_irq(pdev
->irq
);
2587 static void rtl8169_release_board(struct pci_dev
*pdev
, struct net_device
*dev
,
2588 void __iomem
*ioaddr
)
2591 pci_release_regions(pdev
);
2592 pci_clear_mwi(pdev
);
2593 pci_disable_device(pdev
);
2597 static void rtl8169_phy_reset(struct net_device
*dev
,
2598 struct rtl8169_private
*tp
)
2602 tp
->phy_reset_enable(tp
);
2603 for (i
= 0; i
< 100; i
++) {
2604 if (!tp
->phy_reset_pending(tp
))
2608 netif_err(tp
, link
, dev
, "PHY reset failed\n");
2611 static void rtl8169_init_phy(struct net_device
*dev
, struct rtl8169_private
*tp
)
2613 void __iomem
*ioaddr
= tp
->mmio_addr
;
2615 rtl_hw_phy_config(dev
);
2617 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_06
) {
2618 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2622 pci_write_config_byte(tp
->pci_dev
, PCI_LATENCY_TIMER
, 0x40);
2624 if (tp
->mac_version
<= RTL_GIGA_MAC_VER_06
)
2625 pci_write_config_byte(tp
->pci_dev
, PCI_CACHE_LINE_SIZE
, 0x08);
2627 if (tp
->mac_version
== RTL_GIGA_MAC_VER_02
) {
2628 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2630 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
2631 rtl_writephy(tp
, 0x0b, 0x0000); //w 0x0b 15 0 0
2634 rtl8169_phy_reset(dev
, tp
);
2637 * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
2638 * only 8101. Don't panic.
2640 rtl8169_set_speed(dev
, AUTONEG_ENABLE
, SPEED_1000
, DUPLEX_FULL
);
2642 if (RTL_R8(PHYstatus
) & TBI_Enable
)
2643 netif_info(tp
, link
, dev
, "TBI auto-negotiating\n");
2646 static void rtl_rar_set(struct rtl8169_private
*tp
, u8
*addr
)
2648 void __iomem
*ioaddr
= tp
->mmio_addr
;
2652 low
= addr
[0] | (addr
[1] << 8) | (addr
[2] << 16) | (addr
[3] << 24);
2653 high
= addr
[4] | (addr
[5] << 8);
2655 spin_lock_irq(&tp
->lock
);
2657 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
2659 RTL_W32(MAC4
, high
);
2665 RTL_W8(Cfg9346
, Cfg9346_Lock
);
2667 spin_unlock_irq(&tp
->lock
);
2670 static int rtl_set_mac_address(struct net_device
*dev
, void *p
)
2672 struct rtl8169_private
*tp
= netdev_priv(dev
);
2673 struct sockaddr
*addr
= p
;
2675 if (!is_valid_ether_addr(addr
->sa_data
))
2676 return -EADDRNOTAVAIL
;
2678 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
2680 rtl_rar_set(tp
, dev
->dev_addr
);
2685 static int rtl8169_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
2687 struct rtl8169_private
*tp
= netdev_priv(dev
);
2688 struct mii_ioctl_data
*data
= if_mii(ifr
);
2690 return netif_running(dev
) ? tp
->do_ioctl(tp
, data
, cmd
) : -ENODEV
;
2693 static int rtl_xmii_ioctl(struct rtl8169_private
*tp
, struct mii_ioctl_data
*data
, int cmd
)
2697 data
->phy_id
= 32; /* Internal PHY */
2701 data
->val_out
= rtl_readphy(tp
, data
->reg_num
& 0x1f);
2705 rtl_writephy(tp
, data
->reg_num
& 0x1f, data
->val_in
);
2711 static int rtl_tbi_ioctl(struct rtl8169_private
*tp
, struct mii_ioctl_data
*data
, int cmd
)
2716 static const struct rtl_cfg_info
{
2717 void (*hw_start
)(struct net_device
*);
2718 unsigned int region
;
2724 } rtl_cfg_infos
[] = {
2726 .hw_start
= rtl_hw_start_8169
,
2729 .intr_event
= SYSErr
| LinkChg
| RxOverflow
|
2730 RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxErr
,
2731 .napi_event
= RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxOverflow
,
2732 .features
= RTL_FEATURE_GMII
,
2733 .default_ver
= RTL_GIGA_MAC_VER_01
,
2736 .hw_start
= rtl_hw_start_8168
,
2739 .intr_event
= SYSErr
| LinkChg
| RxOverflow
|
2740 TxErr
| TxOK
| RxOK
| RxErr
,
2741 .napi_event
= TxErr
| TxOK
| RxOK
| RxOverflow
,
2742 .features
= RTL_FEATURE_GMII
| RTL_FEATURE_MSI
,
2743 .default_ver
= RTL_GIGA_MAC_VER_11
,
2746 .hw_start
= rtl_hw_start_8101
,
2749 .intr_event
= SYSErr
| LinkChg
| RxOverflow
| PCSTimeout
|
2750 RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxErr
,
2751 .napi_event
= RxFIFOOver
| TxErr
| TxOK
| RxOK
| RxOverflow
,
2752 .features
= RTL_FEATURE_MSI
,
2753 .default_ver
= RTL_GIGA_MAC_VER_13
,
2757 /* Cfg9346_Unlock assumed. */
2758 static unsigned rtl_try_msi(struct pci_dev
*pdev
, void __iomem
*ioaddr
,
2759 const struct rtl_cfg_info
*cfg
)
2764 cfg2
= RTL_R8(Config2
) & ~MSIEnable
;
2765 if (cfg
->features
& RTL_FEATURE_MSI
) {
2766 if (pci_enable_msi(pdev
)) {
2767 dev_info(&pdev
->dev
, "no MSI. Back to INTx.\n");
2770 msi
= RTL_FEATURE_MSI
;
2773 RTL_W8(Config2
, cfg2
);
2777 static void rtl_disable_msi(struct pci_dev
*pdev
, struct rtl8169_private
*tp
)
2779 if (tp
->features
& RTL_FEATURE_MSI
) {
2780 pci_disable_msi(pdev
);
2781 tp
->features
&= ~RTL_FEATURE_MSI
;
2785 static const struct net_device_ops rtl8169_netdev_ops
= {
2786 .ndo_open
= rtl8169_open
,
2787 .ndo_stop
= rtl8169_close
,
2788 .ndo_get_stats
= rtl8169_get_stats
,
2789 .ndo_start_xmit
= rtl8169_start_xmit
,
2790 .ndo_tx_timeout
= rtl8169_tx_timeout
,
2791 .ndo_validate_addr
= eth_validate_addr
,
2792 .ndo_change_mtu
= rtl8169_change_mtu
,
2793 .ndo_set_mac_address
= rtl_set_mac_address
,
2794 .ndo_do_ioctl
= rtl8169_ioctl
,
2795 .ndo_set_multicast_list
= rtl_set_rx_mode
,
2796 #ifdef CONFIG_R8169_VLAN
2797 .ndo_vlan_rx_register
= rtl8169_vlan_rx_register
,
2799 #ifdef CONFIG_NET_POLL_CONTROLLER
2800 .ndo_poll_controller
= rtl8169_netpoll
,
2805 static void __devinit
rtl_init_mdio_ops(struct rtl8169_private
*tp
)
2807 struct mdio_ops
*ops
= &tp
->mdio_ops
;
2809 switch (tp
->mac_version
) {
2810 case RTL_GIGA_MAC_VER_27
:
2811 ops
->write
= r8168dp_1_mdio_write
;
2812 ops
->read
= r8168dp_1_mdio_read
;
2814 case RTL_GIGA_MAC_VER_28
:
2815 ops
->write
= r8168dp_2_mdio_write
;
2816 ops
->read
= r8168dp_2_mdio_read
;
2819 ops
->write
= r8169_mdio_write
;
2820 ops
->read
= r8169_mdio_read
;
2825 static void r810x_phy_power_down(struct rtl8169_private
*tp
)
2827 rtl_writephy(tp
, 0x1f, 0x0000);
2828 rtl_writephy(tp
, MII_BMCR
, BMCR_PDOWN
);
2831 static void r810x_phy_power_up(struct rtl8169_private
*tp
)
2833 rtl_writephy(tp
, 0x1f, 0x0000);
2834 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
);
2837 static void r810x_pll_power_down(struct rtl8169_private
*tp
)
2839 if (__rtl8169_get_wol(tp
) & WAKE_ANY
) {
2840 rtl_writephy(tp
, 0x1f, 0x0000);
2841 rtl_writephy(tp
, MII_BMCR
, 0x0000);
2845 r810x_phy_power_down(tp
);
2848 static void r810x_pll_power_up(struct rtl8169_private
*tp
)
2850 r810x_phy_power_up(tp
);
2853 static void r8168_phy_power_up(struct rtl8169_private
*tp
)
2855 rtl_writephy(tp
, 0x1f, 0x0000);
2856 rtl_writephy(tp
, 0x0e, 0x0000);
2857 rtl_writephy(tp
, MII_BMCR
, BMCR_ANENABLE
);
2860 static void r8168_phy_power_down(struct rtl8169_private
*tp
)
2862 rtl_writephy(tp
, 0x1f, 0x0000);
2863 rtl_writephy(tp
, 0x0e, 0x0200);
2864 rtl_writephy(tp
, MII_BMCR
, BMCR_PDOWN
);
2867 static void r8168_pll_power_down(struct rtl8169_private
*tp
)
2869 void __iomem
*ioaddr
= tp
->mmio_addr
;
2871 if (tp
->mac_version
== RTL_GIGA_MAC_VER_27
)
2874 if (((tp
->mac_version
== RTL_GIGA_MAC_VER_23
) ||
2875 (tp
->mac_version
== RTL_GIGA_MAC_VER_24
)) &&
2876 (RTL_R16(CPlusCmd
) & ASF
)) {
2880 if (__rtl8169_get_wol(tp
) & WAKE_ANY
) {
2881 rtl_writephy(tp
, 0x1f, 0x0000);
2882 rtl_writephy(tp
, MII_BMCR
, 0x0000);
2884 RTL_W32(RxConfig
, RTL_R32(RxConfig
) |
2885 AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
);
2889 r8168_phy_power_down(tp
);
2891 switch (tp
->mac_version
) {
2892 case RTL_GIGA_MAC_VER_25
:
2893 case RTL_GIGA_MAC_VER_26
:
2894 RTL_W8(PMCH
, RTL_R8(PMCH
) & ~0x80);
2899 static void r8168_pll_power_up(struct rtl8169_private
*tp
)
2901 void __iomem
*ioaddr
= tp
->mmio_addr
;
2903 if (tp
->mac_version
== RTL_GIGA_MAC_VER_27
)
2906 switch (tp
->mac_version
) {
2907 case RTL_GIGA_MAC_VER_25
:
2908 case RTL_GIGA_MAC_VER_26
:
2909 RTL_W8(PMCH
, RTL_R8(PMCH
) | 0x80);
2913 r8168_phy_power_up(tp
);
2916 static void rtl_pll_power_op(struct rtl8169_private
*tp
,
2917 void (*op
)(struct rtl8169_private
*))
2923 static void rtl_pll_power_down(struct rtl8169_private
*tp
)
2925 rtl_pll_power_op(tp
, tp
->pll_power_ops
.down
);
2928 static void rtl_pll_power_up(struct rtl8169_private
*tp
)
2930 rtl_pll_power_op(tp
, tp
->pll_power_ops
.up
);
2933 static void __devinit
rtl_init_pll_power_ops(struct rtl8169_private
*tp
)
2935 struct pll_power_ops
*ops
= &tp
->pll_power_ops
;
2937 switch (tp
->mac_version
) {
2938 case RTL_GIGA_MAC_VER_07
:
2939 case RTL_GIGA_MAC_VER_08
:
2940 case RTL_GIGA_MAC_VER_09
:
2941 case RTL_GIGA_MAC_VER_10
:
2942 case RTL_GIGA_MAC_VER_16
:
2943 ops
->down
= r810x_pll_power_down
;
2944 ops
->up
= r810x_pll_power_up
;
2947 case RTL_GIGA_MAC_VER_11
:
2948 case RTL_GIGA_MAC_VER_12
:
2949 case RTL_GIGA_MAC_VER_17
:
2950 case RTL_GIGA_MAC_VER_18
:
2951 case RTL_GIGA_MAC_VER_19
:
2952 case RTL_GIGA_MAC_VER_20
:
2953 case RTL_GIGA_MAC_VER_21
:
2954 case RTL_GIGA_MAC_VER_22
:
2955 case RTL_GIGA_MAC_VER_23
:
2956 case RTL_GIGA_MAC_VER_24
:
2957 case RTL_GIGA_MAC_VER_25
:
2958 case RTL_GIGA_MAC_VER_26
:
2959 case RTL_GIGA_MAC_VER_27
:
2960 case RTL_GIGA_MAC_VER_28
:
2961 ops
->down
= r8168_pll_power_down
;
2962 ops
->up
= r8168_pll_power_up
;
2972 static int __devinit
2973 rtl8169_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
2975 const struct rtl_cfg_info
*cfg
= rtl_cfg_infos
+ ent
->driver_data
;
2976 const unsigned int region
= cfg
->region
;
2977 struct rtl8169_private
*tp
;
2978 struct mii_if_info
*mii
;
2979 struct net_device
*dev
;
2980 void __iomem
*ioaddr
;
2984 if (netif_msg_drv(&debug
)) {
2985 printk(KERN_INFO
"%s Gigabit Ethernet driver %s loaded\n",
2986 MODULENAME
, RTL8169_VERSION
);
2989 dev
= alloc_etherdev(sizeof (*tp
));
2991 if (netif_msg_drv(&debug
))
2992 dev_err(&pdev
->dev
, "unable to alloc new ethernet\n");
2997 SET_NETDEV_DEV(dev
, &pdev
->dev
);
2998 dev
->netdev_ops
= &rtl8169_netdev_ops
;
2999 tp
= netdev_priv(dev
);
3002 tp
->msg_enable
= netif_msg_init(debug
.msg_enable
, R8169_MSG_DEFAULT
);
3006 mii
->mdio_read
= rtl_mdio_read
;
3007 mii
->mdio_write
= rtl_mdio_write
;
3008 mii
->phy_id_mask
= 0x1f;
3009 mii
->reg_num_mask
= 0x1f;
3010 mii
->supports_gmii
= !!(cfg
->features
& RTL_FEATURE_GMII
);
3012 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3013 rc
= pci_enable_device(pdev
);
3015 netif_err(tp
, probe
, dev
, "enable failure\n");
3016 goto err_out_free_dev_1
;
3019 if (pci_set_mwi(pdev
) < 0)
3020 netif_info(tp
, probe
, dev
, "Mem-Wr-Inval unavailable\n");
3022 /* make sure PCI base addr 1 is MMIO */
3023 if (!(pci_resource_flags(pdev
, region
) & IORESOURCE_MEM
)) {
3024 netif_err(tp
, probe
, dev
,
3025 "region #%d not an MMIO resource, aborting\n",
3031 /* check for weird/broken PCI region reporting */
3032 if (pci_resource_len(pdev
, region
) < R8169_REGS_SIZE
) {
3033 netif_err(tp
, probe
, dev
,
3034 "Invalid PCI region size(s), aborting\n");
3039 rc
= pci_request_regions(pdev
, MODULENAME
);
3041 netif_err(tp
, probe
, dev
, "could not request regions\n");
3045 tp
->cp_cmd
= PCIMulRW
| RxChkSum
;
3047 if ((sizeof(dma_addr_t
) > 4) &&
3048 !pci_set_dma_mask(pdev
, DMA_BIT_MASK(64)) && use_dac
) {
3049 tp
->cp_cmd
|= PCIDAC
;
3050 dev
->features
|= NETIF_F_HIGHDMA
;
3052 rc
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
3054 netif_err(tp
, probe
, dev
, "DMA configuration failed\n");
3055 goto err_out_free_res_3
;
3059 /* ioremap MMIO region */
3060 ioaddr
= ioremap(pci_resource_start(pdev
, region
), R8169_REGS_SIZE
);
3062 netif_err(tp
, probe
, dev
, "cannot remap MMIO, aborting\n");
3064 goto err_out_free_res_3
;
3067 tp
->pcie_cap
= pci_find_capability(pdev
, PCI_CAP_ID_EXP
);
3069 netif_info(tp
, probe
, dev
, "no PCI Express capability\n");
3071 RTL_W16(IntrMask
, 0x0000);
3073 /* Soft reset the chip. */
3074 RTL_W8(ChipCmd
, CmdReset
);
3076 /* Check that the chip has finished the reset. */
3077 for (i
= 0; i
< 100; i
++) {
3078 if ((RTL_R8(ChipCmd
) & CmdReset
) == 0)
3080 msleep_interruptible(1);
3083 RTL_W16(IntrStatus
, 0xffff);
3085 pci_set_master(pdev
);
3087 /* Identify chip attached to board */
3088 rtl8169_get_mac_version(tp
, ioaddr
);
3090 rtl_init_mdio_ops(tp
);
3091 rtl_init_pll_power_ops(tp
);
3093 /* Use appropriate default if unknown */
3094 if (tp
->mac_version
== RTL_GIGA_MAC_NONE
) {
3095 netif_notice(tp
, probe
, dev
,
3096 "unknown MAC, using family default\n");
3097 tp
->mac_version
= cfg
->default_ver
;
3100 rtl8169_print_mac_version(tp
);
3102 for (i
= 0; i
< ARRAY_SIZE(rtl_chip_info
); i
++) {
3103 if (tp
->mac_version
== rtl_chip_info
[i
].mac_version
)
3106 if (i
== ARRAY_SIZE(rtl_chip_info
)) {
3108 "driver bug, MAC version not found in rtl_chip_info\n");
3113 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
3114 RTL_W8(Config1
, RTL_R8(Config1
) | PMEnable
);
3115 RTL_W8(Config5
, RTL_R8(Config5
) & PMEStatus
);
3116 if ((RTL_R8(Config3
) & (LinkUp
| MagicPacket
)) != 0)
3117 tp
->features
|= RTL_FEATURE_WOL
;
3118 if ((RTL_R8(Config5
) & (UWF
| BWF
| MWF
)) != 0)
3119 tp
->features
|= RTL_FEATURE_WOL
;
3120 tp
->features
|= rtl_try_msi(pdev
, ioaddr
, cfg
);
3121 RTL_W8(Cfg9346
, Cfg9346_Lock
);
3123 if ((tp
->mac_version
<= RTL_GIGA_MAC_VER_06
) &&
3124 (RTL_R8(PHYstatus
) & TBI_Enable
)) {
3125 tp
->set_speed
= rtl8169_set_speed_tbi
;
3126 tp
->get_settings
= rtl8169_gset_tbi
;
3127 tp
->phy_reset_enable
= rtl8169_tbi_reset_enable
;
3128 tp
->phy_reset_pending
= rtl8169_tbi_reset_pending
;
3129 tp
->link_ok
= rtl8169_tbi_link_ok
;
3130 tp
->do_ioctl
= rtl_tbi_ioctl
;
3132 tp
->phy_1000_ctrl_reg
= ADVERTISE_1000FULL
; /* Implied by TBI */
3134 tp
->set_speed
= rtl8169_set_speed_xmii
;
3135 tp
->get_settings
= rtl8169_gset_xmii
;
3136 tp
->phy_reset_enable
= rtl8169_xmii_reset_enable
;
3137 tp
->phy_reset_pending
= rtl8169_xmii_reset_pending
;
3138 tp
->link_ok
= rtl8169_xmii_link_ok
;
3139 tp
->do_ioctl
= rtl_xmii_ioctl
;
3142 spin_lock_init(&tp
->lock
);
3144 tp
->mmio_addr
= ioaddr
;
3146 /* Get MAC address */
3147 for (i
= 0; i
< MAC_ADDR_LEN
; i
++)
3148 dev
->dev_addr
[i
] = RTL_R8(MAC0
+ i
);
3149 memcpy(dev
->perm_addr
, dev
->dev_addr
, dev
->addr_len
);
3151 SET_ETHTOOL_OPS(dev
, &rtl8169_ethtool_ops
);
3152 dev
->watchdog_timeo
= RTL8169_TX_TIMEOUT
;
3153 dev
->irq
= pdev
->irq
;
3154 dev
->base_addr
= (unsigned long) ioaddr
;
3156 netif_napi_add(dev
, &tp
->napi
, rtl8169_poll
, R8169_NAPI_WEIGHT
);
3158 #ifdef CONFIG_R8169_VLAN
3159 dev
->features
|= NETIF_F_HW_VLAN_TX
| NETIF_F_HW_VLAN_RX
;
3161 dev
->features
|= NETIF_F_GRO
;
3163 tp
->intr_mask
= 0xffff;
3164 tp
->hw_start
= cfg
->hw_start
;
3165 tp
->intr_event
= cfg
->intr_event
;
3166 tp
->napi_event
= cfg
->napi_event
;
3168 init_timer(&tp
->timer
);
3169 tp
->timer
.data
= (unsigned long) dev
;
3170 tp
->timer
.function
= rtl8169_phy_timer
;
3172 rc
= register_netdev(dev
);
3176 pci_set_drvdata(pdev
, dev
);
3178 netif_info(tp
, probe
, dev
, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
3179 rtl_chip_info
[tp
->chipset
].name
,
3180 dev
->base_addr
, dev
->dev_addr
,
3181 (u32
)(RTL_R32(TxConfig
) & 0x9cf0f8ff), dev
->irq
);
3183 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_27
) ||
3184 (tp
->mac_version
== RTL_GIGA_MAC_VER_28
)) {
3185 rtl8168_driver_start(tp
);
3188 device_set_wakeup_enable(&pdev
->dev
, tp
->features
& RTL_FEATURE_WOL
);
3190 if (pci_dev_run_wake(pdev
))
3191 pm_runtime_put_noidle(&pdev
->dev
);
3197 rtl_disable_msi(pdev
, tp
);
3200 pci_release_regions(pdev
);
3202 pci_clear_mwi(pdev
);
3203 pci_disable_device(pdev
);
3209 static void __devexit
rtl8169_remove_one(struct pci_dev
*pdev
)
3211 struct net_device
*dev
= pci_get_drvdata(pdev
);
3212 struct rtl8169_private
*tp
= netdev_priv(dev
);
3214 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_27
) ||
3215 (tp
->mac_version
== RTL_GIGA_MAC_VER_28
)) {
3216 rtl8168_driver_stop(tp
);
3219 cancel_delayed_work_sync(&tp
->task
);
3221 rtl_release_firmware(tp
);
3223 unregister_netdev(dev
);
3225 if (pci_dev_run_wake(pdev
))
3226 pm_runtime_get_noresume(&pdev
->dev
);
3228 /* restore original MAC address */
3229 rtl_rar_set(tp
, dev
->perm_addr
);
3231 rtl_disable_msi(pdev
, tp
);
3232 rtl8169_release_board(pdev
, dev
, tp
->mmio_addr
);
3233 pci_set_drvdata(pdev
, NULL
);
3236 static int rtl8169_open(struct net_device
*dev
)
3238 struct rtl8169_private
*tp
= netdev_priv(dev
);
3239 void __iomem
*ioaddr
= tp
->mmio_addr
;
3240 struct pci_dev
*pdev
= tp
->pci_dev
;
3241 int retval
= -ENOMEM
;
3243 pm_runtime_get_sync(&pdev
->dev
);
3246 * Rx and Tx desscriptors needs 256 bytes alignment.
3247 * dma_alloc_coherent provides more.
3249 tp
->TxDescArray
= dma_alloc_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
,
3250 &tp
->TxPhyAddr
, GFP_KERNEL
);
3251 if (!tp
->TxDescArray
)
3252 goto err_pm_runtime_put
;
3254 tp
->RxDescArray
= dma_alloc_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
,
3255 &tp
->RxPhyAddr
, GFP_KERNEL
);
3256 if (!tp
->RxDescArray
)
3259 retval
= rtl8169_init_ring(dev
);
3263 INIT_DELAYED_WORK(&tp
->task
, NULL
);
3267 retval
= request_irq(dev
->irq
, rtl8169_interrupt
,
3268 (tp
->features
& RTL_FEATURE_MSI
) ? 0 : IRQF_SHARED
,
3271 goto err_release_ring_2
;
3273 napi_enable(&tp
->napi
);
3275 rtl8169_init_phy(dev
, tp
);
3278 * Pretend we are using VLANs; This bypasses a nasty bug where
3279 * Interrupts stop flowing on high load on 8110SCd controllers.
3281 if (tp
->mac_version
== RTL_GIGA_MAC_VER_05
)
3282 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) | RxVlan
);
3284 rtl_pll_power_up(tp
);
3288 rtl8169_request_timer(dev
);
3290 tp
->saved_wolopts
= 0;
3291 pm_runtime_put_noidle(&pdev
->dev
);
3293 rtl8169_check_link_status(dev
, tp
, ioaddr
);
3298 rtl8169_rx_clear(tp
);
3300 dma_free_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
, tp
->RxDescArray
,
3302 tp
->RxDescArray
= NULL
;
3304 dma_free_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
, tp
->TxDescArray
,
3306 tp
->TxDescArray
= NULL
;
3308 pm_runtime_put_noidle(&pdev
->dev
);
3312 static void rtl8169_hw_reset(struct rtl8169_private
*tp
)
3314 void __iomem
*ioaddr
= tp
->mmio_addr
;
3316 /* Disable interrupts */
3317 rtl8169_irq_mask_and_ack(ioaddr
);
3319 if (tp
->mac_version
== RTL_GIGA_MAC_VER_28
) {
3320 while (RTL_R8(TxPoll
) & NPQ
)
3325 /* Reset the chipset */
3326 RTL_W8(ChipCmd
, CmdReset
);
3332 static void rtl_set_rx_tx_config_registers(struct rtl8169_private
*tp
)
3334 void __iomem
*ioaddr
= tp
->mmio_addr
;
3335 u32 cfg
= rtl8169_rx_config
;
3337 cfg
|= (RTL_R32(RxConfig
) & rtl_chip_info
[tp
->chipset
].RxConfigMask
);
3338 RTL_W32(RxConfig
, cfg
);
3340 /* Set DMA burst size and Interframe Gap Time */
3341 RTL_W32(TxConfig
, (TX_DMA_BURST
<< TxDMAShift
) |
3342 (InterFrameGap
<< TxInterFrameGapShift
));
3345 static void rtl_hw_start(struct net_device
*dev
)
3347 struct rtl8169_private
*tp
= netdev_priv(dev
);
3348 void __iomem
*ioaddr
= tp
->mmio_addr
;
3351 /* Soft reset the chip. */
3352 RTL_W8(ChipCmd
, CmdReset
);
3354 /* Check that the chip has finished the reset. */
3355 for (i
= 0; i
< 100; i
++) {
3356 if ((RTL_R8(ChipCmd
) & CmdReset
) == 0)
3358 msleep_interruptible(1);
3363 netif_start_queue(dev
);
3367 static void rtl_set_rx_tx_desc_registers(struct rtl8169_private
*tp
,
3368 void __iomem
*ioaddr
)
3371 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3372 * register to be written before TxDescAddrLow to work.
3373 * Switching from MMIO to I/O access fixes the issue as well.
3375 RTL_W32(TxDescStartAddrHigh
, ((u64
) tp
->TxPhyAddr
) >> 32);
3376 RTL_W32(TxDescStartAddrLow
, ((u64
) tp
->TxPhyAddr
) & DMA_BIT_MASK(32));
3377 RTL_W32(RxDescAddrHigh
, ((u64
) tp
->RxPhyAddr
) >> 32);
3378 RTL_W32(RxDescAddrLow
, ((u64
) tp
->RxPhyAddr
) & DMA_BIT_MASK(32));
3381 static u16
rtl_rw_cpluscmd(void __iomem
*ioaddr
)
3385 cmd
= RTL_R16(CPlusCmd
);
3386 RTL_W16(CPlusCmd
, cmd
);
3390 static void rtl_set_rx_max_size(void __iomem
*ioaddr
, unsigned int rx_buf_sz
)
3392 /* Low hurts. Let's disable the filtering. */
3393 RTL_W16(RxMaxSize
, rx_buf_sz
+ 1);
3396 static void rtl8169_set_magic_reg(void __iomem
*ioaddr
, unsigned mac_version
)
3398 static const struct {
3403 { RTL_GIGA_MAC_VER_05
, PCI_Clock_33MHz
, 0x000fff00 }, // 8110SCd
3404 { RTL_GIGA_MAC_VER_05
, PCI_Clock_66MHz
, 0x000fffff },
3405 { RTL_GIGA_MAC_VER_06
, PCI_Clock_33MHz
, 0x00ffff00 }, // 8110SCe
3406 { RTL_GIGA_MAC_VER_06
, PCI_Clock_66MHz
, 0x00ffffff }
3411 clk
= RTL_R8(Config2
) & PCI_Clock_66MHz
;
3412 for (i
= 0; i
< ARRAY_SIZE(cfg2_info
); i
++, p
++) {
3413 if ((p
->mac_version
== mac_version
) && (p
->clk
== clk
)) {
3414 RTL_W32(0x7c, p
->val
);
3420 static void rtl_hw_start_8169(struct net_device
*dev
)
3422 struct rtl8169_private
*tp
= netdev_priv(dev
);
3423 void __iomem
*ioaddr
= tp
->mmio_addr
;
3424 struct pci_dev
*pdev
= tp
->pci_dev
;
3426 if (tp
->mac_version
== RTL_GIGA_MAC_VER_05
) {
3427 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) | PCIMulRW
);
3428 pci_write_config_byte(pdev
, PCI_CACHE_LINE_SIZE
, 0x08);
3431 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
3432 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_01
) ||
3433 (tp
->mac_version
== RTL_GIGA_MAC_VER_02
) ||
3434 (tp
->mac_version
== RTL_GIGA_MAC_VER_03
) ||
3435 (tp
->mac_version
== RTL_GIGA_MAC_VER_04
))
3436 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3438 RTL_W8(EarlyTxThres
, NoEarlyTx
);
3440 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
3442 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_01
) ||
3443 (tp
->mac_version
== RTL_GIGA_MAC_VER_02
) ||
3444 (tp
->mac_version
== RTL_GIGA_MAC_VER_03
) ||
3445 (tp
->mac_version
== RTL_GIGA_MAC_VER_04
))
3446 rtl_set_rx_tx_config_registers(tp
);
3448 tp
->cp_cmd
|= rtl_rw_cpluscmd(ioaddr
) | PCIMulRW
;
3450 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_02
) ||
3451 (tp
->mac_version
== RTL_GIGA_MAC_VER_03
)) {
3452 dprintk("Set MAC Reg C+CR Offset 0xE0. "
3453 "Bit-3 and bit-14 MUST be 1\n");
3454 tp
->cp_cmd
|= (1 << 14);
3457 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
3459 rtl8169_set_magic_reg(ioaddr
, tp
->mac_version
);
3462 * Undocumented corner. Supposedly:
3463 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3465 RTL_W16(IntrMitigate
, 0x0000);
3467 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
3469 if ((tp
->mac_version
!= RTL_GIGA_MAC_VER_01
) &&
3470 (tp
->mac_version
!= RTL_GIGA_MAC_VER_02
) &&
3471 (tp
->mac_version
!= RTL_GIGA_MAC_VER_03
) &&
3472 (tp
->mac_version
!= RTL_GIGA_MAC_VER_04
)) {
3473 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3474 rtl_set_rx_tx_config_registers(tp
);
3477 RTL_W8(Cfg9346
, Cfg9346_Lock
);
3479 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3482 RTL_W32(RxMissed
, 0);
3484 rtl_set_rx_mode(dev
);
3486 /* no early-rx interrupts */
3487 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xF000);
3489 /* Enable all known interrupts by setting the interrupt mask. */
3490 RTL_W16(IntrMask
, tp
->intr_event
);
3493 static void rtl_tx_performance_tweak(struct pci_dev
*pdev
, u16 force
)
3495 struct net_device
*dev
= pci_get_drvdata(pdev
);
3496 struct rtl8169_private
*tp
= netdev_priv(dev
);
3497 int cap
= tp
->pcie_cap
;
3502 pci_read_config_word(pdev
, cap
+ PCI_EXP_DEVCTL
, &ctl
);
3503 ctl
= (ctl
& ~PCI_EXP_DEVCTL_READRQ
) | force
;
3504 pci_write_config_word(pdev
, cap
+ PCI_EXP_DEVCTL
, ctl
);
3508 static void rtl_csi_access_enable(void __iomem
*ioaddr
, u32 bits
)
3512 csi
= rtl_csi_read(ioaddr
, 0x070c) & 0x00ffffff;
3513 rtl_csi_write(ioaddr
, 0x070c, csi
| bits
);
3516 static void rtl_csi_access_enable_1(void __iomem
*ioaddr
)
3518 rtl_csi_access_enable(ioaddr
, 0x17000000);
3521 static void rtl_csi_access_enable_2(void __iomem
*ioaddr
)
3523 rtl_csi_access_enable(ioaddr
, 0x27000000);
3527 unsigned int offset
;
3532 static void rtl_ephy_init(void __iomem
*ioaddr
, const struct ephy_info
*e
, int len
)
3537 w
= (rtl_ephy_read(ioaddr
, e
->offset
) & ~e
->mask
) | e
->bits
;
3538 rtl_ephy_write(ioaddr
, e
->offset
, w
);
3543 static void rtl_disable_clock_request(struct pci_dev
*pdev
)
3545 struct net_device
*dev
= pci_get_drvdata(pdev
);
3546 struct rtl8169_private
*tp
= netdev_priv(dev
);
3547 int cap
= tp
->pcie_cap
;
3552 pci_read_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, &ctl
);
3553 ctl
&= ~PCI_EXP_LNKCTL_CLKREQ_EN
;
3554 pci_write_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, ctl
);
3558 static void rtl_enable_clock_request(struct pci_dev
*pdev
)
3560 struct net_device
*dev
= pci_get_drvdata(pdev
);
3561 struct rtl8169_private
*tp
= netdev_priv(dev
);
3562 int cap
= tp
->pcie_cap
;
3567 pci_read_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, &ctl
);
3568 ctl
|= PCI_EXP_LNKCTL_CLKREQ_EN
;
3569 pci_write_config_word(pdev
, cap
+ PCI_EXP_LNKCTL
, ctl
);
3573 #define R8168_CPCMD_QUIRK_MASK (\
3584 static void rtl_hw_start_8168bb(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3586 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3588 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3590 rtl_tx_performance_tweak(pdev
,
3591 (0x5 << MAX_READ_REQUEST_SHIFT
) | PCI_EXP_DEVCTL_NOSNOOP_EN
);
3594 static void rtl_hw_start_8168bef(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3596 rtl_hw_start_8168bb(ioaddr
, pdev
);
3598 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3600 RTL_W8(Config4
, RTL_R8(Config4
) & ~(1 << 0));
3603 static void __rtl_hw_start_8168cp(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3605 RTL_W8(Config1
, RTL_R8(Config1
) | Speed_down
);
3607 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3609 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3611 rtl_disable_clock_request(pdev
);
3613 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3616 static void rtl_hw_start_8168cp_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3618 static const struct ephy_info e_info_8168cp
[] = {
3619 { 0x01, 0, 0x0001 },
3620 { 0x02, 0x0800, 0x1000 },
3621 { 0x03, 0, 0x0042 },
3622 { 0x06, 0x0080, 0x0000 },
3626 rtl_csi_access_enable_2(ioaddr
);
3628 rtl_ephy_init(ioaddr
, e_info_8168cp
, ARRAY_SIZE(e_info_8168cp
));
3630 __rtl_hw_start_8168cp(ioaddr
, pdev
);
3633 static void rtl_hw_start_8168cp_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3635 rtl_csi_access_enable_2(ioaddr
);
3637 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3639 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3641 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3644 static void rtl_hw_start_8168cp_3(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3646 rtl_csi_access_enable_2(ioaddr
);
3648 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3651 RTL_W8(DBG_REG
, 0x20);
3653 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3655 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3657 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3660 static void rtl_hw_start_8168c_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3662 static const struct ephy_info e_info_8168c_1
[] = {
3663 { 0x02, 0x0800, 0x1000 },
3664 { 0x03, 0, 0x0002 },
3665 { 0x06, 0x0080, 0x0000 }
3668 rtl_csi_access_enable_2(ioaddr
);
3670 RTL_W8(DBG_REG
, 0x06 | FIX_NAK_1
| FIX_NAK_2
);
3672 rtl_ephy_init(ioaddr
, e_info_8168c_1
, ARRAY_SIZE(e_info_8168c_1
));
3674 __rtl_hw_start_8168cp(ioaddr
, pdev
);
3677 static void rtl_hw_start_8168c_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3679 static const struct ephy_info e_info_8168c_2
[] = {
3680 { 0x01, 0, 0x0001 },
3681 { 0x03, 0x0400, 0x0220 }
3684 rtl_csi_access_enable_2(ioaddr
);
3686 rtl_ephy_init(ioaddr
, e_info_8168c_2
, ARRAY_SIZE(e_info_8168c_2
));
3688 __rtl_hw_start_8168cp(ioaddr
, pdev
);
3691 static void rtl_hw_start_8168c_3(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3693 rtl_hw_start_8168c_2(ioaddr
, pdev
);
3696 static void rtl_hw_start_8168c_4(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3698 rtl_csi_access_enable_2(ioaddr
);
3700 __rtl_hw_start_8168cp(ioaddr
, pdev
);
3703 static void rtl_hw_start_8168d(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3705 rtl_csi_access_enable_2(ioaddr
);
3707 rtl_disable_clock_request(pdev
);
3709 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3711 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3713 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R8168_CPCMD_QUIRK_MASK
);
3716 static void rtl_hw_start_8168d_4(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3718 static const struct ephy_info e_info_8168d_4
[] = {
3720 { 0x19, 0x20, 0x50 },
3725 rtl_csi_access_enable_1(ioaddr
);
3727 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3729 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3731 for (i
= 0; i
< ARRAY_SIZE(e_info_8168d_4
); i
++) {
3732 const struct ephy_info
*e
= e_info_8168d_4
+ i
;
3735 w
= rtl_ephy_read(ioaddr
, e
->offset
);
3736 rtl_ephy_write(ioaddr
, 0x03, (w
& e
->mask
) | e
->bits
);
3739 rtl_enable_clock_request(pdev
);
3742 static void rtl_hw_start_8168(struct net_device
*dev
)
3744 struct rtl8169_private
*tp
= netdev_priv(dev
);
3745 void __iomem
*ioaddr
= tp
->mmio_addr
;
3746 struct pci_dev
*pdev
= tp
->pci_dev
;
3748 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
3750 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3752 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
3754 tp
->cp_cmd
|= RTL_R16(CPlusCmd
) | PktCntrDisable
| INTT_1
;
3756 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
3758 RTL_W16(IntrMitigate
, 0x5151);
3760 /* Work around for RxFIFO overflow. */
3761 if (tp
->mac_version
== RTL_GIGA_MAC_VER_11
||
3762 tp
->mac_version
== RTL_GIGA_MAC_VER_22
) {
3763 tp
->intr_event
|= RxFIFOOver
| PCSTimeout
;
3764 tp
->intr_event
&= ~RxOverflow
;
3767 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
3769 rtl_set_rx_mode(dev
);
3771 RTL_W32(TxConfig
, (TX_DMA_BURST
<< TxDMAShift
) |
3772 (InterFrameGap
<< TxInterFrameGapShift
));
3776 switch (tp
->mac_version
) {
3777 case RTL_GIGA_MAC_VER_11
:
3778 rtl_hw_start_8168bb(ioaddr
, pdev
);
3781 case RTL_GIGA_MAC_VER_12
:
3782 case RTL_GIGA_MAC_VER_17
:
3783 rtl_hw_start_8168bef(ioaddr
, pdev
);
3786 case RTL_GIGA_MAC_VER_18
:
3787 rtl_hw_start_8168cp_1(ioaddr
, pdev
);
3790 case RTL_GIGA_MAC_VER_19
:
3791 rtl_hw_start_8168c_1(ioaddr
, pdev
);
3794 case RTL_GIGA_MAC_VER_20
:
3795 rtl_hw_start_8168c_2(ioaddr
, pdev
);
3798 case RTL_GIGA_MAC_VER_21
:
3799 rtl_hw_start_8168c_3(ioaddr
, pdev
);
3802 case RTL_GIGA_MAC_VER_22
:
3803 rtl_hw_start_8168c_4(ioaddr
, pdev
);
3806 case RTL_GIGA_MAC_VER_23
:
3807 rtl_hw_start_8168cp_2(ioaddr
, pdev
);
3810 case RTL_GIGA_MAC_VER_24
:
3811 rtl_hw_start_8168cp_3(ioaddr
, pdev
);
3814 case RTL_GIGA_MAC_VER_25
:
3815 case RTL_GIGA_MAC_VER_26
:
3816 case RTL_GIGA_MAC_VER_27
:
3817 rtl_hw_start_8168d(ioaddr
, pdev
);
3820 case RTL_GIGA_MAC_VER_28
:
3821 rtl_hw_start_8168d_4(ioaddr
, pdev
);
3825 printk(KERN_ERR PFX
"%s: unknown chipset (mac_version = %d).\n",
3826 dev
->name
, tp
->mac_version
);
3830 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3832 RTL_W8(Cfg9346
, Cfg9346_Lock
);
3834 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xF000);
3836 RTL_W16(IntrMask
, tp
->intr_event
);
3839 #define R810X_CPCMD_QUIRK_MASK (\
3851 static void rtl_hw_start_8102e_1(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3853 static const struct ephy_info e_info_8102e_1
[] = {
3854 { 0x01, 0, 0x6e65 },
3855 { 0x02, 0, 0x091f },
3856 { 0x03, 0, 0xc2f9 },
3857 { 0x06, 0, 0xafb5 },
3858 { 0x07, 0, 0x0e00 },
3859 { 0x19, 0, 0xec80 },
3860 { 0x01, 0, 0x2e65 },
3865 rtl_csi_access_enable_2(ioaddr
);
3867 RTL_W8(DBG_REG
, FIX_NAK_1
);
3869 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3872 LEDS1
| LEDS0
| Speed_down
| MEMMAP
| IOMAP
| VPD
| PMEnable
);
3873 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3875 cfg1
= RTL_R8(Config1
);
3876 if ((cfg1
& LEDS0
) && (cfg1
& LEDS1
))
3877 RTL_W8(Config1
, cfg1
& ~LEDS0
);
3879 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R810X_CPCMD_QUIRK_MASK
);
3881 rtl_ephy_init(ioaddr
, e_info_8102e_1
, ARRAY_SIZE(e_info_8102e_1
));
3884 static void rtl_hw_start_8102e_2(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3886 rtl_csi_access_enable_2(ioaddr
);
3888 rtl_tx_performance_tweak(pdev
, 0x5 << MAX_READ_REQUEST_SHIFT
);
3890 RTL_W8(Config1
, MEMMAP
| IOMAP
| VPD
| PMEnable
);
3891 RTL_W8(Config3
, RTL_R8(Config3
) & ~Beacon_en
);
3893 RTL_W16(CPlusCmd
, RTL_R16(CPlusCmd
) & ~R810X_CPCMD_QUIRK_MASK
);
3896 static void rtl_hw_start_8102e_3(void __iomem
*ioaddr
, struct pci_dev
*pdev
)
3898 rtl_hw_start_8102e_2(ioaddr
, pdev
);
3900 rtl_ephy_write(ioaddr
, 0x03, 0xc2f9);
3903 static void rtl_hw_start_8101(struct net_device
*dev
)
3905 struct rtl8169_private
*tp
= netdev_priv(dev
);
3906 void __iomem
*ioaddr
= tp
->mmio_addr
;
3907 struct pci_dev
*pdev
= tp
->pci_dev
;
3909 if ((tp
->mac_version
== RTL_GIGA_MAC_VER_13
) ||
3910 (tp
->mac_version
== RTL_GIGA_MAC_VER_16
)) {
3911 int cap
= tp
->pcie_cap
;
3914 pci_write_config_word(pdev
, cap
+ PCI_EXP_DEVCTL
,
3915 PCI_EXP_DEVCTL_NOSNOOP_EN
);
3919 switch (tp
->mac_version
) {
3920 case RTL_GIGA_MAC_VER_07
:
3921 rtl_hw_start_8102e_1(ioaddr
, pdev
);
3924 case RTL_GIGA_MAC_VER_08
:
3925 rtl_hw_start_8102e_3(ioaddr
, pdev
);
3928 case RTL_GIGA_MAC_VER_09
:
3929 rtl_hw_start_8102e_2(ioaddr
, pdev
);
3933 RTL_W8(Cfg9346
, Cfg9346_Unlock
);
3935 RTL_W8(MaxTxPacketSize
, TxPacketMax
);
3937 rtl_set_rx_max_size(ioaddr
, rx_buf_sz
);
3939 tp
->cp_cmd
|= rtl_rw_cpluscmd(ioaddr
) | PCIMulRW
;
3941 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
3943 RTL_W16(IntrMitigate
, 0x0000);
3945 rtl_set_rx_tx_desc_registers(tp
, ioaddr
);
3947 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3948 rtl_set_rx_tx_config_registers(tp
);
3950 RTL_W8(Cfg9346
, Cfg9346_Lock
);
3954 rtl_set_rx_mode(dev
);
3956 RTL_W8(ChipCmd
, CmdTxEnb
| CmdRxEnb
);
3958 RTL_W16(MultiIntr
, RTL_R16(MultiIntr
) & 0xf000);
3960 RTL_W16(IntrMask
, tp
->intr_event
);
3963 static int rtl8169_change_mtu(struct net_device
*dev
, int new_mtu
)
3965 if (new_mtu
< ETH_ZLEN
|| new_mtu
> SafeMtu
)
3972 static inline void rtl8169_make_unusable_by_asic(struct RxDesc
*desc
)
3974 desc
->addr
= cpu_to_le64(0x0badbadbadbadbadull
);
3975 desc
->opts1
&= ~cpu_to_le32(DescOwn
| RsvdMask
);
3978 static void rtl8169_free_rx_databuff(struct rtl8169_private
*tp
,
3979 void **data_buff
, struct RxDesc
*desc
)
3981 dma_unmap_single(&tp
->pci_dev
->dev
, le64_to_cpu(desc
->addr
), rx_buf_sz
,
3986 rtl8169_make_unusable_by_asic(desc
);
3989 static inline void rtl8169_mark_to_asic(struct RxDesc
*desc
, u32 rx_buf_sz
)
3991 u32 eor
= le32_to_cpu(desc
->opts1
) & RingEnd
;
3993 desc
->opts1
= cpu_to_le32(DescOwn
| eor
| rx_buf_sz
);
3996 static inline void rtl8169_map_to_asic(struct RxDesc
*desc
, dma_addr_t mapping
,
3999 desc
->addr
= cpu_to_le64(mapping
);
4001 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
4004 static inline void *rtl8169_align(void *data
)
4006 return (void *)ALIGN((long)data
, 16);
4009 static struct sk_buff
*rtl8169_alloc_rx_data(struct rtl8169_private
*tp
,
4010 struct RxDesc
*desc
)
4014 struct device
*d
= &tp
->pci_dev
->dev
;
4015 struct net_device
*dev
= tp
->dev
;
4016 int node
= dev
->dev
.parent
? dev_to_node(dev
->dev
.parent
) : -1;
4018 data
= kmalloc_node(rx_buf_sz
, GFP_KERNEL
, node
);
4022 if (rtl8169_align(data
) != data
) {
4024 data
= kmalloc_node(rx_buf_sz
+ 15, GFP_KERNEL
, node
);
4029 mapping
= dma_map_single(d
, rtl8169_align(data
), rx_buf_sz
,
4031 if (unlikely(dma_mapping_error(d
, mapping
))) {
4032 if (net_ratelimit())
4033 netif_err(tp
, drv
, tp
->dev
, "Failed to map RX DMA!\n");
4037 rtl8169_map_to_asic(desc
, mapping
, rx_buf_sz
);
4045 static void rtl8169_rx_clear(struct rtl8169_private
*tp
)
4049 for (i
= 0; i
< NUM_RX_DESC
; i
++) {
4050 if (tp
->Rx_databuff
[i
]) {
4051 rtl8169_free_rx_databuff(tp
, tp
->Rx_databuff
+ i
,
4052 tp
->RxDescArray
+ i
);
4057 static inline void rtl8169_mark_as_last_descriptor(struct RxDesc
*desc
)
4059 desc
->opts1
|= cpu_to_le32(RingEnd
);
4062 static int rtl8169_rx_fill(struct rtl8169_private
*tp
)
4066 for (i
= 0; i
< NUM_RX_DESC
; i
++) {
4069 if (tp
->Rx_databuff
[i
])
4072 data
= rtl8169_alloc_rx_data(tp
, tp
->RxDescArray
+ i
);
4074 rtl8169_make_unusable_by_asic(tp
->RxDescArray
+ i
);
4077 tp
->Rx_databuff
[i
] = data
;
4080 rtl8169_mark_as_last_descriptor(tp
->RxDescArray
+ NUM_RX_DESC
- 1);
4084 rtl8169_rx_clear(tp
);
4088 static void rtl8169_init_ring_indexes(struct rtl8169_private
*tp
)
4090 tp
->dirty_tx
= tp
->dirty_rx
= tp
->cur_tx
= tp
->cur_rx
= 0;
4093 static int rtl8169_init_ring(struct net_device
*dev
)
4095 struct rtl8169_private
*tp
= netdev_priv(dev
);
4097 rtl8169_init_ring_indexes(tp
);
4099 memset(tp
->tx_skb
, 0x0, NUM_TX_DESC
* sizeof(struct ring_info
));
4100 memset(tp
->Rx_databuff
, 0x0, NUM_RX_DESC
* sizeof(void *));
4102 return rtl8169_rx_fill(tp
);
4105 static void rtl8169_unmap_tx_skb(struct device
*d
, struct ring_info
*tx_skb
,
4106 struct TxDesc
*desc
)
4108 unsigned int len
= tx_skb
->len
;
4110 dma_unmap_single(d
, le64_to_cpu(desc
->addr
), len
, DMA_TO_DEVICE
);
4118 static void rtl8169_tx_clear_range(struct rtl8169_private
*tp
, u32 start
,
4123 for (i
= 0; i
< n
; i
++) {
4124 unsigned int entry
= (start
+ i
) % NUM_TX_DESC
;
4125 struct ring_info
*tx_skb
= tp
->tx_skb
+ entry
;
4126 unsigned int len
= tx_skb
->len
;
4129 struct sk_buff
*skb
= tx_skb
->skb
;
4131 rtl8169_unmap_tx_skb(&tp
->pci_dev
->dev
, tx_skb
,
4132 tp
->TxDescArray
+ entry
);
4134 tp
->dev
->stats
.tx_dropped
++;
4142 static void rtl8169_tx_clear(struct rtl8169_private
*tp
)
4144 rtl8169_tx_clear_range(tp
, tp
->dirty_tx
, NUM_TX_DESC
);
4145 tp
->cur_tx
= tp
->dirty_tx
= 0;
4148 static void rtl8169_schedule_work(struct net_device
*dev
, work_func_t task
)
4150 struct rtl8169_private
*tp
= netdev_priv(dev
);
4152 PREPARE_DELAYED_WORK(&tp
->task
, task
);
4153 schedule_delayed_work(&tp
->task
, 4);
4156 static void rtl8169_wait_for_quiescence(struct net_device
*dev
)
4158 struct rtl8169_private
*tp
= netdev_priv(dev
);
4159 void __iomem
*ioaddr
= tp
->mmio_addr
;
4161 synchronize_irq(dev
->irq
);
4163 /* Wait for any pending NAPI task to complete */
4164 napi_disable(&tp
->napi
);
4166 rtl8169_irq_mask_and_ack(ioaddr
);
4168 tp
->intr_mask
= 0xffff;
4169 RTL_W16(IntrMask
, tp
->intr_event
);
4170 napi_enable(&tp
->napi
);
4173 static void rtl8169_reinit_task(struct work_struct
*work
)
4175 struct rtl8169_private
*tp
=
4176 container_of(work
, struct rtl8169_private
, task
.work
);
4177 struct net_device
*dev
= tp
->dev
;
4182 if (!netif_running(dev
))
4185 rtl8169_wait_for_quiescence(dev
);
4188 ret
= rtl8169_open(dev
);
4189 if (unlikely(ret
< 0)) {
4190 if (net_ratelimit())
4191 netif_err(tp
, drv
, dev
,
4192 "reinit failure (status = %d). Rescheduling\n",
4194 rtl8169_schedule_work(dev
, rtl8169_reinit_task
);
4201 static void rtl8169_reset_task(struct work_struct
*work
)
4203 struct rtl8169_private
*tp
=
4204 container_of(work
, struct rtl8169_private
, task
.work
);
4205 struct net_device
*dev
= tp
->dev
;
4209 if (!netif_running(dev
))
4212 rtl8169_wait_for_quiescence(dev
);
4214 rtl8169_rx_interrupt(dev
, tp
, tp
->mmio_addr
, ~(u32
)0);
4215 rtl8169_tx_clear(tp
);
4217 if (tp
->dirty_rx
== tp
->cur_rx
) {
4218 rtl8169_init_ring_indexes(tp
);
4220 netif_wake_queue(dev
);
4221 rtl8169_check_link_status(dev
, tp
, tp
->mmio_addr
);
4223 if (net_ratelimit())
4224 netif_emerg(tp
, intr
, dev
, "Rx buffers shortage\n");
4225 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
4232 static void rtl8169_tx_timeout(struct net_device
*dev
)
4234 struct rtl8169_private
*tp
= netdev_priv(dev
);
4236 rtl8169_hw_reset(tp
);
4238 /* Let's wait a bit while any (async) irq lands on */
4239 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
4242 static int rtl8169_xmit_frags(struct rtl8169_private
*tp
, struct sk_buff
*skb
,
4245 struct skb_shared_info
*info
= skb_shinfo(skb
);
4246 unsigned int cur_frag
, entry
;
4247 struct TxDesc
* uninitialized_var(txd
);
4248 struct device
*d
= &tp
->pci_dev
->dev
;
4251 for (cur_frag
= 0; cur_frag
< info
->nr_frags
; cur_frag
++) {
4252 skb_frag_t
*frag
= info
->frags
+ cur_frag
;
4257 entry
= (entry
+ 1) % NUM_TX_DESC
;
4259 txd
= tp
->TxDescArray
+ entry
;
4261 addr
= ((void *) page_address(frag
->page
)) + frag
->page_offset
;
4262 mapping
= dma_map_single(d
, addr
, len
, DMA_TO_DEVICE
);
4263 if (unlikely(dma_mapping_error(d
, mapping
))) {
4264 if (net_ratelimit())
4265 netif_err(tp
, drv
, tp
->dev
,
4266 "Failed to map TX fragments DMA!\n");
4270 /* anti gcc 2.95.3 bugware (sic) */
4271 status
= opts1
| len
| (RingEnd
* !((entry
+ 1) % NUM_TX_DESC
));
4273 txd
->opts1
= cpu_to_le32(status
);
4274 txd
->addr
= cpu_to_le64(mapping
);
4276 tp
->tx_skb
[entry
].len
= len
;
4280 tp
->tx_skb
[entry
].skb
= skb
;
4281 txd
->opts1
|= cpu_to_le32(LastFrag
);
4287 rtl8169_tx_clear_range(tp
, tp
->cur_tx
+ 1, cur_frag
);
4291 static inline u32
rtl8169_tso_csum(struct sk_buff
*skb
, struct net_device
*dev
)
4293 if (dev
->features
& NETIF_F_TSO
) {
4294 u32 mss
= skb_shinfo(skb
)->gso_size
;
4297 return LargeSend
| ((mss
& MSSMask
) << MSSShift
);
4299 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
4300 const struct iphdr
*ip
= ip_hdr(skb
);
4302 if (ip
->protocol
== IPPROTO_TCP
)
4303 return IPCS
| TCPCS
;
4304 else if (ip
->protocol
== IPPROTO_UDP
)
4305 return IPCS
| UDPCS
;
4306 WARN_ON(1); /* we need a WARN() */
4311 static netdev_tx_t
rtl8169_start_xmit(struct sk_buff
*skb
,
4312 struct net_device
*dev
)
4314 struct rtl8169_private
*tp
= netdev_priv(dev
);
4315 unsigned int entry
= tp
->cur_tx
% NUM_TX_DESC
;
4316 struct TxDesc
*txd
= tp
->TxDescArray
+ entry
;
4317 void __iomem
*ioaddr
= tp
->mmio_addr
;
4318 struct device
*d
= &tp
->pci_dev
->dev
;
4324 if (unlikely(TX_BUFFS_AVAIL(tp
) < skb_shinfo(skb
)->nr_frags
)) {
4325 netif_err(tp
, drv
, dev
, "BUG! Tx Ring full when queue awake!\n");
4329 if (unlikely(le32_to_cpu(txd
->opts1
) & DescOwn
))
4332 len
= skb_headlen(skb
);
4333 mapping
= dma_map_single(d
, skb
->data
, len
, DMA_TO_DEVICE
);
4334 if (unlikely(dma_mapping_error(d
, mapping
))) {
4335 if (net_ratelimit())
4336 netif_err(tp
, drv
, dev
, "Failed to map TX DMA!\n");
4340 tp
->tx_skb
[entry
].len
= len
;
4341 txd
->addr
= cpu_to_le64(mapping
);
4342 txd
->opts2
= cpu_to_le32(rtl8169_tx_vlan_tag(tp
, skb
));
4344 opts1
= DescOwn
| rtl8169_tso_csum(skb
, dev
);
4346 frags
= rtl8169_xmit_frags(tp
, skb
, opts1
);
4352 opts1
|= FirstFrag
| LastFrag
;
4353 tp
->tx_skb
[entry
].skb
= skb
;
4358 /* anti gcc 2.95.3 bugware (sic) */
4359 status
= opts1
| len
| (RingEnd
* !((entry
+ 1) % NUM_TX_DESC
));
4360 txd
->opts1
= cpu_to_le32(status
);
4362 tp
->cur_tx
+= frags
+ 1;
4366 RTL_W8(TxPoll
, NPQ
); /* set polling bit */
4368 if (TX_BUFFS_AVAIL(tp
) < MAX_SKB_FRAGS
) {
4369 netif_stop_queue(dev
);
4371 if (TX_BUFFS_AVAIL(tp
) >= MAX_SKB_FRAGS
)
4372 netif_wake_queue(dev
);
4375 return NETDEV_TX_OK
;
4378 rtl8169_unmap_tx_skb(d
, tp
->tx_skb
+ entry
, txd
);
4381 dev
->stats
.tx_dropped
++;
4382 return NETDEV_TX_OK
;
4385 netif_stop_queue(dev
);
4386 dev
->stats
.tx_dropped
++;
4387 return NETDEV_TX_BUSY
;
4390 static void rtl8169_pcierr_interrupt(struct net_device
*dev
)
4392 struct rtl8169_private
*tp
= netdev_priv(dev
);
4393 struct pci_dev
*pdev
= tp
->pci_dev
;
4394 u16 pci_status
, pci_cmd
;
4396 pci_read_config_word(pdev
, PCI_COMMAND
, &pci_cmd
);
4397 pci_read_config_word(pdev
, PCI_STATUS
, &pci_status
);
4399 netif_err(tp
, intr
, dev
, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4400 pci_cmd
, pci_status
);
4403 * The recovery sequence below admits a very elaborated explanation:
4404 * - it seems to work;
4405 * - I did not see what else could be done;
4406 * - it makes iop3xx happy.
4408 * Feel free to adjust to your needs.
4410 if (pdev
->broken_parity_status
)
4411 pci_cmd
&= ~PCI_COMMAND_PARITY
;
4413 pci_cmd
|= PCI_COMMAND_SERR
| PCI_COMMAND_PARITY
;
4415 pci_write_config_word(pdev
, PCI_COMMAND
, pci_cmd
);
4417 pci_write_config_word(pdev
, PCI_STATUS
,
4418 pci_status
& (PCI_STATUS_DETECTED_PARITY
|
4419 PCI_STATUS_SIG_SYSTEM_ERROR
| PCI_STATUS_REC_MASTER_ABORT
|
4420 PCI_STATUS_REC_TARGET_ABORT
| PCI_STATUS_SIG_TARGET_ABORT
));
4422 /* The infamous DAC f*ckup only happens at boot time */
4423 if ((tp
->cp_cmd
& PCIDAC
) && !tp
->dirty_rx
&& !tp
->cur_rx
) {
4424 void __iomem
*ioaddr
= tp
->mmio_addr
;
4426 netif_info(tp
, intr
, dev
, "disabling PCI DAC\n");
4427 tp
->cp_cmd
&= ~PCIDAC
;
4428 RTL_W16(CPlusCmd
, tp
->cp_cmd
);
4429 dev
->features
&= ~NETIF_F_HIGHDMA
;
4432 rtl8169_hw_reset(tp
);
4434 rtl8169_schedule_work(dev
, rtl8169_reinit_task
);
4437 static void rtl8169_tx_interrupt(struct net_device
*dev
,
4438 struct rtl8169_private
*tp
,
4439 void __iomem
*ioaddr
)
4441 unsigned int dirty_tx
, tx_left
;
4443 dirty_tx
= tp
->dirty_tx
;
4445 tx_left
= tp
->cur_tx
- dirty_tx
;
4447 while (tx_left
> 0) {
4448 unsigned int entry
= dirty_tx
% NUM_TX_DESC
;
4449 struct ring_info
*tx_skb
= tp
->tx_skb
+ entry
;
4453 status
= le32_to_cpu(tp
->TxDescArray
[entry
].opts1
);
4454 if (status
& DescOwn
)
4457 rtl8169_unmap_tx_skb(&tp
->pci_dev
->dev
, tx_skb
,
4458 tp
->TxDescArray
+ entry
);
4459 if (status
& LastFrag
) {
4460 dev
->stats
.tx_packets
++;
4461 dev
->stats
.tx_bytes
+= tx_skb
->skb
->len
;
4462 dev_kfree_skb(tx_skb
->skb
);
4469 if (tp
->dirty_tx
!= dirty_tx
) {
4470 tp
->dirty_tx
= dirty_tx
;
4472 if (netif_queue_stopped(dev
) &&
4473 (TX_BUFFS_AVAIL(tp
) >= MAX_SKB_FRAGS
)) {
4474 netif_wake_queue(dev
);
4477 * 8168 hack: TxPoll requests are lost when the Tx packets are
4478 * too close. Let's kick an extra TxPoll request when a burst
4479 * of start_xmit activity is detected (if it is not detected,
4480 * it is slow enough). -- FR
4483 if (tp
->cur_tx
!= dirty_tx
)
4484 RTL_W8(TxPoll
, NPQ
);
4488 static inline int rtl8169_fragmented_frame(u32 status
)
4490 return (status
& (FirstFrag
| LastFrag
)) != (FirstFrag
| LastFrag
);
4493 static inline void rtl8169_rx_csum(struct sk_buff
*skb
, u32 opts1
)
4495 u32 status
= opts1
& RxProtoMask
;
4497 if (((status
== RxProtoTCP
) && !(opts1
& TCPFail
)) ||
4498 ((status
== RxProtoUDP
) && !(opts1
& UDPFail
)))
4499 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
4501 skb_checksum_none_assert(skb
);
4504 static struct sk_buff
*rtl8169_try_rx_copy(void *data
,
4505 struct rtl8169_private
*tp
,
4509 struct sk_buff
*skb
;
4510 struct device
*d
= &tp
->pci_dev
->dev
;
4512 data
= rtl8169_align(data
);
4513 dma_sync_single_for_cpu(d
, addr
, pkt_size
, DMA_FROM_DEVICE
);
4515 skb
= netdev_alloc_skb_ip_align(tp
->dev
, pkt_size
);
4517 memcpy(skb
->data
, data
, pkt_size
);
4518 dma_sync_single_for_device(d
, addr
, pkt_size
, DMA_FROM_DEVICE
);
4524 * Warning : rtl8169_rx_interrupt() might be called :
4525 * 1) from NAPI (softirq) context
4526 * (polling = 1 : we should call netif_receive_skb())
4527 * 2) from process context (rtl8169_reset_task())
4528 * (polling = 0 : we must call netif_rx() instead)
4530 static int rtl8169_rx_interrupt(struct net_device
*dev
,
4531 struct rtl8169_private
*tp
,
4532 void __iomem
*ioaddr
, u32 budget
)
4534 unsigned int cur_rx
, rx_left
;
4536 int polling
= (budget
!= ~(u32
)0) ? 1 : 0;
4538 cur_rx
= tp
->cur_rx
;
4539 rx_left
= NUM_RX_DESC
+ tp
->dirty_rx
- cur_rx
;
4540 rx_left
= min(rx_left
, budget
);
4542 for (; rx_left
> 0; rx_left
--, cur_rx
++) {
4543 unsigned int entry
= cur_rx
% NUM_RX_DESC
;
4544 struct RxDesc
*desc
= tp
->RxDescArray
+ entry
;
4548 status
= le32_to_cpu(desc
->opts1
);
4550 if (status
& DescOwn
)
4552 if (unlikely(status
& RxRES
)) {
4553 netif_info(tp
, rx_err
, dev
, "Rx ERROR. status = %08x\n",
4555 dev
->stats
.rx_errors
++;
4556 if (status
& (RxRWT
| RxRUNT
))
4557 dev
->stats
.rx_length_errors
++;
4559 dev
->stats
.rx_crc_errors
++;
4560 if (status
& RxFOVF
) {
4561 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
4562 dev
->stats
.rx_fifo_errors
++;
4564 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
4566 struct sk_buff
*skb
;
4567 dma_addr_t addr
= le64_to_cpu(desc
->addr
);
4568 int pkt_size
= (status
& 0x00001FFF) - 4;
4571 * The driver does not support incoming fragmented
4572 * frames. They are seen as a symptom of over-mtu
4575 if (unlikely(rtl8169_fragmented_frame(status
))) {
4576 dev
->stats
.rx_dropped
++;
4577 dev
->stats
.rx_length_errors
++;
4578 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
4582 skb
= rtl8169_try_rx_copy(tp
->Rx_databuff
[entry
],
4583 tp
, pkt_size
, addr
);
4584 rtl8169_mark_to_asic(desc
, rx_buf_sz
);
4586 dev
->stats
.rx_dropped
++;
4590 rtl8169_rx_csum(skb
, status
);
4591 skb_put(skb
, pkt_size
);
4592 skb
->protocol
= eth_type_trans(skb
, dev
);
4594 if (rtl8169_rx_vlan_skb(tp
, desc
, skb
, polling
) < 0) {
4595 if (likely(polling
))
4596 napi_gro_receive(&tp
->napi
, skb
);
4601 dev
->stats
.rx_bytes
+= pkt_size
;
4602 dev
->stats
.rx_packets
++;
4605 /* Work around for AMD plateform. */
4606 if ((desc
->opts2
& cpu_to_le32(0xfffe000)) &&
4607 (tp
->mac_version
== RTL_GIGA_MAC_VER_05
)) {
4613 count
= cur_rx
- tp
->cur_rx
;
4614 tp
->cur_rx
= cur_rx
;
4616 tp
->dirty_rx
+= count
;
4621 static irqreturn_t
rtl8169_interrupt(int irq
, void *dev_instance
)
4623 struct net_device
*dev
= dev_instance
;
4624 struct rtl8169_private
*tp
= netdev_priv(dev
);
4625 void __iomem
*ioaddr
= tp
->mmio_addr
;
4629 /* loop handling interrupts until we have no new ones or
4630 * we hit a invalid/hotplug case.
4632 status
= RTL_R16(IntrStatus
);
4633 while (status
&& status
!= 0xffff) {
4636 /* Handle all of the error cases first. These will reset
4637 * the chip, so just exit the loop.
4639 if (unlikely(!netif_running(dev
))) {
4640 rtl8169_asic_down(ioaddr
);
4644 if (unlikely(status
& RxFIFOOver
)) {
4645 switch (tp
->mac_version
) {
4646 /* Work around for rx fifo overflow */
4647 case RTL_GIGA_MAC_VER_11
:
4648 case RTL_GIGA_MAC_VER_22
:
4649 case RTL_GIGA_MAC_VER_26
:
4650 netif_stop_queue(dev
);
4651 rtl8169_tx_timeout(dev
);
4653 /* Testers needed. */
4654 case RTL_GIGA_MAC_VER_17
:
4655 case RTL_GIGA_MAC_VER_19
:
4656 case RTL_GIGA_MAC_VER_20
:
4657 case RTL_GIGA_MAC_VER_21
:
4658 case RTL_GIGA_MAC_VER_23
:
4659 case RTL_GIGA_MAC_VER_24
:
4660 case RTL_GIGA_MAC_VER_27
:
4661 case RTL_GIGA_MAC_VER_28
:
4662 /* Experimental science. Pktgen proof. */
4663 case RTL_GIGA_MAC_VER_12
:
4664 case RTL_GIGA_MAC_VER_25
:
4665 if (status
== RxFIFOOver
)
4673 if (unlikely(status
& SYSErr
)) {
4674 rtl8169_pcierr_interrupt(dev
);
4678 if (status
& LinkChg
)
4679 __rtl8169_check_link_status(dev
, tp
, ioaddr
, true);
4681 /* We need to see the lastest version of tp->intr_mask to
4682 * avoid ignoring an MSI interrupt and having to wait for
4683 * another event which may never come.
4686 if (status
& tp
->intr_mask
& tp
->napi_event
) {
4687 RTL_W16(IntrMask
, tp
->intr_event
& ~tp
->napi_event
);
4688 tp
->intr_mask
= ~tp
->napi_event
;
4690 if (likely(napi_schedule_prep(&tp
->napi
)))
4691 __napi_schedule(&tp
->napi
);
4693 netif_info(tp
, intr
, dev
,
4694 "interrupt %04x in poll\n", status
);
4697 /* We only get a new MSI interrupt when all active irq
4698 * sources on the chip have been acknowledged. So, ack
4699 * everything we've seen and check if new sources have become
4700 * active to avoid blocking all interrupts from the chip.
4703 (status
& RxFIFOOver
) ? (status
| RxOverflow
) : status
);
4704 status
= RTL_R16(IntrStatus
);
4707 return IRQ_RETVAL(handled
);
4710 static int rtl8169_poll(struct napi_struct
*napi
, int budget
)
4712 struct rtl8169_private
*tp
= container_of(napi
, struct rtl8169_private
, napi
);
4713 struct net_device
*dev
= tp
->dev
;
4714 void __iomem
*ioaddr
= tp
->mmio_addr
;
4717 work_done
= rtl8169_rx_interrupt(dev
, tp
, ioaddr
, (u32
) budget
);
4718 rtl8169_tx_interrupt(dev
, tp
, ioaddr
);
4720 if (work_done
< budget
) {
4721 napi_complete(napi
);
4723 /* We need for force the visibility of tp->intr_mask
4724 * for other CPUs, as we can loose an MSI interrupt
4725 * and potentially wait for a retransmit timeout if we don't.
4726 * The posted write to IntrMask is safe, as it will
4727 * eventually make it to the chip and we won't loose anything
4730 tp
->intr_mask
= 0xffff;
4732 RTL_W16(IntrMask
, tp
->intr_event
);
4738 static void rtl8169_rx_missed(struct net_device
*dev
, void __iomem
*ioaddr
)
4740 struct rtl8169_private
*tp
= netdev_priv(dev
);
4742 if (tp
->mac_version
> RTL_GIGA_MAC_VER_06
)
4745 dev
->stats
.rx_missed_errors
+= (RTL_R32(RxMissed
) & 0xffffff);
4746 RTL_W32(RxMissed
, 0);
4749 static void rtl8169_down(struct net_device
*dev
)
4751 struct rtl8169_private
*tp
= netdev_priv(dev
);
4752 void __iomem
*ioaddr
= tp
->mmio_addr
;
4754 rtl8169_delete_timer(dev
);
4756 netif_stop_queue(dev
);
4758 napi_disable(&tp
->napi
);
4760 spin_lock_irq(&tp
->lock
);
4762 rtl8169_asic_down(ioaddr
);
4764 * At this point device interrupts can not be enabled in any function,
4765 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
4766 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
4768 rtl8169_rx_missed(dev
, ioaddr
);
4770 spin_unlock_irq(&tp
->lock
);
4772 synchronize_irq(dev
->irq
);
4774 /* Give a racing hard_start_xmit a few cycles to complete. */
4775 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
4777 rtl8169_tx_clear(tp
);
4779 rtl8169_rx_clear(tp
);
4781 rtl_pll_power_down(tp
);
4784 static int rtl8169_close(struct net_device
*dev
)
4786 struct rtl8169_private
*tp
= netdev_priv(dev
);
4787 struct pci_dev
*pdev
= tp
->pci_dev
;
4789 pm_runtime_get_sync(&pdev
->dev
);
4791 /* update counters before going down */
4792 rtl8169_update_counters(dev
);
4796 free_irq(dev
->irq
, dev
);
4798 dma_free_coherent(&pdev
->dev
, R8169_RX_RING_BYTES
, tp
->RxDescArray
,
4800 dma_free_coherent(&pdev
->dev
, R8169_TX_RING_BYTES
, tp
->TxDescArray
,
4802 tp
->TxDescArray
= NULL
;
4803 tp
->RxDescArray
= NULL
;
4805 pm_runtime_put_sync(&pdev
->dev
);
4810 static void rtl_set_rx_mode(struct net_device
*dev
)
4812 struct rtl8169_private
*tp
= netdev_priv(dev
);
4813 void __iomem
*ioaddr
= tp
->mmio_addr
;
4814 unsigned long flags
;
4815 u32 mc_filter
[2]; /* Multicast hash filter */
4819 if (dev
->flags
& IFF_PROMISC
) {
4820 /* Unconditionally log net taps. */
4821 netif_notice(tp
, link
, dev
, "Promiscuous mode enabled\n");
4823 AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
|
4825 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
4826 } else if ((netdev_mc_count(dev
) > multicast_filter_limit
) ||
4827 (dev
->flags
& IFF_ALLMULTI
)) {
4828 /* Too many to filter perfectly -- accept all multicasts. */
4829 rx_mode
= AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
;
4830 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
4832 struct netdev_hw_addr
*ha
;
4834 rx_mode
= AcceptBroadcast
| AcceptMyPhys
;
4835 mc_filter
[1] = mc_filter
[0] = 0;
4836 netdev_for_each_mc_addr(ha
, dev
) {
4837 int bit_nr
= ether_crc(ETH_ALEN
, ha
->addr
) >> 26;
4838 mc_filter
[bit_nr
>> 5] |= 1 << (bit_nr
& 31);
4839 rx_mode
|= AcceptMulticast
;
4843 spin_lock_irqsave(&tp
->lock
, flags
);
4845 tmp
= rtl8169_rx_config
| rx_mode
|
4846 (RTL_R32(RxConfig
) & rtl_chip_info
[tp
->chipset
].RxConfigMask
);
4848 if (tp
->mac_version
> RTL_GIGA_MAC_VER_06
) {
4849 u32 data
= mc_filter
[0];
4851 mc_filter
[0] = swab32(mc_filter
[1]);
4852 mc_filter
[1] = swab32(data
);
4855 RTL_W32(MAR0
+ 4, mc_filter
[1]);
4856 RTL_W32(MAR0
+ 0, mc_filter
[0]);
4858 RTL_W32(RxConfig
, tmp
);
4860 spin_unlock_irqrestore(&tp
->lock
, flags
);
4864 * rtl8169_get_stats - Get rtl8169 read/write statistics
4865 * @dev: The Ethernet Device to get statistics for
4867 * Get TX/RX statistics for rtl8169
4869 static struct net_device_stats
*rtl8169_get_stats(struct net_device
*dev
)
4871 struct rtl8169_private
*tp
= netdev_priv(dev
);
4872 void __iomem
*ioaddr
= tp
->mmio_addr
;
4873 unsigned long flags
;
4875 if (netif_running(dev
)) {
4876 spin_lock_irqsave(&tp
->lock
, flags
);
4877 rtl8169_rx_missed(dev
, ioaddr
);
4878 spin_unlock_irqrestore(&tp
->lock
, flags
);
4884 static void rtl8169_net_suspend(struct net_device
*dev
)
4886 struct rtl8169_private
*tp
= netdev_priv(dev
);
4888 if (!netif_running(dev
))
4891 rtl_pll_power_down(tp
);
4893 netif_device_detach(dev
);
4894 netif_stop_queue(dev
);
4899 static int rtl8169_suspend(struct device
*device
)
4901 struct pci_dev
*pdev
= to_pci_dev(device
);
4902 struct net_device
*dev
= pci_get_drvdata(pdev
);
4904 rtl8169_net_suspend(dev
);
4909 static void __rtl8169_resume(struct net_device
*dev
)
4911 struct rtl8169_private
*tp
= netdev_priv(dev
);
4913 netif_device_attach(dev
);
4915 rtl_pll_power_up(tp
);
4917 rtl8169_schedule_work(dev
, rtl8169_reset_task
);
4920 static int rtl8169_resume(struct device
*device
)
4922 struct pci_dev
*pdev
= to_pci_dev(device
);
4923 struct net_device
*dev
= pci_get_drvdata(pdev
);
4924 struct rtl8169_private
*tp
= netdev_priv(dev
);
4926 rtl8169_init_phy(dev
, tp
);
4928 if (netif_running(dev
))
4929 __rtl8169_resume(dev
);
4934 static int rtl8169_runtime_suspend(struct device
*device
)
4936 struct pci_dev
*pdev
= to_pci_dev(device
);
4937 struct net_device
*dev
= pci_get_drvdata(pdev
);
4938 struct rtl8169_private
*tp
= netdev_priv(dev
);
4940 if (!tp
->TxDescArray
)
4943 spin_lock_irq(&tp
->lock
);
4944 tp
->saved_wolopts
= __rtl8169_get_wol(tp
);
4945 __rtl8169_set_wol(tp
, WAKE_ANY
);
4946 spin_unlock_irq(&tp
->lock
);
4948 rtl8169_net_suspend(dev
);
4953 static int rtl8169_runtime_resume(struct device
*device
)
4955 struct pci_dev
*pdev
= to_pci_dev(device
);
4956 struct net_device
*dev
= pci_get_drvdata(pdev
);
4957 struct rtl8169_private
*tp
= netdev_priv(dev
);
4959 if (!tp
->TxDescArray
)
4962 spin_lock_irq(&tp
->lock
);
4963 __rtl8169_set_wol(tp
, tp
->saved_wolopts
);
4964 tp
->saved_wolopts
= 0;
4965 spin_unlock_irq(&tp
->lock
);
4967 rtl8169_init_phy(dev
, tp
);
4969 __rtl8169_resume(dev
);
4974 static int rtl8169_runtime_idle(struct device
*device
)
4976 struct pci_dev
*pdev
= to_pci_dev(device
);
4977 struct net_device
*dev
= pci_get_drvdata(pdev
);
4978 struct rtl8169_private
*tp
= netdev_priv(dev
);
4980 return tp
->TxDescArray
? -EBUSY
: 0;
4983 static const struct dev_pm_ops rtl8169_pm_ops
= {
4984 .suspend
= rtl8169_suspend
,
4985 .resume
= rtl8169_resume
,
4986 .freeze
= rtl8169_suspend
,
4987 .thaw
= rtl8169_resume
,
4988 .poweroff
= rtl8169_suspend
,
4989 .restore
= rtl8169_resume
,
4990 .runtime_suspend
= rtl8169_runtime_suspend
,
4991 .runtime_resume
= rtl8169_runtime_resume
,
4992 .runtime_idle
= rtl8169_runtime_idle
,
4995 #define RTL8169_PM_OPS (&rtl8169_pm_ops)
4997 #else /* !CONFIG_PM */
4999 #define RTL8169_PM_OPS NULL
5001 #endif /* !CONFIG_PM */
5003 static void rtl_shutdown(struct pci_dev
*pdev
)
5005 struct net_device
*dev
= pci_get_drvdata(pdev
);
5006 struct rtl8169_private
*tp
= netdev_priv(dev
);
5007 void __iomem
*ioaddr
= tp
->mmio_addr
;
5009 rtl8169_net_suspend(dev
);
5011 /* restore original MAC address */
5012 rtl_rar_set(tp
, dev
->perm_addr
);
5014 spin_lock_irq(&tp
->lock
);
5016 rtl8169_asic_down(ioaddr
);
5018 spin_unlock_irq(&tp
->lock
);
5020 if (system_state
== SYSTEM_POWER_OFF
) {
5021 /* WoL fails with some 8168 when the receiver is disabled. */
5022 if (tp
->features
& RTL_FEATURE_WOL
) {
5023 pci_clear_master(pdev
);
5025 RTL_W8(ChipCmd
, CmdRxEnb
);
5030 pci_wake_from_d3(pdev
, true);
5031 pci_set_power_state(pdev
, PCI_D3hot
);
5035 static struct pci_driver rtl8169_pci_driver
= {
5037 .id_table
= rtl8169_pci_tbl
,
5038 .probe
= rtl8169_init_one
,
5039 .remove
= __devexit_p(rtl8169_remove_one
),
5040 .shutdown
= rtl_shutdown
,
5041 .driver
.pm
= RTL8169_PM_OPS
,
5044 static int __init
rtl8169_init_module(void)
5046 return pci_register_driver(&rtl8169_pci_driver
);
5049 static void __exit
rtl8169_cleanup_module(void)
5051 pci_unregister_driver(&rtl8169_pci_driver
);
5054 module_init(rtl8169_init_module
);
5055 module_exit(rtl8169_cleanup_module
);