blob: de94489cf96ef12619ac766173215cb596aae227 [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
620static void rtl8168_oob_notify(void __iomem *ioaddr, u8 cmd)
621{
622 int i;
623
624 RTL_W8(ERIDR, cmd);
625 RTL_W32(ERIAR, 0x800010e8);
626 msleep(2);
627 for (i = 0; i < 5; i++) {
628 udelay(100);
629 if (!(RTL_R32(ERIDR) & ERIAR_FLAG))
630 break;
631 }
632
633 ocp_write(ioaddr, 0x1, 0x30, 0x00000001);
634}
635
636#define OOB_CMD_RESET 0x00
637#define OOB_CMD_DRIVER_START 0x05
638#define OOB_CMD_DRIVER_STOP 0x06
639
640static void rtl8168_driver_start(struct rtl8169_private *tp)
641{
642 int i;
643
644 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
645
646 for (i = 0; i < 10; i++) {
647 msleep(10);
648 if (ocp_read(tp, 0x0f, 0x0010) & 0x00000800)
649 break;
650 }
651}
652
653static void rtl8168_driver_stop(struct rtl8169_private *tp)
654{
655 int i;
656
657 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
658
659 for (i = 0; i < 10; i++) {
660 msleep(10);
661 if ((ocp_read(tp, 0x0f, 0x0010) & 0x00000800) == 0)
662 break;
663 }
664}
665
666
françois romieu4da19632011-01-03 15:07:55 +0000667static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 int i;
670
Francois Romieua6baf3a2007-11-08 23:23:21 +0100671 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Francois Romieu23714082006-01-29 00:49:09 +0100673 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100674 /*
675 * Check if the RTL8169 has completed writing to the specified
676 * MII register.
677 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200678 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 break;
Francois Romieu23714082006-01-29 00:49:09 +0100680 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700682 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700683 * According to hardware specs a 20us delay is required after write
684 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700685 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700686 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
françois romieu4da19632011-01-03 15:07:55 +0000689static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 int i, value = -1;
692
Francois Romieua6baf3a2007-11-08 23:23:21 +0100693 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Francois Romieu23714082006-01-29 00:49:09 +0100695 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100696 /*
697 * Check if the RTL8169 has completed retrieving data from
698 * the specified MII register.
699 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100701 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 break;
703 }
Francois Romieu23714082006-01-29 00:49:09 +0100704 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700706 /*
707 * According to hardware specs a 20us delay is required after read
708 * complete indication, but before sending next command.
709 */
710 udelay(20);
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return value;
713}
714
françois romieuc0e45c12011-01-03 15:08:04 +0000715static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
716{
717 int i;
718
719 RTL_W32(OCPDR, data |
720 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
721 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
722 RTL_W32(EPHY_RXER_NUM, 0);
723
724 for (i = 0; i < 100; i++) {
725 mdelay(1);
726 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
727 break;
728 }
729}
730
731static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
732{
733 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
734 (value & OCPDR_DATA_MASK));
735}
736
737static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
738{
739 int i;
740
741 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
742
743 mdelay(1);
744 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
745 RTL_W32(EPHY_RXER_NUM, 0);
746
747 for (i = 0; i < 100; i++) {
748 mdelay(1);
749 if (RTL_R32(OCPAR) & OCPAR_FLAG)
750 break;
751 }
752
753 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
754}
755
françois romieue6de30d2011-01-03 15:08:37 +0000756#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
757
758static void r8168dp_2_mdio_start(void __iomem *ioaddr)
759{
760 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
761}
762
763static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
764{
765 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
766}
767
768static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
769{
770 r8168dp_2_mdio_start(ioaddr);
771
772 r8169_mdio_write(ioaddr, reg_addr, value);
773
774 r8168dp_2_mdio_stop(ioaddr);
775}
776
777static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
778{
779 int value;
780
781 r8168dp_2_mdio_start(ioaddr);
782
783 value = r8169_mdio_read(ioaddr, reg_addr);
784
785 r8168dp_2_mdio_stop(ioaddr);
786
787 return value;
788}
789
françois romieu4da19632011-01-03 15:07:55 +0000790static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +0200791{
françois romieuc0e45c12011-01-03 15:08:04 +0000792 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +0200793}
794
françois romieu4da19632011-01-03 15:07:55 +0000795static int rtl_readphy(struct rtl8169_private *tp, int location)
796{
françois romieuc0e45c12011-01-03 15:08:04 +0000797 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +0000798}
799
800static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
801{
802 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
803}
804
805static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +0000806{
807 int val;
808
françois romieu4da19632011-01-03 15:07:55 +0000809 val = rtl_readphy(tp, reg_addr);
810 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +0000811}
812
Francois Romieuccdffb92008-07-26 14:26:06 +0200813static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
814 int val)
815{
816 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200817
françois romieu4da19632011-01-03 15:07:55 +0000818 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +0200819}
820
821static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
822{
823 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200824
françois romieu4da19632011-01-03 15:07:55 +0000825 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +0200826}
827
Francois Romieudacf8152008-08-02 20:44:13 +0200828static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
829{
830 unsigned int i;
831
832 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
833 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
834
835 for (i = 0; i < 100; i++) {
836 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
837 break;
838 udelay(10);
839 }
840}
841
842static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
843{
844 u16 value = 0xffff;
845 unsigned int i;
846
847 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
848
849 for (i = 0; i < 100; i++) {
850 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
851 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
852 break;
853 }
854 udelay(10);
855 }
856
857 return value;
858}
859
860static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
861{
862 unsigned int i;
863
864 RTL_W32(CSIDR, value);
865 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
866 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
867
868 for (i = 0; i < 100; i++) {
869 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
870 break;
871 udelay(10);
872 }
873}
874
875static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
876{
877 u32 value = ~0x00;
878 unsigned int i;
879
880 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
881 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
882
883 for (i = 0; i < 100; i++) {
884 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
885 value = RTL_R32(CSIDR);
886 break;
887 }
888 udelay(10);
889 }
890
891 return value;
892}
893
françois romieudaf9df62009-10-07 12:44:20 +0000894static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
895{
896 u8 value = 0xff;
897 unsigned int i;
898
899 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
900
901 for (i = 0; i < 300; i++) {
902 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
903 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
904 break;
905 }
906 udelay(100);
907 }
908
909 return value;
910}
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
913{
914 RTL_W16(IntrMask, 0x0000);
915
916 RTL_W16(IntrStatus, 0xffff);
917}
918
919static void rtl8169_asic_down(void __iomem *ioaddr)
920{
921 RTL_W8(ChipCmd, 0x00);
922 rtl8169_irq_mask_and_ack(ioaddr);
923 RTL_R16(CPlusCmd);
924}
925
françois romieu4da19632011-01-03 15:07:55 +0000926static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
françois romieu4da19632011-01-03 15:07:55 +0000928 void __iomem *ioaddr = tp->mmio_addr;
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return RTL_R32(TBICSR) & TBIReset;
931}
932
françois romieu4da19632011-01-03 15:07:55 +0000933static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
françois romieu4da19632011-01-03 15:07:55 +0000935 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
938static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
939{
940 return RTL_R32(TBICSR) & TBILinkOk;
941}
942
943static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
944{
945 return RTL_R8(PHYstatus) & LinkStatus;
946}
947
françois romieu4da19632011-01-03 15:07:55 +0000948static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
françois romieu4da19632011-01-03 15:07:55 +0000950 void __iomem *ioaddr = tp->mmio_addr;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
953}
954
françois romieu4da19632011-01-03 15:07:55 +0000955static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 unsigned int val;
958
françois romieu4da19632011-01-03 15:07:55 +0000959 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
960 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000963static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieu07d3f512007-02-21 22:40:46 +0100964 struct rtl8169_private *tp,
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000965 void __iomem *ioaddr,
966 bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 unsigned long flags;
969
970 spin_lock_irqsave(&tp->lock, flags);
971 if (tp->link_ok(ioaddr)) {
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000972 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000973 if (pm)
974 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +0100976 if (net_ratelimit())
977 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200978 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +0000980 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000981 if (pm)
982 pm_schedule_suspend(&tp->pci_dev->dev, 100);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 spin_unlock_irqrestore(&tp->lock, flags);
985}
986
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000987static void rtl8169_check_link_status(struct net_device *dev,
988 struct rtl8169_private *tp,
989 void __iomem *ioaddr)
990{
991 __rtl8169_check_link_status(dev, tp, ioaddr, false);
992}
993
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000994#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
995
996static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
997{
998 void __iomem *ioaddr = tp->mmio_addr;
999 u8 options;
1000 u32 wolopts = 0;
1001
1002 options = RTL_R8(Config1);
1003 if (!(options & PMEnable))
1004 return 0;
1005
1006 options = RTL_R8(Config3);
1007 if (options & LinkUp)
1008 wolopts |= WAKE_PHY;
1009 if (options & MagicPacket)
1010 wolopts |= WAKE_MAGIC;
1011
1012 options = RTL_R8(Config5);
1013 if (options & UWF)
1014 wolopts |= WAKE_UCAST;
1015 if (options & BWF)
1016 wolopts |= WAKE_BCAST;
1017 if (options & MWF)
1018 wolopts |= WAKE_MCAST;
1019
1020 return wolopts;
1021}
1022
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001023static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1024{
1025 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001026
1027 spin_lock_irq(&tp->lock);
1028
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001029 wol->supported = WAKE_ANY;
1030 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001031
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001032 spin_unlock_irq(&tp->lock);
1033}
1034
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001035static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001036{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001037 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001038 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001039 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001040 u32 opt;
1041 u16 reg;
1042 u8 mask;
1043 } cfg[] = {
1044 { WAKE_ANY, Config1, PMEnable },
1045 { WAKE_PHY, Config3, LinkUp },
1046 { WAKE_MAGIC, Config3, MagicPacket },
1047 { WAKE_UCAST, Config5, UWF },
1048 { WAKE_BCAST, Config5, BWF },
1049 { WAKE_MCAST, Config5, MWF },
1050 { WAKE_ANY, Config5, LanWake }
1051 };
1052
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001053 RTL_W8(Cfg9346, Cfg9346_Unlock);
1054
1055 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1056 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001057 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001058 options |= cfg[i].mask;
1059 RTL_W8(cfg[i].reg, options);
1060 }
1061
1062 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001063}
1064
1065static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1066{
1067 struct rtl8169_private *tp = netdev_priv(dev);
1068
1069 spin_lock_irq(&tp->lock);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001070
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001071 if (wol->wolopts)
1072 tp->features |= RTL_FEATURE_WOL;
1073 else
1074 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001075 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001076 spin_unlock_irq(&tp->lock);
1077
françois romieuea809072010-11-08 13:23:58 +00001078 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1079
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001080 return 0;
1081}
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083static void rtl8169_get_drvinfo(struct net_device *dev,
1084 struct ethtool_drvinfo *info)
1085{
1086 struct rtl8169_private *tp = netdev_priv(dev);
1087
1088 strcpy(info->driver, MODULENAME);
1089 strcpy(info->version, RTL8169_VERSION);
1090 strcpy(info->bus_info, pci_name(tp->pci_dev));
1091}
1092
1093static int rtl8169_get_regs_len(struct net_device *dev)
1094{
1095 return R8169_REGS_SIZE;
1096}
1097
1098static int rtl8169_set_speed_tbi(struct net_device *dev,
1099 u8 autoneg, u16 speed, u8 duplex)
1100{
1101 struct rtl8169_private *tp = netdev_priv(dev);
1102 void __iomem *ioaddr = tp->mmio_addr;
1103 int ret = 0;
1104 u32 reg;
1105
1106 reg = RTL_R32(TBICSR);
1107 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1108 (duplex == DUPLEX_FULL)) {
1109 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1110 } else if (autoneg == AUTONEG_ENABLE)
1111 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1112 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001113 netif_warn(tp, link, dev,
1114 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 ret = -EOPNOTSUPP;
1116 }
1117
1118 return ret;
1119}
1120
1121static int rtl8169_set_speed_xmii(struct net_device *dev,
1122 u8 autoneg, u16 speed, u8 duplex)
1123{
1124 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001125 int giga_ctrl, bmcr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Hayes Wang716b50a2011-02-22 17:26:18 +08001127 rtl_writephy(tp, 0x1f, 0x0000);
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001130 int auto_nego;
1131
françois romieu4da19632011-01-03 15:07:55 +00001132 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001133 auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
1134 ADVERTISE_100HALF | ADVERTISE_100FULL);
françois romieu3577aa12009-05-19 10:46:48 +00001135 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1136
françois romieu4da19632011-01-03 15:07:55 +00001137 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001138 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1139
1140 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1141 if ((tp->mac_version != RTL_GIGA_MAC_VER_07) &&
1142 (tp->mac_version != RTL_GIGA_MAC_VER_08) &&
1143 (tp->mac_version != RTL_GIGA_MAC_VER_09) &&
1144 (tp->mac_version != RTL_GIGA_MAC_VER_10) &&
1145 (tp->mac_version != RTL_GIGA_MAC_VER_13) &&
1146 (tp->mac_version != RTL_GIGA_MAC_VER_14) &&
1147 (tp->mac_version != RTL_GIGA_MAC_VER_15) &&
1148 (tp->mac_version != RTL_GIGA_MAC_VER_16)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001149 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Joe Perchesbf82c182010-02-09 11:49:50 +00001150 } else {
1151 netif_info(tp, link, dev,
1152 "PHY does not support 1000Mbps\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02001153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
françois romieu3577aa12009-05-19 10:46:48 +00001155 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001156
françois romieu4da19632011-01-03 15:07:55 +00001157 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1158 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001159 } else {
1160 giga_ctrl = 0;
1161
1162 if (speed == SPEED_10)
1163 bmcr = 0;
1164 else if (speed == SPEED_100)
1165 bmcr = BMCR_SPEED100;
1166 else
1167 return -EINVAL;
1168
1169 if (duplex == DUPLEX_FULL)
1170 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001171 }
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 tp->phy_1000_ctrl_reg = giga_ctrl;
1174
françois romieu4da19632011-01-03 15:07:55 +00001175 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001176
1177 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1178 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
1179 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001180 rtl_writephy(tp, 0x17, 0x2138);
1181 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001182 } else {
françois romieu4da19632011-01-03 15:07:55 +00001183 rtl_writephy(tp, 0x17, 0x2108);
1184 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001185 }
1186 }
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return 0;
1189}
1190
1191static int rtl8169_set_speed(struct net_device *dev,
1192 u8 autoneg, u16 speed, u8 duplex)
1193{
1194 struct rtl8169_private *tp = netdev_priv(dev);
1195 int ret;
1196
1197 ret = tp->set_speed(dev, autoneg, speed, duplex);
1198
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001199 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
1201
1202 return ret;
1203}
1204
1205static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1206{
1207 struct rtl8169_private *tp = netdev_priv(dev);
1208 unsigned long flags;
1209 int ret;
1210
1211 spin_lock_irqsave(&tp->lock, flags);
1212 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
1213 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return ret;
1216}
1217
1218static u32 rtl8169_get_rx_csum(struct net_device *dev)
1219{
1220 struct rtl8169_private *tp = netdev_priv(dev);
1221
1222 return tp->cp_cmd & RxChkSum;
1223}
1224
1225static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
1226{
1227 struct rtl8169_private *tp = netdev_priv(dev);
1228 void __iomem *ioaddr = tp->mmio_addr;
1229 unsigned long flags;
1230
1231 spin_lock_irqsave(&tp->lock, flags);
1232
1233 if (data)
1234 tp->cp_cmd |= RxChkSum;
1235 else
1236 tp->cp_cmd &= ~RxChkSum;
1237
1238 RTL_W16(CPlusCmd, tp->cp_cmd);
1239 RTL_R16(CPlusCmd);
1240
1241 spin_unlock_irqrestore(&tp->lock, flags);
1242
1243 return 0;
1244}
1245
1246#ifdef CONFIG_R8169_VLAN
1247
1248static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1249 struct sk_buff *skb)
1250{
Jesse Grosseab6d182010-10-20 13:56:03 +00001251 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1253}
1254
1255static void rtl8169_vlan_rx_register(struct net_device *dev,
1256 struct vlan_group *grp)
1257{
1258 struct rtl8169_private *tp = netdev_priv(dev);
1259 void __iomem *ioaddr = tp->mmio_addr;
1260 unsigned long flags;
1261
1262 spin_lock_irqsave(&tp->lock, flags);
1263 tp->vlgrp = grp;
Simon Wunderlich05af2142009-10-24 06:47:33 -07001264 /*
1265 * Do not disable RxVlan on 8110SCd.
1266 */
1267 if (tp->vlgrp || (tp->mac_version == RTL_GIGA_MAC_VER_05))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 tp->cp_cmd |= RxVlan;
1269 else
1270 tp->cp_cmd &= ~RxVlan;
1271 RTL_W16(CPlusCmd, tp->cp_cmd);
1272 RTL_R16(CPlusCmd);
1273 spin_unlock_irqrestore(&tp->lock, flags);
1274}
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
Eric Dumazet630b9432010-03-31 02:08:31 +00001277 struct sk_buff *skb, int polling)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
1279 u32 opts2 = le32_to_cpu(desc->opts2);
Francois Romieu865c6522008-05-11 14:51:00 +02001280 struct vlan_group *vlgrp = tp->vlgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 int ret;
1282
Francois Romieu865c6522008-05-11 14:51:00 +02001283 if (vlgrp && (opts2 & RxVlanTag)) {
Eric Dumazet2edae082010-09-06 18:46:39 +00001284 u16 vtag = swab16(opts2 & 0xffff);
1285
1286 if (likely(polling))
1287 vlan_gro_receive(&tp->napi, vlgrp, vtag, skb);
1288 else
1289 __vlan_hwaccel_rx(skb, vlgrp, vtag, polling);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 ret = 0;
1291 } else
1292 ret = -1;
1293 desc->opts2 = 0;
1294 return ret;
1295}
1296
1297#else /* !CONFIG_R8169_VLAN */
1298
1299static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1300 struct sk_buff *skb)
1301{
1302 return 0;
1303}
1304
1305static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
Eric Dumazet630b9432010-03-31 02:08:31 +00001306 struct sk_buff *skb, int polling)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 return -1;
1309}
1310
1311#endif
1312
Francois Romieuccdffb92008-07-26 14:26:06 +02001313static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
1315 struct rtl8169_private *tp = netdev_priv(dev);
1316 void __iomem *ioaddr = tp->mmio_addr;
1317 u32 status;
1318
1319 cmd->supported =
1320 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1321 cmd->port = PORT_FIBRE;
1322 cmd->transceiver = XCVR_INTERNAL;
1323
1324 status = RTL_R32(TBICSR);
1325 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1326 cmd->autoneg = !!(status & TBINwEnable);
1327
1328 cmd->speed = SPEED_1000;
1329 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001330
1331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
Francois Romieuccdffb92008-07-26 14:26:06 +02001334static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
1336 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Francois Romieuccdffb92008-07-26 14:26:06 +02001338 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
1341static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1342{
1343 struct rtl8169_private *tp = netdev_priv(dev);
1344 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +02001345 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 spin_lock_irqsave(&tp->lock, flags);
1348
Francois Romieuccdffb92008-07-26 14:26:06 +02001349 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +02001352 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
1355static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1356 void *p)
1357{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001358 struct rtl8169_private *tp = netdev_priv(dev);
1359 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Francois Romieu5b0384f2006-08-16 16:00:01 +02001361 if (regs->len > R8169_REGS_SIZE)
1362 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Francois Romieu5b0384f2006-08-16 16:00:01 +02001364 spin_lock_irqsave(&tp->lock, flags);
1365 memcpy_fromio(p, tp->mmio_addr, regs->len);
1366 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367}
1368
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001369static u32 rtl8169_get_msglevel(struct net_device *dev)
1370{
1371 struct rtl8169_private *tp = netdev_priv(dev);
1372
1373 return tp->msg_enable;
1374}
1375
1376static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1377{
1378 struct rtl8169_private *tp = netdev_priv(dev);
1379
1380 tp->msg_enable = value;
1381}
1382
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001383static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1384 "tx_packets",
1385 "rx_packets",
1386 "tx_errors",
1387 "rx_errors",
1388 "rx_missed",
1389 "align_errors",
1390 "tx_single_collisions",
1391 "tx_multi_collisions",
1392 "unicast",
1393 "broadcast",
1394 "multicast",
1395 "tx_aborted",
1396 "tx_underrun",
1397};
1398
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001399static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001400{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001401 switch (sset) {
1402 case ETH_SS_STATS:
1403 return ARRAY_SIZE(rtl8169_gstrings);
1404 default:
1405 return -EOPNOTSUPP;
1406 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001407}
1408
Ivan Vecera355423d2009-02-06 21:49:57 -08001409static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001410{
1411 struct rtl8169_private *tp = netdev_priv(dev);
1412 void __iomem *ioaddr = tp->mmio_addr;
1413 struct rtl8169_counters *counters;
1414 dma_addr_t paddr;
1415 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001416 int wait = 1000;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001417 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001418
Ivan Vecera355423d2009-02-06 21:49:57 -08001419 /*
1420 * Some chips are unable to dump tally counters when the receiver
1421 * is disabled.
1422 */
1423 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1424 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001425
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001426 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001427 if (!counters)
1428 return;
1429
1430 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001431 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001432 RTL_W32(CounterAddrLow, cmd);
1433 RTL_W32(CounterAddrLow, cmd | CounterDump);
1434
Ivan Vecera355423d2009-02-06 21:49:57 -08001435 while (wait--) {
1436 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
1437 /* copy updated counters */
1438 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001439 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001440 }
1441 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001442 }
1443
1444 RTL_W32(CounterAddrLow, 0);
1445 RTL_W32(CounterAddrHigh, 0);
1446
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001447 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001448}
1449
Ivan Vecera355423d2009-02-06 21:49:57 -08001450static void rtl8169_get_ethtool_stats(struct net_device *dev,
1451 struct ethtool_stats *stats, u64 *data)
1452{
1453 struct rtl8169_private *tp = netdev_priv(dev);
1454
1455 ASSERT_RTNL();
1456
1457 rtl8169_update_counters(dev);
1458
1459 data[0] = le64_to_cpu(tp->counters.tx_packets);
1460 data[1] = le64_to_cpu(tp->counters.rx_packets);
1461 data[2] = le64_to_cpu(tp->counters.tx_errors);
1462 data[3] = le32_to_cpu(tp->counters.rx_errors);
1463 data[4] = le16_to_cpu(tp->counters.rx_missed);
1464 data[5] = le16_to_cpu(tp->counters.align_errors);
1465 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1466 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1467 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1468 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1469 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1470 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1471 data[12] = le16_to_cpu(tp->counters.tx_underun);
1472}
1473
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001474static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1475{
1476 switch(stringset) {
1477 case ETH_SS_STATS:
1478 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1479 break;
1480 }
1481}
1482
Jeff Garzik7282d492006-09-13 14:30:00 -04001483static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 .get_drvinfo = rtl8169_get_drvinfo,
1485 .get_regs_len = rtl8169_get_regs_len,
1486 .get_link = ethtool_op_get_link,
1487 .get_settings = rtl8169_get_settings,
1488 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001489 .get_msglevel = rtl8169_get_msglevel,
1490 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 .get_rx_csum = rtl8169_get_rx_csum,
1492 .set_rx_csum = rtl8169_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 .set_tx_csum = ethtool_op_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 .set_tso = ethtool_op_set_tso,
1496 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001497 .get_wol = rtl8169_get_wol,
1498 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001499 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001500 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001501 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502};
1503
Francois Romieu07d3f512007-02-21 22:40:46 +01001504static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1505 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Francois Romieu0e485152007-02-20 00:00:26 +01001507 /*
1508 * The driver currently handles the 8168Bf and the 8168Be identically
1509 * but they can be identified more specifically through the test below
1510 * if needed:
1511 *
1512 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001513 *
1514 * Same thing for the 8101Eb and the 8101Ec:
1515 *
1516 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001517 */
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001518 static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001520 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 int mac_version;
1522 } mac_info[] = {
Francois Romieu5b538df2008-07-20 16:22:45 +02001523 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001524 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1525 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001526 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001527
françois romieue6de30d2011-01-03 15:08:37 +00001528 /* 8168DP family. */
1529 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1530 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
1531
Francois Romieuef808d52008-06-29 13:10:54 +02001532 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001533 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001534 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001535 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001536 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001537 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1538 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001539 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001540 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001541 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001542
1543 /* 8168B family. */
1544 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1545 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1546 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1547 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1548
1549 /* 8101 family. */
Francois Romieu2857ffb2008-08-02 21:08:49 +02001550 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1551 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1552 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1553 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1554 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1555 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001556 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001557 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001558 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001559 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1560 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001561 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1562 /* FIXME: where did these entries come from ? -- FR */
1563 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1564 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1565
1566 /* 8110 family. */
1567 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1568 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1569 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1570 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1571 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1572 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1573
Jean Delvaref21b75e2009-05-26 20:54:48 -07001574 /* Catch-all */
1575 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }, *p = mac_info;
1577 u32 reg;
1578
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001579 reg = RTL_R32(TxConfig);
1580 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 p++;
1582 tp->mac_version = p->mac_version;
1583}
1584
1585static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1586{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001587 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
Francois Romieu867763c2007-08-17 18:21:58 +02001590struct phy_reg {
1591 u16 reg;
1592 u16 val;
1593};
1594
françois romieu4da19632011-01-03 15:07:55 +00001595static void rtl_writephy_batch(struct rtl8169_private *tp,
1596 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001597{
1598 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001599 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001600 regs++;
1601 }
1602}
1603
françois romieubca03d52011-01-03 15:07:31 +00001604#define PHY_READ 0x00000000
1605#define PHY_DATA_OR 0x10000000
1606#define PHY_DATA_AND 0x20000000
1607#define PHY_BJMPN 0x30000000
1608#define PHY_READ_EFUSE 0x40000000
1609#define PHY_READ_MAC_BYTE 0x50000000
1610#define PHY_WRITE_MAC_BYTE 0x60000000
1611#define PHY_CLEAR_READCOUNT 0x70000000
1612#define PHY_WRITE 0x80000000
1613#define PHY_READCOUNT_EQ_SKIP 0x90000000
1614#define PHY_COMP_EQ_SKIPN 0xa0000000
1615#define PHY_COMP_NEQ_SKIPN 0xb0000000
1616#define PHY_WRITE_PREVIOUS 0xc0000000
1617#define PHY_SKIPN 0xd0000000
1618#define PHY_DELAY_MS 0xe0000000
1619#define PHY_WRITE_ERI_WORD 0xf0000000
1620
1621static void
1622rtl_phy_write_fw(struct rtl8169_private *tp, const struct firmware *fw)
1623{
françois romieubca03d52011-01-03 15:07:31 +00001624 __le32 *phytable = (__le32 *)fw->data;
1625 struct net_device *dev = tp->dev;
hayeswang42b82dc2011-01-10 02:07:25 +00001626 size_t index, fw_size = fw->size / sizeof(*phytable);
1627 u32 predata, count;
françois romieubca03d52011-01-03 15:07:31 +00001628
1629 if (fw->size % sizeof(*phytable)) {
1630 netif_err(tp, probe, dev, "odd sized firmware %zd\n", fw->size);
1631 return;
1632 }
1633
hayeswang42b82dc2011-01-10 02:07:25 +00001634 for (index = 0; index < fw_size; index++) {
1635 u32 action = le32_to_cpu(phytable[index]);
1636 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00001637
hayeswang42b82dc2011-01-10 02:07:25 +00001638 switch(action & 0xf0000000) {
1639 case PHY_READ:
1640 case PHY_DATA_OR:
1641 case PHY_DATA_AND:
1642 case PHY_READ_EFUSE:
1643 case PHY_CLEAR_READCOUNT:
1644 case PHY_WRITE:
1645 case PHY_WRITE_PREVIOUS:
1646 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00001647 break;
1648
hayeswang42b82dc2011-01-10 02:07:25 +00001649 case PHY_BJMPN:
1650 if (regno > index) {
1651 netif_err(tp, probe, tp->dev,
1652 "Out of range of firmware\n");
1653 return;
1654 }
1655 break;
1656 case PHY_READCOUNT_EQ_SKIP:
1657 if (index + 2 >= fw_size) {
1658 netif_err(tp, probe, tp->dev,
1659 "Out of range of firmware\n");
1660 return;
1661 }
1662 break;
1663 case PHY_COMP_EQ_SKIPN:
1664 case PHY_COMP_NEQ_SKIPN:
1665 case PHY_SKIPN:
1666 if (index + 1 + regno >= fw_size) {
1667 netif_err(tp, probe, tp->dev,
1668 "Out of range of firmware\n");
1669 return;
1670 }
1671 break;
1672
1673 case PHY_READ_MAC_BYTE:
1674 case PHY_WRITE_MAC_BYTE:
1675 case PHY_WRITE_ERI_WORD:
1676 default:
1677 netif_err(tp, probe, tp->dev,
1678 "Invalid action 0x%08x\n", action);
françois romieubca03d52011-01-03 15:07:31 +00001679 return;
1680 }
1681 }
1682
hayeswang42b82dc2011-01-10 02:07:25 +00001683 predata = 0;
1684 count = 0;
1685
1686 for (index = 0; index < fw_size; ) {
1687 u32 action = le32_to_cpu(phytable[index]);
françois romieubca03d52011-01-03 15:07:31 +00001688 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00001689 u32 regno = (action & 0x0fff0000) >> 16;
1690
1691 if (!action)
1692 break;
françois romieubca03d52011-01-03 15:07:31 +00001693
1694 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00001695 case PHY_READ:
1696 predata = rtl_readphy(tp, regno);
1697 count++;
1698 index++;
françois romieubca03d52011-01-03 15:07:31 +00001699 break;
hayeswang42b82dc2011-01-10 02:07:25 +00001700 case PHY_DATA_OR:
1701 predata |= data;
1702 index++;
1703 break;
1704 case PHY_DATA_AND:
1705 predata &= data;
1706 index++;
1707 break;
1708 case PHY_BJMPN:
1709 index -= regno;
1710 break;
1711 case PHY_READ_EFUSE:
1712 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
1713 index++;
1714 break;
1715 case PHY_CLEAR_READCOUNT:
1716 count = 0;
1717 index++;
1718 break;
1719 case PHY_WRITE:
1720 rtl_writephy(tp, regno, data);
1721 index++;
1722 break;
1723 case PHY_READCOUNT_EQ_SKIP:
1724 if (count == data)
1725 index += 2;
1726 else
1727 index += 1;
1728 break;
1729 case PHY_COMP_EQ_SKIPN:
1730 if (predata == data)
1731 index += regno;
1732 index++;
1733 break;
1734 case PHY_COMP_NEQ_SKIPN:
1735 if (predata != data)
1736 index += regno;
1737 index++;
1738 break;
1739 case PHY_WRITE_PREVIOUS:
1740 rtl_writephy(tp, regno, predata);
1741 index++;
1742 break;
1743 case PHY_SKIPN:
1744 index += regno + 1;
1745 break;
1746 case PHY_DELAY_MS:
1747 mdelay(data);
1748 index++;
1749 break;
1750
1751 case PHY_READ_MAC_BYTE:
1752 case PHY_WRITE_MAC_BYTE:
1753 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00001754 default:
1755 BUG();
1756 }
1757 }
1758}
1759
françois romieuf1e02ed2011-01-13 13:07:53 +00001760static void rtl_release_firmware(struct rtl8169_private *tp)
1761{
1762 release_firmware(tp->fw);
1763 tp->fw = NULL;
1764}
1765
1766static int rtl_apply_firmware(struct rtl8169_private *tp, const char *fw_name)
1767{
1768 const struct firmware **fw = &tp->fw;
1769 int rc = !*fw;
1770
1771 if (rc) {
1772 rc = request_firmware(fw, fw_name, &tp->pci_dev->dev);
1773 if (rc < 0)
1774 goto out;
1775 }
1776
1777 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
1778 rtl_phy_write_fw(tp, *fw);
1779out:
1780 return rc;
1781}
1782
françois romieu4da19632011-01-03 15:07:55 +00001783static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001785 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00001786 { 0x1f, 0x0001 },
1787 { 0x06, 0x006e },
1788 { 0x08, 0x0708 },
1789 { 0x15, 0x4000 },
1790 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
françois romieu0b9b5712009-08-10 19:44:56 +00001792 { 0x1f, 0x0001 },
1793 { 0x03, 0x00a1 },
1794 { 0x02, 0x0008 },
1795 { 0x01, 0x0120 },
1796 { 0x00, 0x1000 },
1797 { 0x04, 0x0800 },
1798 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
françois romieu0b9b5712009-08-10 19:44:56 +00001800 { 0x03, 0xff41 },
1801 { 0x02, 0xdf60 },
1802 { 0x01, 0x0140 },
1803 { 0x00, 0x0077 },
1804 { 0x04, 0x7800 },
1805 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
françois romieu0b9b5712009-08-10 19:44:56 +00001807 { 0x03, 0x802f },
1808 { 0x02, 0x4f02 },
1809 { 0x01, 0x0409 },
1810 { 0x00, 0xf0f9 },
1811 { 0x04, 0x9800 },
1812 { 0x04, 0x9000 },
1813
1814 { 0x03, 0xdf01 },
1815 { 0x02, 0xdf20 },
1816 { 0x01, 0xff95 },
1817 { 0x00, 0xba00 },
1818 { 0x04, 0xa800 },
1819 { 0x04, 0xa000 },
1820
1821 { 0x03, 0xff41 },
1822 { 0x02, 0xdf20 },
1823 { 0x01, 0x0140 },
1824 { 0x00, 0x00bb },
1825 { 0x04, 0xb800 },
1826 { 0x04, 0xb000 },
1827
1828 { 0x03, 0xdf41 },
1829 { 0x02, 0xdc60 },
1830 { 0x01, 0x6340 },
1831 { 0x00, 0x007d },
1832 { 0x04, 0xd800 },
1833 { 0x04, 0xd000 },
1834
1835 { 0x03, 0xdf01 },
1836 { 0x02, 0xdf20 },
1837 { 0x01, 0x100a },
1838 { 0x00, 0xa0ff },
1839 { 0x04, 0xf800 },
1840 { 0x04, 0xf000 },
1841
1842 { 0x1f, 0x0000 },
1843 { 0x0b, 0x0000 },
1844 { 0x00, 0x9200 }
1845 };
1846
françois romieu4da19632011-01-03 15:07:55 +00001847 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848}
1849
françois romieu4da19632011-01-03 15:07:55 +00001850static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02001851{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001852 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02001853 { 0x1f, 0x0002 },
1854 { 0x01, 0x90d0 },
1855 { 0x1f, 0x0000 }
1856 };
1857
françois romieu4da19632011-01-03 15:07:55 +00001858 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001859}
1860
françois romieu4da19632011-01-03 15:07:55 +00001861static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001862{
1863 struct pci_dev *pdev = tp->pci_dev;
1864 u16 vendor_id, device_id;
1865
1866 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
1867 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
1868
1869 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
1870 return;
1871
françois romieu4da19632011-01-03 15:07:55 +00001872 rtl_writephy(tp, 0x1f, 0x0001);
1873 rtl_writephy(tp, 0x10, 0xf01b);
1874 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00001875}
1876
françois romieu4da19632011-01-03 15:07:55 +00001877static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001878{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001879 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00001880 { 0x1f, 0x0001 },
1881 { 0x04, 0x0000 },
1882 { 0x03, 0x00a1 },
1883 { 0x02, 0x0008 },
1884 { 0x01, 0x0120 },
1885 { 0x00, 0x1000 },
1886 { 0x04, 0x0800 },
1887 { 0x04, 0x9000 },
1888 { 0x03, 0x802f },
1889 { 0x02, 0x4f02 },
1890 { 0x01, 0x0409 },
1891 { 0x00, 0xf099 },
1892 { 0x04, 0x9800 },
1893 { 0x04, 0xa000 },
1894 { 0x03, 0xdf01 },
1895 { 0x02, 0xdf20 },
1896 { 0x01, 0xff95 },
1897 { 0x00, 0xba00 },
1898 { 0x04, 0xa800 },
1899 { 0x04, 0xf000 },
1900 { 0x03, 0xdf01 },
1901 { 0x02, 0xdf20 },
1902 { 0x01, 0x101a },
1903 { 0x00, 0xa0ff },
1904 { 0x04, 0xf800 },
1905 { 0x04, 0x0000 },
1906 { 0x1f, 0x0000 },
1907
1908 { 0x1f, 0x0001 },
1909 { 0x10, 0xf41b },
1910 { 0x14, 0xfb54 },
1911 { 0x18, 0xf5c7 },
1912 { 0x1f, 0x0000 },
1913
1914 { 0x1f, 0x0001 },
1915 { 0x17, 0x0cc0 },
1916 { 0x1f, 0x0000 }
1917 };
1918
françois romieu4da19632011-01-03 15:07:55 +00001919 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00001920
françois romieu4da19632011-01-03 15:07:55 +00001921 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00001922}
1923
françois romieu4da19632011-01-03 15:07:55 +00001924static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00001925{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001926 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00001927 { 0x1f, 0x0001 },
1928 { 0x04, 0x0000 },
1929 { 0x03, 0x00a1 },
1930 { 0x02, 0x0008 },
1931 { 0x01, 0x0120 },
1932 { 0x00, 0x1000 },
1933 { 0x04, 0x0800 },
1934 { 0x04, 0x9000 },
1935 { 0x03, 0x802f },
1936 { 0x02, 0x4f02 },
1937 { 0x01, 0x0409 },
1938 { 0x00, 0xf099 },
1939 { 0x04, 0x9800 },
1940 { 0x04, 0xa000 },
1941 { 0x03, 0xdf01 },
1942 { 0x02, 0xdf20 },
1943 { 0x01, 0xff95 },
1944 { 0x00, 0xba00 },
1945 { 0x04, 0xa800 },
1946 { 0x04, 0xf000 },
1947 { 0x03, 0xdf01 },
1948 { 0x02, 0xdf20 },
1949 { 0x01, 0x101a },
1950 { 0x00, 0xa0ff },
1951 { 0x04, 0xf800 },
1952 { 0x04, 0x0000 },
1953 { 0x1f, 0x0000 },
1954
1955 { 0x1f, 0x0001 },
1956 { 0x0b, 0x8480 },
1957 { 0x1f, 0x0000 },
1958
1959 { 0x1f, 0x0001 },
1960 { 0x18, 0x67c7 },
1961 { 0x04, 0x2000 },
1962 { 0x03, 0x002f },
1963 { 0x02, 0x4360 },
1964 { 0x01, 0x0109 },
1965 { 0x00, 0x3022 },
1966 { 0x04, 0x2800 },
1967 { 0x1f, 0x0000 },
1968
1969 { 0x1f, 0x0001 },
1970 { 0x17, 0x0cc0 },
1971 { 0x1f, 0x0000 }
1972 };
1973
françois romieu4da19632011-01-03 15:07:55 +00001974 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00001975}
1976
françois romieu4da19632011-01-03 15:07:55 +00001977static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02001978{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001979 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02001980 { 0x10, 0xf41b },
1981 { 0x1f, 0x0000 }
1982 };
1983
françois romieu4da19632011-01-03 15:07:55 +00001984 rtl_writephy(tp, 0x1f, 0x0001);
1985 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02001986
françois romieu4da19632011-01-03 15:07:55 +00001987 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02001988}
1989
françois romieu4da19632011-01-03 15:07:55 +00001990static void rtl8168bef_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 { 0x1f, 0x0001 },
1994 { 0x10, 0xf41b },
1995 { 0x1f, 0x0000 }
1996 };
1997
françois romieu4da19632011-01-03 15:07:55 +00001998 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02001999}
2000
françois romieu4da19632011-01-03 15:07:55 +00002001static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002002{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002003 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002004 { 0x1f, 0x0000 },
2005 { 0x1d, 0x0f00 },
2006 { 0x1f, 0x0002 },
2007 { 0x0c, 0x1ec8 },
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 Romieu867763c2007-08-17 18:21:58 +02002012}
2013
françois romieu4da19632011-01-03 15:07:55 +00002014static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002015{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002016 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002017 { 0x1f, 0x0001 },
2018 { 0x1d, 0x3d98 },
2019 { 0x1f, 0x0000 }
2020 };
2021
françois romieu4da19632011-01-03 15:07:55 +00002022 rtl_writephy(tp, 0x1f, 0x0000);
2023 rtl_patchphy(tp, 0x14, 1 << 5);
2024 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002025
françois romieu4da19632011-01-03 15:07:55 +00002026 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002027}
2028
françois romieu4da19632011-01-03 15:07:55 +00002029static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002030{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002031 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002032 { 0x1f, 0x0001 },
2033 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002034 { 0x1f, 0x0002 },
2035 { 0x00, 0x88d4 },
2036 { 0x01, 0x82b1 },
2037 { 0x03, 0x7002 },
2038 { 0x08, 0x9e30 },
2039 { 0x09, 0x01f0 },
2040 { 0x0a, 0x5500 },
2041 { 0x0c, 0x00c8 },
2042 { 0x1f, 0x0003 },
2043 { 0x12, 0xc096 },
2044 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002045 { 0x1f, 0x0000 },
2046 { 0x1f, 0x0000 },
2047 { 0x09, 0x2000 },
2048 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002049 };
2050
françois romieu4da19632011-01-03 15:07:55 +00002051 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002052
françois romieu4da19632011-01-03 15:07:55 +00002053 rtl_patchphy(tp, 0x14, 1 << 5);
2054 rtl_patchphy(tp, 0x0d, 1 << 5);
2055 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002056}
2057
françois romieu4da19632011-01-03 15:07:55 +00002058static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002059{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002060 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002061 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002062 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002063 { 0x03, 0x802f },
2064 { 0x02, 0x4f02 },
2065 { 0x01, 0x0409 },
2066 { 0x00, 0xf099 },
2067 { 0x04, 0x9800 },
2068 { 0x04, 0x9000 },
2069 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002070 { 0x1f, 0x0002 },
2071 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002072 { 0x06, 0x0761 },
2073 { 0x1f, 0x0003 },
2074 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002075 { 0x1f, 0x0000 }
2076 };
2077
françois romieu4da19632011-01-03 15:07:55 +00002078 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002079
françois romieu4da19632011-01-03 15:07:55 +00002080 rtl_patchphy(tp, 0x16, 1 << 0);
2081 rtl_patchphy(tp, 0x14, 1 << 5);
2082 rtl_patchphy(tp, 0x0d, 1 << 5);
2083 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002084}
2085
françois romieu4da19632011-01-03 15:07:55 +00002086static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002087{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002088 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002089 { 0x1f, 0x0001 },
2090 { 0x12, 0x2300 },
2091 { 0x1d, 0x3d98 },
2092 { 0x1f, 0x0002 },
2093 { 0x0c, 0x7eb8 },
2094 { 0x06, 0x5461 },
2095 { 0x1f, 0x0003 },
2096 { 0x16, 0x0f0a },
2097 { 0x1f, 0x0000 }
2098 };
2099
françois romieu4da19632011-01-03 15:07:55 +00002100 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002101
françois romieu4da19632011-01-03 15:07:55 +00002102 rtl_patchphy(tp, 0x16, 1 << 0);
2103 rtl_patchphy(tp, 0x14, 1 << 5);
2104 rtl_patchphy(tp, 0x0d, 1 << 5);
2105 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002106}
2107
françois romieu4da19632011-01-03 15:07:55 +00002108static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002109{
françois romieu4da19632011-01-03 15:07:55 +00002110 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002111}
2112
françois romieubca03d52011-01-03 15:07:31 +00002113static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002114{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002115 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002116 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002117 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002118 { 0x06, 0x4064 },
2119 { 0x07, 0x2863 },
2120 { 0x08, 0x059c },
2121 { 0x09, 0x26b4 },
2122 { 0x0a, 0x6a19 },
2123 { 0x0b, 0xdcc8 },
2124 { 0x10, 0xf06d },
2125 { 0x14, 0x7f68 },
2126 { 0x18, 0x7fd9 },
2127 { 0x1c, 0xf0ff },
2128 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002129 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002130 { 0x12, 0xf49f },
2131 { 0x13, 0x070b },
2132 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002133 { 0x14, 0x94c0 },
2134
2135 /*
2136 * Tx Error Issue
2137 * enhance line driver power
2138 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002139 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002140 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002141 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002142 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002143 { 0x06, 0x5561 },
2144
2145 /*
2146 * Can not link to 1Gbps with bad cable
2147 * Decrease SNR threshold form 21.07dB to 19.04dB
2148 */
2149 { 0x1f, 0x0001 },
2150 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002151
2152 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002153 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002154 };
françois romieubca03d52011-01-03 15:07:31 +00002155 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002156
françois romieu4da19632011-01-03 15:07:55 +00002157 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002158
françois romieubca03d52011-01-03 15:07:31 +00002159 /*
2160 * Rx Error Issue
2161 * Fine Tune Switching regulator parameter
2162 */
françois romieu4da19632011-01-03 15:07:55 +00002163 rtl_writephy(tp, 0x1f, 0x0002);
2164 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2165 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002166
françois romieudaf9df62009-10-07 12:44:20 +00002167 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002168 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002169 { 0x1f, 0x0002 },
2170 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002171 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002172 { 0x05, 0x8330 },
2173 { 0x06, 0x669a },
2174 { 0x1f, 0x0002 }
2175 };
2176 int val;
2177
françois romieu4da19632011-01-03 15:07:55 +00002178 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002179
françois romieu4da19632011-01-03 15:07:55 +00002180 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002181
2182 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002183 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002184 0x0065, 0x0066, 0x0067, 0x0068,
2185 0x0069, 0x006a, 0x006b, 0x006c
2186 };
2187 int i;
2188
françois romieu4da19632011-01-03 15:07:55 +00002189 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002190
2191 val &= 0xff00;
2192 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002193 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002194 }
2195 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002196 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002197 { 0x1f, 0x0002 },
2198 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002199 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002200 { 0x05, 0x8330 },
2201 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002202 };
2203
françois romieu4da19632011-01-03 15:07:55 +00002204 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002205 }
2206
françois romieubca03d52011-01-03 15:07:31 +00002207 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002208 rtl_writephy(tp, 0x1f, 0x0002);
2209 rtl_patchphy(tp, 0x0d, 0x0300);
2210 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002211
françois romieubca03d52011-01-03 15:07:31 +00002212 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002213 rtl_writephy(tp, 0x1f, 0x0002);
2214 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2215 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002216
françois romieu4da19632011-01-03 15:07:55 +00002217 rtl_writephy(tp, 0x1f, 0x0005);
2218 rtl_writephy(tp, 0x05, 0x001b);
françois romieuf1e02ed2011-01-13 13:07:53 +00002219 if ((rtl_readphy(tp, 0x06) != 0xbf00) ||
2220 (rtl_apply_firmware(tp, FIRMWARE_8168D_1) < 0)) {
françois romieubca03d52011-01-03 15:07:31 +00002221 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2222 }
2223
françois romieu4da19632011-01-03 15:07:55 +00002224 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002225}
2226
françois romieubca03d52011-01-03 15:07:31 +00002227static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002228{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002229 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002230 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002231 { 0x1f, 0x0001 },
2232 { 0x06, 0x4064 },
2233 { 0x07, 0x2863 },
2234 { 0x08, 0x059c },
2235 { 0x09, 0x26b4 },
2236 { 0x0a, 0x6a19 },
2237 { 0x0b, 0xdcc8 },
2238 { 0x10, 0xf06d },
2239 { 0x14, 0x7f68 },
2240 { 0x18, 0x7fd9 },
2241 { 0x1c, 0xf0ff },
2242 { 0x1d, 0x3d9c },
2243 { 0x1f, 0x0003 },
2244 { 0x12, 0xf49f },
2245 { 0x13, 0x070b },
2246 { 0x1a, 0x05ad },
2247 { 0x14, 0x94c0 },
2248
françois romieubca03d52011-01-03 15:07:31 +00002249 /*
2250 * Tx Error Issue
2251 * enhance line driver power
2252 */
françois romieudaf9df62009-10-07 12:44:20 +00002253 { 0x1f, 0x0002 },
2254 { 0x06, 0x5561 },
2255 { 0x1f, 0x0005 },
2256 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002257 { 0x06, 0x5561 },
2258
2259 /*
2260 * Can not link to 1Gbps with bad cable
2261 * Decrease SNR threshold form 21.07dB to 19.04dB
2262 */
2263 { 0x1f, 0x0001 },
2264 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002265
2266 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002267 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002268 };
françois romieubca03d52011-01-03 15:07:31 +00002269 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002270
françois romieu4da19632011-01-03 15:07:55 +00002271 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002272
2273 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002274 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002275 { 0x1f, 0x0002 },
2276 { 0x05, 0x669a },
2277 { 0x1f, 0x0005 },
2278 { 0x05, 0x8330 },
2279 { 0x06, 0x669a },
2280
2281 { 0x1f, 0x0002 }
2282 };
2283 int val;
2284
françois romieu4da19632011-01-03 15:07:55 +00002285 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002286
françois romieu4da19632011-01-03 15:07:55 +00002287 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002288 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002289 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002290 0x0065, 0x0066, 0x0067, 0x0068,
2291 0x0069, 0x006a, 0x006b, 0x006c
2292 };
2293 int i;
2294
françois romieu4da19632011-01-03 15:07:55 +00002295 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002296
2297 val &= 0xff00;
2298 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002299 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002300 }
2301 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002302 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002303 { 0x1f, 0x0002 },
2304 { 0x05, 0x2642 },
2305 { 0x1f, 0x0005 },
2306 { 0x05, 0x8330 },
2307 { 0x06, 0x2642 }
2308 };
2309
françois romieu4da19632011-01-03 15:07:55 +00002310 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002311 }
2312
françois romieubca03d52011-01-03 15:07:31 +00002313 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002314 rtl_writephy(tp, 0x1f, 0x0002);
2315 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2316 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002317
françois romieubca03d52011-01-03 15:07:31 +00002318 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002319 rtl_writephy(tp, 0x1f, 0x0002);
2320 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002321
françois romieu4da19632011-01-03 15:07:55 +00002322 rtl_writephy(tp, 0x1f, 0x0005);
2323 rtl_writephy(tp, 0x05, 0x001b);
françois romieuf1e02ed2011-01-13 13:07:53 +00002324 if ((rtl_readphy(tp, 0x06) != 0xb300) ||
2325 (rtl_apply_firmware(tp, FIRMWARE_8168D_2) < 0)) {
françois romieubca03d52011-01-03 15:07:31 +00002326 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2327 }
2328
françois romieu4da19632011-01-03 15:07:55 +00002329 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002330}
2331
françois romieu4da19632011-01-03 15:07:55 +00002332static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002333{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002334 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002335 { 0x1f, 0x0002 },
2336 { 0x10, 0x0008 },
2337 { 0x0d, 0x006c },
2338
2339 { 0x1f, 0x0000 },
2340 { 0x0d, 0xf880 },
2341
2342 { 0x1f, 0x0001 },
2343 { 0x17, 0x0cc0 },
2344
2345 { 0x1f, 0x0001 },
2346 { 0x0b, 0xa4d8 },
2347 { 0x09, 0x281c },
2348 { 0x07, 0x2883 },
2349 { 0x0a, 0x6b35 },
2350 { 0x1d, 0x3da4 },
2351 { 0x1c, 0xeffd },
2352 { 0x14, 0x7f52 },
2353 { 0x18, 0x7fc6 },
2354 { 0x08, 0x0601 },
2355 { 0x06, 0x4063 },
2356 { 0x10, 0xf074 },
2357 { 0x1f, 0x0003 },
2358 { 0x13, 0x0789 },
2359 { 0x12, 0xf4bd },
2360 { 0x1a, 0x04fd },
2361 { 0x14, 0x84b0 },
2362 { 0x1f, 0x0000 },
2363 { 0x00, 0x9200 },
2364
2365 { 0x1f, 0x0005 },
2366 { 0x01, 0x0340 },
2367 { 0x1f, 0x0001 },
2368 { 0x04, 0x4000 },
2369 { 0x03, 0x1d21 },
2370 { 0x02, 0x0c32 },
2371 { 0x01, 0x0200 },
2372 { 0x00, 0x5554 },
2373 { 0x04, 0x4800 },
2374 { 0x04, 0x4000 },
2375 { 0x04, 0xf000 },
2376 { 0x03, 0xdf01 },
2377 { 0x02, 0xdf20 },
2378 { 0x01, 0x101a },
2379 { 0x00, 0xa0ff },
2380 { 0x04, 0xf800 },
2381 { 0x04, 0xf000 },
2382 { 0x1f, 0x0000 },
2383
2384 { 0x1f, 0x0007 },
2385 { 0x1e, 0x0023 },
2386 { 0x16, 0x0000 },
2387 { 0x1f, 0x0000 }
2388 };
2389
françois romieu4da19632011-01-03 15:07:55 +00002390 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002391}
2392
françois romieue6de30d2011-01-03 15:08:37 +00002393static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2394{
2395 static const struct phy_reg phy_reg_init[] = {
2396 { 0x1f, 0x0001 },
2397 { 0x17, 0x0cc0 },
2398
2399 { 0x1f, 0x0007 },
2400 { 0x1e, 0x002d },
2401 { 0x18, 0x0040 },
2402 { 0x1f, 0x0000 }
2403 };
2404
2405 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2406 rtl_patchphy(tp, 0x0d, 1 << 5);
2407}
2408
françois romieu4da19632011-01-03 15:07:55 +00002409static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02002410{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002411 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002412 { 0x1f, 0x0003 },
2413 { 0x08, 0x441d },
2414 { 0x01, 0x9100 },
2415 { 0x1f, 0x0000 }
2416 };
2417
françois romieu4da19632011-01-03 15:07:55 +00002418 rtl_writephy(tp, 0x1f, 0x0000);
2419 rtl_patchphy(tp, 0x11, 1 << 12);
2420 rtl_patchphy(tp, 0x19, 1 << 13);
2421 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002422
françois romieu4da19632011-01-03 15:07:55 +00002423 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02002424}
2425
Francois Romieu5615d9f2007-08-17 17:50:46 +02002426static void rtl_hw_phy_config(struct net_device *dev)
2427{
2428 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002429
2430 rtl8169_print_mac_version(tp);
2431
2432 switch (tp->mac_version) {
2433 case RTL_GIGA_MAC_VER_01:
2434 break;
2435 case RTL_GIGA_MAC_VER_02:
2436 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00002437 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002438 break;
2439 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00002440 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002441 break;
françois romieu2e9558562009-08-10 19:44:19 +00002442 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00002443 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002444 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002445 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00002446 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00002447 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002448 case RTL_GIGA_MAC_VER_07:
2449 case RTL_GIGA_MAC_VER_08:
2450 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00002451 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002452 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002453 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00002454 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002455 break;
2456 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00002457 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002458 break;
2459 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00002460 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002461 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002462 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00002463 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002464 break;
2465 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00002466 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002467 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002468 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00002469 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002470 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002471 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00002472 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02002473 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002474 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00002475 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002476 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002477 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002478 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00002479 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02002480 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002481 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002482 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002483 break;
2484 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002485 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002486 break;
2487 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00002488 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02002489 break;
françois romieue6de30d2011-01-03 15:08:37 +00002490 case RTL_GIGA_MAC_VER_28:
2491 rtl8168d_4_hw_phy_config(tp);
2492 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002493
Francois Romieu5615d9f2007-08-17 17:50:46 +02002494 default:
2495 break;
2496 }
2497}
2498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499static void rtl8169_phy_timer(unsigned long __opaque)
2500{
2501 struct net_device *dev = (struct net_device *)__opaque;
2502 struct rtl8169_private *tp = netdev_priv(dev);
2503 struct timer_list *timer = &tp->timer;
2504 void __iomem *ioaddr = tp->mmio_addr;
2505 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2506
Francois Romieubcf0bf92006-07-26 23:14:13 +02002507 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Francois Romieu64e4bfb2006-08-17 12:43:06 +02002509 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 return;
2511
2512 spin_lock_irq(&tp->lock);
2513
françois romieu4da19632011-01-03 15:07:55 +00002514 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02002515 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * A busy loop could burn quite a few cycles on nowadays CPU.
2517 * Let's delay the execution of the timer for a few ticks.
2518 */
2519 timeout = HZ/10;
2520 goto out_mod_timer;
2521 }
2522
2523 if (tp->link_ok(ioaddr))
2524 goto out_unlock;
2525
Joe Perchesbf82c182010-02-09 11:49:50 +00002526 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
françois romieu4da19632011-01-03 15:07:55 +00002528 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530out_mod_timer:
2531 mod_timer(timer, jiffies + timeout);
2532out_unlock:
2533 spin_unlock_irq(&tp->lock);
2534}
2535
2536static inline void rtl8169_delete_timer(struct net_device *dev)
2537{
2538 struct rtl8169_private *tp = netdev_priv(dev);
2539 struct timer_list *timer = &tp->timer;
2540
Francois Romieue179bb72007-08-17 15:05:21 +02002541 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 return;
2543
2544 del_timer_sync(timer);
2545}
2546
2547static inline void rtl8169_request_timer(struct net_device *dev)
2548{
2549 struct rtl8169_private *tp = netdev_priv(dev);
2550 struct timer_list *timer = &tp->timer;
2551
Francois Romieue179bb72007-08-17 15:05:21 +02002552 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 return;
2554
Francois Romieu2efa53f2007-03-09 00:00:05 +01002555 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556}
2557
2558#ifdef CONFIG_NET_POLL_CONTROLLER
2559/*
2560 * Polling 'interrupt' - used by things like netconsole to send skbs
2561 * without having to re-enable interrupts. It's not called while
2562 * the interrupt routine is executing.
2563 */
2564static void rtl8169_netpoll(struct net_device *dev)
2565{
2566 struct rtl8169_private *tp = netdev_priv(dev);
2567 struct pci_dev *pdev = tp->pci_dev;
2568
2569 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002570 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 enable_irq(pdev->irq);
2572}
2573#endif
2574
2575static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
2576 void __iomem *ioaddr)
2577{
2578 iounmap(ioaddr);
2579 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002580 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 pci_disable_device(pdev);
2582 free_netdev(dev);
2583}
2584
Francois Romieubf793292006-11-01 00:53:05 +01002585static void rtl8169_phy_reset(struct net_device *dev,
2586 struct rtl8169_private *tp)
2587{
Francois Romieu07d3f512007-02-21 22:40:46 +01002588 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01002589
françois romieu4da19632011-01-03 15:07:55 +00002590 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01002591 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00002592 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01002593 return;
2594 msleep(1);
2595 }
Joe Perchesbf82c182010-02-09 11:49:50 +00002596 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01002597}
2598
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002599static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002601 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002602
Francois Romieu5615d9f2007-08-17 17:50:46 +02002603 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002604
Marcus Sundberg773328942008-07-10 21:28:08 +02002605 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
2606 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2607 RTL_W8(0x82, 0x01);
2608 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002609
Francois Romieu6dccd162007-02-13 23:38:05 +01002610 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
2611
2612 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
2613 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002614
Francois Romieubcf0bf92006-07-26 23:14:13 +02002615 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002616 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2617 RTL_W8(0x82, 0x01);
2618 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00002619 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002620 }
2621
Francois Romieubf793292006-11-01 00:53:05 +01002622 rtl8169_phy_reset(dev, tp);
2623
Francois Romieu901dda22007-02-21 00:10:20 +01002624 /*
2625 * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
2626 * only 8101. Don't panic.
2627 */
2628 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002629
Joe Perchesbf82c182010-02-09 11:49:50 +00002630 if (RTL_R8(PHYstatus) & TBI_Enable)
2631 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002632}
2633
Francois Romieu773d2022007-01-31 23:47:43 +01002634static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
2635{
2636 void __iomem *ioaddr = tp->mmio_addr;
2637 u32 high;
2638 u32 low;
2639
2640 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
2641 high = addr[4] | (addr[5] << 8);
2642
2643 spin_lock_irq(&tp->lock);
2644
2645 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00002646
Francois Romieu773d2022007-01-31 23:47:43 +01002647 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00002648 RTL_R32(MAC4);
2649
Francois Romieu78f1cd02010-03-27 19:35:46 -07002650 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00002651 RTL_R32(MAC0);
2652
Francois Romieu773d2022007-01-31 23:47:43 +01002653 RTL_W8(Cfg9346, Cfg9346_Lock);
2654
2655 spin_unlock_irq(&tp->lock);
2656}
2657
2658static int rtl_set_mac_address(struct net_device *dev, void *p)
2659{
2660 struct rtl8169_private *tp = netdev_priv(dev);
2661 struct sockaddr *addr = p;
2662
2663 if (!is_valid_ether_addr(addr->sa_data))
2664 return -EADDRNOTAVAIL;
2665
2666 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2667
2668 rtl_rar_set(tp, dev->dev_addr);
2669
2670 return 0;
2671}
2672
Francois Romieu5f787a12006-08-17 13:02:36 +02002673static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2674{
2675 struct rtl8169_private *tp = netdev_priv(dev);
2676 struct mii_ioctl_data *data = if_mii(ifr);
2677
Francois Romieu8b4ab282008-11-19 22:05:25 -08002678 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
2679}
Francois Romieu5f787a12006-08-17 13:02:36 +02002680
Francois Romieu8b4ab282008-11-19 22:05:25 -08002681static int rtl_xmii_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2682{
Francois Romieu5f787a12006-08-17 13:02:36 +02002683 switch (cmd) {
2684 case SIOCGMIIPHY:
2685 data->phy_id = 32; /* Internal PHY */
2686 return 0;
2687
2688 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002689 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02002690 return 0;
2691
2692 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002693 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02002694 return 0;
2695 }
2696 return -EOPNOTSUPP;
2697}
2698
Francois Romieu8b4ab282008-11-19 22:05:25 -08002699static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2700{
2701 return -EOPNOTSUPP;
2702}
2703
Francois Romieu0e485152007-02-20 00:00:26 +01002704static const struct rtl_cfg_info {
2705 void (*hw_start)(struct net_device *);
2706 unsigned int region;
2707 unsigned int align;
2708 u16 intr_event;
2709 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02002710 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07002711 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01002712} rtl_cfg_infos [] = {
2713 [RTL_CFG_0] = {
2714 .hw_start = rtl_hw_start_8169,
2715 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01002716 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01002717 .intr_event = SYSErr | LinkChg | RxOverflow |
2718 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002719 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002720 .features = RTL_FEATURE_GMII,
2721 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01002722 },
2723 [RTL_CFG_1] = {
2724 .hw_start = rtl_hw_start_8168,
2725 .region = 2,
2726 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00002727 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01002728 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002729 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002730 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
2731 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01002732 },
2733 [RTL_CFG_2] = {
2734 .hw_start = rtl_hw_start_8101,
2735 .region = 2,
2736 .align = 8,
2737 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
2738 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002739 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002740 .features = RTL_FEATURE_MSI,
2741 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01002742 }
2743};
2744
Francois Romieufbac58f2007-10-04 22:51:38 +02002745/* Cfg9346_Unlock assumed. */
2746static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
2747 const struct rtl_cfg_info *cfg)
2748{
2749 unsigned msi = 0;
2750 u8 cfg2;
2751
2752 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02002753 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02002754 if (pci_enable_msi(pdev)) {
2755 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
2756 } else {
2757 cfg2 |= MSIEnable;
2758 msi = RTL_FEATURE_MSI;
2759 }
2760 }
2761 RTL_W8(Config2, cfg2);
2762 return msi;
2763}
2764
2765static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
2766{
2767 if (tp->features & RTL_FEATURE_MSI) {
2768 pci_disable_msi(pdev);
2769 tp->features &= ~RTL_FEATURE_MSI;
2770 }
2771}
2772
Francois Romieu8b4ab282008-11-19 22:05:25 -08002773static const struct net_device_ops rtl8169_netdev_ops = {
2774 .ndo_open = rtl8169_open,
2775 .ndo_stop = rtl8169_close,
2776 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08002777 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002778 .ndo_tx_timeout = rtl8169_tx_timeout,
2779 .ndo_validate_addr = eth_validate_addr,
2780 .ndo_change_mtu = rtl8169_change_mtu,
2781 .ndo_set_mac_address = rtl_set_mac_address,
2782 .ndo_do_ioctl = rtl8169_ioctl,
2783 .ndo_set_multicast_list = rtl_set_rx_mode,
2784#ifdef CONFIG_R8169_VLAN
2785 .ndo_vlan_rx_register = rtl8169_vlan_rx_register,
2786#endif
2787#ifdef CONFIG_NET_POLL_CONTROLLER
2788 .ndo_poll_controller = rtl8169_netpoll,
2789#endif
2790
2791};
2792
françois romieuc0e45c12011-01-03 15:08:04 +00002793static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
2794{
2795 struct mdio_ops *ops = &tp->mdio_ops;
2796
2797 switch (tp->mac_version) {
2798 case RTL_GIGA_MAC_VER_27:
2799 ops->write = r8168dp_1_mdio_write;
2800 ops->read = r8168dp_1_mdio_read;
2801 break;
françois romieue6de30d2011-01-03 15:08:37 +00002802 case RTL_GIGA_MAC_VER_28:
2803 ops->write = r8168dp_2_mdio_write;
2804 ops->read = r8168dp_2_mdio_read;
2805 break;
françois romieuc0e45c12011-01-03 15:08:04 +00002806 default:
2807 ops->write = r8169_mdio_write;
2808 ops->read = r8169_mdio_read;
2809 break;
2810 }
2811}
2812
françois romieu065c27c2011-01-03 15:08:12 +00002813static void r810x_phy_power_down(struct rtl8169_private *tp)
2814{
2815 rtl_writephy(tp, 0x1f, 0x0000);
2816 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2817}
2818
2819static void r810x_phy_power_up(struct rtl8169_private *tp)
2820{
2821 rtl_writephy(tp, 0x1f, 0x0000);
2822 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2823}
2824
2825static void r810x_pll_power_down(struct rtl8169_private *tp)
2826{
2827 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2828 rtl_writephy(tp, 0x1f, 0x0000);
2829 rtl_writephy(tp, MII_BMCR, 0x0000);
2830 return;
2831 }
2832
2833 r810x_phy_power_down(tp);
2834}
2835
2836static void r810x_pll_power_up(struct rtl8169_private *tp)
2837{
2838 r810x_phy_power_up(tp);
2839}
2840
2841static void r8168_phy_power_up(struct rtl8169_private *tp)
2842{
2843 rtl_writephy(tp, 0x1f, 0x0000);
2844 rtl_writephy(tp, 0x0e, 0x0000);
2845 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2846}
2847
2848static void r8168_phy_power_down(struct rtl8169_private *tp)
2849{
2850 rtl_writephy(tp, 0x1f, 0x0000);
2851 rtl_writephy(tp, 0x0e, 0x0200);
2852 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2853}
2854
2855static void r8168_pll_power_down(struct rtl8169_private *tp)
2856{
2857 void __iomem *ioaddr = tp->mmio_addr;
2858
2859 if (tp->mac_version == RTL_GIGA_MAC_VER_27)
2860 return;
2861
2862 if (((tp->mac_version == RTL_GIGA_MAC_VER_23) ||
2863 (tp->mac_version == RTL_GIGA_MAC_VER_24)) &&
2864 (RTL_R16(CPlusCmd) & ASF)) {
2865 return;
2866 }
2867
2868 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2869 rtl_writephy(tp, 0x1f, 0x0000);
2870 rtl_writephy(tp, MII_BMCR, 0x0000);
2871
2872 RTL_W32(RxConfig, RTL_R32(RxConfig) |
2873 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
2874 return;
2875 }
2876
2877 r8168_phy_power_down(tp);
2878
2879 switch (tp->mac_version) {
2880 case RTL_GIGA_MAC_VER_25:
2881 case RTL_GIGA_MAC_VER_26:
2882 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
2883 break;
2884 }
2885}
2886
2887static void r8168_pll_power_up(struct rtl8169_private *tp)
2888{
2889 void __iomem *ioaddr = tp->mmio_addr;
2890
2891 if (tp->mac_version == RTL_GIGA_MAC_VER_27)
2892 return;
2893
2894 switch (tp->mac_version) {
2895 case RTL_GIGA_MAC_VER_25:
2896 case RTL_GIGA_MAC_VER_26:
2897 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
2898 break;
2899 }
2900
2901 r8168_phy_power_up(tp);
2902}
2903
2904static void rtl_pll_power_op(struct rtl8169_private *tp,
2905 void (*op)(struct rtl8169_private *))
2906{
2907 if (op)
2908 op(tp);
2909}
2910
2911static void rtl_pll_power_down(struct rtl8169_private *tp)
2912{
2913 rtl_pll_power_op(tp, tp->pll_power_ops.down);
2914}
2915
2916static void rtl_pll_power_up(struct rtl8169_private *tp)
2917{
2918 rtl_pll_power_op(tp, tp->pll_power_ops.up);
2919}
2920
2921static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
2922{
2923 struct pll_power_ops *ops = &tp->pll_power_ops;
2924
2925 switch (tp->mac_version) {
2926 case RTL_GIGA_MAC_VER_07:
2927 case RTL_GIGA_MAC_VER_08:
2928 case RTL_GIGA_MAC_VER_09:
2929 case RTL_GIGA_MAC_VER_10:
2930 case RTL_GIGA_MAC_VER_16:
2931 ops->down = r810x_pll_power_down;
2932 ops->up = r810x_pll_power_up;
2933 break;
2934
2935 case RTL_GIGA_MAC_VER_11:
2936 case RTL_GIGA_MAC_VER_12:
2937 case RTL_GIGA_MAC_VER_17:
2938 case RTL_GIGA_MAC_VER_18:
2939 case RTL_GIGA_MAC_VER_19:
2940 case RTL_GIGA_MAC_VER_20:
2941 case RTL_GIGA_MAC_VER_21:
2942 case RTL_GIGA_MAC_VER_22:
2943 case RTL_GIGA_MAC_VER_23:
2944 case RTL_GIGA_MAC_VER_24:
2945 case RTL_GIGA_MAC_VER_25:
2946 case RTL_GIGA_MAC_VER_26:
2947 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00002948 case RTL_GIGA_MAC_VER_28:
françois romieu065c27c2011-01-03 15:08:12 +00002949 ops->down = r8168_pll_power_down;
2950 ops->up = r8168_pll_power_up;
2951 break;
2952
2953 default:
2954 ops->down = NULL;
2955 ops->up = NULL;
2956 break;
2957 }
2958}
2959
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002960static int __devinit
2961rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
2962{
Francois Romieu0e485152007-02-20 00:00:26 +01002963 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
2964 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02002966 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002967 struct net_device *dev;
2968 void __iomem *ioaddr;
Francois Romieu07d3f512007-02-21 22:40:46 +01002969 unsigned int i;
2970 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002972 if (netif_msg_drv(&debug)) {
2973 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
2974 MODULENAME, RTL8169_VERSION);
2975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002978 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002979 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04002980 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002981 rc = -ENOMEM;
2982 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
2984
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08002986 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00002988 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02002989 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002990 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
Francois Romieuccdffb92008-07-26 14:26:06 +02002992 mii = &tp->mii;
2993 mii->dev = dev;
2994 mii->mdio_read = rtl_mdio_read;
2995 mii->mdio_write = rtl_mdio_write;
2996 mii->phy_id_mask = 0x1f;
2997 mii->reg_num_mask = 0x1f;
2998 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3001 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003002 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003003 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003004 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 }
3006
françois romieu87aeec72010-04-26 11:42:06 +00003007 if (pci_set_mwi(pdev) < 0)
3008 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003011 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003012 netif_err(tp, probe, dev,
3013 "region #%d not an MMIO resource, aborting\n",
3014 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003016 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003018
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003020 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003021 netif_err(tp, probe, dev,
3022 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003024 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 }
3026
3027 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003028 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003029 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00003030 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 }
3032
3033 tp->cp_cmd = PCIMulRW | RxChkSum;
3034
3035 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07003036 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 tp->cp_cmd |= PCIDAC;
3038 dev->features |= NETIF_F_HIGHDMA;
3039 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003040 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003042 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00003043 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 }
3045 }
3046
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003048 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003049 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003050 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00003052 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 }
3054
David S. Miller4300e8c2010-03-26 10:23:30 -07003055 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3056 if (!tp->pcie_cap)
3057 netif_info(tp, probe, dev, "no PCI Express capability\n");
3058
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003059 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
3061 /* Soft reset the chip. */
3062 RTL_W8(ChipCmd, CmdReset);
3063
3064 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003065 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3067 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003068 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 }
3070
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003071 RTL_W16(IntrStatus, 0xffff);
3072
françois romieuca52efd2009-07-24 12:34:19 +00003073 pci_set_master(pdev);
3074
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 /* Identify chip attached to board */
3076 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
françois romieuc0e45c12011-01-03 15:08:04 +00003078 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00003079 rtl_init_pll_power_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00003080
Jean Delvaref21b75e2009-05-26 20:54:48 -07003081 /* Use appropriate default if unknown */
3082 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003083 netif_notice(tp, probe, dev,
3084 "unknown MAC, using family default\n");
Jean Delvaref21b75e2009-05-26 20:54:48 -07003085 tp->mac_version = cfg->default_ver;
3086 }
3087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Roel Kluincee60c32008-04-17 22:35:54 +02003090 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 if (tp->mac_version == rtl_chip_info[i].mac_version)
3092 break;
3093 }
Roel Kluincee60c32008-04-17 22:35:54 +02003094 if (i == ARRAY_SIZE(rtl_chip_info)) {
Jean Delvaref21b75e2009-05-26 20:54:48 -07003095 dev_err(&pdev->dev,
3096 "driver bug, MAC version not found in rtl_chip_info\n");
françois romieu87aeec72010-04-26 11:42:06 +00003097 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 }
3099 tp->chipset = i;
3100
Francois Romieu5d06a992006-02-23 00:47:58 +01003101 RTL_W8(Cfg9346, Cfg9346_Unlock);
3102 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
3103 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07003104 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
3105 tp->features |= RTL_FEATURE_WOL;
3106 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
3107 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02003108 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01003109 RTL_W8(Cfg9346, Cfg9346_Lock);
3110
Francois Romieu66ec5d42007-11-06 22:56:10 +01003111 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
3112 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 tp->set_speed = rtl8169_set_speed_tbi;
3114 tp->get_settings = rtl8169_gset_tbi;
3115 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
3116 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
3117 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003118 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Francois Romieu64e4bfb2006-08-17 12:43:06 +02003120 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 } else {
3122 tp->set_speed = rtl8169_set_speed_xmii;
3123 tp->get_settings = rtl8169_gset_xmii;
3124 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
3125 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
3126 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003127 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 }
3129
Francois Romieudf58ef52008-10-09 14:35:58 -07003130 spin_lock_init(&tp->lock);
3131
Petr Vandrovec738e1e62008-10-12 20:58:29 -07003132 tp->mmio_addr = ioaddr;
3133
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00003134 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 for (i = 0; i < MAC_ADDR_LEN; i++)
3136 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04003137 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
3141 dev->irq = pdev->irq;
3142 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003144 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
3146#ifdef CONFIG_R8169_VLAN
3147 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148#endif
Eric Dumazet2edae082010-09-06 18:46:39 +00003149 dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
3151 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01003152 tp->hw_start = cfg->hw_start;
3153 tp->intr_event = cfg->intr_event;
3154 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Francois Romieu2efa53f2007-03-09 00:00:05 +01003156 init_timer(&tp->timer);
3157 tp->timer.data = (unsigned long) dev;
3158 tp->timer.function = rtl8169_phy_timer;
3159
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003161 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00003162 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
3164 pci_set_drvdata(pdev, dev);
3165
Joe Perchesbf82c182010-02-09 11:49:50 +00003166 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
3167 rtl_chip_info[tp->chipset].name,
3168 dev->base_addr, dev->dev_addr,
3169 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170
françois romieue6de30d2011-01-03 15:08:37 +00003171 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3172 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003173 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003174 }
françois romieub646d902011-01-03 15:08:21 +00003175
Bruno Prémont8b76ab32008-10-08 17:06:25 -07003176 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
Alan Sternf3ec4f82010-06-08 15:23:51 -04003178 if (pci_dev_run_wake(pdev))
3179 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003180
Ivan Vecera0d672e92011-02-15 02:08:39 +00003181 netif_carrier_off(dev);
3182
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003183out:
3184 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
françois romieu87aeec72010-04-26 11:42:06 +00003186err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02003187 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003188 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00003189err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003190 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003191err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003192 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003193 pci_disable_device(pdev);
3194err_out_free_dev_1:
3195 free_netdev(dev);
3196 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197}
3198
Francois Romieu07d3f512007-02-21 22:40:46 +01003199static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200{
3201 struct net_device *dev = pci_get_drvdata(pdev);
3202 struct rtl8169_private *tp = netdev_priv(dev);
3203
françois romieue6de30d2011-01-03 15:08:37 +00003204 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3205 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003206 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003207 }
françois romieub646d902011-01-03 15:08:21 +00003208
Tejun Heo23f333a2010-12-12 16:45:14 +01003209 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01003210
françois romieuf1e02ed2011-01-13 13:07:53 +00003211 rtl_release_firmware(tp);
3212
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08003214
Alan Sternf3ec4f82010-06-08 15:23:51 -04003215 if (pci_dev_run_wake(pdev))
3216 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003217
Ivan Veceracc098dc2009-11-29 23:12:52 -08003218 /* restore original MAC address */
3219 rtl_rar_set(tp, dev->perm_addr);
3220
Francois Romieufbac58f2007-10-04 22:51:38 +02003221 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 rtl8169_release_board(pdev, dev, tp->mmio_addr);
3223 pci_set_drvdata(pdev, NULL);
3224}
3225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226static int rtl8169_open(struct net_device *dev)
3227{
3228 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00003229 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02003231 int retval = -ENOMEM;
3232
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003233 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Neil Hormanc0cd8842010-03-29 13:16:02 -07003235 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003237 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003239 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
3240 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003242 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003244 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
3245 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02003247 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
3249 retval = rtl8169_init_ring(dev);
3250 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02003251 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
David Howellsc4028952006-11-22 14:57:56 +00003253 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
Francois Romieu99f252b2007-04-02 22:59:59 +02003255 smp_mb();
3256
Francois Romieufbac58f2007-10-04 22:51:38 +02003257 retval = request_irq(dev->irq, rtl8169_interrupt,
3258 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02003259 dev->name, dev);
3260 if (retval < 0)
3261 goto err_release_ring_2;
3262
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003263 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003264
françois romieueee3a962011-01-08 02:17:26 +00003265 rtl8169_init_phy(dev, tp);
3266
3267 /*
3268 * Pretend we are using VLANs; This bypasses a nasty bug where
3269 * Interrupts stop flowing on high load on 8110SCd controllers.
3270 */
3271 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3272 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | RxVlan);
3273
françois romieu065c27c2011-01-03 15:08:12 +00003274 rtl_pll_power_up(tp);
3275
Francois Romieu07ce4062007-02-23 23:36:39 +01003276 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278 rtl8169_request_timer(dev);
3279
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003280 tp->saved_wolopts = 0;
3281 pm_runtime_put_noidle(&pdev->dev);
3282
françois romieueee3a962011-01-08 02:17:26 +00003283 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284out:
3285 return retval;
3286
Francois Romieu99f252b2007-04-02 22:59:59 +02003287err_release_ring_2:
3288 rtl8169_rx_clear(tp);
3289err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003290 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
3291 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003292 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02003293err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003294 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
3295 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003296 tp->TxDescArray = NULL;
3297err_pm_runtime_put:
3298 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 goto out;
3300}
3301
françois romieue6de30d2011-01-03 15:08:37 +00003302static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303{
françois romieue6de30d2011-01-03 15:08:37 +00003304 void __iomem *ioaddr = tp->mmio_addr;
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 /* Disable interrupts */
3307 rtl8169_irq_mask_and_ack(ioaddr);
3308
françois romieue6de30d2011-01-03 15:08:37 +00003309 if (tp->mac_version == RTL_GIGA_MAC_VER_28) {
3310 while (RTL_R8(TxPoll) & NPQ)
3311 udelay(20);
3312
3313 }
3314
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 /* Reset the chipset */
3316 RTL_W8(ChipCmd, CmdReset);
3317
3318 /* PCI commit */
3319 RTL_R8(ChipCmd);
3320}
3321
Francois Romieu7f796d82007-06-11 23:04:41 +02003322static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003323{
3324 void __iomem *ioaddr = tp->mmio_addr;
3325 u32 cfg = rtl8169_rx_config;
3326
3327 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
3328 RTL_W32(RxConfig, cfg);
3329
3330 /* Set DMA burst size and Interframe Gap Time */
3331 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3332 (InterFrameGap << TxInterFrameGapShift));
3333}
3334
Francois Romieu07ce4062007-02-23 23:36:39 +01003335static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336{
3337 struct rtl8169_private *tp = netdev_priv(dev);
3338 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01003339 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
3341 /* Soft reset the chip. */
3342 RTL_W8(ChipCmd, CmdReset);
3343
3344 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003345 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3347 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003348 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 }
3350
Francois Romieu07ce4062007-02-23 23:36:39 +01003351 tp->hw_start(dev);
3352
Francois Romieu07ce4062007-02-23 23:36:39 +01003353 netif_start_queue(dev);
3354}
3355
3356
Francois Romieu7f796d82007-06-11 23:04:41 +02003357static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
3358 void __iomem *ioaddr)
3359{
3360 /*
3361 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3362 * register to be written before TxDescAddrLow to work.
3363 * Switching from MMIO to I/O access fixes the issue as well.
3364 */
3365 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003366 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003367 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003368 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003369}
3370
3371static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
3372{
3373 u16 cmd;
3374
3375 cmd = RTL_R16(CPlusCmd);
3376 RTL_W16(CPlusCmd, cmd);
3377 return cmd;
3378}
3379
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07003380static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02003381{
3382 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00003383 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02003384}
3385
Francois Romieu6dccd162007-02-13 23:38:05 +01003386static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
3387{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003388 static const struct {
Francois Romieu6dccd162007-02-13 23:38:05 +01003389 u32 mac_version;
3390 u32 clk;
3391 u32 val;
3392 } cfg2_info [] = {
3393 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
3394 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
3395 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
3396 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
3397 }, *p = cfg2_info;
3398 unsigned int i;
3399 u32 clk;
3400
3401 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01003402 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01003403 if ((p->mac_version == mac_version) && (p->clk == clk)) {
3404 RTL_W32(0x7c, p->val);
3405 break;
3406 }
3407 }
3408}
3409
Francois Romieu07ce4062007-02-23 23:36:39 +01003410static void rtl_hw_start_8169(struct net_device *dev)
3411{
3412 struct rtl8169_private *tp = netdev_priv(dev);
3413 void __iomem *ioaddr = tp->mmio_addr;
3414 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01003415
Francois Romieu9cb427b2006-11-02 00:10:16 +01003416 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
3417 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
3418 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
3419 }
3420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003422 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3423 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3424 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3425 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3426 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3427
françois romieuf0298f82011-01-03 15:07:42 +00003428 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003430 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
Francois Romieuc946b302007-10-04 00:42:50 +02003432 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3433 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3434 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3435 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3436 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Francois Romieu7f796d82007-06-11 23:04:41 +02003438 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02003439
3440 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3441 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Joe Perches06fa7352007-10-18 21:15:00 +02003442 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02003444 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 }
3446
Francois Romieubcf0bf92006-07-26 23:14:13 +02003447 RTL_W16(CPlusCmd, tp->cp_cmd);
3448
Francois Romieu6dccd162007-02-13 23:38:05 +01003449 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 /*
3452 * Undocumented corner. Supposedly:
3453 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3454 */
3455 RTL_W16(IntrMitigate, 0x0000);
3456
Francois Romieu7f796d82007-06-11 23:04:41 +02003457 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003458
Francois Romieuc946b302007-10-04 00:42:50 +02003459 if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
3460 (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
3461 (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
3462 (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
3463 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3464 rtl_set_rx_tx_config_registers(tp);
3465 }
3466
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02003468
3469 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3470 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
3472 RTL_W32(RxMissed, 0);
3473
Francois Romieu07ce4062007-02-23 23:36:39 +01003474 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475
3476 /* no early-rx interrupts */
3477 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003478
3479 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01003480 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Francois Romieu9c14cea2008-07-05 00:21:15 +02003483static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02003484{
Francois Romieu9c14cea2008-07-05 00:21:15 +02003485 struct net_device *dev = pci_get_drvdata(pdev);
3486 struct rtl8169_private *tp = netdev_priv(dev);
3487 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02003488
Francois Romieu9c14cea2008-07-05 00:21:15 +02003489 if (cap) {
3490 u16 ctl;
3491
3492 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
3493 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
3494 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
3495 }
Francois Romieu458a9f62008-08-02 15:50:02 +02003496}
3497
françois romieu650e8d52011-01-03 15:08:29 +00003498static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02003499{
3500 u32 csi;
3501
3502 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00003503 rtl_csi_write(ioaddr, 0x070c, csi | bits);
3504}
3505
françois romieue6de30d2011-01-03 15:08:37 +00003506static void rtl_csi_access_enable_1(void __iomem *ioaddr)
3507{
3508 rtl_csi_access_enable(ioaddr, 0x17000000);
3509}
3510
françois romieu650e8d52011-01-03 15:08:29 +00003511static void rtl_csi_access_enable_2(void __iomem *ioaddr)
3512{
3513 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02003514}
3515
3516struct ephy_info {
3517 unsigned int offset;
3518 u16 mask;
3519 u16 bits;
3520};
3521
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003522static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02003523{
3524 u16 w;
3525
3526 while (len-- > 0) {
3527 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
3528 rtl_ephy_write(ioaddr, e->offset, w);
3529 e++;
3530 }
3531}
3532
Francois Romieub726e492008-06-28 12:22:59 +02003533static void rtl_disable_clock_request(struct pci_dev *pdev)
3534{
3535 struct net_device *dev = pci_get_drvdata(pdev);
3536 struct rtl8169_private *tp = netdev_priv(dev);
3537 int cap = tp->pcie_cap;
3538
3539 if (cap) {
3540 u16 ctl;
3541
3542 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3543 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
3544 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3545 }
3546}
3547
françois romieue6de30d2011-01-03 15:08:37 +00003548static void rtl_enable_clock_request(struct pci_dev *pdev)
3549{
3550 struct net_device *dev = pci_get_drvdata(pdev);
3551 struct rtl8169_private *tp = netdev_priv(dev);
3552 int cap = tp->pcie_cap;
3553
3554 if (cap) {
3555 u16 ctl;
3556
3557 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3558 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3559 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3560 }
3561}
3562
Francois Romieub726e492008-06-28 12:22:59 +02003563#define R8168_CPCMD_QUIRK_MASK (\
3564 EnableBist | \
3565 Mac_dbgo_oe | \
3566 Force_half_dup | \
3567 Force_rxflow_en | \
3568 Force_txflow_en | \
3569 Cxpl_dbg_sel | \
3570 ASF | \
3571 PktCntrDisable | \
3572 Mac_dbgo_sel)
3573
Francois Romieu219a1e92008-06-28 11:58:39 +02003574static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
3575{
Francois Romieub726e492008-06-28 12:22:59 +02003576 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3577
3578 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3579
Francois Romieu2e68ae42008-06-28 12:00:55 +02003580 rtl_tx_performance_tweak(pdev,
3581 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02003582}
3583
3584static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
3585{
3586 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02003587
françois romieuf0298f82011-01-03 15:07:42 +00003588 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02003589
3590 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02003591}
3592
3593static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
3594{
Francois Romieub726e492008-06-28 12:22:59 +02003595 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
3596
3597 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3598
Francois Romieu219a1e92008-06-28 11:58:39 +02003599 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02003600
3601 rtl_disable_clock_request(pdev);
3602
3603 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02003604}
3605
Francois Romieuef3386f2008-06-29 12:24:30 +02003606static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02003607{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003608 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003609 { 0x01, 0, 0x0001 },
3610 { 0x02, 0x0800, 0x1000 },
3611 { 0x03, 0, 0x0042 },
3612 { 0x06, 0x0080, 0x0000 },
3613 { 0x07, 0, 0x2000 }
3614 };
3615
françois romieu650e8d52011-01-03 15:08:29 +00003616 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003617
3618 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
3619
Francois Romieu219a1e92008-06-28 11:58:39 +02003620 __rtl_hw_start_8168cp(ioaddr, pdev);
3621}
3622
Francois Romieuef3386f2008-06-29 12:24:30 +02003623static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
3624{
françois romieu650e8d52011-01-03 15:08:29 +00003625 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02003626
3627 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3628
3629 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3630
3631 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3632}
3633
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003634static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
3635{
françois romieu650e8d52011-01-03 15:08:29 +00003636 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003637
3638 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3639
3640 /* Magic. */
3641 RTL_W8(DBG_REG, 0x20);
3642
françois romieuf0298f82011-01-03 15:07:42 +00003643 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003644
3645 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3646
3647 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3648}
3649
Francois Romieu219a1e92008-06-28 11:58:39 +02003650static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
3651{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003652 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003653 { 0x02, 0x0800, 0x1000 },
3654 { 0x03, 0, 0x0002 },
3655 { 0x06, 0x0080, 0x0000 }
3656 };
3657
françois romieu650e8d52011-01-03 15:08:29 +00003658 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003659
3660 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
3661
3662 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
3663
Francois Romieu219a1e92008-06-28 11:58:39 +02003664 __rtl_hw_start_8168cp(ioaddr, pdev);
3665}
3666
3667static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
3668{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003669 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003670 { 0x01, 0, 0x0001 },
3671 { 0x03, 0x0400, 0x0220 }
3672 };
3673
françois romieu650e8d52011-01-03 15:08:29 +00003674 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003675
3676 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
3677
Francois Romieu219a1e92008-06-28 11:58:39 +02003678 __rtl_hw_start_8168cp(ioaddr, pdev);
3679}
3680
Francois Romieu197ff762008-06-28 13:16:02 +02003681static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
3682{
3683 rtl_hw_start_8168c_2(ioaddr, pdev);
3684}
3685
Francois Romieu6fb07052008-06-29 11:54:28 +02003686static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
3687{
françois romieu650e8d52011-01-03 15:08:29 +00003688 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02003689
3690 __rtl_hw_start_8168cp(ioaddr, pdev);
3691}
3692
Francois Romieu5b538df2008-07-20 16:22:45 +02003693static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
3694{
françois romieu650e8d52011-01-03 15:08:29 +00003695 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02003696
3697 rtl_disable_clock_request(pdev);
3698
françois romieuf0298f82011-01-03 15:07:42 +00003699 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02003700
3701 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3702
3703 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3704}
3705
françois romieue6de30d2011-01-03 15:08:37 +00003706static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
3707{
3708 static const struct ephy_info e_info_8168d_4[] = {
3709 { 0x0b, ~0, 0x48 },
3710 { 0x19, 0x20, 0x50 },
3711 { 0x0c, ~0, 0x20 }
3712 };
3713 int i;
3714
3715 rtl_csi_access_enable_1(ioaddr);
3716
3717 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3718
3719 RTL_W8(MaxTxPacketSize, TxPacketMax);
3720
3721 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
3722 const struct ephy_info *e = e_info_8168d_4 + i;
3723 u16 w;
3724
3725 w = rtl_ephy_read(ioaddr, e->offset);
3726 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
3727 }
3728
3729 rtl_enable_clock_request(pdev);
3730}
3731
Francois Romieu07ce4062007-02-23 23:36:39 +01003732static void rtl_hw_start_8168(struct net_device *dev)
3733{
Francois Romieu2dd99532007-06-11 23:22:52 +02003734 struct rtl8169_private *tp = netdev_priv(dev);
3735 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01003736 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02003737
3738 RTL_W8(Cfg9346, Cfg9346_Unlock);
3739
françois romieuf0298f82011-01-03 15:07:42 +00003740 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02003741
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003742 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02003743
Francois Romieu0e485152007-02-20 00:00:26 +01003744 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02003745
3746 RTL_W16(CPlusCmd, tp->cp_cmd);
3747
Francois Romieu0e485152007-02-20 00:00:26 +01003748 RTL_W16(IntrMitigate, 0x5151);
3749
3750 /* Work around for RxFIFO overflow. */
Ivan Vecerab5ba6d12011-01-27 12:24:11 +01003751 if (tp->mac_version == RTL_GIGA_MAC_VER_11 ||
3752 tp->mac_version == RTL_GIGA_MAC_VER_22) {
Francois Romieu0e485152007-02-20 00:00:26 +01003753 tp->intr_event |= RxFIFOOver | PCSTimeout;
3754 tp->intr_event &= ~RxOverflow;
3755 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003756
3757 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3758
Francois Romieub8363902008-06-01 12:31:57 +02003759 rtl_set_rx_mode(dev);
3760
3761 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3762 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02003763
3764 RTL_R8(IntrMask);
3765
Francois Romieu219a1e92008-06-28 11:58:39 +02003766 switch (tp->mac_version) {
3767 case RTL_GIGA_MAC_VER_11:
3768 rtl_hw_start_8168bb(ioaddr, pdev);
3769 break;
3770
3771 case RTL_GIGA_MAC_VER_12:
3772 case RTL_GIGA_MAC_VER_17:
3773 rtl_hw_start_8168bef(ioaddr, pdev);
3774 break;
3775
3776 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02003777 rtl_hw_start_8168cp_1(ioaddr, pdev);
Francois Romieu219a1e92008-06-28 11:58:39 +02003778 break;
3779
3780 case RTL_GIGA_MAC_VER_19:
3781 rtl_hw_start_8168c_1(ioaddr, pdev);
3782 break;
3783
3784 case RTL_GIGA_MAC_VER_20:
3785 rtl_hw_start_8168c_2(ioaddr, pdev);
3786 break;
3787
Francois Romieu197ff762008-06-28 13:16:02 +02003788 case RTL_GIGA_MAC_VER_21:
3789 rtl_hw_start_8168c_3(ioaddr, pdev);
3790 break;
3791
Francois Romieu6fb07052008-06-29 11:54:28 +02003792 case RTL_GIGA_MAC_VER_22:
3793 rtl_hw_start_8168c_4(ioaddr, pdev);
3794 break;
3795
Francois Romieuef3386f2008-06-29 12:24:30 +02003796 case RTL_GIGA_MAC_VER_23:
3797 rtl_hw_start_8168cp_2(ioaddr, pdev);
3798 break;
3799
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003800 case RTL_GIGA_MAC_VER_24:
3801 rtl_hw_start_8168cp_3(ioaddr, pdev);
3802 break;
3803
Francois Romieu5b538df2008-07-20 16:22:45 +02003804 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00003805 case RTL_GIGA_MAC_VER_26:
3806 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02003807 rtl_hw_start_8168d(ioaddr, pdev);
3808 break;
3809
françois romieue6de30d2011-01-03 15:08:37 +00003810 case RTL_GIGA_MAC_VER_28:
3811 rtl_hw_start_8168d_4(ioaddr, pdev);
3812 break;
3813
Francois Romieu219a1e92008-06-28 11:58:39 +02003814 default:
3815 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
3816 dev->name, tp->mac_version);
3817 break;
3818 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003819
Francois Romieu0e485152007-02-20 00:00:26 +01003820 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3821
Francois Romieub8363902008-06-01 12:31:57 +02003822 RTL_W8(Cfg9346, Cfg9346_Lock);
3823
Francois Romieu2dd99532007-06-11 23:22:52 +02003824 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003825
Francois Romieu0e485152007-02-20 00:00:26 +01003826 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003827}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
Francois Romieu2857ffb2008-08-02 21:08:49 +02003829#define R810X_CPCMD_QUIRK_MASK (\
3830 EnableBist | \
3831 Mac_dbgo_oe | \
3832 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00003833 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02003834 Force_txflow_en | \
3835 Cxpl_dbg_sel | \
3836 ASF | \
3837 PktCntrDisable | \
3838 PCIDAC | \
3839 PCIMulRW)
3840
3841static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
3842{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003843 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003844 { 0x01, 0, 0x6e65 },
3845 { 0x02, 0, 0x091f },
3846 { 0x03, 0, 0xc2f9 },
3847 { 0x06, 0, 0xafb5 },
3848 { 0x07, 0, 0x0e00 },
3849 { 0x19, 0, 0xec80 },
3850 { 0x01, 0, 0x2e65 },
3851 { 0x01, 0, 0x6e65 }
3852 };
3853 u8 cfg1;
3854
françois romieu650e8d52011-01-03 15:08:29 +00003855 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003856
3857 RTL_W8(DBG_REG, FIX_NAK_1);
3858
3859 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3860
3861 RTL_W8(Config1,
3862 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
3863 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3864
3865 cfg1 = RTL_R8(Config1);
3866 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
3867 RTL_W8(Config1, cfg1 & ~LEDS0);
3868
3869 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
3870
3871 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
3872}
3873
3874static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
3875{
françois romieu650e8d52011-01-03 15:08:29 +00003876 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003877
3878 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3879
3880 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
3881 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3882
3883 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
3884}
3885
3886static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
3887{
3888 rtl_hw_start_8102e_2(ioaddr, pdev);
3889
3890 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
3891}
3892
Francois Romieu07ce4062007-02-23 23:36:39 +01003893static void rtl_hw_start_8101(struct net_device *dev)
3894{
Francois Romieucdf1a602007-06-11 23:29:50 +02003895 struct rtl8169_private *tp = netdev_priv(dev);
3896 void __iomem *ioaddr = tp->mmio_addr;
3897 struct pci_dev *pdev = tp->pci_dev;
3898
Francois Romieue3cf0cc2007-08-17 14:55:46 +02003899 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
3900 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02003901 int cap = tp->pcie_cap;
3902
3903 if (cap) {
3904 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
3905 PCI_EXP_DEVCTL_NOSNOOP_EN);
3906 }
Francois Romieucdf1a602007-06-11 23:29:50 +02003907 }
3908
Francois Romieu2857ffb2008-08-02 21:08:49 +02003909 switch (tp->mac_version) {
3910 case RTL_GIGA_MAC_VER_07:
3911 rtl_hw_start_8102e_1(ioaddr, pdev);
3912 break;
3913
3914 case RTL_GIGA_MAC_VER_08:
3915 rtl_hw_start_8102e_3(ioaddr, pdev);
3916 break;
3917
3918 case RTL_GIGA_MAC_VER_09:
3919 rtl_hw_start_8102e_2(ioaddr, pdev);
3920 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02003921 }
3922
3923 RTL_W8(Cfg9346, Cfg9346_Unlock);
3924
françois romieuf0298f82011-01-03 15:07:42 +00003925 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02003926
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003927 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02003928
3929 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
3930
3931 RTL_W16(CPlusCmd, tp->cp_cmd);
3932
3933 RTL_W16(IntrMitigate, 0x0000);
3934
3935 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3936
3937 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3938 rtl_set_rx_tx_config_registers(tp);
3939
3940 RTL_W8(Cfg9346, Cfg9346_Lock);
3941
3942 RTL_R8(IntrMask);
3943
Francois Romieucdf1a602007-06-11 23:29:50 +02003944 rtl_set_rx_mode(dev);
3945
Francois Romieu0e485152007-02-20 00:00:26 +01003946 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3947
Francois Romieucdf1a602007-06-11 23:29:50 +02003948 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003949
Francois Romieu0e485152007-02-20 00:00:26 +01003950 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951}
3952
3953static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
3954{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
3956 return -EINVAL;
3957
3958 dev->mtu = new_mtu;
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00003959 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960}
3961
3962static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
3963{
Al Viro95e09182007-12-22 18:55:39 +00003964 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
3966}
3967
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003968static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
3969 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003971 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00003972 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003973
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003974 kfree(*data_buff);
3975 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 rtl8169_make_unusable_by_asic(desc);
3977}
3978
3979static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
3980{
3981 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
3982
3983 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
3984}
3985
3986static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
3987 u32 rx_buf_sz)
3988{
3989 desc->addr = cpu_to_le64(mapping);
3990 wmb();
3991 rtl8169_mark_to_asic(desc, rx_buf_sz);
3992}
3993
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003994static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003996 return (void *)ALIGN((long)data, 16);
3997}
3998
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003999static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
4000 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004001{
4002 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004004 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004005 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004006 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004008 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
4009 if (!data)
4010 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004011
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004012 if (rtl8169_align(data) != data) {
4013 kfree(data);
4014 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4015 if (!data)
4016 return NULL;
4017 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004018
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004019 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004020 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004021 if (unlikely(dma_mapping_error(d, mapping))) {
4022 if (net_ratelimit())
4023 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004024 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
4027 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004028 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004029
4030err_out:
4031 kfree(data);
4032 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033}
4034
4035static void rtl8169_rx_clear(struct rtl8169_private *tp)
4036{
Francois Romieu07d3f512007-02-21 22:40:46 +01004037 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
4039 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004040 if (tp->Rx_databuff[i]) {
4041 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 tp->RxDescArray + i);
4043 }
4044 }
4045}
4046
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004047static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004049 desc->opts1 |= cpu_to_le32(RingEnd);
4050}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004051
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004052static int rtl8169_rx_fill(struct rtl8169_private *tp)
4053{
4054 unsigned int i;
4055
4056 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004057 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004058
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004059 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004061
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004062 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004063 if (!data) {
4064 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004065 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004066 }
4067 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004070 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4071 return 0;
4072
4073err_out:
4074 rtl8169_rx_clear(tp);
4075 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076}
4077
4078static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4079{
4080 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
4081}
4082
4083static int rtl8169_init_ring(struct net_device *dev)
4084{
4085 struct rtl8169_private *tp = netdev_priv(dev);
4086
4087 rtl8169_init_ring_indexes(tp);
4088
4089 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004090 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004092 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093}
4094
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004095static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 struct TxDesc *desc)
4097{
4098 unsigned int len = tx_skb->len;
4099
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004100 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4101
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 desc->opts1 = 0x00;
4103 desc->opts2 = 0x00;
4104 desc->addr = 0x00;
4105 tx_skb->len = 0;
4106}
4107
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004108static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4109 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110{
4111 unsigned int i;
4112
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004113 for (i = 0; i < n; i++) {
4114 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 struct ring_info *tx_skb = tp->tx_skb + entry;
4116 unsigned int len = tx_skb->len;
4117
4118 if (len) {
4119 struct sk_buff *skb = tx_skb->skb;
4120
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004121 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 tp->TxDescArray + entry);
4123 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004124 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 dev_kfree_skb(skb);
4126 tx_skb->skb = NULL;
4127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 }
4129 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004130}
4131
4132static void rtl8169_tx_clear(struct rtl8169_private *tp)
4133{
4134 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 tp->cur_tx = tp->dirty_tx = 0;
4136}
4137
David Howellsc4028952006-11-22 14:57:56 +00004138static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139{
4140 struct rtl8169_private *tp = netdev_priv(dev);
4141
David Howellsc4028952006-11-22 14:57:56 +00004142 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 schedule_delayed_work(&tp->task, 4);
4144}
4145
4146static void rtl8169_wait_for_quiescence(struct net_device *dev)
4147{
4148 struct rtl8169_private *tp = netdev_priv(dev);
4149 void __iomem *ioaddr = tp->mmio_addr;
4150
4151 synchronize_irq(dev->irq);
4152
4153 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004154 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155
4156 rtl8169_irq_mask_and_ack(ioaddr);
4157
David S. Millerd1d08d12008-01-07 20:53:33 -08004158 tp->intr_mask = 0xffff;
4159 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004160 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161}
4162
David Howellsc4028952006-11-22 14:57:56 +00004163static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164{
David Howellsc4028952006-11-22 14:57:56 +00004165 struct rtl8169_private *tp =
4166 container_of(work, struct rtl8169_private, task.work);
4167 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 int ret;
4169
Francois Romieueb2a0212007-02-15 23:37:21 +01004170 rtnl_lock();
4171
4172 if (!netif_running(dev))
4173 goto out_unlock;
4174
4175 rtl8169_wait_for_quiescence(dev);
4176 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
4178 ret = rtl8169_open(dev);
4179 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004180 if (net_ratelimit())
4181 netif_err(tp, drv, dev,
4182 "reinit failure (status = %d). Rescheduling\n",
4183 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 rtl8169_schedule_work(dev, rtl8169_reinit_task);
4185 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004186
4187out_unlock:
4188 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189}
4190
David Howellsc4028952006-11-22 14:57:56 +00004191static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192{
David Howellsc4028952006-11-22 14:57:56 +00004193 struct rtl8169_private *tp =
4194 container_of(work, struct rtl8169_private, task.work);
4195 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196
Francois Romieueb2a0212007-02-15 23:37:21 +01004197 rtnl_lock();
4198
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01004200 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201
4202 rtl8169_wait_for_quiescence(dev);
4203
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004204 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 rtl8169_tx_clear(tp);
4206
4207 if (tp->dirty_rx == tp->cur_rx) {
4208 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004209 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 netif_wake_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004211 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 } else {
Joe Perchesbf82c182010-02-09 11:49:50 +00004213 if (net_ratelimit())
4214 netif_emerg(tp, intr, dev, "Rx buffers shortage\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 rtl8169_schedule_work(dev, rtl8169_reset_task);
4216 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004217
4218out_unlock:
4219 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220}
4221
4222static void rtl8169_tx_timeout(struct net_device *dev)
4223{
4224 struct rtl8169_private *tp = netdev_priv(dev);
4225
françois romieue6de30d2011-01-03 15:08:37 +00004226 rtl8169_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227
4228 /* Let's wait a bit while any (async) irq lands on */
4229 rtl8169_schedule_work(dev, rtl8169_reset_task);
4230}
4231
4232static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
4233 u32 opts1)
4234{
4235 struct skb_shared_info *info = skb_shinfo(skb);
4236 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04004237 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004238 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
4240 entry = tp->cur_tx;
4241 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
4242 skb_frag_t *frag = info->frags + cur_frag;
4243 dma_addr_t mapping;
4244 u32 status, len;
4245 void *addr;
4246
4247 entry = (entry + 1) % NUM_TX_DESC;
4248
4249 txd = tp->TxDescArray + entry;
4250 len = frag->size;
4251 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004252 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004253 if (unlikely(dma_mapping_error(d, mapping))) {
4254 if (net_ratelimit())
4255 netif_err(tp, drv, tp->dev,
4256 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004257 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
4260 /* anti gcc 2.95.3 bugware (sic) */
4261 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4262
4263 txd->opts1 = cpu_to_le32(status);
4264 txd->addr = cpu_to_le64(mapping);
4265
4266 tp->tx_skb[entry].len = len;
4267 }
4268
4269 if (cur_frag) {
4270 tp->tx_skb[entry].skb = skb;
4271 txd->opts1 |= cpu_to_le32(LastFrag);
4272 }
4273
4274 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004275
4276err_out:
4277 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
4278 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279}
4280
4281static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
4282{
4283 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07004284 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285
4286 if (mss)
4287 return LargeSend | ((mss & MSSMask) << MSSShift);
4288 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07004289 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004290 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291
4292 if (ip->protocol == IPPROTO_TCP)
4293 return IPCS | TCPCS;
4294 else if (ip->protocol == IPPROTO_UDP)
4295 return IPCS | UDPCS;
4296 WARN_ON(1); /* we need a WARN() */
4297 }
4298 return 0;
4299}
4300
Stephen Hemminger613573252009-08-31 19:50:58 +00004301static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
4302 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303{
4304 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004305 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 struct TxDesc *txd = tp->TxDescArray + entry;
4307 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004308 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 dma_addr_t mapping;
4310 u32 status, len;
4311 u32 opts1;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004312 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02004313
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004315 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004316 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 }
4318
4319 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004320 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004322 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004323 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004324 if (unlikely(dma_mapping_error(d, mapping))) {
4325 if (net_ratelimit())
4326 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004327 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329
4330 tp->tx_skb[entry].len = len;
4331 txd->addr = cpu_to_le64(mapping);
4332 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
4333
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004334 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
4335
4336 frags = rtl8169_xmit_frags(tp, skb, opts1);
4337 if (frags < 0)
4338 goto err_dma_1;
4339 else if (frags)
4340 opts1 |= FirstFrag;
4341 else {
4342 opts1 |= FirstFrag | LastFrag;
4343 tp->tx_skb[entry].skb = skb;
4344 }
4345
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 wmb();
4347
4348 /* anti gcc 2.95.3 bugware (sic) */
4349 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4350 txd->opts1 = cpu_to_le32(status);
4351
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 tp->cur_tx += frags + 1;
4353
David Dillow4c020a92010-03-03 16:33:10 +00004354 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355
Francois Romieu275391a2007-02-23 23:50:28 +01004356 RTL_W8(TxPoll, NPQ); /* set polling bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357
4358 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
4359 netif_stop_queue(dev);
4360 smp_rmb();
4361 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
4362 netif_wake_queue(dev);
4363 }
4364
Stephen Hemminger613573252009-08-31 19:50:58 +00004365 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004367err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004368 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004369err_dma_0:
4370 dev_kfree_skb(skb);
4371 dev->stats.tx_dropped++;
4372 return NETDEV_TX_OK;
4373
4374err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004376 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00004377 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378}
4379
4380static void rtl8169_pcierr_interrupt(struct net_device *dev)
4381{
4382 struct rtl8169_private *tp = netdev_priv(dev);
4383 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 u16 pci_status, pci_cmd;
4385
4386 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
4387 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
4388
Joe Perchesbf82c182010-02-09 11:49:50 +00004389 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4390 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391
4392 /*
4393 * The recovery sequence below admits a very elaborated explanation:
4394 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01004395 * - I did not see what else could be done;
4396 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 *
4398 * Feel free to adjust to your needs.
4399 */
Francois Romieua27993f2006-12-18 00:04:19 +01004400 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01004401 pci_cmd &= ~PCI_COMMAND_PARITY;
4402 else
4403 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
4404
4405 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
4407 pci_write_config_word(pdev, PCI_STATUS,
4408 pci_status & (PCI_STATUS_DETECTED_PARITY |
4409 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
4410 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
4411
4412 /* The infamous DAC f*ckup only happens at boot time */
4413 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00004414 void __iomem *ioaddr = tp->mmio_addr;
4415
Joe Perchesbf82c182010-02-09 11:49:50 +00004416 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 tp->cp_cmd &= ~PCIDAC;
4418 RTL_W16(CPlusCmd, tp->cp_cmd);
4419 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 }
4421
françois romieue6de30d2011-01-03 15:08:37 +00004422 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01004423
4424 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425}
4426
Francois Romieu07d3f512007-02-21 22:40:46 +01004427static void rtl8169_tx_interrupt(struct net_device *dev,
4428 struct rtl8169_private *tp,
4429 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430{
4431 unsigned int dirty_tx, tx_left;
4432
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 dirty_tx = tp->dirty_tx;
4434 smp_rmb();
4435 tx_left = tp->cur_tx - dirty_tx;
4436
4437 while (tx_left > 0) {
4438 unsigned int entry = dirty_tx % NUM_TX_DESC;
4439 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 u32 status;
4441
4442 rmb();
4443 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
4444 if (status & DescOwn)
4445 break;
4446
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004447 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
4448 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004450 dev->stats.tx_packets++;
4451 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00004452 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 tx_skb->skb = NULL;
4454 }
4455 dirty_tx++;
4456 tx_left--;
4457 }
4458
4459 if (tp->dirty_tx != dirty_tx) {
4460 tp->dirty_tx = dirty_tx;
4461 smp_wmb();
4462 if (netif_queue_stopped(dev) &&
4463 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
4464 netif_wake_queue(dev);
4465 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02004466 /*
4467 * 8168 hack: TxPoll requests are lost when the Tx packets are
4468 * too close. Let's kick an extra TxPoll request when a burst
4469 * of start_xmit activity is detected (if it is not detected,
4470 * it is slow enough). -- FR
4471 */
4472 smp_rmb();
4473 if (tp->cur_tx != dirty_tx)
4474 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 }
4476}
4477
Francois Romieu126fa4b2005-05-12 20:09:17 -04004478static inline int rtl8169_fragmented_frame(u32 status)
4479{
4480 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4481}
4482
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004483static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 u32 status = opts1 & RxProtoMask;
4486
4487 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00004488 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 skb->ip_summed = CHECKSUM_UNNECESSARY;
4490 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07004491 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492}
4493
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004494static struct sk_buff *rtl8169_try_rx_copy(void *data,
4495 struct rtl8169_private *tp,
4496 int pkt_size,
4497 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004499 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004500 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004502 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004503 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004504 prefetch(data);
4505 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
4506 if (skb)
4507 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004508 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
4509
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004510 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511}
4512
Eric Dumazet630b9432010-03-31 02:08:31 +00004513/*
4514 * Warning : rtl8169_rx_interrupt() might be called :
4515 * 1) from NAPI (softirq) context
4516 * (polling = 1 : we should call netif_receive_skb())
4517 * 2) from process context (rtl8169_reset_task())
4518 * (polling = 0 : we must call netif_rx() instead)
4519 */
Francois Romieu07d3f512007-02-21 22:40:46 +01004520static int rtl8169_rx_interrupt(struct net_device *dev,
4521 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004522 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523{
4524 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004525 unsigned int count;
Eric Dumazet630b9432010-03-31 02:08:31 +00004526 int polling = (budget != ~(u32)0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 cur_rx = tp->cur_rx;
4529 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02004530 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004532 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004534 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 u32 status;
4536
4537 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04004538 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539
4540 if (status & DescOwn)
4541 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004542 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004543 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
4544 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004545 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02004547 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02004549 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004550 if (status & RxFOVF) {
4551 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004552 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004553 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004554 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004556 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004557 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Francois Romieu126fa4b2005-05-12 20:09:17 -04004560 /*
4561 * The driver does not support incoming fragmented
4562 * frames. They are seen as a symptom of over-mtu
4563 * sized frames.
4564 */
4565 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02004566 dev->stats.rx_dropped++;
4567 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004568 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004569 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004570 }
4571
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004572 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
4573 tp, pkt_size, addr);
4574 rtl8169_mark_to_asic(desc, rx_buf_sz);
4575 if (!skb) {
4576 dev->stats.rx_dropped++;
4577 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 }
4579
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004580 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 skb_put(skb, pkt_size);
4582 skb->protocol = eth_type_trans(skb, dev);
4583
Eric Dumazet630b9432010-03-31 02:08:31 +00004584 if (rtl8169_rx_vlan_skb(tp, desc, skb, polling) < 0) {
4585 if (likely(polling))
Eric Dumazet2edae082010-09-06 18:46:39 +00004586 napi_gro_receive(&tp->napi, skb);
Eric Dumazet630b9432010-03-31 02:08:31 +00004587 else
4588 netif_rx(skb);
4589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590
Francois Romieucebf8cc2007-10-18 12:06:54 +02004591 dev->stats.rx_bytes += pkt_size;
4592 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 }
Francois Romieu6dccd162007-02-13 23:38:05 +01004594
4595 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00004596 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01004597 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
4598 desc->opts2 = 0;
4599 cur_rx++;
4600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 }
4602
4603 count = cur_rx - tp->cur_rx;
4604 tp->cur_rx = cur_rx;
4605
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004606 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
4608 return count;
4609}
4610
Francois Romieu07d3f512007-02-21 22:40:46 +01004611static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612{
Francois Romieu07d3f512007-02-21 22:40:46 +01004613 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02004617 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
David Dillowf11a3772009-05-22 15:29:34 +00004619 /* loop handling interrupts until we have no new ones or
4620 * we hit a invalid/hotplug case.
4621 */
Francois Romieu865c6522008-05-11 14:51:00 +02004622 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00004623 while (status && status != 0xffff) {
4624 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625
David Dillowf11a3772009-05-22 15:29:34 +00004626 /* Handle all of the error cases first. These will reset
4627 * the chip, so just exit the loop.
4628 */
4629 if (unlikely(!netif_running(dev))) {
4630 rtl8169_asic_down(ioaddr);
4631 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 }
David Dillowf11a3772009-05-22 15:29:34 +00004633
Francois Romieu1519e572011-02-03 12:02:36 +01004634 if (unlikely(status & RxFIFOOver)) {
4635 switch (tp->mac_version) {
4636 /* Work around for rx fifo overflow */
4637 case RTL_GIGA_MAC_VER_11:
4638 case RTL_GIGA_MAC_VER_22:
4639 case RTL_GIGA_MAC_VER_26:
4640 netif_stop_queue(dev);
4641 rtl8169_tx_timeout(dev);
4642 goto done;
Francois Romieuf60ac8e2011-02-03 17:27:52 +01004643 /* Testers needed. */
4644 case RTL_GIGA_MAC_VER_17:
4645 case RTL_GIGA_MAC_VER_19:
4646 case RTL_GIGA_MAC_VER_20:
4647 case RTL_GIGA_MAC_VER_21:
4648 case RTL_GIGA_MAC_VER_23:
4649 case RTL_GIGA_MAC_VER_24:
4650 case RTL_GIGA_MAC_VER_27:
4651 case RTL_GIGA_MAC_VER_28:
Francois Romieu1519e572011-02-03 12:02:36 +01004652 /* Experimental science. Pktgen proof. */
4653 case RTL_GIGA_MAC_VER_12:
4654 case RTL_GIGA_MAC_VER_25:
4655 if (status == RxFIFOOver)
4656 goto done;
4657 break;
4658 default:
4659 break;
4660 }
David Dillowf11a3772009-05-22 15:29:34 +00004661 }
4662
4663 if (unlikely(status & SYSErr)) {
4664 rtl8169_pcierr_interrupt(dev);
4665 break;
4666 }
4667
4668 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004669 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00004670
4671 /* We need to see the lastest version of tp->intr_mask to
4672 * avoid ignoring an MSI interrupt and having to wait for
4673 * another event which may never come.
4674 */
4675 smp_rmb();
4676 if (status & tp->intr_mask & tp->napi_event) {
4677 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
4678 tp->intr_mask = ~tp->napi_event;
4679
4680 if (likely(napi_schedule_prep(&tp->napi)))
4681 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00004682 else
4683 netif_info(tp, intr, dev,
4684 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00004685 }
4686
4687 /* We only get a new MSI interrupt when all active irq
4688 * sources on the chip have been acknowledged. So, ack
4689 * everything we've seen and check if new sources have become
4690 * active to avoid blocking all interrupts from the chip.
4691 */
4692 RTL_W16(IntrStatus,
4693 (status & RxFIFOOver) ? (status | RxOverflow) : status);
4694 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 }
Francois Romieu1519e572011-02-03 12:02:36 +01004696done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 return IRQ_RETVAL(handled);
4698}
4699
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004700static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004702 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
4703 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004705 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004707 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 rtl8169_tx_interrupt(dev, tp, ioaddr);
4709
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004710 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004711 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00004712
4713 /* We need for force the visibility of tp->intr_mask
4714 * for other CPUs, as we can loose an MSI interrupt
4715 * and potentially wait for a retransmit timeout if we don't.
4716 * The posted write to IntrMask is safe, as it will
4717 * eventually make it to the chip and we won't loose anything
4718 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 */
David Dillowf11a3772009-05-22 15:29:34 +00004720 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00004721 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01004722 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 }
4724
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004725 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
Francois Romieu523a6092008-09-10 22:28:56 +02004728static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
4729{
4730 struct rtl8169_private *tp = netdev_priv(dev);
4731
4732 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
4733 return;
4734
4735 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
4736 RTL_W32(RxMissed, 0);
4737}
4738
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739static void rtl8169_down(struct net_device *dev)
4740{
4741 struct rtl8169_private *tp = netdev_priv(dev);
4742 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
4744 rtl8169_delete_timer(dev);
4745
4746 netif_stop_queue(dev);
4747
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004748 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004749
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 spin_lock_irq(&tp->lock);
4751
4752 rtl8169_asic_down(ioaddr);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004753 /*
4754 * At this point device interrupts can not be enabled in any function,
4755 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
4756 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
4757 */
Francois Romieu523a6092008-09-10 22:28:56 +02004758 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
4760 spin_unlock_irq(&tp->lock);
4761
4762 synchronize_irq(dev->irq);
4763
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004765 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 rtl8169_tx_clear(tp);
4768
4769 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00004770
4771 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772}
4773
4774static int rtl8169_close(struct net_device *dev)
4775{
4776 struct rtl8169_private *tp = netdev_priv(dev);
4777 struct pci_dev *pdev = tp->pci_dev;
4778
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004779 pm_runtime_get_sync(&pdev->dev);
4780
Ivan Vecera355423d2009-02-06 21:49:57 -08004781 /* update counters before going down */
4782 rtl8169_update_counters(dev);
4783
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 rtl8169_down(dev);
4785
4786 free_irq(dev->irq, dev);
4787
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004788 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
4789 tp->RxPhyAddr);
4790 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
4791 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 tp->TxDescArray = NULL;
4793 tp->RxDescArray = NULL;
4794
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004795 pm_runtime_put_sync(&pdev->dev);
4796
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 return 0;
4798}
4799
Francois Romieu07ce4062007-02-23 23:36:39 +01004800static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801{
4802 struct rtl8169_private *tp = netdev_priv(dev);
4803 void __iomem *ioaddr = tp->mmio_addr;
4804 unsigned long flags;
4805 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01004806 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 u32 tmp = 0;
4808
4809 if (dev->flags & IFF_PROMISC) {
4810 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00004811 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 rx_mode =
4813 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4814 AcceptAllPhys;
4815 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00004816 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00004817 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 /* Too many to filter perfectly -- accept all multicasts. */
4819 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4820 mc_filter[1] = mc_filter[0] = 0xffffffff;
4821 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00004822 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01004823
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 rx_mode = AcceptBroadcast | AcceptMyPhys;
4825 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00004826 netdev_for_each_mc_addr(ha, dev) {
4827 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4829 rx_mode |= AcceptMulticast;
4830 }
4831 }
4832
4833 spin_lock_irqsave(&tp->lock, flags);
4834
4835 tmp = rtl8169_rx_config | rx_mode |
4836 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
4837
Francois Romieuf887cce2008-07-17 22:24:18 +02004838 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01004839 u32 data = mc_filter[0];
4840
4841 mc_filter[0] = swab32(mc_filter[1]);
4842 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02004843 }
4844
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07004846 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
Francois Romieu57a9f232007-06-04 22:10:15 +02004848 RTL_W32(RxConfig, tmp);
4849
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 spin_unlock_irqrestore(&tp->lock, flags);
4851}
4852
4853/**
4854 * rtl8169_get_stats - Get rtl8169 read/write statistics
4855 * @dev: The Ethernet Device to get statistics for
4856 *
4857 * Get TX/RX statistics for rtl8169
4858 */
4859static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
4860{
4861 struct rtl8169_private *tp = netdev_priv(dev);
4862 void __iomem *ioaddr = tp->mmio_addr;
4863 unsigned long flags;
4864
4865 if (netif_running(dev)) {
4866 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02004867 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 spin_unlock_irqrestore(&tp->lock, flags);
4869 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02004870
Francois Romieucebf8cc2007-10-18 12:06:54 +02004871 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872}
4873
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004874static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01004875{
françois romieu065c27c2011-01-03 15:08:12 +00004876 struct rtl8169_private *tp = netdev_priv(dev);
4877
Francois Romieu5d06a992006-02-23 00:47:58 +01004878 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004879 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01004880
françois romieu065c27c2011-01-03 15:08:12 +00004881 rtl_pll_power_down(tp);
4882
Francois Romieu5d06a992006-02-23 00:47:58 +01004883 netif_device_detach(dev);
4884 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004885}
Francois Romieu5d06a992006-02-23 00:47:58 +01004886
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004887#ifdef CONFIG_PM
4888
4889static int rtl8169_suspend(struct device *device)
4890{
4891 struct pci_dev *pdev = to_pci_dev(device);
4892 struct net_device *dev = pci_get_drvdata(pdev);
4893
4894 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02004895
Francois Romieu5d06a992006-02-23 00:47:58 +01004896 return 0;
4897}
4898
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004899static void __rtl8169_resume(struct net_device *dev)
4900{
françois romieu065c27c2011-01-03 15:08:12 +00004901 struct rtl8169_private *tp = netdev_priv(dev);
4902
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004903 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00004904
4905 rtl_pll_power_up(tp);
4906
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004907 rtl8169_schedule_work(dev, rtl8169_reset_task);
4908}
4909
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004910static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01004911{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004912 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01004913 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00004914 struct rtl8169_private *tp = netdev_priv(dev);
4915
4916 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01004917
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004918 if (netif_running(dev))
4919 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01004920
Francois Romieu5d06a992006-02-23 00:47:58 +01004921 return 0;
4922}
4923
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004924static int rtl8169_runtime_suspend(struct device *device)
4925{
4926 struct pci_dev *pdev = to_pci_dev(device);
4927 struct net_device *dev = pci_get_drvdata(pdev);
4928 struct rtl8169_private *tp = netdev_priv(dev);
4929
4930 if (!tp->TxDescArray)
4931 return 0;
4932
4933 spin_lock_irq(&tp->lock);
4934 tp->saved_wolopts = __rtl8169_get_wol(tp);
4935 __rtl8169_set_wol(tp, WAKE_ANY);
4936 spin_unlock_irq(&tp->lock);
4937
4938 rtl8169_net_suspend(dev);
4939
4940 return 0;
4941}
4942
4943static int rtl8169_runtime_resume(struct device *device)
4944{
4945 struct pci_dev *pdev = to_pci_dev(device);
4946 struct net_device *dev = pci_get_drvdata(pdev);
4947 struct rtl8169_private *tp = netdev_priv(dev);
4948
4949 if (!tp->TxDescArray)
4950 return 0;
4951
4952 spin_lock_irq(&tp->lock);
4953 __rtl8169_set_wol(tp, tp->saved_wolopts);
4954 tp->saved_wolopts = 0;
4955 spin_unlock_irq(&tp->lock);
4956
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00004957 rtl8169_init_phy(dev, tp);
4958
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004959 __rtl8169_resume(dev);
4960
4961 return 0;
4962}
4963
4964static int rtl8169_runtime_idle(struct device *device)
4965{
4966 struct pci_dev *pdev = to_pci_dev(device);
4967 struct net_device *dev = pci_get_drvdata(pdev);
4968 struct rtl8169_private *tp = netdev_priv(dev);
4969
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004970 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004971}
4972
Alexey Dobriyan47145212009-12-14 18:00:08 -08004973static const struct dev_pm_ops rtl8169_pm_ops = {
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004974 .suspend = rtl8169_suspend,
4975 .resume = rtl8169_resume,
4976 .freeze = rtl8169_suspend,
4977 .thaw = rtl8169_resume,
4978 .poweroff = rtl8169_suspend,
4979 .restore = rtl8169_resume,
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004980 .runtime_suspend = rtl8169_runtime_suspend,
4981 .runtime_resume = rtl8169_runtime_resume,
4982 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004983};
4984
4985#define RTL8169_PM_OPS (&rtl8169_pm_ops)
4986
4987#else /* !CONFIG_PM */
4988
4989#define RTL8169_PM_OPS NULL
4990
4991#endif /* !CONFIG_PM */
4992
Francois Romieu1765f952008-09-13 17:21:40 +02004993static void rtl_shutdown(struct pci_dev *pdev)
4994{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004995 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00004996 struct rtl8169_private *tp = netdev_priv(dev);
4997 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02004998
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004999 rtl8169_net_suspend(dev);
5000
Ivan Veceracc098dc2009-11-29 23:12:52 -08005001 /* restore original MAC address */
5002 rtl_rar_set(tp, dev->perm_addr);
5003
françois romieu4bb3f522009-06-17 11:41:45 +00005004 spin_lock_irq(&tp->lock);
5005
5006 rtl8169_asic_down(ioaddr);
5007
5008 spin_unlock_irq(&tp->lock);
5009
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005010 if (system_state == SYSTEM_POWER_OFF) {
françois romieuca52efd2009-07-24 12:34:19 +00005011 /* WoL fails with some 8168 when the receiver is disabled. */
5012 if (tp->features & RTL_FEATURE_WOL) {
5013 pci_clear_master(pdev);
5014
5015 RTL_W8(ChipCmd, CmdRxEnb);
5016 /* PCI commit */
5017 RTL_R8(ChipCmd);
5018 }
5019
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005020 pci_wake_from_d3(pdev, true);
5021 pci_set_power_state(pdev, PCI_D3hot);
5022 }
5023}
Francois Romieu5d06a992006-02-23 00:47:58 +01005024
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025static struct pci_driver rtl8169_pci_driver = {
5026 .name = MODULENAME,
5027 .id_table = rtl8169_pci_tbl,
5028 .probe = rtl8169_init_one,
5029 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02005030 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005031 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032};
5033
Francois Romieu07d3f512007-02-21 22:40:46 +01005034static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035{
Jeff Garzik29917622006-08-19 17:48:59 -04005036 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037}
5038
Francois Romieu07d3f512007-02-21 22:40:46 +01005039static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040{
5041 pci_unregister_driver(&rtl8169_pci_driver);
5042}
5043
5044module_init(rtl8169_init_module);
5045module_exit(rtl8169_cleanup_module);