blob: 550c865896490f3e7250e5d08a81fa036909f0e8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Francois Romieu07d3f512007-02-21 22:40:46 +01002 * r8169.c: RealTek 8169/8168/8101 ethernet driver.
3 *
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.
7 *
8 * See MAINTAINERS file for support contact information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
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>
21#include <linux/in.h>
22#include <linux/ip.h>
23#include <linux/tcp.h>
24#include <linux/init.h>
25#include <linux/dma-mapping.h>
Rafael J. Wysockie1759442010-03-14 14:33:51 +000026#include <linux/pm_runtime.h>
françois romieubca03d52011-01-03 15:07:31 +000027#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Francois Romieu99f252b2007-04-02 22:59:59 +020029#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/io.h>
31#include <asm/irq.h>
32
Francois Romieu865c6522008-05-11 14:51:00 +020033#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define MODULENAME "r8169"
35#define PFX MODULENAME ": "
36
françois romieubca03d52011-01-03 15:07:31 +000037#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
38#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#ifdef RTL8169_DEBUG
41#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020042 if (!(expr)) { \
43 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070044 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020045 }
Joe Perches06fa7352007-10-18 21:15:00 +020046#define dprintk(fmt, args...) \
47 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#else
49#define assert(expr) do {} while (0)
50#define dprintk(fmt, args...) do {} while (0)
51#endif /* RTL8169_DEBUG */
52
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020053#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070054 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define TX_BUFFS_AVAIL(tp) \
57 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* 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. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050061static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* MAC address length */
64#define MAC_ADDR_LEN 6
65
Francois Romieu9c14cea2008-07-05 00:21:15 +020066#define MAX_READ_REQUEST_SHIFT 12
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
71#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
72
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))
80
81#define RTL8169_TX_TIMEOUT (6*HZ)
82#define RTL8169_PHY_TIMEOUT (10*HZ)
83
françois romieuea8dbdd2009-03-15 01:10:50 +000084#define RTL_EEPROM_SIG cpu_to_le32(0x8129)
85#define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
Francois Romieue1564ec2008-10-16 22:46:13 +020086#define RTL_EEPROM_SIG_ADDR 0x0000
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/* 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))
Junchang Wang06f555f2010-05-30 02:26:07 +000094#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96enum mac_version {
Jean Delvaref21b75e2009-05-26 20:54:48 -070097 RTL_GIGA_MAC_NONE = 0x00,
Francois Romieuba6eb6e2007-06-11 23:35:18 +020098 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
Francois Romieu6dccd162007-02-13 23:38:05 +0100103 RTL_GIGA_MAC_VER_06 = 0x06, // 8110SCe
Francois Romieu2857ffb2008-08-02 21:08:49 +0200104 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
Francois Romieu2dd99532007-06-11 23:22:52 +0200108 RTL_GIGA_MAC_VER_11 = 0x0b, // 8168Bb
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200109 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
Francois Romieu197ff762008-06-28 13:16:02 +0200117 RTL_GIGA_MAC_VER_20 = 0x14, // 8168C
Francois Romieu6fb07052008-06-29 11:54:28 +0200118 RTL_GIGA_MAC_VER_21 = 0x15, // 8168C
Francois Romieuef3386f2008-06-29 12:24:30 +0200119 RTL_GIGA_MAC_VER_22 = 0x16, // 8168C
Francois Romieu7f3e3d32008-07-20 18:53:20 +0200120 RTL_GIGA_MAC_VER_23 = 0x17, // 8168CP
Francois Romieu5b538df2008-07-20 16:22:45 +0200121 RTL_GIGA_MAC_VER_24 = 0x18, // 8168CP
françois romieudaf9df62009-10-07 12:44:20 +0000122 RTL_GIGA_MAC_VER_25 = 0x19, // 8168D
123 RTL_GIGA_MAC_VER_26 = 0x1a, // 8168D
françois romieue6de30d2011-01-03 15:08:37 +0000124 RTL_GIGA_MAC_VER_27 = 0x1b, // 8168DP
125 RTL_GIGA_MAC_VER_28 = 0x1c, // 8168DP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define _R(NAME,MAC,MASK) \
129 { .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
130
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800131static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 const char *name;
133 u8 mac_version;
134 u32 RxConfigMask; /* Clears the bits supported by this chip */
135} rtl_chip_info[] = {
Francois Romieuba6eb6e2007-06-11 23:35:18 +0200136 _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
Francois Romieu6dccd162007-02-13 23:38:05 +0100141 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_06, 0xff7e1880), // 8110SCe
Francois Romieu2857ffb2008-08-02 21:08:49 +0200142 _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
Francois Romieubcf0bf92006-07-26 23:14:13 +0200146 _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
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200150 _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
Francois Romieu197ff762008-06-28 13:16:02 +0200155 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_20, 0xff7e1880), // PCI-E
Francois Romieu6fb07052008-06-29 11:54:28 +0200156 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_21, 0xff7e1880), // PCI-E
Francois Romieuef3386f2008-06-29 12:24:30 +0200157 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_22, 0xff7e1880), // PCI-E
Francois Romieu7f3e3d32008-07-20 18:53:20 +0200158 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_23, 0xff7e1880), // PCI-E
Francois Romieu5b538df2008-07-20 16:22:45 +0200159 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_24, 0xff7e1880), // PCI-E
françois romieudaf9df62009-10-07 12:44:20 +0000160 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_25, 0xff7e1880), // PCI-E
161 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_26, 0xff7e1880), // PCI-E
françois romieue6de30d2011-01-03 15:08:37 +0000162 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_27, 0xff7e1880), // PCI-E
163 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_28, 0xff7e1880) // PCI-E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165#undef _R
166
Francois Romieubcf0bf92006-07-26 23:14:13 +0200167enum cfg_version {
168 RTL_CFG_0 = 0x00,
169 RTL_CFG_1,
170 RTL_CFG_2
171};
172
Francois Romieu07ce4062007-02-23 23:36:39 +0100173static void rtl_hw_start_8169(struct net_device *);
174static void rtl_hw_start_8168(struct net_device *);
175static void rtl_hw_start_8101(struct net_device *);
176
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000177static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200178 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200179 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200180 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100181 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200182 { 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 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200184 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200185 { 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 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100188 { 0x0001, 0x8168,
189 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 {0,},
191};
192
193MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
194
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000195static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700196static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200197static struct {
198 u32 msg_enable;
199} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Francois Romieu07d3f512007-02-21 22:40:46 +0100201enum rtl_registers {
202 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100203 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100204 MAR0 = 8, /* Multicast filter. */
205 CounterAddrLow = 0x10,
206 CounterAddrHigh = 0x14,
207 TxDescStartAddrLow = 0x20,
208 TxDescStartAddrHigh = 0x24,
209 TxHDescStartAddrLow = 0x28,
210 TxHDescStartAddrHigh = 0x2c,
211 FLASH = 0x30,
212 ERSR = 0x36,
213 ChipCmd = 0x37,
214 TxPoll = 0x38,
215 IntrMask = 0x3c,
216 IntrStatus = 0x3e,
217 TxConfig = 0x40,
218 RxConfig = 0x44,
219 RxMissed = 0x4c,
220 Cfg9346 = 0x50,
221 Config0 = 0x51,
222 Config1 = 0x52,
223 Config2 = 0x53,
224 Config3 = 0x54,
225 Config4 = 0x55,
226 Config5 = 0x56,
227 MultiIntr = 0x5c,
228 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100229 PHYstatus = 0x6c,
230 RxMaxSize = 0xda,
231 CPlusCmd = 0xe0,
232 IntrMitigate = 0xe2,
233 RxDescAddrLow = 0xe4,
234 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000235 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
236
237#define NoEarlyTx 0x3f /* Max value : no early transmit. */
238
239 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
240
241#define TxPacketMax (8064 >> 7)
242
Francois Romieu07d3f512007-02-21 22:40:46 +0100243 FuncEvent = 0xf0,
244 FuncEventMask = 0xf4,
245 FuncPresetState = 0xf8,
246 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247};
248
Francois Romieuf162a5d2008-06-01 22:37:49 +0200249enum rtl8110_registers {
250 TBICSR = 0x64,
251 TBI_ANAR = 0x68,
252 TBI_LPAR = 0x6a,
253};
254
255enum rtl8168_8101_registers {
256 CSIDR = 0x64,
257 CSIAR = 0x68,
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
françois romieu065c27c2011-01-03 15:08:12 +0000263 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200264 EPHYAR = 0x80,
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
270 DBG_REG = 0xd1,
271#define FIX_NAK_1 (1 << 4)
272#define FIX_NAK_2 (1 << 3)
françois romieudaf9df62009-10-07 12:44:20 +0000273 EFUSEAR = 0xdc,
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
Francois Romieuf162a5d2008-06-01 22:37:49 +0200280};
281
françois romieuc0e45c12011-01-03 15:08:04 +0000282enum rtl8168_registers {
françois romieub646d902011-01-03 15:08:21 +0000283 ERIDR = 0x70,
284 ERIAR = 0x74,
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
290#define ERIAR_MSIX 1
291#define ERIAR_ASF 2
292#define ERIAR_TYPE_SHIFT 16
293#define ERIAR_BYTEEN 0x0f
294#define ERIAR_BYTEEN_SHIFT 12
françois romieuc0e45c12011-01-03 15:08:04 +0000295 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
302 OCPAR = 0xb4,
303#define OCPAR_FLAG 0x80000000
304#define OCPAR_GPHY_WRITE_CMD 0x8000f060
305#define OCPAR_GPHY_READ_CMD 0x0000f060
françois romieue6de30d2011-01-03 15:08:37 +0000306 RDSAR1 = 0xd0 /* 8168c only. Undocumented on 8168dp */
françois romieuc0e45c12011-01-03 15:08:04 +0000307};
308
Francois Romieu07d3f512007-02-21 22:40:46 +0100309enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100311 SYSErr = 0x8000,
312 PCSTimeout = 0x4000,
313 SWInt = 0x0100,
314 TxDescUnavail = 0x0080,
315 RxFIFOOver = 0x0040,
316 LinkChg = 0x0020,
317 RxOverflow = 0x0010,
318 TxErr = 0x0008,
319 TxOK = 0x0004,
320 RxErr = 0x0002,
321 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200324 RxFOVF = (1 << 23),
325 RxRWT = (1 << 22),
326 RxRES = (1 << 21),
327 RxRUNT = (1 << 20),
328 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 /* ChipCmdBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100331 CmdReset = 0x10,
332 CmdRxEnb = 0x08,
333 CmdTxEnb = 0x04,
334 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Francois Romieu275391a2007-02-23 23:50:28 +0100336 /* 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 */
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100342 Cfg9346_Lock = 0x00,
343 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100346 AcceptErr = 0x20,
347 AcceptRunt = 0x10,
348 AcceptBroadcast = 0x08,
349 AcceptMulticast = 0x04,
350 AcceptMyPhys = 0x02,
351 AcceptAllPhys = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /* RxConfigBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100354 RxCfgFIFOShift = 13,
355 RxCfgDMAShift = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* TxConfigBits */
358 TxInterFrameGapShift = 24,
359 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
360
Francois Romieu5d06a992006-02-23 00:47:58 +0100361 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200362 LEDS1 = (1 << 7),
363 LEDS0 = (1 << 6),
Francois Romieufbac58f2007-10-04 22:51:38 +0200364 MSIEnable = (1 << 5), /* Enable Message Signaled Interrupt */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200365 Speed_down = (1 << 4),
366 MEMMAP = (1 << 3),
367 IOMAP = (1 << 2),
368 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100369 PMEnable = (1 << 0), /* Power Management Enable */
370
Francois Romieu6dccd162007-02-13 23:38:05 +0100371 /* Config2 register p. 25 */
372 PCI_Clock_66MHz = 0x01,
373 PCI_Clock_33MHz = 0x00,
374
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100375 /* 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 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200378 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100379
Francois Romieu5d06a992006-02-23 00:47:58 +0100380 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100381 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 */
Francois Romieu5d06a992006-02-23 00:47:58 +0100385 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* TBICSR p.28 */
388 TBIReset = 0x80000000,
389 TBILoopback = 0x40000000,
390 TBINwEnable = 0x20000000,
391 TBINwRestart = 0x10000000,
392 TBILinkOk = 0x02000000,
393 TBINwComplete = 0x01000000,
394
395 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200396 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 RxVlan = (1 << 6),
407 RxChkSum = (1 << 5),
408 PCIDAC = (1 << 4),
409 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100410 INTT_0 = 0x0000, // 8168
411 INTT_1 = 0x0001, // 8168
412 INTT_2 = 0x0002, // 8168
413 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100416 TBI_Enable = 0x80,
417 TxFlowCtrl = 0x40,
418 RxFlowCtrl = 0x20,
419 _1000bpsF = 0x10,
420 _100bps = 0x08,
421 _10bps = 0x04,
422 LinkStatus = 0x02,
423 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100426 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200427
428 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100429 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430};
431
Francois Romieu07d3f512007-02-21 22:40:46 +0100432enum desc_status_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 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 */
437
438 /* Tx private */
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 */
446
447 /* Rx private */
448 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
449 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
450
451#define RxProtoUDP (PID1)
452#define RxProtoTCP (PID0)
453#define RxProtoIP (PID1 | PID0)
454#define RxProtoMask RxProtoIP
455
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 */
460};
461
462#define RsvdMask 0x3fffc000
463
464struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200465 __le32 opts1;
466 __le32 opts2;
467 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468};
469
470struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200471 __le32 opts1;
472 __le32 opts2;
473 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474};
475
476struct ring_info {
477 struct sk_buff *skb;
478 u32 len;
479 u8 __pad[sizeof(void *) - sizeof(u32)];
480};
481
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200482enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200483 RTL_FEATURE_WOL = (1 << 0),
484 RTL_FEATURE_MSI = (1 << 1),
485 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200486};
487
Ivan Vecera355423d2009-02-06 21:49:57 -0800488struct rtl8169_counters {
489 __le64 tx_packets;
490 __le64 rx_packets;
491 __le64 tx_errors;
492 __le32 rx_errors;
493 __le16 rx_missed;
494 __le16 align_errors;
495 __le32 tx_one_collision;
496 __le32 tx_multi_collision;
497 __le64 rx_unicast;
498 __le64 rx_broadcast;
499 __le32 rx_multicast;
500 __le16 tx_aborted;
501 __le16 tx_underun;
502};
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504struct rtl8169_private {
505 void __iomem *mmio_addr; /* memory map physical address */
506 struct pci_dev *pci_dev; /* Index of PCI device */
David Howellsc4028952006-11-22 14:57:56 +0000507 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700508 struct napi_struct napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 spinlock_t lock; /* spin lock flag */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200510 u32 msg_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 int chipset;
512 int mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 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. */
515 u32 dirty_rx;
516 u32 dirty_tx;
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;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000521 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 struct timer_list timer;
524 u16 cp_cmd;
Francois Romieu0e485152007-02-20 00:00:26 +0100525 u16 intr_event;
526 u16 napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 u16 intr_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 int phy_1000_ctrl_reg;
529#ifdef CONFIG_R8169_VLAN
530 struct vlan_group *vlgrp;
531#endif
françois romieuc0e45c12011-01-03 15:08:04 +0000532
533 struct mdio_ops {
534 void (*write)(void __iomem *, int, int);
535 int (*read)(void __iomem *, int);
536 } mdio_ops;
537
françois romieu065c27c2011-01-03 15:08:12 +0000538 struct pll_power_ops {
539 void (*down)(struct rtl8169_private *);
540 void (*up)(struct rtl8169_private *);
541 } pll_power_ops;
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
Francois Romieuccdffb92008-07-26 14:26:06 +0200544 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000545 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100546 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000547 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800549 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu9c14cea2008-07-05 00:21:15 +0200550 int pcie_cap;
David Howellsc4028952006-11-22 14:57:56 +0000551 struct delayed_work task;
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200552 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200553
554 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800555 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000556 u32 saved_wolopts;
françois romieuf1e02ed2011-01-13 13:07:53 +0000557
558 const struct firmware *fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559};
560
Ralf Baechle979b6c12005-06-13 14:30:40 -0700561MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700564MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200565module_param_named(debug, debug.msg_enable, int, 0);
566MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567MODULE_LICENSE("GPL");
568MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000569MODULE_FIRMWARE(FIRMWARE_8168D_1);
570MODULE_FIRMWARE(FIRMWARE_8168D_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572static int rtl8169_open(struct net_device *dev);
Stephen Hemminger613573252009-08-31 19:50:58 +0000573static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
574 struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100575static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100577static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100579static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200581static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700583 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200584static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200586static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700587static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200590 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
françois romieub646d902011-01-03 15:08:21 +0000592static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
593{
594 void __iomem *ioaddr = tp->mmio_addr;
595 int i;
596
597 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
598 for (i = 0; i < 20; i++) {
599 udelay(100);
600 if (RTL_R32(OCPAR) & OCPAR_FLAG)
601 break;
602 }
603 return RTL_R32(OCPDR);
604}
605
606static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
607{
608 void __iomem *ioaddr = tp->mmio_addr;
609 int i;
610
611 RTL_W32(OCPDR, data);
612 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
613 for (i = 0; i < 20; i++) {
614 udelay(100);
615 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
616 break;
617 }
618}
619
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800620static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000621{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800622 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000623 int i;
624
625 RTL_W8(ERIDR, cmd);
626 RTL_W32(ERIAR, 0x800010e8);
627 msleep(2);
628 for (i = 0; i < 5; i++) {
629 udelay(100);
630 if (!(RTL_R32(ERIDR) & ERIAR_FLAG))
631 break;
632 }
633
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800634 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000635}
636
637#define OOB_CMD_RESET 0x00
638#define OOB_CMD_DRIVER_START 0x05
639#define OOB_CMD_DRIVER_STOP 0x06
640
641static void rtl8168_driver_start(struct rtl8169_private *tp)
642{
643 int i;
644
645 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
646
647 for (i = 0; i < 10; i++) {
648 msleep(10);
649 if (ocp_read(tp, 0x0f, 0x0010) & 0x00000800)
650 break;
651 }
652}
653
654static void rtl8168_driver_stop(struct rtl8169_private *tp)
655{
656 int i;
657
658 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
659
660 for (i = 0; i < 10; i++) {
661 msleep(10);
662 if ((ocp_read(tp, 0x0f, 0x0010) & 0x00000800) == 0)
663 break;
664 }
665}
666
667
françois romieu4da19632011-01-03 15:07:55 +0000668static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 int i;
671
Francois Romieua6baf3a2007-11-08 23:23:21 +0100672 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Francois Romieu23714082006-01-29 00:49:09 +0100674 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100675 /*
676 * Check if the RTL8169 has completed writing to the specified
677 * MII register.
678 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200679 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 break;
Francois Romieu23714082006-01-29 00:49:09 +0100681 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700683 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700684 * According to hardware specs a 20us delay is required after write
685 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700686 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700687 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
françois romieu4da19632011-01-03 15:07:55 +0000690static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 int i, value = -1;
693
Francois Romieua6baf3a2007-11-08 23:23:21 +0100694 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Francois Romieu23714082006-01-29 00:49:09 +0100696 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100697 /*
698 * Check if the RTL8169 has completed retrieving data from
699 * the specified MII register.
700 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100702 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 break;
704 }
Francois Romieu23714082006-01-29 00:49:09 +0100705 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700707 /*
708 * According to hardware specs a 20us delay is required after read
709 * complete indication, but before sending next command.
710 */
711 udelay(20);
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return value;
714}
715
françois romieuc0e45c12011-01-03 15:08:04 +0000716static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
717{
718 int i;
719
720 RTL_W32(OCPDR, data |
721 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
722 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
723 RTL_W32(EPHY_RXER_NUM, 0);
724
725 for (i = 0; i < 100; i++) {
726 mdelay(1);
727 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
728 break;
729 }
730}
731
732static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
733{
734 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
735 (value & OCPDR_DATA_MASK));
736}
737
738static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
739{
740 int i;
741
742 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
743
744 mdelay(1);
745 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
746 RTL_W32(EPHY_RXER_NUM, 0);
747
748 for (i = 0; i < 100; i++) {
749 mdelay(1);
750 if (RTL_R32(OCPAR) & OCPAR_FLAG)
751 break;
752 }
753
754 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
755}
756
françois romieue6de30d2011-01-03 15:08:37 +0000757#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
758
759static void r8168dp_2_mdio_start(void __iomem *ioaddr)
760{
761 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
762}
763
764static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
765{
766 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
767}
768
769static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
770{
771 r8168dp_2_mdio_start(ioaddr);
772
773 r8169_mdio_write(ioaddr, reg_addr, value);
774
775 r8168dp_2_mdio_stop(ioaddr);
776}
777
778static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
779{
780 int value;
781
782 r8168dp_2_mdio_start(ioaddr);
783
784 value = r8169_mdio_read(ioaddr, reg_addr);
785
786 r8168dp_2_mdio_stop(ioaddr);
787
788 return value;
789}
790
françois romieu4da19632011-01-03 15:07:55 +0000791static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +0200792{
françois romieuc0e45c12011-01-03 15:08:04 +0000793 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +0200794}
795
françois romieu4da19632011-01-03 15:07:55 +0000796static int rtl_readphy(struct rtl8169_private *tp, int location)
797{
françois romieuc0e45c12011-01-03 15:08:04 +0000798 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +0000799}
800
801static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
802{
803 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
804}
805
806static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +0000807{
808 int val;
809
françois romieu4da19632011-01-03 15:07:55 +0000810 val = rtl_readphy(tp, reg_addr);
811 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +0000812}
813
Francois Romieuccdffb92008-07-26 14:26:06 +0200814static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
815 int val)
816{
817 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200818
françois romieu4da19632011-01-03 15:07:55 +0000819 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +0200820}
821
822static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
823{
824 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200825
françois romieu4da19632011-01-03 15:07:55 +0000826 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +0200827}
828
Francois Romieudacf8152008-08-02 20:44:13 +0200829static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
830{
831 unsigned int i;
832
833 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
834 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
835
836 for (i = 0; i < 100; i++) {
837 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
838 break;
839 udelay(10);
840 }
841}
842
843static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
844{
845 u16 value = 0xffff;
846 unsigned int i;
847
848 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
849
850 for (i = 0; i < 100; i++) {
851 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
852 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
853 break;
854 }
855 udelay(10);
856 }
857
858 return value;
859}
860
861static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
862{
863 unsigned int i;
864
865 RTL_W32(CSIDR, value);
866 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
867 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
868
869 for (i = 0; i < 100; i++) {
870 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
871 break;
872 udelay(10);
873 }
874}
875
876static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
877{
878 u32 value = ~0x00;
879 unsigned int i;
880
881 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
882 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
883
884 for (i = 0; i < 100; i++) {
885 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
886 value = RTL_R32(CSIDR);
887 break;
888 }
889 udelay(10);
890 }
891
892 return value;
893}
894
françois romieudaf9df62009-10-07 12:44:20 +0000895static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
896{
897 u8 value = 0xff;
898 unsigned int i;
899
900 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
901
902 for (i = 0; i < 300; i++) {
903 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
904 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
905 break;
906 }
907 udelay(100);
908 }
909
910 return value;
911}
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
914{
915 RTL_W16(IntrMask, 0x0000);
916
917 RTL_W16(IntrStatus, 0xffff);
918}
919
920static void rtl8169_asic_down(void __iomem *ioaddr)
921{
922 RTL_W8(ChipCmd, 0x00);
923 rtl8169_irq_mask_and_ack(ioaddr);
924 RTL_R16(CPlusCmd);
925}
926
françois romieu4da19632011-01-03 15:07:55 +0000927static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
françois romieu4da19632011-01-03 15:07:55 +0000929 void __iomem *ioaddr = tp->mmio_addr;
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return RTL_R32(TBICSR) & TBIReset;
932}
933
françois romieu4da19632011-01-03 15:07:55 +0000934static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
françois romieu4da19632011-01-03 15:07:55 +0000936 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
940{
941 return RTL_R32(TBICSR) & TBILinkOk;
942}
943
944static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
945{
946 return RTL_R8(PHYstatus) & LinkStatus;
947}
948
françois romieu4da19632011-01-03 15:07:55 +0000949static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
françois romieu4da19632011-01-03 15:07:55 +0000951 void __iomem *ioaddr = tp->mmio_addr;
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
954}
955
françois romieu4da19632011-01-03 15:07:55 +0000956static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
958 unsigned int val;
959
françois romieu4da19632011-01-03 15:07:55 +0000960 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
961 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000964static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieu07d3f512007-02-21 22:40:46 +0100965 struct rtl8169_private *tp,
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000966 void __iomem *ioaddr,
967 bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 unsigned long flags;
970
971 spin_lock_irqsave(&tp->lock, flags);
972 if (tp->link_ok(ioaddr)) {
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000973 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000974 if (pm)
975 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +0100977 if (net_ratelimit())
978 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200979 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +0000981 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000982 if (pm)
983 pm_schedule_suspend(&tp->pci_dev->dev, 100);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 spin_unlock_irqrestore(&tp->lock, flags);
986}
987
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000988static void rtl8169_check_link_status(struct net_device *dev,
989 struct rtl8169_private *tp,
990 void __iomem *ioaddr)
991{
992 __rtl8169_check_link_status(dev, tp, ioaddr, false);
993}
994
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000995#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
996
997static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
998{
999 void __iomem *ioaddr = tp->mmio_addr;
1000 u8 options;
1001 u32 wolopts = 0;
1002
1003 options = RTL_R8(Config1);
1004 if (!(options & PMEnable))
1005 return 0;
1006
1007 options = RTL_R8(Config3);
1008 if (options & LinkUp)
1009 wolopts |= WAKE_PHY;
1010 if (options & MagicPacket)
1011 wolopts |= WAKE_MAGIC;
1012
1013 options = RTL_R8(Config5);
1014 if (options & UWF)
1015 wolopts |= WAKE_UCAST;
1016 if (options & BWF)
1017 wolopts |= WAKE_BCAST;
1018 if (options & MWF)
1019 wolopts |= WAKE_MCAST;
1020
1021 return wolopts;
1022}
1023
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001024static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1025{
1026 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001027
1028 spin_lock_irq(&tp->lock);
1029
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001030 wol->supported = WAKE_ANY;
1031 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001032
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001033 spin_unlock_irq(&tp->lock);
1034}
1035
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001036static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001037{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001038 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001039 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001040 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001041 u32 opt;
1042 u16 reg;
1043 u8 mask;
1044 } cfg[] = {
1045 { WAKE_ANY, Config1, PMEnable },
1046 { WAKE_PHY, Config3, LinkUp },
1047 { WAKE_MAGIC, Config3, MagicPacket },
1048 { WAKE_UCAST, Config5, UWF },
1049 { WAKE_BCAST, Config5, BWF },
1050 { WAKE_MCAST, Config5, MWF },
1051 { WAKE_ANY, Config5, LanWake }
1052 };
1053
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001054 RTL_W8(Cfg9346, Cfg9346_Unlock);
1055
1056 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1057 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001058 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001059 options |= cfg[i].mask;
1060 RTL_W8(cfg[i].reg, options);
1061 }
1062
1063 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001064}
1065
1066static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1067{
1068 struct rtl8169_private *tp = netdev_priv(dev);
1069
1070 spin_lock_irq(&tp->lock);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001071
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001072 if (wol->wolopts)
1073 tp->features |= RTL_FEATURE_WOL;
1074 else
1075 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001076 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001077 spin_unlock_irq(&tp->lock);
1078
françois romieuea809072010-11-08 13:23:58 +00001079 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1080
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001081 return 0;
1082}
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084static void rtl8169_get_drvinfo(struct net_device *dev,
1085 struct ethtool_drvinfo *info)
1086{
1087 struct rtl8169_private *tp = netdev_priv(dev);
1088
1089 strcpy(info->driver, MODULENAME);
1090 strcpy(info->version, RTL8169_VERSION);
1091 strcpy(info->bus_info, pci_name(tp->pci_dev));
1092}
1093
1094static int rtl8169_get_regs_len(struct net_device *dev)
1095{
1096 return R8169_REGS_SIZE;
1097}
1098
1099static int rtl8169_set_speed_tbi(struct net_device *dev,
1100 u8 autoneg, u16 speed, u8 duplex)
1101{
1102 struct rtl8169_private *tp = netdev_priv(dev);
1103 void __iomem *ioaddr = tp->mmio_addr;
1104 int ret = 0;
1105 u32 reg;
1106
1107 reg = RTL_R32(TBICSR);
1108 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1109 (duplex == DUPLEX_FULL)) {
1110 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1111 } else if (autoneg == AUTONEG_ENABLE)
1112 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1113 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001114 netif_warn(tp, link, dev,
1115 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 ret = -EOPNOTSUPP;
1117 }
1118
1119 return ret;
1120}
1121
1122static int rtl8169_set_speed_xmii(struct net_device *dev,
1123 u8 autoneg, u16 speed, u8 duplex)
1124{
1125 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001126 int giga_ctrl, bmcr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001129 int auto_nego;
1130
françois romieu4da19632011-01-03 15:07:55 +00001131 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001132 auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
1133 ADVERTISE_100HALF | ADVERTISE_100FULL);
françois romieu3577aa12009-05-19 10:46:48 +00001134 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1135
françois romieu4da19632011-01-03 15:07:55 +00001136 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001137 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1138
1139 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1140 if ((tp->mac_version != RTL_GIGA_MAC_VER_07) &&
1141 (tp->mac_version != RTL_GIGA_MAC_VER_08) &&
1142 (tp->mac_version != RTL_GIGA_MAC_VER_09) &&
1143 (tp->mac_version != RTL_GIGA_MAC_VER_10) &&
1144 (tp->mac_version != RTL_GIGA_MAC_VER_13) &&
1145 (tp->mac_version != RTL_GIGA_MAC_VER_14) &&
1146 (tp->mac_version != RTL_GIGA_MAC_VER_15) &&
1147 (tp->mac_version != RTL_GIGA_MAC_VER_16)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001148 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Joe Perchesbf82c182010-02-09 11:49:50 +00001149 } else {
1150 netif_info(tp, link, dev,
1151 "PHY does not support 1000Mbps\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02001152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
françois romieu3577aa12009-05-19 10:46:48 +00001154 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001155
françois romieu3577aa12009-05-19 10:46:48 +00001156 if ((tp->mac_version == RTL_GIGA_MAC_VER_11) ||
1157 (tp->mac_version == RTL_GIGA_MAC_VER_12) ||
1158 (tp->mac_version >= RTL_GIGA_MAC_VER_17)) {
1159 /*
1160 * Wake up the PHY.
1161 * Vendor specific (0x1f) and reserved (0x0e) MII
1162 * registers.
1163 */
françois romieu4da19632011-01-03 15:07:55 +00001164 rtl_writephy(tp, 0x1f, 0x0000);
1165 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001166 }
1167
françois romieu4da19632011-01-03 15:07:55 +00001168 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1169 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001170 } else {
1171 giga_ctrl = 0;
1172
1173 if (speed == SPEED_10)
1174 bmcr = 0;
1175 else if (speed == SPEED_100)
1176 bmcr = BMCR_SPEED100;
1177 else
1178 return -EINVAL;
1179
1180 if (duplex == DUPLEX_FULL)
1181 bmcr |= BMCR_FULLDPLX;
1182
françois romieu4da19632011-01-03 15:07:55 +00001183 rtl_writephy(tp, 0x1f, 0x0000);
Roger So2584fbc2007-07-31 23:52:42 +02001184 }
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 tp->phy_1000_ctrl_reg = giga_ctrl;
1187
françois romieu4da19632011-01-03 15:07:55 +00001188 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001189
1190 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1191 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
1192 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001193 rtl_writephy(tp, 0x17, 0x2138);
1194 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001195 } else {
françois romieu4da19632011-01-03 15:07:55 +00001196 rtl_writephy(tp, 0x17, 0x2108);
1197 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001198 }
1199 }
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return 0;
1202}
1203
1204static int rtl8169_set_speed(struct net_device *dev,
1205 u8 autoneg, u16 speed, u8 duplex)
1206{
1207 struct rtl8169_private *tp = netdev_priv(dev);
1208 int ret;
1209
1210 ret = tp->set_speed(dev, autoneg, speed, duplex);
1211
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001212 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
1214
1215 return ret;
1216}
1217
1218static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1219{
1220 struct rtl8169_private *tp = netdev_priv(dev);
1221 unsigned long flags;
1222 int ret;
1223
1224 spin_lock_irqsave(&tp->lock, flags);
1225 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
1226 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return ret;
1229}
1230
1231static u32 rtl8169_get_rx_csum(struct net_device *dev)
1232{
1233 struct rtl8169_private *tp = netdev_priv(dev);
1234
1235 return tp->cp_cmd & RxChkSum;
1236}
1237
1238static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
1239{
1240 struct rtl8169_private *tp = netdev_priv(dev);
1241 void __iomem *ioaddr = tp->mmio_addr;
1242 unsigned long flags;
1243
1244 spin_lock_irqsave(&tp->lock, flags);
1245
1246 if (data)
1247 tp->cp_cmd |= RxChkSum;
1248 else
1249 tp->cp_cmd &= ~RxChkSum;
1250
1251 RTL_W16(CPlusCmd, tp->cp_cmd);
1252 RTL_R16(CPlusCmd);
1253
1254 spin_unlock_irqrestore(&tp->lock, flags);
1255
1256 return 0;
1257}
1258
1259#ifdef CONFIG_R8169_VLAN
1260
1261static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1262 struct sk_buff *skb)
1263{
Jesse Grosseab6d182010-10-20 13:56:03 +00001264 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1266}
1267
1268static void rtl8169_vlan_rx_register(struct net_device *dev,
1269 struct vlan_group *grp)
1270{
1271 struct rtl8169_private *tp = netdev_priv(dev);
1272 void __iomem *ioaddr = tp->mmio_addr;
1273 unsigned long flags;
1274
1275 spin_lock_irqsave(&tp->lock, flags);
1276 tp->vlgrp = grp;
Simon Wunderlich05af2142009-10-24 06:47:33 -07001277 /*
1278 * Do not disable RxVlan on 8110SCd.
1279 */
1280 if (tp->vlgrp || (tp->mac_version == RTL_GIGA_MAC_VER_05))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 tp->cp_cmd |= RxVlan;
1282 else
1283 tp->cp_cmd &= ~RxVlan;
1284 RTL_W16(CPlusCmd, tp->cp_cmd);
1285 RTL_R16(CPlusCmd);
1286 spin_unlock_irqrestore(&tp->lock, flags);
1287}
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
Eric Dumazet630b9432010-03-31 02:08:31 +00001290 struct sk_buff *skb, int polling)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
1292 u32 opts2 = le32_to_cpu(desc->opts2);
Francois Romieu865c6522008-05-11 14:51:00 +02001293 struct vlan_group *vlgrp = tp->vlgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 int ret;
1295
Francois Romieu865c6522008-05-11 14:51:00 +02001296 if (vlgrp && (opts2 & RxVlanTag)) {
Eric Dumazet2edae082010-09-06 18:46:39 +00001297 u16 vtag = swab16(opts2 & 0xffff);
1298
1299 if (likely(polling))
1300 vlan_gro_receive(&tp->napi, vlgrp, vtag, skb);
1301 else
1302 __vlan_hwaccel_rx(skb, vlgrp, vtag, polling);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 ret = 0;
1304 } else
1305 ret = -1;
1306 desc->opts2 = 0;
1307 return ret;
1308}
1309
1310#else /* !CONFIG_R8169_VLAN */
1311
1312static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1313 struct sk_buff *skb)
1314{
1315 return 0;
1316}
1317
1318static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
Eric Dumazet630b9432010-03-31 02:08:31 +00001319 struct sk_buff *skb, int polling)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 return -1;
1322}
1323
1324#endif
1325
Francois Romieuccdffb92008-07-26 14:26:06 +02001326static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 struct rtl8169_private *tp = netdev_priv(dev);
1329 void __iomem *ioaddr = tp->mmio_addr;
1330 u32 status;
1331
1332 cmd->supported =
1333 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1334 cmd->port = PORT_FIBRE;
1335 cmd->transceiver = XCVR_INTERNAL;
1336
1337 status = RTL_R32(TBICSR);
1338 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1339 cmd->autoneg = !!(status & TBINwEnable);
1340
1341 cmd->speed = SPEED_1000;
1342 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001343
1344 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
Francois Romieuccdffb92008-07-26 14:26:06 +02001347static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Francois Romieuccdffb92008-07-26 14:26:06 +02001351 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1355{
1356 struct rtl8169_private *tp = netdev_priv(dev);
1357 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +02001358 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 spin_lock_irqsave(&tp->lock, flags);
1361
Francois Romieuccdffb92008-07-26 14:26:06 +02001362 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
1364 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +02001365 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
1368static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1369 void *p)
1370{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001371 struct rtl8169_private *tp = netdev_priv(dev);
1372 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Francois Romieu5b0384f2006-08-16 16:00:01 +02001374 if (regs->len > R8169_REGS_SIZE)
1375 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Francois Romieu5b0384f2006-08-16 16:00:01 +02001377 spin_lock_irqsave(&tp->lock, flags);
1378 memcpy_fromio(p, tp->mmio_addr, regs->len);
1379 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001382static u32 rtl8169_get_msglevel(struct net_device *dev)
1383{
1384 struct rtl8169_private *tp = netdev_priv(dev);
1385
1386 return tp->msg_enable;
1387}
1388
1389static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1390{
1391 struct rtl8169_private *tp = netdev_priv(dev);
1392
1393 tp->msg_enable = value;
1394}
1395
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001396static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1397 "tx_packets",
1398 "rx_packets",
1399 "tx_errors",
1400 "rx_errors",
1401 "rx_missed",
1402 "align_errors",
1403 "tx_single_collisions",
1404 "tx_multi_collisions",
1405 "unicast",
1406 "broadcast",
1407 "multicast",
1408 "tx_aborted",
1409 "tx_underrun",
1410};
1411
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001412static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001413{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001414 switch (sset) {
1415 case ETH_SS_STATS:
1416 return ARRAY_SIZE(rtl8169_gstrings);
1417 default:
1418 return -EOPNOTSUPP;
1419 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001420}
1421
Ivan Vecera355423d2009-02-06 21:49:57 -08001422static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001423{
1424 struct rtl8169_private *tp = netdev_priv(dev);
1425 void __iomem *ioaddr = tp->mmio_addr;
1426 struct rtl8169_counters *counters;
1427 dma_addr_t paddr;
1428 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001429 int wait = 1000;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001430 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001431
Ivan Vecera355423d2009-02-06 21:49:57 -08001432 /*
1433 * Some chips are unable to dump tally counters when the receiver
1434 * is disabled.
1435 */
1436 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1437 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001438
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001439 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001440 if (!counters)
1441 return;
1442
1443 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001444 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001445 RTL_W32(CounterAddrLow, cmd);
1446 RTL_W32(CounterAddrLow, cmd | CounterDump);
1447
Ivan Vecera355423d2009-02-06 21:49:57 -08001448 while (wait--) {
1449 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
1450 /* copy updated counters */
1451 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001452 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001453 }
1454 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001455 }
1456
1457 RTL_W32(CounterAddrLow, 0);
1458 RTL_W32(CounterAddrHigh, 0);
1459
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001460 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001461}
1462
Ivan Vecera355423d2009-02-06 21:49:57 -08001463static void rtl8169_get_ethtool_stats(struct net_device *dev,
1464 struct ethtool_stats *stats, u64 *data)
1465{
1466 struct rtl8169_private *tp = netdev_priv(dev);
1467
1468 ASSERT_RTNL();
1469
1470 rtl8169_update_counters(dev);
1471
1472 data[0] = le64_to_cpu(tp->counters.tx_packets);
1473 data[1] = le64_to_cpu(tp->counters.rx_packets);
1474 data[2] = le64_to_cpu(tp->counters.tx_errors);
1475 data[3] = le32_to_cpu(tp->counters.rx_errors);
1476 data[4] = le16_to_cpu(tp->counters.rx_missed);
1477 data[5] = le16_to_cpu(tp->counters.align_errors);
1478 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1479 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1480 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1481 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1482 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1483 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1484 data[12] = le16_to_cpu(tp->counters.tx_underun);
1485}
1486
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001487static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1488{
1489 switch(stringset) {
1490 case ETH_SS_STATS:
1491 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1492 break;
1493 }
1494}
1495
Jeff Garzik7282d492006-09-13 14:30:00 -04001496static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 .get_drvinfo = rtl8169_get_drvinfo,
1498 .get_regs_len = rtl8169_get_regs_len,
1499 .get_link = ethtool_op_get_link,
1500 .get_settings = rtl8169_get_settings,
1501 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001502 .get_msglevel = rtl8169_get_msglevel,
1503 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 .get_rx_csum = rtl8169_get_rx_csum,
1505 .set_rx_csum = rtl8169_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 .set_tx_csum = ethtool_op_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 .set_tso = ethtool_op_set_tso,
1509 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001510 .get_wol = rtl8169_get_wol,
1511 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001512 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001513 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001514 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515};
1516
Francois Romieu07d3f512007-02-21 22:40:46 +01001517static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1518 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Francois Romieu0e485152007-02-20 00:00:26 +01001520 /*
1521 * The driver currently handles the 8168Bf and the 8168Be identically
1522 * but they can be identified more specifically through the test below
1523 * if needed:
1524 *
1525 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001526 *
1527 * Same thing for the 8101Eb and the 8101Ec:
1528 *
1529 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001530 */
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001531 static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001533 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 int mac_version;
1535 } mac_info[] = {
Francois Romieu5b538df2008-07-20 16:22:45 +02001536 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001537 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1538 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001539 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001540
françois romieue6de30d2011-01-03 15:08:37 +00001541 /* 8168DP family. */
1542 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1543 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
1544
Francois Romieuef808d52008-06-29 13:10:54 +02001545 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001546 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001547 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001548 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001549 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001550 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1551 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001552 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001553 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001554 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001555
1556 /* 8168B family. */
1557 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1558 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1559 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1560 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1561
1562 /* 8101 family. */
Francois Romieu2857ffb2008-08-02 21:08:49 +02001563 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1564 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1565 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1566 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1567 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1568 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001569 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001570 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001571 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001572 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1573 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001574 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1575 /* FIXME: where did these entries come from ? -- FR */
1576 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1577 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1578
1579 /* 8110 family. */
1580 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1581 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1582 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1583 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1584 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1585 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1586
Jean Delvaref21b75e2009-05-26 20:54:48 -07001587 /* Catch-all */
1588 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }, *p = mac_info;
1590 u32 reg;
1591
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001592 reg = RTL_R32(TxConfig);
1593 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 p++;
1595 tp->mac_version = p->mac_version;
1596}
1597
1598static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1599{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001600 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
Francois Romieu867763c2007-08-17 18:21:58 +02001603struct phy_reg {
1604 u16 reg;
1605 u16 val;
1606};
1607
françois romieu4da19632011-01-03 15:07:55 +00001608static void rtl_writephy_batch(struct rtl8169_private *tp,
1609 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001610{
1611 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001612 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001613 regs++;
1614 }
1615}
1616
françois romieubca03d52011-01-03 15:07:31 +00001617#define PHY_READ 0x00000000
1618#define PHY_DATA_OR 0x10000000
1619#define PHY_DATA_AND 0x20000000
1620#define PHY_BJMPN 0x30000000
1621#define PHY_READ_EFUSE 0x40000000
1622#define PHY_READ_MAC_BYTE 0x50000000
1623#define PHY_WRITE_MAC_BYTE 0x60000000
1624#define PHY_CLEAR_READCOUNT 0x70000000
1625#define PHY_WRITE 0x80000000
1626#define PHY_READCOUNT_EQ_SKIP 0x90000000
1627#define PHY_COMP_EQ_SKIPN 0xa0000000
1628#define PHY_COMP_NEQ_SKIPN 0xb0000000
1629#define PHY_WRITE_PREVIOUS 0xc0000000
1630#define PHY_SKIPN 0xd0000000
1631#define PHY_DELAY_MS 0xe0000000
1632#define PHY_WRITE_ERI_WORD 0xf0000000
1633
1634static void
1635rtl_phy_write_fw(struct rtl8169_private *tp, const struct firmware *fw)
1636{
françois romieubca03d52011-01-03 15:07:31 +00001637 __le32 *phytable = (__le32 *)fw->data;
1638 struct net_device *dev = tp->dev;
hayeswang42b82dc2011-01-10 02:07:25 +00001639 size_t index, fw_size = fw->size / sizeof(*phytable);
1640 u32 predata, count;
françois romieubca03d52011-01-03 15:07:31 +00001641
1642 if (fw->size % sizeof(*phytable)) {
1643 netif_err(tp, probe, dev, "odd sized firmware %zd\n", fw->size);
1644 return;
1645 }
1646
hayeswang42b82dc2011-01-10 02:07:25 +00001647 for (index = 0; index < fw_size; index++) {
1648 u32 action = le32_to_cpu(phytable[index]);
1649 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00001650
hayeswang42b82dc2011-01-10 02:07:25 +00001651 switch(action & 0xf0000000) {
1652 case PHY_READ:
1653 case PHY_DATA_OR:
1654 case PHY_DATA_AND:
1655 case PHY_READ_EFUSE:
1656 case PHY_CLEAR_READCOUNT:
1657 case PHY_WRITE:
1658 case PHY_WRITE_PREVIOUS:
1659 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00001660 break;
1661
hayeswang42b82dc2011-01-10 02:07:25 +00001662 case PHY_BJMPN:
1663 if (regno > index) {
1664 netif_err(tp, probe, tp->dev,
1665 "Out of range of firmware\n");
1666 return;
1667 }
1668 break;
1669 case PHY_READCOUNT_EQ_SKIP:
1670 if (index + 2 >= fw_size) {
1671 netif_err(tp, probe, tp->dev,
1672 "Out of range of firmware\n");
1673 return;
1674 }
1675 break;
1676 case PHY_COMP_EQ_SKIPN:
1677 case PHY_COMP_NEQ_SKIPN:
1678 case PHY_SKIPN:
1679 if (index + 1 + regno >= fw_size) {
1680 netif_err(tp, probe, tp->dev,
1681 "Out of range of firmware\n");
1682 return;
1683 }
1684 break;
1685
1686 case PHY_READ_MAC_BYTE:
1687 case PHY_WRITE_MAC_BYTE:
1688 case PHY_WRITE_ERI_WORD:
1689 default:
1690 netif_err(tp, probe, tp->dev,
1691 "Invalid action 0x%08x\n", action);
françois romieubca03d52011-01-03 15:07:31 +00001692 return;
1693 }
1694 }
1695
hayeswang42b82dc2011-01-10 02:07:25 +00001696 predata = 0;
1697 count = 0;
1698
1699 for (index = 0; index < fw_size; ) {
1700 u32 action = le32_to_cpu(phytable[index]);
françois romieubca03d52011-01-03 15:07:31 +00001701 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00001702 u32 regno = (action & 0x0fff0000) >> 16;
1703
1704 if (!action)
1705 break;
françois romieubca03d52011-01-03 15:07:31 +00001706
1707 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00001708 case PHY_READ:
1709 predata = rtl_readphy(tp, regno);
1710 count++;
1711 index++;
françois romieubca03d52011-01-03 15:07:31 +00001712 break;
hayeswang42b82dc2011-01-10 02:07:25 +00001713 case PHY_DATA_OR:
1714 predata |= data;
1715 index++;
1716 break;
1717 case PHY_DATA_AND:
1718 predata &= data;
1719 index++;
1720 break;
1721 case PHY_BJMPN:
1722 index -= regno;
1723 break;
1724 case PHY_READ_EFUSE:
1725 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
1726 index++;
1727 break;
1728 case PHY_CLEAR_READCOUNT:
1729 count = 0;
1730 index++;
1731 break;
1732 case PHY_WRITE:
1733 rtl_writephy(tp, regno, data);
1734 index++;
1735 break;
1736 case PHY_READCOUNT_EQ_SKIP:
1737 if (count == data)
1738 index += 2;
1739 else
1740 index += 1;
1741 break;
1742 case PHY_COMP_EQ_SKIPN:
1743 if (predata == data)
1744 index += regno;
1745 index++;
1746 break;
1747 case PHY_COMP_NEQ_SKIPN:
1748 if (predata != data)
1749 index += regno;
1750 index++;
1751 break;
1752 case PHY_WRITE_PREVIOUS:
1753 rtl_writephy(tp, regno, predata);
1754 index++;
1755 break;
1756 case PHY_SKIPN:
1757 index += regno + 1;
1758 break;
1759 case PHY_DELAY_MS:
1760 mdelay(data);
1761 index++;
1762 break;
1763
1764 case PHY_READ_MAC_BYTE:
1765 case PHY_WRITE_MAC_BYTE:
1766 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00001767 default:
1768 BUG();
1769 }
1770 }
1771}
1772
françois romieuf1e02ed2011-01-13 13:07:53 +00001773static void rtl_release_firmware(struct rtl8169_private *tp)
1774{
1775 release_firmware(tp->fw);
1776 tp->fw = NULL;
1777}
1778
1779static int rtl_apply_firmware(struct rtl8169_private *tp, const char *fw_name)
1780{
1781 const struct firmware **fw = &tp->fw;
1782 int rc = !*fw;
1783
1784 if (rc) {
1785 rc = request_firmware(fw, fw_name, &tp->pci_dev->dev);
1786 if (rc < 0)
1787 goto out;
1788 }
1789
1790 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
1791 rtl_phy_write_fw(tp, *fw);
1792out:
1793 return rc;
1794}
1795
françois romieu4da19632011-01-03 15:07:55 +00001796static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001798 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00001799 { 0x1f, 0x0001 },
1800 { 0x06, 0x006e },
1801 { 0x08, 0x0708 },
1802 { 0x15, 0x4000 },
1803 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
françois romieu0b9b5712009-08-10 19:44:56 +00001805 { 0x1f, 0x0001 },
1806 { 0x03, 0x00a1 },
1807 { 0x02, 0x0008 },
1808 { 0x01, 0x0120 },
1809 { 0x00, 0x1000 },
1810 { 0x04, 0x0800 },
1811 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
françois romieu0b9b5712009-08-10 19:44:56 +00001813 { 0x03, 0xff41 },
1814 { 0x02, 0xdf60 },
1815 { 0x01, 0x0140 },
1816 { 0x00, 0x0077 },
1817 { 0x04, 0x7800 },
1818 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
françois romieu0b9b5712009-08-10 19:44:56 +00001820 { 0x03, 0x802f },
1821 { 0x02, 0x4f02 },
1822 { 0x01, 0x0409 },
1823 { 0x00, 0xf0f9 },
1824 { 0x04, 0x9800 },
1825 { 0x04, 0x9000 },
1826
1827 { 0x03, 0xdf01 },
1828 { 0x02, 0xdf20 },
1829 { 0x01, 0xff95 },
1830 { 0x00, 0xba00 },
1831 { 0x04, 0xa800 },
1832 { 0x04, 0xa000 },
1833
1834 { 0x03, 0xff41 },
1835 { 0x02, 0xdf20 },
1836 { 0x01, 0x0140 },
1837 { 0x00, 0x00bb },
1838 { 0x04, 0xb800 },
1839 { 0x04, 0xb000 },
1840
1841 { 0x03, 0xdf41 },
1842 { 0x02, 0xdc60 },
1843 { 0x01, 0x6340 },
1844 { 0x00, 0x007d },
1845 { 0x04, 0xd800 },
1846 { 0x04, 0xd000 },
1847
1848 { 0x03, 0xdf01 },
1849 { 0x02, 0xdf20 },
1850 { 0x01, 0x100a },
1851 { 0x00, 0xa0ff },
1852 { 0x04, 0xf800 },
1853 { 0x04, 0xf000 },
1854
1855 { 0x1f, 0x0000 },
1856 { 0x0b, 0x0000 },
1857 { 0x00, 0x9200 }
1858 };
1859
françois romieu4da19632011-01-03 15:07:55 +00001860 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861}
1862
françois romieu4da19632011-01-03 15:07:55 +00001863static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02001864{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001865 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02001866 { 0x1f, 0x0002 },
1867 { 0x01, 0x90d0 },
1868 { 0x1f, 0x0000 }
1869 };
1870
françois romieu4da19632011-01-03 15:07:55 +00001871 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001872}
1873
françois romieu4da19632011-01-03 15:07:55 +00001874static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001875{
1876 struct pci_dev *pdev = tp->pci_dev;
1877 u16 vendor_id, device_id;
1878
1879 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
1880 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
1881
1882 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
1883 return;
1884
françois romieu4da19632011-01-03 15:07:55 +00001885 rtl_writephy(tp, 0x1f, 0x0001);
1886 rtl_writephy(tp, 0x10, 0xf01b);
1887 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00001888}
1889
françois romieu4da19632011-01-03 15:07:55 +00001890static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001891{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001892 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00001893 { 0x1f, 0x0001 },
1894 { 0x04, 0x0000 },
1895 { 0x03, 0x00a1 },
1896 { 0x02, 0x0008 },
1897 { 0x01, 0x0120 },
1898 { 0x00, 0x1000 },
1899 { 0x04, 0x0800 },
1900 { 0x04, 0x9000 },
1901 { 0x03, 0x802f },
1902 { 0x02, 0x4f02 },
1903 { 0x01, 0x0409 },
1904 { 0x00, 0xf099 },
1905 { 0x04, 0x9800 },
1906 { 0x04, 0xa000 },
1907 { 0x03, 0xdf01 },
1908 { 0x02, 0xdf20 },
1909 { 0x01, 0xff95 },
1910 { 0x00, 0xba00 },
1911 { 0x04, 0xa800 },
1912 { 0x04, 0xf000 },
1913 { 0x03, 0xdf01 },
1914 { 0x02, 0xdf20 },
1915 { 0x01, 0x101a },
1916 { 0x00, 0xa0ff },
1917 { 0x04, 0xf800 },
1918 { 0x04, 0x0000 },
1919 { 0x1f, 0x0000 },
1920
1921 { 0x1f, 0x0001 },
1922 { 0x10, 0xf41b },
1923 { 0x14, 0xfb54 },
1924 { 0x18, 0xf5c7 },
1925 { 0x1f, 0x0000 },
1926
1927 { 0x1f, 0x0001 },
1928 { 0x17, 0x0cc0 },
1929 { 0x1f, 0x0000 }
1930 };
1931
françois romieu4da19632011-01-03 15:07:55 +00001932 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00001933
françois romieu4da19632011-01-03 15:07:55 +00001934 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00001935}
1936
françois romieu4da19632011-01-03 15:07:55 +00001937static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00001938{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001939 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00001940 { 0x1f, 0x0001 },
1941 { 0x04, 0x0000 },
1942 { 0x03, 0x00a1 },
1943 { 0x02, 0x0008 },
1944 { 0x01, 0x0120 },
1945 { 0x00, 0x1000 },
1946 { 0x04, 0x0800 },
1947 { 0x04, 0x9000 },
1948 { 0x03, 0x802f },
1949 { 0x02, 0x4f02 },
1950 { 0x01, 0x0409 },
1951 { 0x00, 0xf099 },
1952 { 0x04, 0x9800 },
1953 { 0x04, 0xa000 },
1954 { 0x03, 0xdf01 },
1955 { 0x02, 0xdf20 },
1956 { 0x01, 0xff95 },
1957 { 0x00, 0xba00 },
1958 { 0x04, 0xa800 },
1959 { 0x04, 0xf000 },
1960 { 0x03, 0xdf01 },
1961 { 0x02, 0xdf20 },
1962 { 0x01, 0x101a },
1963 { 0x00, 0xa0ff },
1964 { 0x04, 0xf800 },
1965 { 0x04, 0x0000 },
1966 { 0x1f, 0x0000 },
1967
1968 { 0x1f, 0x0001 },
1969 { 0x0b, 0x8480 },
1970 { 0x1f, 0x0000 },
1971
1972 { 0x1f, 0x0001 },
1973 { 0x18, 0x67c7 },
1974 { 0x04, 0x2000 },
1975 { 0x03, 0x002f },
1976 { 0x02, 0x4360 },
1977 { 0x01, 0x0109 },
1978 { 0x00, 0x3022 },
1979 { 0x04, 0x2800 },
1980 { 0x1f, 0x0000 },
1981
1982 { 0x1f, 0x0001 },
1983 { 0x17, 0x0cc0 },
1984 { 0x1f, 0x0000 }
1985 };
1986
françois romieu4da19632011-01-03 15:07:55 +00001987 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00001988}
1989
françois romieu4da19632011-01-03 15:07:55 +00001990static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02001991{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001992 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02001993 { 0x10, 0xf41b },
1994 { 0x1f, 0x0000 }
1995 };
1996
françois romieu4da19632011-01-03 15:07:55 +00001997 rtl_writephy(tp, 0x1f, 0x0001);
1998 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02001999
françois romieu4da19632011-01-03 15:07:55 +00002000 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002001}
2002
françois romieu4da19632011-01-03 15:07:55 +00002003static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002004{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002005 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002006 { 0x1f, 0x0001 },
2007 { 0x10, 0xf41b },
2008 { 0x1f, 0x0000 }
2009 };
2010
françois romieu4da19632011-01-03 15:07:55 +00002011 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002012}
2013
françois romieu4da19632011-01-03 15:07:55 +00002014static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002015{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002016 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002017 { 0x1f, 0x0000 },
2018 { 0x1d, 0x0f00 },
2019 { 0x1f, 0x0002 },
2020 { 0x0c, 0x1ec8 },
2021 { 0x1f, 0x0000 }
2022 };
2023
françois romieu4da19632011-01-03 15:07:55 +00002024 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002025}
2026
françois romieu4da19632011-01-03 15:07:55 +00002027static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002028{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002029 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002030 { 0x1f, 0x0001 },
2031 { 0x1d, 0x3d98 },
2032 { 0x1f, 0x0000 }
2033 };
2034
françois romieu4da19632011-01-03 15:07:55 +00002035 rtl_writephy(tp, 0x1f, 0x0000);
2036 rtl_patchphy(tp, 0x14, 1 << 5);
2037 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002038
françois romieu4da19632011-01-03 15:07:55 +00002039 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002040}
2041
françois romieu4da19632011-01-03 15:07:55 +00002042static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002043{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002044 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002045 { 0x1f, 0x0001 },
2046 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002047 { 0x1f, 0x0002 },
2048 { 0x00, 0x88d4 },
2049 { 0x01, 0x82b1 },
2050 { 0x03, 0x7002 },
2051 { 0x08, 0x9e30 },
2052 { 0x09, 0x01f0 },
2053 { 0x0a, 0x5500 },
2054 { 0x0c, 0x00c8 },
2055 { 0x1f, 0x0003 },
2056 { 0x12, 0xc096 },
2057 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002058 { 0x1f, 0x0000 },
2059 { 0x1f, 0x0000 },
2060 { 0x09, 0x2000 },
2061 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002062 };
2063
françois romieu4da19632011-01-03 15:07:55 +00002064 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002065
françois romieu4da19632011-01-03 15:07:55 +00002066 rtl_patchphy(tp, 0x14, 1 << 5);
2067 rtl_patchphy(tp, 0x0d, 1 << 5);
2068 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002069}
2070
françois romieu4da19632011-01-03 15:07:55 +00002071static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002072{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002073 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002074 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002075 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002076 { 0x03, 0x802f },
2077 { 0x02, 0x4f02 },
2078 { 0x01, 0x0409 },
2079 { 0x00, 0xf099 },
2080 { 0x04, 0x9800 },
2081 { 0x04, 0x9000 },
2082 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002083 { 0x1f, 0x0002 },
2084 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002085 { 0x06, 0x0761 },
2086 { 0x1f, 0x0003 },
2087 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002088 { 0x1f, 0x0000 }
2089 };
2090
françois romieu4da19632011-01-03 15:07:55 +00002091 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002092
françois romieu4da19632011-01-03 15:07:55 +00002093 rtl_patchphy(tp, 0x16, 1 << 0);
2094 rtl_patchphy(tp, 0x14, 1 << 5);
2095 rtl_patchphy(tp, 0x0d, 1 << 5);
2096 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002097}
2098
françois romieu4da19632011-01-03 15:07:55 +00002099static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002100{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002101 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002102 { 0x1f, 0x0001 },
2103 { 0x12, 0x2300 },
2104 { 0x1d, 0x3d98 },
2105 { 0x1f, 0x0002 },
2106 { 0x0c, 0x7eb8 },
2107 { 0x06, 0x5461 },
2108 { 0x1f, 0x0003 },
2109 { 0x16, 0x0f0a },
2110 { 0x1f, 0x0000 }
2111 };
2112
françois romieu4da19632011-01-03 15:07:55 +00002113 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002114
françois romieu4da19632011-01-03 15:07:55 +00002115 rtl_patchphy(tp, 0x16, 1 << 0);
2116 rtl_patchphy(tp, 0x14, 1 << 5);
2117 rtl_patchphy(tp, 0x0d, 1 << 5);
2118 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002119}
2120
françois romieu4da19632011-01-03 15:07:55 +00002121static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002122{
françois romieu4da19632011-01-03 15:07:55 +00002123 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002124}
2125
françois romieubca03d52011-01-03 15:07:31 +00002126static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002127{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002128 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002129 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002130 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002131 { 0x06, 0x4064 },
2132 { 0x07, 0x2863 },
2133 { 0x08, 0x059c },
2134 { 0x09, 0x26b4 },
2135 { 0x0a, 0x6a19 },
2136 { 0x0b, 0xdcc8 },
2137 { 0x10, 0xf06d },
2138 { 0x14, 0x7f68 },
2139 { 0x18, 0x7fd9 },
2140 { 0x1c, 0xf0ff },
2141 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002142 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002143 { 0x12, 0xf49f },
2144 { 0x13, 0x070b },
2145 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002146 { 0x14, 0x94c0 },
2147
2148 /*
2149 * Tx Error Issue
2150 * enhance line driver power
2151 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002152 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002153 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002154 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002155 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002156 { 0x06, 0x5561 },
2157
2158 /*
2159 * Can not link to 1Gbps with bad cable
2160 * Decrease SNR threshold form 21.07dB to 19.04dB
2161 */
2162 { 0x1f, 0x0001 },
2163 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002164
2165 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002166 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002167 };
françois romieubca03d52011-01-03 15:07:31 +00002168 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002169
françois romieu4da19632011-01-03 15:07:55 +00002170 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002171
françois romieubca03d52011-01-03 15:07:31 +00002172 /*
2173 * Rx Error Issue
2174 * Fine Tune Switching regulator parameter
2175 */
françois romieu4da19632011-01-03 15:07:55 +00002176 rtl_writephy(tp, 0x1f, 0x0002);
2177 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2178 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002179
françois romieudaf9df62009-10-07 12:44:20 +00002180 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002181 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002182 { 0x1f, 0x0002 },
2183 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002184 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002185 { 0x05, 0x8330 },
2186 { 0x06, 0x669a },
2187 { 0x1f, 0x0002 }
2188 };
2189 int val;
2190
françois romieu4da19632011-01-03 15:07:55 +00002191 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002192
françois romieu4da19632011-01-03 15:07:55 +00002193 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002194
2195 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002196 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002197 0x0065, 0x0066, 0x0067, 0x0068,
2198 0x0069, 0x006a, 0x006b, 0x006c
2199 };
2200 int i;
2201
françois romieu4da19632011-01-03 15:07:55 +00002202 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002203
2204 val &= 0xff00;
2205 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002206 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002207 }
2208 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002209 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002210 { 0x1f, 0x0002 },
2211 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002212 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002213 { 0x05, 0x8330 },
2214 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002215 };
2216
françois romieu4da19632011-01-03 15:07:55 +00002217 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002218 }
2219
françois romieubca03d52011-01-03 15:07:31 +00002220 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002221 rtl_writephy(tp, 0x1f, 0x0002);
2222 rtl_patchphy(tp, 0x0d, 0x0300);
2223 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002224
françois romieubca03d52011-01-03 15:07:31 +00002225 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002226 rtl_writephy(tp, 0x1f, 0x0002);
2227 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2228 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002229
françois romieu4da19632011-01-03 15:07:55 +00002230 rtl_writephy(tp, 0x1f, 0x0005);
2231 rtl_writephy(tp, 0x05, 0x001b);
françois romieuf1e02ed2011-01-13 13:07:53 +00002232 if ((rtl_readphy(tp, 0x06) != 0xbf00) ||
2233 (rtl_apply_firmware(tp, FIRMWARE_8168D_1) < 0)) {
françois romieubca03d52011-01-03 15:07:31 +00002234 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2235 }
2236
françois romieu4da19632011-01-03 15:07:55 +00002237 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002238}
2239
françois romieubca03d52011-01-03 15:07:31 +00002240static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002241{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002242 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002243 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002244 { 0x1f, 0x0001 },
2245 { 0x06, 0x4064 },
2246 { 0x07, 0x2863 },
2247 { 0x08, 0x059c },
2248 { 0x09, 0x26b4 },
2249 { 0x0a, 0x6a19 },
2250 { 0x0b, 0xdcc8 },
2251 { 0x10, 0xf06d },
2252 { 0x14, 0x7f68 },
2253 { 0x18, 0x7fd9 },
2254 { 0x1c, 0xf0ff },
2255 { 0x1d, 0x3d9c },
2256 { 0x1f, 0x0003 },
2257 { 0x12, 0xf49f },
2258 { 0x13, 0x070b },
2259 { 0x1a, 0x05ad },
2260 { 0x14, 0x94c0 },
2261
françois romieubca03d52011-01-03 15:07:31 +00002262 /*
2263 * Tx Error Issue
2264 * enhance line driver power
2265 */
françois romieudaf9df62009-10-07 12:44:20 +00002266 { 0x1f, 0x0002 },
2267 { 0x06, 0x5561 },
2268 { 0x1f, 0x0005 },
2269 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002270 { 0x06, 0x5561 },
2271
2272 /*
2273 * Can not link to 1Gbps with bad cable
2274 * Decrease SNR threshold form 21.07dB to 19.04dB
2275 */
2276 { 0x1f, 0x0001 },
2277 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002278
2279 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002280 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002281 };
françois romieubca03d52011-01-03 15:07:31 +00002282 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002283
françois romieu4da19632011-01-03 15:07:55 +00002284 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002285
2286 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002287 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002288 { 0x1f, 0x0002 },
2289 { 0x05, 0x669a },
2290 { 0x1f, 0x0005 },
2291 { 0x05, 0x8330 },
2292 { 0x06, 0x669a },
2293
2294 { 0x1f, 0x0002 }
2295 };
2296 int val;
2297
françois romieu4da19632011-01-03 15:07:55 +00002298 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002299
françois romieu4da19632011-01-03 15:07:55 +00002300 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002301 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002302 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002303 0x0065, 0x0066, 0x0067, 0x0068,
2304 0x0069, 0x006a, 0x006b, 0x006c
2305 };
2306 int i;
2307
françois romieu4da19632011-01-03 15:07:55 +00002308 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002309
2310 val &= 0xff00;
2311 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002312 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002313 }
2314 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002315 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002316 { 0x1f, 0x0002 },
2317 { 0x05, 0x2642 },
2318 { 0x1f, 0x0005 },
2319 { 0x05, 0x8330 },
2320 { 0x06, 0x2642 }
2321 };
2322
françois romieu4da19632011-01-03 15:07:55 +00002323 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002324 }
2325
françois romieubca03d52011-01-03 15:07:31 +00002326 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002327 rtl_writephy(tp, 0x1f, 0x0002);
2328 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2329 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002330
françois romieubca03d52011-01-03 15:07:31 +00002331 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002332 rtl_writephy(tp, 0x1f, 0x0002);
2333 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002334
françois romieu4da19632011-01-03 15:07:55 +00002335 rtl_writephy(tp, 0x1f, 0x0005);
2336 rtl_writephy(tp, 0x05, 0x001b);
françois romieuf1e02ed2011-01-13 13:07:53 +00002337 if ((rtl_readphy(tp, 0x06) != 0xb300) ||
2338 (rtl_apply_firmware(tp, FIRMWARE_8168D_2) < 0)) {
françois romieubca03d52011-01-03 15:07:31 +00002339 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2340 }
2341
françois romieu4da19632011-01-03 15:07:55 +00002342 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002343}
2344
françois romieu4da19632011-01-03 15:07:55 +00002345static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002346{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002347 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002348 { 0x1f, 0x0002 },
2349 { 0x10, 0x0008 },
2350 { 0x0d, 0x006c },
2351
2352 { 0x1f, 0x0000 },
2353 { 0x0d, 0xf880 },
2354
2355 { 0x1f, 0x0001 },
2356 { 0x17, 0x0cc0 },
2357
2358 { 0x1f, 0x0001 },
2359 { 0x0b, 0xa4d8 },
2360 { 0x09, 0x281c },
2361 { 0x07, 0x2883 },
2362 { 0x0a, 0x6b35 },
2363 { 0x1d, 0x3da4 },
2364 { 0x1c, 0xeffd },
2365 { 0x14, 0x7f52 },
2366 { 0x18, 0x7fc6 },
2367 { 0x08, 0x0601 },
2368 { 0x06, 0x4063 },
2369 { 0x10, 0xf074 },
2370 { 0x1f, 0x0003 },
2371 { 0x13, 0x0789 },
2372 { 0x12, 0xf4bd },
2373 { 0x1a, 0x04fd },
2374 { 0x14, 0x84b0 },
2375 { 0x1f, 0x0000 },
2376 { 0x00, 0x9200 },
2377
2378 { 0x1f, 0x0005 },
2379 { 0x01, 0x0340 },
2380 { 0x1f, 0x0001 },
2381 { 0x04, 0x4000 },
2382 { 0x03, 0x1d21 },
2383 { 0x02, 0x0c32 },
2384 { 0x01, 0x0200 },
2385 { 0x00, 0x5554 },
2386 { 0x04, 0x4800 },
2387 { 0x04, 0x4000 },
2388 { 0x04, 0xf000 },
2389 { 0x03, 0xdf01 },
2390 { 0x02, 0xdf20 },
2391 { 0x01, 0x101a },
2392 { 0x00, 0xa0ff },
2393 { 0x04, 0xf800 },
2394 { 0x04, 0xf000 },
2395 { 0x1f, 0x0000 },
2396
2397 { 0x1f, 0x0007 },
2398 { 0x1e, 0x0023 },
2399 { 0x16, 0x0000 },
2400 { 0x1f, 0x0000 }
2401 };
2402
françois romieu4da19632011-01-03 15:07:55 +00002403 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002404}
2405
françois romieue6de30d2011-01-03 15:08:37 +00002406static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2407{
2408 static const struct phy_reg phy_reg_init[] = {
2409 { 0x1f, 0x0001 },
2410 { 0x17, 0x0cc0 },
2411
2412 { 0x1f, 0x0007 },
2413 { 0x1e, 0x002d },
2414 { 0x18, 0x0040 },
2415 { 0x1f, 0x0000 }
2416 };
2417
2418 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2419 rtl_patchphy(tp, 0x0d, 1 << 5);
2420}
2421
françois romieu4da19632011-01-03 15:07:55 +00002422static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02002423{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002424 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002425 { 0x1f, 0x0003 },
2426 { 0x08, 0x441d },
2427 { 0x01, 0x9100 },
2428 { 0x1f, 0x0000 }
2429 };
2430
françois romieu4da19632011-01-03 15:07:55 +00002431 rtl_writephy(tp, 0x1f, 0x0000);
2432 rtl_patchphy(tp, 0x11, 1 << 12);
2433 rtl_patchphy(tp, 0x19, 1 << 13);
2434 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002435
françois romieu4da19632011-01-03 15:07:55 +00002436 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02002437}
2438
Francois Romieu5615d9f2007-08-17 17:50:46 +02002439static void rtl_hw_phy_config(struct net_device *dev)
2440{
2441 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002442
2443 rtl8169_print_mac_version(tp);
2444
2445 switch (tp->mac_version) {
2446 case RTL_GIGA_MAC_VER_01:
2447 break;
2448 case RTL_GIGA_MAC_VER_02:
2449 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00002450 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002451 break;
2452 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00002453 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002454 break;
françois romieu2e9558562009-08-10 19:44:19 +00002455 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00002456 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002457 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002458 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00002459 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00002460 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002461 case RTL_GIGA_MAC_VER_07:
2462 case RTL_GIGA_MAC_VER_08:
2463 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00002464 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002465 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002466 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00002467 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002468 break;
2469 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00002470 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002471 break;
2472 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00002473 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002474 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002475 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00002476 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002477 break;
2478 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00002479 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002480 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002481 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00002482 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002483 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002484 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00002485 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02002486 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002487 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00002488 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002489 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002490 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002491 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00002492 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02002493 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002494 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002495 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002496 break;
2497 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002498 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002499 break;
2500 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00002501 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02002502 break;
françois romieue6de30d2011-01-03 15:08:37 +00002503 case RTL_GIGA_MAC_VER_28:
2504 rtl8168d_4_hw_phy_config(tp);
2505 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002506
Francois Romieu5615d9f2007-08-17 17:50:46 +02002507 default:
2508 break;
2509 }
2510}
2511
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512static void rtl8169_phy_timer(unsigned long __opaque)
2513{
2514 struct net_device *dev = (struct net_device *)__opaque;
2515 struct rtl8169_private *tp = netdev_priv(dev);
2516 struct timer_list *timer = &tp->timer;
2517 void __iomem *ioaddr = tp->mmio_addr;
2518 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2519
Francois Romieubcf0bf92006-07-26 23:14:13 +02002520 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Francois Romieu64e4bfb2006-08-17 12:43:06 +02002522 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 return;
2524
2525 spin_lock_irq(&tp->lock);
2526
françois romieu4da19632011-01-03 15:07:55 +00002527 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02002528 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 * A busy loop could burn quite a few cycles on nowadays CPU.
2530 * Let's delay the execution of the timer for a few ticks.
2531 */
2532 timeout = HZ/10;
2533 goto out_mod_timer;
2534 }
2535
2536 if (tp->link_ok(ioaddr))
2537 goto out_unlock;
2538
Joe Perchesbf82c182010-02-09 11:49:50 +00002539 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
françois romieu4da19632011-01-03 15:07:55 +00002541 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543out_mod_timer:
2544 mod_timer(timer, jiffies + timeout);
2545out_unlock:
2546 spin_unlock_irq(&tp->lock);
2547}
2548
2549static inline void rtl8169_delete_timer(struct net_device *dev)
2550{
2551 struct rtl8169_private *tp = netdev_priv(dev);
2552 struct timer_list *timer = &tp->timer;
2553
Francois Romieue179bb72007-08-17 15:05:21 +02002554 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 return;
2556
2557 del_timer_sync(timer);
2558}
2559
2560static inline void rtl8169_request_timer(struct net_device *dev)
2561{
2562 struct rtl8169_private *tp = netdev_priv(dev);
2563 struct timer_list *timer = &tp->timer;
2564
Francois Romieue179bb72007-08-17 15:05:21 +02002565 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 return;
2567
Francois Romieu2efa53f2007-03-09 00:00:05 +01002568 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569}
2570
2571#ifdef CONFIG_NET_POLL_CONTROLLER
2572/*
2573 * Polling 'interrupt' - used by things like netconsole to send skbs
2574 * without having to re-enable interrupts. It's not called while
2575 * the interrupt routine is executing.
2576 */
2577static void rtl8169_netpoll(struct net_device *dev)
2578{
2579 struct rtl8169_private *tp = netdev_priv(dev);
2580 struct pci_dev *pdev = tp->pci_dev;
2581
2582 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002583 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 enable_irq(pdev->irq);
2585}
2586#endif
2587
2588static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
2589 void __iomem *ioaddr)
2590{
2591 iounmap(ioaddr);
2592 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002593 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 pci_disable_device(pdev);
2595 free_netdev(dev);
2596}
2597
Francois Romieubf793292006-11-01 00:53:05 +01002598static void rtl8169_phy_reset(struct net_device *dev,
2599 struct rtl8169_private *tp)
2600{
Francois Romieu07d3f512007-02-21 22:40:46 +01002601 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01002602
françois romieu4da19632011-01-03 15:07:55 +00002603 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01002604 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00002605 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01002606 return;
2607 msleep(1);
2608 }
Joe Perchesbf82c182010-02-09 11:49:50 +00002609 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01002610}
2611
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002612static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002614 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002615
Francois Romieu5615d9f2007-08-17 17:50:46 +02002616 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002617
Marcus Sundberg773328942008-07-10 21:28:08 +02002618 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
2619 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2620 RTL_W8(0x82, 0x01);
2621 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002622
Francois Romieu6dccd162007-02-13 23:38:05 +01002623 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
2624
2625 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
2626 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002627
Francois Romieubcf0bf92006-07-26 23:14:13 +02002628 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002629 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2630 RTL_W8(0x82, 0x01);
2631 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00002632 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002633 }
2634
Francois Romieubf793292006-11-01 00:53:05 +01002635 rtl8169_phy_reset(dev, tp);
2636
Francois Romieu901dda22007-02-21 00:10:20 +01002637 /*
2638 * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
2639 * only 8101. Don't panic.
2640 */
2641 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002642
Joe Perchesbf82c182010-02-09 11:49:50 +00002643 if (RTL_R8(PHYstatus) & TBI_Enable)
2644 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002645}
2646
Francois Romieu773d2022007-01-31 23:47:43 +01002647static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
2648{
2649 void __iomem *ioaddr = tp->mmio_addr;
2650 u32 high;
2651 u32 low;
2652
2653 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
2654 high = addr[4] | (addr[5] << 8);
2655
2656 spin_lock_irq(&tp->lock);
2657
2658 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00002659
Francois Romieu773d2022007-01-31 23:47:43 +01002660 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00002661 RTL_R32(MAC4);
2662
Francois Romieu78f1cd02010-03-27 19:35:46 -07002663 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00002664 RTL_R32(MAC0);
2665
Francois Romieu773d2022007-01-31 23:47:43 +01002666 RTL_W8(Cfg9346, Cfg9346_Lock);
2667
2668 spin_unlock_irq(&tp->lock);
2669}
2670
2671static int rtl_set_mac_address(struct net_device *dev, void *p)
2672{
2673 struct rtl8169_private *tp = netdev_priv(dev);
2674 struct sockaddr *addr = p;
2675
2676 if (!is_valid_ether_addr(addr->sa_data))
2677 return -EADDRNOTAVAIL;
2678
2679 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2680
2681 rtl_rar_set(tp, dev->dev_addr);
2682
2683 return 0;
2684}
2685
Francois Romieu5f787a12006-08-17 13:02:36 +02002686static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2687{
2688 struct rtl8169_private *tp = netdev_priv(dev);
2689 struct mii_ioctl_data *data = if_mii(ifr);
2690
Francois Romieu8b4ab282008-11-19 22:05:25 -08002691 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
2692}
Francois Romieu5f787a12006-08-17 13:02:36 +02002693
Francois Romieu8b4ab282008-11-19 22:05:25 -08002694static int rtl_xmii_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2695{
Francois Romieu5f787a12006-08-17 13:02:36 +02002696 switch (cmd) {
2697 case SIOCGMIIPHY:
2698 data->phy_id = 32; /* Internal PHY */
2699 return 0;
2700
2701 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002702 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02002703 return 0;
2704
2705 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002706 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02002707 return 0;
2708 }
2709 return -EOPNOTSUPP;
2710}
2711
Francois Romieu8b4ab282008-11-19 22:05:25 -08002712static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2713{
2714 return -EOPNOTSUPP;
2715}
2716
Francois Romieu0e485152007-02-20 00:00:26 +01002717static const struct rtl_cfg_info {
2718 void (*hw_start)(struct net_device *);
2719 unsigned int region;
2720 unsigned int align;
2721 u16 intr_event;
2722 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02002723 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07002724 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01002725} rtl_cfg_infos [] = {
2726 [RTL_CFG_0] = {
2727 .hw_start = rtl_hw_start_8169,
2728 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01002729 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01002730 .intr_event = SYSErr | LinkChg | RxOverflow |
2731 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002732 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002733 .features = RTL_FEATURE_GMII,
2734 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01002735 },
2736 [RTL_CFG_1] = {
2737 .hw_start = rtl_hw_start_8168,
2738 .region = 2,
2739 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00002740 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01002741 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002742 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002743 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
2744 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01002745 },
2746 [RTL_CFG_2] = {
2747 .hw_start = rtl_hw_start_8101,
2748 .region = 2,
2749 .align = 8,
2750 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
2751 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002752 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002753 .features = RTL_FEATURE_MSI,
2754 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01002755 }
2756};
2757
Francois Romieufbac58f2007-10-04 22:51:38 +02002758/* Cfg9346_Unlock assumed. */
2759static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
2760 const struct rtl_cfg_info *cfg)
2761{
2762 unsigned msi = 0;
2763 u8 cfg2;
2764
2765 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02002766 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02002767 if (pci_enable_msi(pdev)) {
2768 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
2769 } else {
2770 cfg2 |= MSIEnable;
2771 msi = RTL_FEATURE_MSI;
2772 }
2773 }
2774 RTL_W8(Config2, cfg2);
2775 return msi;
2776}
2777
2778static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
2779{
2780 if (tp->features & RTL_FEATURE_MSI) {
2781 pci_disable_msi(pdev);
2782 tp->features &= ~RTL_FEATURE_MSI;
2783 }
2784}
2785
Francois Romieu8b4ab282008-11-19 22:05:25 -08002786static const struct net_device_ops rtl8169_netdev_ops = {
2787 .ndo_open = rtl8169_open,
2788 .ndo_stop = rtl8169_close,
2789 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08002790 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002791 .ndo_tx_timeout = rtl8169_tx_timeout,
2792 .ndo_validate_addr = eth_validate_addr,
2793 .ndo_change_mtu = rtl8169_change_mtu,
2794 .ndo_set_mac_address = rtl_set_mac_address,
2795 .ndo_do_ioctl = rtl8169_ioctl,
2796 .ndo_set_multicast_list = rtl_set_rx_mode,
2797#ifdef CONFIG_R8169_VLAN
2798 .ndo_vlan_rx_register = rtl8169_vlan_rx_register,
2799#endif
2800#ifdef CONFIG_NET_POLL_CONTROLLER
2801 .ndo_poll_controller = rtl8169_netpoll,
2802#endif
2803
2804};
2805
françois romieuc0e45c12011-01-03 15:08:04 +00002806static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
2807{
2808 struct mdio_ops *ops = &tp->mdio_ops;
2809
2810 switch (tp->mac_version) {
2811 case RTL_GIGA_MAC_VER_27:
2812 ops->write = r8168dp_1_mdio_write;
2813 ops->read = r8168dp_1_mdio_read;
2814 break;
françois romieue6de30d2011-01-03 15:08:37 +00002815 case RTL_GIGA_MAC_VER_28:
2816 ops->write = r8168dp_2_mdio_write;
2817 ops->read = r8168dp_2_mdio_read;
2818 break;
françois romieuc0e45c12011-01-03 15:08:04 +00002819 default:
2820 ops->write = r8169_mdio_write;
2821 ops->read = r8169_mdio_read;
2822 break;
2823 }
2824}
2825
françois romieu065c27c2011-01-03 15:08:12 +00002826static void r810x_phy_power_down(struct rtl8169_private *tp)
2827{
2828 rtl_writephy(tp, 0x1f, 0x0000);
2829 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2830}
2831
2832static void r810x_phy_power_up(struct rtl8169_private *tp)
2833{
2834 rtl_writephy(tp, 0x1f, 0x0000);
2835 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2836}
2837
2838static void r810x_pll_power_down(struct rtl8169_private *tp)
2839{
2840 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2841 rtl_writephy(tp, 0x1f, 0x0000);
2842 rtl_writephy(tp, MII_BMCR, 0x0000);
2843 return;
2844 }
2845
2846 r810x_phy_power_down(tp);
2847}
2848
2849static void r810x_pll_power_up(struct rtl8169_private *tp)
2850{
2851 r810x_phy_power_up(tp);
2852}
2853
2854static void r8168_phy_power_up(struct rtl8169_private *tp)
2855{
2856 rtl_writephy(tp, 0x1f, 0x0000);
2857 rtl_writephy(tp, 0x0e, 0x0000);
2858 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2859}
2860
2861static void r8168_phy_power_down(struct rtl8169_private *tp)
2862{
2863 rtl_writephy(tp, 0x1f, 0x0000);
2864 rtl_writephy(tp, 0x0e, 0x0200);
2865 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2866}
2867
2868static void r8168_pll_power_down(struct rtl8169_private *tp)
2869{
2870 void __iomem *ioaddr = tp->mmio_addr;
2871
2872 if (tp->mac_version == RTL_GIGA_MAC_VER_27)
2873 return;
2874
2875 if (((tp->mac_version == RTL_GIGA_MAC_VER_23) ||
2876 (tp->mac_version == RTL_GIGA_MAC_VER_24)) &&
2877 (RTL_R16(CPlusCmd) & ASF)) {
2878 return;
2879 }
2880
2881 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2882 rtl_writephy(tp, 0x1f, 0x0000);
2883 rtl_writephy(tp, MII_BMCR, 0x0000);
2884
2885 RTL_W32(RxConfig, RTL_R32(RxConfig) |
2886 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
2887 return;
2888 }
2889
2890 r8168_phy_power_down(tp);
2891
2892 switch (tp->mac_version) {
2893 case RTL_GIGA_MAC_VER_25:
2894 case RTL_GIGA_MAC_VER_26:
2895 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
2896 break;
2897 }
2898}
2899
2900static void r8168_pll_power_up(struct rtl8169_private *tp)
2901{
2902 void __iomem *ioaddr = tp->mmio_addr;
2903
2904 if (tp->mac_version == RTL_GIGA_MAC_VER_27)
2905 return;
2906
2907 switch (tp->mac_version) {
2908 case RTL_GIGA_MAC_VER_25:
2909 case RTL_GIGA_MAC_VER_26:
2910 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
2911 break;
2912 }
2913
2914 r8168_phy_power_up(tp);
2915}
2916
2917static void rtl_pll_power_op(struct rtl8169_private *tp,
2918 void (*op)(struct rtl8169_private *))
2919{
2920 if (op)
2921 op(tp);
2922}
2923
2924static void rtl_pll_power_down(struct rtl8169_private *tp)
2925{
2926 rtl_pll_power_op(tp, tp->pll_power_ops.down);
2927}
2928
2929static void rtl_pll_power_up(struct rtl8169_private *tp)
2930{
2931 rtl_pll_power_op(tp, tp->pll_power_ops.up);
2932}
2933
2934static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
2935{
2936 struct pll_power_ops *ops = &tp->pll_power_ops;
2937
2938 switch (tp->mac_version) {
2939 case RTL_GIGA_MAC_VER_07:
2940 case RTL_GIGA_MAC_VER_08:
2941 case RTL_GIGA_MAC_VER_09:
2942 case RTL_GIGA_MAC_VER_10:
2943 case RTL_GIGA_MAC_VER_16:
2944 ops->down = r810x_pll_power_down;
2945 ops->up = r810x_pll_power_up;
2946 break;
2947
2948 case RTL_GIGA_MAC_VER_11:
2949 case RTL_GIGA_MAC_VER_12:
2950 case RTL_GIGA_MAC_VER_17:
2951 case RTL_GIGA_MAC_VER_18:
2952 case RTL_GIGA_MAC_VER_19:
2953 case RTL_GIGA_MAC_VER_20:
2954 case RTL_GIGA_MAC_VER_21:
2955 case RTL_GIGA_MAC_VER_22:
2956 case RTL_GIGA_MAC_VER_23:
2957 case RTL_GIGA_MAC_VER_24:
2958 case RTL_GIGA_MAC_VER_25:
2959 case RTL_GIGA_MAC_VER_26:
2960 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00002961 case RTL_GIGA_MAC_VER_28:
françois romieu065c27c2011-01-03 15:08:12 +00002962 ops->down = r8168_pll_power_down;
2963 ops->up = r8168_pll_power_up;
2964 break;
2965
2966 default:
2967 ops->down = NULL;
2968 ops->up = NULL;
2969 break;
2970 }
2971}
2972
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002973static int __devinit
2974rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
2975{
Francois Romieu0e485152007-02-20 00:00:26 +01002976 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
2977 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02002979 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002980 struct net_device *dev;
2981 void __iomem *ioaddr;
Francois Romieu07d3f512007-02-21 22:40:46 +01002982 unsigned int i;
2983 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002985 if (netif_msg_drv(&debug)) {
2986 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
2987 MODULENAME, RTL8169_VERSION);
2988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002991 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002992 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04002993 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002994 rc = -ENOMEM;
2995 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 }
2997
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08002999 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00003001 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02003002 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003003 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Francois Romieuccdffb92008-07-26 14:26:06 +02003005 mii = &tp->mii;
3006 mii->dev = dev;
3007 mii->mdio_read = rtl_mdio_read;
3008 mii->mdio_write = rtl_mdio_write;
3009 mii->phy_id_mask = 0x1f;
3010 mii->reg_num_mask = 0x1f;
3011 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
3012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3014 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003015 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003016 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003017 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 }
3019
françois romieu87aeec72010-04-26 11:42:06 +00003020 if (pci_set_mwi(pdev) < 0)
3021 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003024 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003025 netif_err(tp, probe, dev,
3026 "region #%d not an MMIO resource, aborting\n",
3027 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003029 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003033 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003034 netif_err(tp, probe, dev,
3035 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003037 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 }
3039
3040 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003041 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003042 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00003043 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 }
3045
3046 tp->cp_cmd = PCIMulRW | RxChkSum;
3047
3048 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07003049 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 tp->cp_cmd |= PCIDAC;
3051 dev->features |= NETIF_F_HIGHDMA;
3052 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003053 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003055 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00003056 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 }
3058 }
3059
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003061 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003062 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003063 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00003065 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 }
3067
David S. Miller4300e8c2010-03-26 10:23:30 -07003068 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3069 if (!tp->pcie_cap)
3070 netif_info(tp, probe, dev, "no PCI Express capability\n");
3071
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003072 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
3074 /* Soft reset the chip. */
3075 RTL_W8(ChipCmd, CmdReset);
3076
3077 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003078 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3080 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003081 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003084 RTL_W16(IntrStatus, 0xffff);
3085
françois romieuca52efd2009-07-24 12:34:19 +00003086 pci_set_master(pdev);
3087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 /* Identify chip attached to board */
3089 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
françois romieuc0e45c12011-01-03 15:08:04 +00003091 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00003092 rtl_init_pll_power_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00003093
Jean Delvaref21b75e2009-05-26 20:54:48 -07003094 /* Use appropriate default if unknown */
3095 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003096 netif_notice(tp, probe, dev,
3097 "unknown MAC, using family default\n");
Jean Delvaref21b75e2009-05-26 20:54:48 -07003098 tp->mac_version = cfg->default_ver;
3099 }
3100
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
Roel Kluincee60c32008-04-17 22:35:54 +02003103 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 if (tp->mac_version == rtl_chip_info[i].mac_version)
3105 break;
3106 }
Roel Kluincee60c32008-04-17 22:35:54 +02003107 if (i == ARRAY_SIZE(rtl_chip_info)) {
Jean Delvaref21b75e2009-05-26 20:54:48 -07003108 dev_err(&pdev->dev,
3109 "driver bug, MAC version not found in rtl_chip_info\n");
françois romieu87aeec72010-04-26 11:42:06 +00003110 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 }
3112 tp->chipset = i;
3113
Francois Romieu5d06a992006-02-23 00:47:58 +01003114 RTL_W8(Cfg9346, Cfg9346_Unlock);
3115 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
3116 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07003117 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
3118 tp->features |= RTL_FEATURE_WOL;
3119 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
3120 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02003121 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01003122 RTL_W8(Cfg9346, Cfg9346_Lock);
3123
Francois Romieu66ec5d42007-11-06 22:56:10 +01003124 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
3125 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 tp->set_speed = rtl8169_set_speed_tbi;
3127 tp->get_settings = rtl8169_gset_tbi;
3128 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
3129 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
3130 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003131 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Francois Romieu64e4bfb2006-08-17 12:43:06 +02003133 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 } else {
3135 tp->set_speed = rtl8169_set_speed_xmii;
3136 tp->get_settings = rtl8169_gset_xmii;
3137 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
3138 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
3139 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003140 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 }
3142
Francois Romieudf58ef52008-10-09 14:35:58 -07003143 spin_lock_init(&tp->lock);
3144
Petr Vandrovec738e1e62008-10-12 20:58:29 -07003145 tp->mmio_addr = ioaddr;
3146
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00003147 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 for (i = 0; i < MAC_ADDR_LEN; i++)
3149 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04003150 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
3154 dev->irq = pdev->irq;
3155 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003157 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
3159#ifdef CONFIG_R8169_VLAN
3160 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161#endif
Eric Dumazet2edae082010-09-06 18:46:39 +00003162 dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
3164 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01003165 tp->hw_start = cfg->hw_start;
3166 tp->intr_event = cfg->intr_event;
3167 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Francois Romieu2efa53f2007-03-09 00:00:05 +01003169 init_timer(&tp->timer);
3170 tp->timer.data = (unsigned long) dev;
3171 tp->timer.function = rtl8169_phy_timer;
3172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003174 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00003175 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
3177 pci_set_drvdata(pdev, dev);
3178
Joe Perchesbf82c182010-02-09 11:49:50 +00003179 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
3180 rtl_chip_info[tp->chipset].name,
3181 dev->base_addr, dev->dev_addr,
3182 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
françois romieue6de30d2011-01-03 15:08:37 +00003184 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3185 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003186 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003187 }
françois romieub646d902011-01-03 15:08:21 +00003188
Bruno Prémont8b76ab32008-10-08 17:06:25 -07003189 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Alan Sternf3ec4f82010-06-08 15:23:51 -04003191 if (pci_dev_run_wake(pdev))
3192 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003193
Ivan Vecera0d672e92011-02-15 02:08:39 +00003194 netif_carrier_off(dev);
3195
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003196out:
3197 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
françois romieu87aeec72010-04-26 11:42:06 +00003199err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02003200 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003201 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00003202err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003203 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003204err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003205 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003206 pci_disable_device(pdev);
3207err_out_free_dev_1:
3208 free_netdev(dev);
3209 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210}
3211
Francois Romieu07d3f512007-02-21 22:40:46 +01003212static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213{
3214 struct net_device *dev = pci_get_drvdata(pdev);
3215 struct rtl8169_private *tp = netdev_priv(dev);
3216
françois romieue6de30d2011-01-03 15:08:37 +00003217 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3218 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003219 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003220 }
françois romieub646d902011-01-03 15:08:21 +00003221
Tejun Heo23f333a2010-12-12 16:45:14 +01003222 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01003223
françois romieuf1e02ed2011-01-13 13:07:53 +00003224 rtl_release_firmware(tp);
3225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08003227
Alan Sternf3ec4f82010-06-08 15:23:51 -04003228 if (pci_dev_run_wake(pdev))
3229 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003230
Ivan Veceracc098dc2009-11-29 23:12:52 -08003231 /* restore original MAC address */
3232 rtl_rar_set(tp, dev->perm_addr);
3233
Francois Romieufbac58f2007-10-04 22:51:38 +02003234 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 rtl8169_release_board(pdev, dev, tp->mmio_addr);
3236 pci_set_drvdata(pdev, NULL);
3237}
3238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239static int rtl8169_open(struct net_device *dev)
3240{
3241 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00003242 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02003244 int retval = -ENOMEM;
3245
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003246 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Neil Hormanc0cd8842010-03-29 13:16:02 -07003248 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003250 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003252 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
3253 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003255 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003257 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
3258 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02003260 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
3262 retval = rtl8169_init_ring(dev);
3263 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02003264 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
David Howellsc4028952006-11-22 14:57:56 +00003266 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Francois Romieu99f252b2007-04-02 22:59:59 +02003268 smp_mb();
3269
Francois Romieufbac58f2007-10-04 22:51:38 +02003270 retval = request_irq(dev->irq, rtl8169_interrupt,
3271 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02003272 dev->name, dev);
3273 if (retval < 0)
3274 goto err_release_ring_2;
3275
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003276 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003277
françois romieueee3a962011-01-08 02:17:26 +00003278 rtl8169_init_phy(dev, tp);
3279
3280 /*
3281 * Pretend we are using VLANs; This bypasses a nasty bug where
3282 * Interrupts stop flowing on high load on 8110SCd controllers.
3283 */
3284 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3285 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | RxVlan);
3286
françois romieu065c27c2011-01-03 15:08:12 +00003287 rtl_pll_power_up(tp);
3288
Francois Romieu07ce4062007-02-23 23:36:39 +01003289 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
3291 rtl8169_request_timer(dev);
3292
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003293 tp->saved_wolopts = 0;
3294 pm_runtime_put_noidle(&pdev->dev);
3295
françois romieueee3a962011-01-08 02:17:26 +00003296 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297out:
3298 return retval;
3299
Francois Romieu99f252b2007-04-02 22:59:59 +02003300err_release_ring_2:
3301 rtl8169_rx_clear(tp);
3302err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003303 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
3304 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003305 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02003306err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003307 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
3308 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003309 tp->TxDescArray = NULL;
3310err_pm_runtime_put:
3311 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 goto out;
3313}
3314
françois romieue6de30d2011-01-03 15:08:37 +00003315static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
françois romieue6de30d2011-01-03 15:08:37 +00003317 void __iomem *ioaddr = tp->mmio_addr;
3318
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 /* Disable interrupts */
3320 rtl8169_irq_mask_and_ack(ioaddr);
3321
françois romieue6de30d2011-01-03 15:08:37 +00003322 if (tp->mac_version == RTL_GIGA_MAC_VER_28) {
3323 while (RTL_R8(TxPoll) & NPQ)
3324 udelay(20);
3325
3326 }
3327
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 /* Reset the chipset */
3329 RTL_W8(ChipCmd, CmdReset);
3330
3331 /* PCI commit */
3332 RTL_R8(ChipCmd);
3333}
3334
Francois Romieu7f796d82007-06-11 23:04:41 +02003335static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003336{
3337 void __iomem *ioaddr = tp->mmio_addr;
3338 u32 cfg = rtl8169_rx_config;
3339
3340 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
3341 RTL_W32(RxConfig, cfg);
3342
3343 /* Set DMA burst size and Interframe Gap Time */
3344 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3345 (InterFrameGap << TxInterFrameGapShift));
3346}
3347
Francois Romieu07ce4062007-02-23 23:36:39 +01003348static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349{
3350 struct rtl8169_private *tp = netdev_priv(dev);
3351 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01003352 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
3354 /* Soft reset the chip. */
3355 RTL_W8(ChipCmd, CmdReset);
3356
3357 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003358 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3360 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003361 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 }
3363
Francois Romieu07ce4062007-02-23 23:36:39 +01003364 tp->hw_start(dev);
3365
Francois Romieu07ce4062007-02-23 23:36:39 +01003366 netif_start_queue(dev);
3367}
3368
3369
Francois Romieu7f796d82007-06-11 23:04:41 +02003370static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
3371 void __iomem *ioaddr)
3372{
3373 /*
3374 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3375 * register to be written before TxDescAddrLow to work.
3376 * Switching from MMIO to I/O access fixes the issue as well.
3377 */
3378 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003379 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003380 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003381 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003382}
3383
3384static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
3385{
3386 u16 cmd;
3387
3388 cmd = RTL_R16(CPlusCmd);
3389 RTL_W16(CPlusCmd, cmd);
3390 return cmd;
3391}
3392
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07003393static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02003394{
3395 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00003396 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02003397}
3398
Francois Romieu6dccd162007-02-13 23:38:05 +01003399static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
3400{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003401 static const struct {
Francois Romieu6dccd162007-02-13 23:38:05 +01003402 u32 mac_version;
3403 u32 clk;
3404 u32 val;
3405 } cfg2_info [] = {
3406 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
3407 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
3408 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
3409 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
3410 }, *p = cfg2_info;
3411 unsigned int i;
3412 u32 clk;
3413
3414 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01003415 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01003416 if ((p->mac_version == mac_version) && (p->clk == clk)) {
3417 RTL_W32(0x7c, p->val);
3418 break;
3419 }
3420 }
3421}
3422
Francois Romieu07ce4062007-02-23 23:36:39 +01003423static void rtl_hw_start_8169(struct net_device *dev)
3424{
3425 struct rtl8169_private *tp = netdev_priv(dev);
3426 void __iomem *ioaddr = tp->mmio_addr;
3427 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01003428
Francois Romieu9cb427b2006-11-02 00:10:16 +01003429 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
3430 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
3431 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
3432 }
3433
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003435 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3436 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3437 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3438 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3439 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3440
françois romieuf0298f82011-01-03 15:07:42 +00003441 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003443 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Francois Romieuc946b302007-10-04 00:42:50 +02003445 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3446 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3447 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3448 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3449 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Francois Romieu7f796d82007-06-11 23:04:41 +02003451 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02003452
3453 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3454 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Joe Perches06fa7352007-10-18 21:15:00 +02003455 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02003457 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 }
3459
Francois Romieubcf0bf92006-07-26 23:14:13 +02003460 RTL_W16(CPlusCmd, tp->cp_cmd);
3461
Francois Romieu6dccd162007-02-13 23:38:05 +01003462 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
3463
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 /*
3465 * Undocumented corner. Supposedly:
3466 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3467 */
3468 RTL_W16(IntrMitigate, 0x0000);
3469
Francois Romieu7f796d82007-06-11 23:04:41 +02003470 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003471
Francois Romieuc946b302007-10-04 00:42:50 +02003472 if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
3473 (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
3474 (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
3475 (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
3476 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3477 rtl_set_rx_tx_config_registers(tp);
3478 }
3479
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02003481
3482 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3483 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
3485 RTL_W32(RxMissed, 0);
3486
Francois Romieu07ce4062007-02-23 23:36:39 +01003487 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
3489 /* no early-rx interrupts */
3490 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003491
3492 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01003493 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003494}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495
Francois Romieu9c14cea2008-07-05 00:21:15 +02003496static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02003497{
Francois Romieu9c14cea2008-07-05 00:21:15 +02003498 struct net_device *dev = pci_get_drvdata(pdev);
3499 struct rtl8169_private *tp = netdev_priv(dev);
3500 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02003501
Francois Romieu9c14cea2008-07-05 00:21:15 +02003502 if (cap) {
3503 u16 ctl;
3504
3505 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
3506 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
3507 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
3508 }
Francois Romieu458a9f62008-08-02 15:50:02 +02003509}
3510
françois romieu650e8d52011-01-03 15:08:29 +00003511static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02003512{
3513 u32 csi;
3514
3515 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00003516 rtl_csi_write(ioaddr, 0x070c, csi | bits);
3517}
3518
françois romieue6de30d2011-01-03 15:08:37 +00003519static void rtl_csi_access_enable_1(void __iomem *ioaddr)
3520{
3521 rtl_csi_access_enable(ioaddr, 0x17000000);
3522}
3523
françois romieu650e8d52011-01-03 15:08:29 +00003524static void rtl_csi_access_enable_2(void __iomem *ioaddr)
3525{
3526 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02003527}
3528
3529struct ephy_info {
3530 unsigned int offset;
3531 u16 mask;
3532 u16 bits;
3533};
3534
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003535static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02003536{
3537 u16 w;
3538
3539 while (len-- > 0) {
3540 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
3541 rtl_ephy_write(ioaddr, e->offset, w);
3542 e++;
3543 }
3544}
3545
Francois Romieub726e492008-06-28 12:22:59 +02003546static void rtl_disable_clock_request(struct pci_dev *pdev)
3547{
3548 struct net_device *dev = pci_get_drvdata(pdev);
3549 struct rtl8169_private *tp = netdev_priv(dev);
3550 int cap = tp->pcie_cap;
3551
3552 if (cap) {
3553 u16 ctl;
3554
3555 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3556 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
3557 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3558 }
3559}
3560
françois romieue6de30d2011-01-03 15:08:37 +00003561static void rtl_enable_clock_request(struct pci_dev *pdev)
3562{
3563 struct net_device *dev = pci_get_drvdata(pdev);
3564 struct rtl8169_private *tp = netdev_priv(dev);
3565 int cap = tp->pcie_cap;
3566
3567 if (cap) {
3568 u16 ctl;
3569
3570 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3571 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3572 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3573 }
3574}
3575
Francois Romieub726e492008-06-28 12:22:59 +02003576#define R8168_CPCMD_QUIRK_MASK (\
3577 EnableBist | \
3578 Mac_dbgo_oe | \
3579 Force_half_dup | \
3580 Force_rxflow_en | \
3581 Force_txflow_en | \
3582 Cxpl_dbg_sel | \
3583 ASF | \
3584 PktCntrDisable | \
3585 Mac_dbgo_sel)
3586
Francois Romieu219a1e92008-06-28 11:58:39 +02003587static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
3588{
Francois Romieub726e492008-06-28 12:22:59 +02003589 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3590
3591 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3592
Francois Romieu2e68ae42008-06-28 12:00:55 +02003593 rtl_tx_performance_tweak(pdev,
3594 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02003595}
3596
3597static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
3598{
3599 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02003600
françois romieuf0298f82011-01-03 15:07:42 +00003601 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02003602
3603 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02003604}
3605
3606static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
3607{
Francois Romieub726e492008-06-28 12:22:59 +02003608 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
3609
3610 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3611
Francois Romieu219a1e92008-06-28 11:58:39 +02003612 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02003613
3614 rtl_disable_clock_request(pdev);
3615
3616 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02003617}
3618
Francois Romieuef3386f2008-06-29 12:24:30 +02003619static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02003620{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003621 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003622 { 0x01, 0, 0x0001 },
3623 { 0x02, 0x0800, 0x1000 },
3624 { 0x03, 0, 0x0042 },
3625 { 0x06, 0x0080, 0x0000 },
3626 { 0x07, 0, 0x2000 }
3627 };
3628
françois romieu650e8d52011-01-03 15:08:29 +00003629 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003630
3631 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
3632
Francois Romieu219a1e92008-06-28 11:58:39 +02003633 __rtl_hw_start_8168cp(ioaddr, pdev);
3634}
3635
Francois Romieuef3386f2008-06-29 12:24:30 +02003636static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
3637{
françois romieu650e8d52011-01-03 15:08:29 +00003638 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02003639
3640 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3641
3642 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3643
3644 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3645}
3646
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003647static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
3648{
françois romieu650e8d52011-01-03 15:08:29 +00003649 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003650
3651 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3652
3653 /* Magic. */
3654 RTL_W8(DBG_REG, 0x20);
3655
françois romieuf0298f82011-01-03 15:07:42 +00003656 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003657
3658 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3659
3660 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3661}
3662
Francois Romieu219a1e92008-06-28 11:58:39 +02003663static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
3664{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003665 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003666 { 0x02, 0x0800, 0x1000 },
3667 { 0x03, 0, 0x0002 },
3668 { 0x06, 0x0080, 0x0000 }
3669 };
3670
françois romieu650e8d52011-01-03 15:08:29 +00003671 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003672
3673 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
3674
3675 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
3676
Francois Romieu219a1e92008-06-28 11:58:39 +02003677 __rtl_hw_start_8168cp(ioaddr, pdev);
3678}
3679
3680static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
3681{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003682 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003683 { 0x01, 0, 0x0001 },
3684 { 0x03, 0x0400, 0x0220 }
3685 };
3686
françois romieu650e8d52011-01-03 15:08:29 +00003687 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003688
3689 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
3690
Francois Romieu219a1e92008-06-28 11:58:39 +02003691 __rtl_hw_start_8168cp(ioaddr, pdev);
3692}
3693
Francois Romieu197ff762008-06-28 13:16:02 +02003694static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
3695{
3696 rtl_hw_start_8168c_2(ioaddr, pdev);
3697}
3698
Francois Romieu6fb07052008-06-29 11:54:28 +02003699static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
3700{
françois romieu650e8d52011-01-03 15:08:29 +00003701 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02003702
3703 __rtl_hw_start_8168cp(ioaddr, pdev);
3704}
3705
Francois Romieu5b538df2008-07-20 16:22:45 +02003706static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
3707{
françois romieu650e8d52011-01-03 15:08:29 +00003708 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02003709
3710 rtl_disable_clock_request(pdev);
3711
françois romieuf0298f82011-01-03 15:07:42 +00003712 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02003713
3714 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3715
3716 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3717}
3718
françois romieue6de30d2011-01-03 15:08:37 +00003719static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
3720{
3721 static const struct ephy_info e_info_8168d_4[] = {
3722 { 0x0b, ~0, 0x48 },
3723 { 0x19, 0x20, 0x50 },
3724 { 0x0c, ~0, 0x20 }
3725 };
3726 int i;
3727
3728 rtl_csi_access_enable_1(ioaddr);
3729
3730 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3731
3732 RTL_W8(MaxTxPacketSize, TxPacketMax);
3733
3734 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
3735 const struct ephy_info *e = e_info_8168d_4 + i;
3736 u16 w;
3737
3738 w = rtl_ephy_read(ioaddr, e->offset);
3739 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
3740 }
3741
3742 rtl_enable_clock_request(pdev);
3743}
3744
Francois Romieu07ce4062007-02-23 23:36:39 +01003745static void rtl_hw_start_8168(struct net_device *dev)
3746{
Francois Romieu2dd99532007-06-11 23:22:52 +02003747 struct rtl8169_private *tp = netdev_priv(dev);
3748 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01003749 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02003750
3751 RTL_W8(Cfg9346, Cfg9346_Unlock);
3752
françois romieuf0298f82011-01-03 15:07:42 +00003753 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02003754
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003755 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02003756
Francois Romieu0e485152007-02-20 00:00:26 +01003757 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02003758
3759 RTL_W16(CPlusCmd, tp->cp_cmd);
3760
Francois Romieu0e485152007-02-20 00:00:26 +01003761 RTL_W16(IntrMitigate, 0x5151);
3762
3763 /* Work around for RxFIFO overflow. */
Ivan Vecerab5ba6d12011-01-27 12:24:11 +01003764 if (tp->mac_version == RTL_GIGA_MAC_VER_11 ||
3765 tp->mac_version == RTL_GIGA_MAC_VER_22) {
Francois Romieu0e485152007-02-20 00:00:26 +01003766 tp->intr_event |= RxFIFOOver | PCSTimeout;
3767 tp->intr_event &= ~RxOverflow;
3768 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003769
3770 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3771
Francois Romieub8363902008-06-01 12:31:57 +02003772 rtl_set_rx_mode(dev);
3773
3774 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3775 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02003776
3777 RTL_R8(IntrMask);
3778
Francois Romieu219a1e92008-06-28 11:58:39 +02003779 switch (tp->mac_version) {
3780 case RTL_GIGA_MAC_VER_11:
3781 rtl_hw_start_8168bb(ioaddr, pdev);
3782 break;
3783
3784 case RTL_GIGA_MAC_VER_12:
3785 case RTL_GIGA_MAC_VER_17:
3786 rtl_hw_start_8168bef(ioaddr, pdev);
3787 break;
3788
3789 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02003790 rtl_hw_start_8168cp_1(ioaddr, pdev);
Francois Romieu219a1e92008-06-28 11:58:39 +02003791 break;
3792
3793 case RTL_GIGA_MAC_VER_19:
3794 rtl_hw_start_8168c_1(ioaddr, pdev);
3795 break;
3796
3797 case RTL_GIGA_MAC_VER_20:
3798 rtl_hw_start_8168c_2(ioaddr, pdev);
3799 break;
3800
Francois Romieu197ff762008-06-28 13:16:02 +02003801 case RTL_GIGA_MAC_VER_21:
3802 rtl_hw_start_8168c_3(ioaddr, pdev);
3803 break;
3804
Francois Romieu6fb07052008-06-29 11:54:28 +02003805 case RTL_GIGA_MAC_VER_22:
3806 rtl_hw_start_8168c_4(ioaddr, pdev);
3807 break;
3808
Francois Romieuef3386f2008-06-29 12:24:30 +02003809 case RTL_GIGA_MAC_VER_23:
3810 rtl_hw_start_8168cp_2(ioaddr, pdev);
3811 break;
3812
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003813 case RTL_GIGA_MAC_VER_24:
3814 rtl_hw_start_8168cp_3(ioaddr, pdev);
3815 break;
3816
Francois Romieu5b538df2008-07-20 16:22:45 +02003817 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00003818 case RTL_GIGA_MAC_VER_26:
3819 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02003820 rtl_hw_start_8168d(ioaddr, pdev);
3821 break;
3822
françois romieue6de30d2011-01-03 15:08:37 +00003823 case RTL_GIGA_MAC_VER_28:
3824 rtl_hw_start_8168d_4(ioaddr, pdev);
3825 break;
3826
Francois Romieu219a1e92008-06-28 11:58:39 +02003827 default:
3828 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
3829 dev->name, tp->mac_version);
3830 break;
3831 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003832
Francois Romieu0e485152007-02-20 00:00:26 +01003833 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3834
Francois Romieub8363902008-06-01 12:31:57 +02003835 RTL_W8(Cfg9346, Cfg9346_Lock);
3836
Francois Romieu2dd99532007-06-11 23:22:52 +02003837 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003838
Francois Romieu0e485152007-02-20 00:00:26 +01003839 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003840}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Francois Romieu2857ffb2008-08-02 21:08:49 +02003842#define R810X_CPCMD_QUIRK_MASK (\
3843 EnableBist | \
3844 Mac_dbgo_oe | \
3845 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00003846 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02003847 Force_txflow_en | \
3848 Cxpl_dbg_sel | \
3849 ASF | \
3850 PktCntrDisable | \
3851 PCIDAC | \
3852 PCIMulRW)
3853
3854static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
3855{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003856 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003857 { 0x01, 0, 0x6e65 },
3858 { 0x02, 0, 0x091f },
3859 { 0x03, 0, 0xc2f9 },
3860 { 0x06, 0, 0xafb5 },
3861 { 0x07, 0, 0x0e00 },
3862 { 0x19, 0, 0xec80 },
3863 { 0x01, 0, 0x2e65 },
3864 { 0x01, 0, 0x6e65 }
3865 };
3866 u8 cfg1;
3867
françois romieu650e8d52011-01-03 15:08:29 +00003868 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003869
3870 RTL_W8(DBG_REG, FIX_NAK_1);
3871
3872 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3873
3874 RTL_W8(Config1,
3875 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
3876 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3877
3878 cfg1 = RTL_R8(Config1);
3879 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
3880 RTL_W8(Config1, cfg1 & ~LEDS0);
3881
3882 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
3883
3884 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
3885}
3886
3887static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
3888{
françois romieu650e8d52011-01-03 15:08:29 +00003889 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003890
3891 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3892
3893 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
3894 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3895
3896 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
3897}
3898
3899static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
3900{
3901 rtl_hw_start_8102e_2(ioaddr, pdev);
3902
3903 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
3904}
3905
Francois Romieu07ce4062007-02-23 23:36:39 +01003906static void rtl_hw_start_8101(struct net_device *dev)
3907{
Francois Romieucdf1a602007-06-11 23:29:50 +02003908 struct rtl8169_private *tp = netdev_priv(dev);
3909 void __iomem *ioaddr = tp->mmio_addr;
3910 struct pci_dev *pdev = tp->pci_dev;
3911
Francois Romieue3cf0cc2007-08-17 14:55:46 +02003912 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
3913 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02003914 int cap = tp->pcie_cap;
3915
3916 if (cap) {
3917 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
3918 PCI_EXP_DEVCTL_NOSNOOP_EN);
3919 }
Francois Romieucdf1a602007-06-11 23:29:50 +02003920 }
3921
Francois Romieu2857ffb2008-08-02 21:08:49 +02003922 switch (tp->mac_version) {
3923 case RTL_GIGA_MAC_VER_07:
3924 rtl_hw_start_8102e_1(ioaddr, pdev);
3925 break;
3926
3927 case RTL_GIGA_MAC_VER_08:
3928 rtl_hw_start_8102e_3(ioaddr, pdev);
3929 break;
3930
3931 case RTL_GIGA_MAC_VER_09:
3932 rtl_hw_start_8102e_2(ioaddr, pdev);
3933 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02003934 }
3935
3936 RTL_W8(Cfg9346, Cfg9346_Unlock);
3937
françois romieuf0298f82011-01-03 15:07:42 +00003938 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02003939
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003940 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02003941
3942 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
3943
3944 RTL_W16(CPlusCmd, tp->cp_cmd);
3945
3946 RTL_W16(IntrMitigate, 0x0000);
3947
3948 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3949
3950 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3951 rtl_set_rx_tx_config_registers(tp);
3952
3953 RTL_W8(Cfg9346, Cfg9346_Lock);
3954
3955 RTL_R8(IntrMask);
3956
Francois Romieucdf1a602007-06-11 23:29:50 +02003957 rtl_set_rx_mode(dev);
3958
Francois Romieu0e485152007-02-20 00:00:26 +01003959 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3960
Francois Romieucdf1a602007-06-11 23:29:50 +02003961 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003962
Francois Romieu0e485152007-02-20 00:00:26 +01003963 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964}
3965
3966static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
3967{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
3969 return -EINVAL;
3970
3971 dev->mtu = new_mtu;
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00003972 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973}
3974
3975static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
3976{
Al Viro95e09182007-12-22 18:55:39 +00003977 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
3979}
3980
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003981static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
3982 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003984 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00003985 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003986
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003987 kfree(*data_buff);
3988 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 rtl8169_make_unusable_by_asic(desc);
3990}
3991
3992static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
3993{
3994 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
3995
3996 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
3997}
3998
3999static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
4000 u32 rx_buf_sz)
4001{
4002 desc->addr = cpu_to_le64(mapping);
4003 wmb();
4004 rtl8169_mark_to_asic(desc, rx_buf_sz);
4005}
4006
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004007static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004009 return (void *)ALIGN((long)data, 16);
4010}
4011
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004012static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
4013 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004014{
4015 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004017 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004018 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004019 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004021 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
4022 if (!data)
4023 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004024
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004025 if (rtl8169_align(data) != data) {
4026 kfree(data);
4027 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4028 if (!data)
4029 return NULL;
4030 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004031
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004032 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004033 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004034 if (unlikely(dma_mapping_error(d, mapping))) {
4035 if (net_ratelimit())
4036 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004037 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
4040 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004041 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004042
4043err_out:
4044 kfree(data);
4045 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046}
4047
4048static void rtl8169_rx_clear(struct rtl8169_private *tp)
4049{
Francois Romieu07d3f512007-02-21 22:40:46 +01004050 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
4052 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004053 if (tp->Rx_databuff[i]) {
4054 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 tp->RxDescArray + i);
4056 }
4057 }
4058}
4059
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004060static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004062 desc->opts1 |= cpu_to_le32(RingEnd);
4063}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004064
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004065static int rtl8169_rx_fill(struct rtl8169_private *tp)
4066{
4067 unsigned int i;
4068
4069 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004070 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004071
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004072 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004074
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004075 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004076 if (!data) {
4077 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004078 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004079 }
4080 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004083 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4084 return 0;
4085
4086err_out:
4087 rtl8169_rx_clear(tp);
4088 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089}
4090
4091static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4092{
4093 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
4094}
4095
4096static int rtl8169_init_ring(struct net_device *dev)
4097{
4098 struct rtl8169_private *tp = netdev_priv(dev);
4099
4100 rtl8169_init_ring_indexes(tp);
4101
4102 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004103 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004105 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106}
4107
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004108static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 struct TxDesc *desc)
4110{
4111 unsigned int len = tx_skb->len;
4112
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004113 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4114
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 desc->opts1 = 0x00;
4116 desc->opts2 = 0x00;
4117 desc->addr = 0x00;
4118 tx_skb->len = 0;
4119}
4120
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004121static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4122 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123{
4124 unsigned int i;
4125
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004126 for (i = 0; i < n; i++) {
4127 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 struct ring_info *tx_skb = tp->tx_skb + entry;
4129 unsigned int len = tx_skb->len;
4130
4131 if (len) {
4132 struct sk_buff *skb = tx_skb->skb;
4133
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004134 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 tp->TxDescArray + entry);
4136 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004137 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 dev_kfree_skb(skb);
4139 tx_skb->skb = NULL;
4140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 }
4142 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004143}
4144
4145static void rtl8169_tx_clear(struct rtl8169_private *tp)
4146{
4147 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 tp->cur_tx = tp->dirty_tx = 0;
4149}
4150
David Howellsc4028952006-11-22 14:57:56 +00004151static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152{
4153 struct rtl8169_private *tp = netdev_priv(dev);
4154
David Howellsc4028952006-11-22 14:57:56 +00004155 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 schedule_delayed_work(&tp->task, 4);
4157}
4158
4159static void rtl8169_wait_for_quiescence(struct net_device *dev)
4160{
4161 struct rtl8169_private *tp = netdev_priv(dev);
4162 void __iomem *ioaddr = tp->mmio_addr;
4163
4164 synchronize_irq(dev->irq);
4165
4166 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004167 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168
4169 rtl8169_irq_mask_and_ack(ioaddr);
4170
David S. Millerd1d08d12008-01-07 20:53:33 -08004171 tp->intr_mask = 0xffff;
4172 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004173 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174}
4175
David Howellsc4028952006-11-22 14:57:56 +00004176static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177{
David Howellsc4028952006-11-22 14:57:56 +00004178 struct rtl8169_private *tp =
4179 container_of(work, struct rtl8169_private, task.work);
4180 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 int ret;
4182
Francois Romieueb2a0212007-02-15 23:37:21 +01004183 rtnl_lock();
4184
4185 if (!netif_running(dev))
4186 goto out_unlock;
4187
4188 rtl8169_wait_for_quiescence(dev);
4189 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
4191 ret = rtl8169_open(dev);
4192 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004193 if (net_ratelimit())
4194 netif_err(tp, drv, dev,
4195 "reinit failure (status = %d). Rescheduling\n",
4196 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 rtl8169_schedule_work(dev, rtl8169_reinit_task);
4198 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004199
4200out_unlock:
4201 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202}
4203
David Howellsc4028952006-11-22 14:57:56 +00004204static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205{
David Howellsc4028952006-11-22 14:57:56 +00004206 struct rtl8169_private *tp =
4207 container_of(work, struct rtl8169_private, task.work);
4208 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Francois Romieueb2a0212007-02-15 23:37:21 +01004210 rtnl_lock();
4211
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01004213 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
4215 rtl8169_wait_for_quiescence(dev);
4216
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004217 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 rtl8169_tx_clear(tp);
4219
4220 if (tp->dirty_rx == tp->cur_rx) {
4221 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004222 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 netif_wake_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004224 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 } else {
Joe Perchesbf82c182010-02-09 11:49:50 +00004226 if (net_ratelimit())
4227 netif_emerg(tp, intr, dev, "Rx buffers shortage\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 rtl8169_schedule_work(dev, rtl8169_reset_task);
4229 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004230
4231out_unlock:
4232 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233}
4234
4235static void rtl8169_tx_timeout(struct net_device *dev)
4236{
4237 struct rtl8169_private *tp = netdev_priv(dev);
4238
françois romieue6de30d2011-01-03 15:08:37 +00004239 rtl8169_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240
4241 /* Let's wait a bit while any (async) irq lands on */
4242 rtl8169_schedule_work(dev, rtl8169_reset_task);
4243}
4244
4245static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
4246 u32 opts1)
4247{
4248 struct skb_shared_info *info = skb_shinfo(skb);
4249 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04004250 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004251 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
4253 entry = tp->cur_tx;
4254 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
4255 skb_frag_t *frag = info->frags + cur_frag;
4256 dma_addr_t mapping;
4257 u32 status, len;
4258 void *addr;
4259
4260 entry = (entry + 1) % NUM_TX_DESC;
4261
4262 txd = tp->TxDescArray + entry;
4263 len = frag->size;
4264 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004265 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004266 if (unlikely(dma_mapping_error(d, mapping))) {
4267 if (net_ratelimit())
4268 netif_err(tp, drv, tp->dev,
4269 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004270 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
4273 /* anti gcc 2.95.3 bugware (sic) */
4274 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4275
4276 txd->opts1 = cpu_to_le32(status);
4277 txd->addr = cpu_to_le64(mapping);
4278
4279 tp->tx_skb[entry].len = len;
4280 }
4281
4282 if (cur_frag) {
4283 tp->tx_skb[entry].skb = skb;
4284 txd->opts1 |= cpu_to_le32(LastFrag);
4285 }
4286
4287 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004288
4289err_out:
4290 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
4291 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292}
4293
4294static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
4295{
4296 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07004297 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298
4299 if (mss)
4300 return LargeSend | ((mss & MSSMask) << MSSShift);
4301 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07004302 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004303 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304
4305 if (ip->protocol == IPPROTO_TCP)
4306 return IPCS | TCPCS;
4307 else if (ip->protocol == IPPROTO_UDP)
4308 return IPCS | UDPCS;
4309 WARN_ON(1); /* we need a WARN() */
4310 }
4311 return 0;
4312}
4313
Stephen Hemminger613573252009-08-31 19:50:58 +00004314static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
4315 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316{
4317 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004318 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 struct TxDesc *txd = tp->TxDescArray + entry;
4320 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004321 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 dma_addr_t mapping;
4323 u32 status, len;
4324 u32 opts1;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004325 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02004326
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004328 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004329 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 }
4331
4332 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004333 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004335 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004336 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004337 if (unlikely(dma_mapping_error(d, mapping))) {
4338 if (net_ratelimit())
4339 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004340 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342
4343 tp->tx_skb[entry].len = len;
4344 txd->addr = cpu_to_le64(mapping);
4345 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
4346
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004347 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
4348
4349 frags = rtl8169_xmit_frags(tp, skb, opts1);
4350 if (frags < 0)
4351 goto err_dma_1;
4352 else if (frags)
4353 opts1 |= FirstFrag;
4354 else {
4355 opts1 |= FirstFrag | LastFrag;
4356 tp->tx_skb[entry].skb = skb;
4357 }
4358
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 wmb();
4360
4361 /* anti gcc 2.95.3 bugware (sic) */
4362 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4363 txd->opts1 = cpu_to_le32(status);
4364
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 tp->cur_tx += frags + 1;
4366
David Dillow4c020a92010-03-03 16:33:10 +00004367 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
Francois Romieu275391a2007-02-23 23:50:28 +01004369 RTL_W8(TxPoll, NPQ); /* set polling bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
4371 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
4372 netif_stop_queue(dev);
4373 smp_rmb();
4374 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
4375 netif_wake_queue(dev);
4376 }
4377
Stephen Hemminger613573252009-08-31 19:50:58 +00004378 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004380err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004381 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004382err_dma_0:
4383 dev_kfree_skb(skb);
4384 dev->stats.tx_dropped++;
4385 return NETDEV_TX_OK;
4386
4387err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004389 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00004390 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391}
4392
4393static void rtl8169_pcierr_interrupt(struct net_device *dev)
4394{
4395 struct rtl8169_private *tp = netdev_priv(dev);
4396 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 u16 pci_status, pci_cmd;
4398
4399 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
4400 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
4401
Joe Perchesbf82c182010-02-09 11:49:50 +00004402 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4403 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404
4405 /*
4406 * The recovery sequence below admits a very elaborated explanation:
4407 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01004408 * - I did not see what else could be done;
4409 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410 *
4411 * Feel free to adjust to your needs.
4412 */
Francois Romieua27993f2006-12-18 00:04:19 +01004413 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01004414 pci_cmd &= ~PCI_COMMAND_PARITY;
4415 else
4416 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
4417
4418 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
4420 pci_write_config_word(pdev, PCI_STATUS,
4421 pci_status & (PCI_STATUS_DETECTED_PARITY |
4422 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
4423 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
4424
4425 /* The infamous DAC f*ckup only happens at boot time */
4426 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00004427 void __iomem *ioaddr = tp->mmio_addr;
4428
Joe Perchesbf82c182010-02-09 11:49:50 +00004429 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 tp->cp_cmd &= ~PCIDAC;
4431 RTL_W16(CPlusCmd, tp->cp_cmd);
4432 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 }
4434
françois romieue6de30d2011-01-03 15:08:37 +00004435 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01004436
4437 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438}
4439
Francois Romieu07d3f512007-02-21 22:40:46 +01004440static void rtl8169_tx_interrupt(struct net_device *dev,
4441 struct rtl8169_private *tp,
4442 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443{
4444 unsigned int dirty_tx, tx_left;
4445
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 dirty_tx = tp->dirty_tx;
4447 smp_rmb();
4448 tx_left = tp->cur_tx - dirty_tx;
4449
4450 while (tx_left > 0) {
4451 unsigned int entry = dirty_tx % NUM_TX_DESC;
4452 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 u32 status;
4454
4455 rmb();
4456 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
4457 if (status & DescOwn)
4458 break;
4459
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004460 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
4461 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004463 dev->stats.tx_packets++;
4464 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00004465 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 tx_skb->skb = NULL;
4467 }
4468 dirty_tx++;
4469 tx_left--;
4470 }
4471
4472 if (tp->dirty_tx != dirty_tx) {
4473 tp->dirty_tx = dirty_tx;
4474 smp_wmb();
4475 if (netif_queue_stopped(dev) &&
4476 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
4477 netif_wake_queue(dev);
4478 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02004479 /*
4480 * 8168 hack: TxPoll requests are lost when the Tx packets are
4481 * too close. Let's kick an extra TxPoll request when a burst
4482 * of start_xmit activity is detected (if it is not detected,
4483 * it is slow enough). -- FR
4484 */
4485 smp_rmb();
4486 if (tp->cur_tx != dirty_tx)
4487 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 }
4489}
4490
Francois Romieu126fa4b2005-05-12 20:09:17 -04004491static inline int rtl8169_fragmented_frame(u32 status)
4492{
4493 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4494}
4495
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004496static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 u32 status = opts1 & RxProtoMask;
4499
4500 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00004501 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 skb->ip_summed = CHECKSUM_UNNECESSARY;
4503 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07004504 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505}
4506
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004507static struct sk_buff *rtl8169_try_rx_copy(void *data,
4508 struct rtl8169_private *tp,
4509 int pkt_size,
4510 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004512 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004513 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004515 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004516 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004517 prefetch(data);
4518 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
4519 if (skb)
4520 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004521 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
4522
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004523 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524}
4525
Eric Dumazet630b9432010-03-31 02:08:31 +00004526/*
4527 * Warning : rtl8169_rx_interrupt() might be called :
4528 * 1) from NAPI (softirq) context
4529 * (polling = 1 : we should call netif_receive_skb())
4530 * 2) from process context (rtl8169_reset_task())
4531 * (polling = 0 : we must call netif_rx() instead)
4532 */
Francois Romieu07d3f512007-02-21 22:40:46 +01004533static int rtl8169_rx_interrupt(struct net_device *dev,
4534 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004535 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536{
4537 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004538 unsigned int count;
Eric Dumazet630b9432010-03-31 02:08:31 +00004539 int polling = (budget != ~(u32)0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 cur_rx = tp->cur_rx;
4542 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02004543 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004545 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004547 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 u32 status;
4549
4550 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04004551 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
4553 if (status & DescOwn)
4554 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004555 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004556 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
4557 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004558 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02004560 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02004562 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004563 if (status & RxFOVF) {
4564 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004565 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004566 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004567 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004569 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004570 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
Francois Romieu126fa4b2005-05-12 20:09:17 -04004573 /*
4574 * The driver does not support incoming fragmented
4575 * frames. They are seen as a symptom of over-mtu
4576 * sized frames.
4577 */
4578 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02004579 dev->stats.rx_dropped++;
4580 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004581 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004582 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004583 }
4584
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004585 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
4586 tp, pkt_size, addr);
4587 rtl8169_mark_to_asic(desc, rx_buf_sz);
4588 if (!skb) {
4589 dev->stats.rx_dropped++;
4590 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 }
4592
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004593 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 skb_put(skb, pkt_size);
4595 skb->protocol = eth_type_trans(skb, dev);
4596
Eric Dumazet630b9432010-03-31 02:08:31 +00004597 if (rtl8169_rx_vlan_skb(tp, desc, skb, polling) < 0) {
4598 if (likely(polling))
Eric Dumazet2edae082010-09-06 18:46:39 +00004599 napi_gro_receive(&tp->napi, skb);
Eric Dumazet630b9432010-03-31 02:08:31 +00004600 else
4601 netif_rx(skb);
4602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
Francois Romieucebf8cc2007-10-18 12:06:54 +02004604 dev->stats.rx_bytes += pkt_size;
4605 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 }
Francois Romieu6dccd162007-02-13 23:38:05 +01004607
4608 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00004609 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01004610 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
4611 desc->opts2 = 0;
4612 cur_rx++;
4613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 }
4615
4616 count = cur_rx - tp->cur_rx;
4617 tp->cur_rx = cur_rx;
4618
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004619 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
4621 return count;
4622}
4623
Francois Romieu07d3f512007-02-21 22:40:46 +01004624static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625{
Francois Romieu07d3f512007-02-21 22:40:46 +01004626 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02004630 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631
David Dillowf11a3772009-05-22 15:29:34 +00004632 /* loop handling interrupts until we have no new ones or
4633 * we hit a invalid/hotplug case.
4634 */
Francois Romieu865c6522008-05-11 14:51:00 +02004635 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00004636 while (status && status != 0xffff) {
4637 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638
David Dillowf11a3772009-05-22 15:29:34 +00004639 /* Handle all of the error cases first. These will reset
4640 * the chip, so just exit the loop.
4641 */
4642 if (unlikely(!netif_running(dev))) {
4643 rtl8169_asic_down(ioaddr);
4644 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 }
David Dillowf11a3772009-05-22 15:29:34 +00004646
Francois Romieu1519e572011-02-03 12:02:36 +01004647 if (unlikely(status & RxFIFOOver)) {
4648 switch (tp->mac_version) {
4649 /* Work around for rx fifo overflow */
4650 case RTL_GIGA_MAC_VER_11:
4651 case RTL_GIGA_MAC_VER_22:
4652 case RTL_GIGA_MAC_VER_26:
4653 netif_stop_queue(dev);
4654 rtl8169_tx_timeout(dev);
4655 goto done;
Francois Romieuf60ac8e2011-02-03 17:27:52 +01004656 /* Testers needed. */
4657 case RTL_GIGA_MAC_VER_17:
4658 case RTL_GIGA_MAC_VER_19:
4659 case RTL_GIGA_MAC_VER_20:
4660 case RTL_GIGA_MAC_VER_21:
4661 case RTL_GIGA_MAC_VER_23:
4662 case RTL_GIGA_MAC_VER_24:
4663 case RTL_GIGA_MAC_VER_27:
4664 case RTL_GIGA_MAC_VER_28:
Francois Romieu1519e572011-02-03 12:02:36 +01004665 /* Experimental science. Pktgen proof. */
4666 case RTL_GIGA_MAC_VER_12:
4667 case RTL_GIGA_MAC_VER_25:
4668 if (status == RxFIFOOver)
4669 goto done;
4670 break;
4671 default:
4672 break;
4673 }
David Dillowf11a3772009-05-22 15:29:34 +00004674 }
4675
4676 if (unlikely(status & SYSErr)) {
4677 rtl8169_pcierr_interrupt(dev);
4678 break;
4679 }
4680
4681 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004682 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00004683
4684 /* We need to see the lastest version of tp->intr_mask to
4685 * avoid ignoring an MSI interrupt and having to wait for
4686 * another event which may never come.
4687 */
4688 smp_rmb();
4689 if (status & tp->intr_mask & tp->napi_event) {
4690 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
4691 tp->intr_mask = ~tp->napi_event;
4692
4693 if (likely(napi_schedule_prep(&tp->napi)))
4694 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00004695 else
4696 netif_info(tp, intr, dev,
4697 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00004698 }
4699
4700 /* We only get a new MSI interrupt when all active irq
4701 * sources on the chip have been acknowledged. So, ack
4702 * everything we've seen and check if new sources have become
4703 * active to avoid blocking all interrupts from the chip.
4704 */
4705 RTL_W16(IntrStatus,
4706 (status & RxFIFOOver) ? (status | RxOverflow) : status);
4707 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 }
Francois Romieu1519e572011-02-03 12:02:36 +01004709done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 return IRQ_RETVAL(handled);
4711}
4712
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004713static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004715 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
4716 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004718 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004720 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 rtl8169_tx_interrupt(dev, tp, ioaddr);
4722
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004723 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004724 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00004725
4726 /* We need for force the visibility of tp->intr_mask
4727 * for other CPUs, as we can loose an MSI interrupt
4728 * and potentially wait for a retransmit timeout if we don't.
4729 * The posted write to IntrMask is safe, as it will
4730 * eventually make it to the chip and we won't loose anything
4731 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 */
David Dillowf11a3772009-05-22 15:29:34 +00004733 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00004734 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01004735 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 }
4737
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004738 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740
Francois Romieu523a6092008-09-10 22:28:56 +02004741static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
4742{
4743 struct rtl8169_private *tp = netdev_priv(dev);
4744
4745 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
4746 return;
4747
4748 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
4749 RTL_W32(RxMissed, 0);
4750}
4751
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752static void rtl8169_down(struct net_device *dev)
4753{
4754 struct rtl8169_private *tp = netdev_priv(dev);
4755 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
4757 rtl8169_delete_timer(dev);
4758
4759 netif_stop_queue(dev);
4760
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004761 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004762
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 spin_lock_irq(&tp->lock);
4764
4765 rtl8169_asic_down(ioaddr);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004766 /*
4767 * At this point device interrupts can not be enabled in any function,
4768 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
4769 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
4770 */
Francois Romieu523a6092008-09-10 22:28:56 +02004771 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
4773 spin_unlock_irq(&tp->lock);
4774
4775 synchronize_irq(dev->irq);
4776
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004778 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 rtl8169_tx_clear(tp);
4781
4782 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00004783
4784 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785}
4786
4787static int rtl8169_close(struct net_device *dev)
4788{
4789 struct rtl8169_private *tp = netdev_priv(dev);
4790 struct pci_dev *pdev = tp->pci_dev;
4791
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004792 pm_runtime_get_sync(&pdev->dev);
4793
Ivan Vecera355423d2009-02-06 21:49:57 -08004794 /* update counters before going down */
4795 rtl8169_update_counters(dev);
4796
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 rtl8169_down(dev);
4798
4799 free_irq(dev->irq, dev);
4800
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004801 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
4802 tp->RxPhyAddr);
4803 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
4804 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 tp->TxDescArray = NULL;
4806 tp->RxDescArray = NULL;
4807
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004808 pm_runtime_put_sync(&pdev->dev);
4809
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 return 0;
4811}
4812
Francois Romieu07ce4062007-02-23 23:36:39 +01004813static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814{
4815 struct rtl8169_private *tp = netdev_priv(dev);
4816 void __iomem *ioaddr = tp->mmio_addr;
4817 unsigned long flags;
4818 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01004819 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 u32 tmp = 0;
4821
4822 if (dev->flags & IFF_PROMISC) {
4823 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00004824 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 rx_mode =
4826 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4827 AcceptAllPhys;
4828 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00004829 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00004830 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831 /* Too many to filter perfectly -- accept all multicasts. */
4832 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4833 mc_filter[1] = mc_filter[0] = 0xffffffff;
4834 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00004835 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01004836
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 rx_mode = AcceptBroadcast | AcceptMyPhys;
4838 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00004839 netdev_for_each_mc_addr(ha, dev) {
4840 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4842 rx_mode |= AcceptMulticast;
4843 }
4844 }
4845
4846 spin_lock_irqsave(&tp->lock, flags);
4847
4848 tmp = rtl8169_rx_config | rx_mode |
4849 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
4850
Francois Romieuf887cce2008-07-17 22:24:18 +02004851 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01004852 u32 data = mc_filter[0];
4853
4854 mc_filter[0] = swab32(mc_filter[1]);
4855 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02004856 }
4857
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07004859 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860
Francois Romieu57a9f232007-06-04 22:10:15 +02004861 RTL_W32(RxConfig, tmp);
4862
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863 spin_unlock_irqrestore(&tp->lock, flags);
4864}
4865
4866/**
4867 * rtl8169_get_stats - Get rtl8169 read/write statistics
4868 * @dev: The Ethernet Device to get statistics for
4869 *
4870 * Get TX/RX statistics for rtl8169
4871 */
4872static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
4873{
4874 struct rtl8169_private *tp = netdev_priv(dev);
4875 void __iomem *ioaddr = tp->mmio_addr;
4876 unsigned long flags;
4877
4878 if (netif_running(dev)) {
4879 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02004880 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 spin_unlock_irqrestore(&tp->lock, flags);
4882 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02004883
Francois Romieucebf8cc2007-10-18 12:06:54 +02004884 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885}
4886
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004887static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01004888{
françois romieu065c27c2011-01-03 15:08:12 +00004889 struct rtl8169_private *tp = netdev_priv(dev);
4890
Francois Romieu5d06a992006-02-23 00:47:58 +01004891 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004892 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01004893
françois romieu065c27c2011-01-03 15:08:12 +00004894 rtl_pll_power_down(tp);
4895
Francois Romieu5d06a992006-02-23 00:47:58 +01004896 netif_device_detach(dev);
4897 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004898}
Francois Romieu5d06a992006-02-23 00:47:58 +01004899
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004900#ifdef CONFIG_PM
4901
4902static int rtl8169_suspend(struct device *device)
4903{
4904 struct pci_dev *pdev = to_pci_dev(device);
4905 struct net_device *dev = pci_get_drvdata(pdev);
4906
4907 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02004908
Francois Romieu5d06a992006-02-23 00:47:58 +01004909 return 0;
4910}
4911
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004912static void __rtl8169_resume(struct net_device *dev)
4913{
françois romieu065c27c2011-01-03 15:08:12 +00004914 struct rtl8169_private *tp = netdev_priv(dev);
4915
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004916 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00004917
4918 rtl_pll_power_up(tp);
4919
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004920 rtl8169_schedule_work(dev, rtl8169_reset_task);
4921}
4922
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004923static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01004924{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004925 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01004926 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00004927 struct rtl8169_private *tp = netdev_priv(dev);
4928
4929 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01004930
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004931 if (netif_running(dev))
4932 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01004933
Francois Romieu5d06a992006-02-23 00:47:58 +01004934 return 0;
4935}
4936
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004937static int rtl8169_runtime_suspend(struct device *device)
4938{
4939 struct pci_dev *pdev = to_pci_dev(device);
4940 struct net_device *dev = pci_get_drvdata(pdev);
4941 struct rtl8169_private *tp = netdev_priv(dev);
4942
4943 if (!tp->TxDescArray)
4944 return 0;
4945
4946 spin_lock_irq(&tp->lock);
4947 tp->saved_wolopts = __rtl8169_get_wol(tp);
4948 __rtl8169_set_wol(tp, WAKE_ANY);
4949 spin_unlock_irq(&tp->lock);
4950
4951 rtl8169_net_suspend(dev);
4952
4953 return 0;
4954}
4955
4956static int rtl8169_runtime_resume(struct device *device)
4957{
4958 struct pci_dev *pdev = to_pci_dev(device);
4959 struct net_device *dev = pci_get_drvdata(pdev);
4960 struct rtl8169_private *tp = netdev_priv(dev);
4961
4962 if (!tp->TxDescArray)
4963 return 0;
4964
4965 spin_lock_irq(&tp->lock);
4966 __rtl8169_set_wol(tp, tp->saved_wolopts);
4967 tp->saved_wolopts = 0;
4968 spin_unlock_irq(&tp->lock);
4969
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00004970 rtl8169_init_phy(dev, tp);
4971
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004972 __rtl8169_resume(dev);
4973
4974 return 0;
4975}
4976
4977static int rtl8169_runtime_idle(struct device *device)
4978{
4979 struct pci_dev *pdev = to_pci_dev(device);
4980 struct net_device *dev = pci_get_drvdata(pdev);
4981 struct rtl8169_private *tp = netdev_priv(dev);
4982
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004983 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004984}
4985
Alexey Dobriyan47145212009-12-14 18:00:08 -08004986static const struct dev_pm_ops rtl8169_pm_ops = {
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004987 .suspend = rtl8169_suspend,
4988 .resume = rtl8169_resume,
4989 .freeze = rtl8169_suspend,
4990 .thaw = rtl8169_resume,
4991 .poweroff = rtl8169_suspend,
4992 .restore = rtl8169_resume,
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004993 .runtime_suspend = rtl8169_runtime_suspend,
4994 .runtime_resume = rtl8169_runtime_resume,
4995 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004996};
4997
4998#define RTL8169_PM_OPS (&rtl8169_pm_ops)
4999
5000#else /* !CONFIG_PM */
5001
5002#define RTL8169_PM_OPS NULL
5003
5004#endif /* !CONFIG_PM */
5005
Francois Romieu1765f952008-09-13 17:21:40 +02005006static void rtl_shutdown(struct pci_dev *pdev)
5007{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005008 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00005009 struct rtl8169_private *tp = netdev_priv(dev);
5010 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02005011
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005012 rtl8169_net_suspend(dev);
5013
Ivan Veceracc098dc2009-11-29 23:12:52 -08005014 /* restore original MAC address */
5015 rtl_rar_set(tp, dev->perm_addr);
5016
françois romieu4bb3f522009-06-17 11:41:45 +00005017 spin_lock_irq(&tp->lock);
5018
5019 rtl8169_asic_down(ioaddr);
5020
5021 spin_unlock_irq(&tp->lock);
5022
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005023 if (system_state == SYSTEM_POWER_OFF) {
françois romieuca52efd2009-07-24 12:34:19 +00005024 /* WoL fails with some 8168 when the receiver is disabled. */
5025 if (tp->features & RTL_FEATURE_WOL) {
5026 pci_clear_master(pdev);
5027
5028 RTL_W8(ChipCmd, CmdRxEnb);
5029 /* PCI commit */
5030 RTL_R8(ChipCmd);
5031 }
5032
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005033 pci_wake_from_d3(pdev, true);
5034 pci_set_power_state(pdev, PCI_D3hot);
5035 }
5036}
Francois Romieu5d06a992006-02-23 00:47:58 +01005037
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038static struct pci_driver rtl8169_pci_driver = {
5039 .name = MODULENAME,
5040 .id_table = rtl8169_pci_tbl,
5041 .probe = rtl8169_init_one,
5042 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02005043 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005044 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045};
5046
Francois Romieu07d3f512007-02-21 22:40:46 +01005047static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048{
Jeff Garzik29917622006-08-19 17:48:59 -04005049 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050}
5051
Francois Romieu07d3f512007-02-21 22:40:46 +01005052static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053{
5054 pci_unregister_driver(&rtl8169_pci_driver);
5055}
5056
5057module_init(rtl8169_init_module);
5058module_exit(rtl8169_cleanup_module);