blob: bb8645ab247cc3e586932c9f5f8143ce381a50d1 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557};
558
Ralf Baechle979b6c12005-06-13 14:30:40 -0700559MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700562MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200563module_param_named(debug, debug.msg_enable, int, 0);
564MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565MODULE_LICENSE("GPL");
566MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000567MODULE_FIRMWARE(FIRMWARE_8168D_1);
568MODULE_FIRMWARE(FIRMWARE_8168D_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570static int rtl8169_open(struct net_device *dev);
Stephen Hemminger613573252009-08-31 19:50:58 +0000571static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
572 struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100573static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100575static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100577static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200579static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700581 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200582static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200584static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700585static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200588 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
françois romieub646d902011-01-03 15:08:21 +0000590static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
591{
592 void __iomem *ioaddr = tp->mmio_addr;
593 int i;
594
595 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
596 for (i = 0; i < 20; i++) {
597 udelay(100);
598 if (RTL_R32(OCPAR) & OCPAR_FLAG)
599 break;
600 }
601 return RTL_R32(OCPDR);
602}
603
604static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
605{
606 void __iomem *ioaddr = tp->mmio_addr;
607 int i;
608
609 RTL_W32(OCPDR, data);
610 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
611 for (i = 0; i < 20; i++) {
612 udelay(100);
613 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
614 break;
615 }
616}
617
618static void rtl8168_oob_notify(void __iomem *ioaddr, u8 cmd)
619{
620 int i;
621
622 RTL_W8(ERIDR, cmd);
623 RTL_W32(ERIAR, 0x800010e8);
624 msleep(2);
625 for (i = 0; i < 5; i++) {
626 udelay(100);
627 if (!(RTL_R32(ERIDR) & ERIAR_FLAG))
628 break;
629 }
630
631 ocp_write(ioaddr, 0x1, 0x30, 0x00000001);
632}
633
634#define OOB_CMD_RESET 0x00
635#define OOB_CMD_DRIVER_START 0x05
636#define OOB_CMD_DRIVER_STOP 0x06
637
638static void rtl8168_driver_start(struct rtl8169_private *tp)
639{
640 int i;
641
642 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
643
644 for (i = 0; i < 10; i++) {
645 msleep(10);
646 if (ocp_read(tp, 0x0f, 0x0010) & 0x00000800)
647 break;
648 }
649}
650
651static void rtl8168_driver_stop(struct rtl8169_private *tp)
652{
653 int i;
654
655 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
656
657 for (i = 0; i < 10; i++) {
658 msleep(10);
659 if ((ocp_read(tp, 0x0f, 0x0010) & 0x00000800) == 0)
660 break;
661 }
662}
663
664
françois romieu4da19632011-01-03 15:07:55 +0000665static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 int i;
668
Francois Romieua6baf3a2007-11-08 23:23:21 +0100669 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Francois Romieu23714082006-01-29 00:49:09 +0100671 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100672 /*
673 * Check if the RTL8169 has completed writing to the specified
674 * MII register.
675 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200676 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 break;
Francois Romieu23714082006-01-29 00:49:09 +0100678 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700680 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700681 * According to hardware specs a 20us delay is required after write
682 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700683 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700684 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
françois romieu4da19632011-01-03 15:07:55 +0000687static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 int i, value = -1;
690
Francois Romieua6baf3a2007-11-08 23:23:21 +0100691 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Francois Romieu23714082006-01-29 00:49:09 +0100693 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100694 /*
695 * Check if the RTL8169 has completed retrieving data from
696 * the specified MII register.
697 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100699 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 break;
701 }
Francois Romieu23714082006-01-29 00:49:09 +0100702 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700704 /*
705 * According to hardware specs a 20us delay is required after read
706 * complete indication, but before sending next command.
707 */
708 udelay(20);
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return value;
711}
712
françois romieuc0e45c12011-01-03 15:08:04 +0000713static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
714{
715 int i;
716
717 RTL_W32(OCPDR, data |
718 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
719 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
720 RTL_W32(EPHY_RXER_NUM, 0);
721
722 for (i = 0; i < 100; i++) {
723 mdelay(1);
724 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
725 break;
726 }
727}
728
729static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
730{
731 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
732 (value & OCPDR_DATA_MASK));
733}
734
735static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
736{
737 int i;
738
739 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
740
741 mdelay(1);
742 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
743 RTL_W32(EPHY_RXER_NUM, 0);
744
745 for (i = 0; i < 100; i++) {
746 mdelay(1);
747 if (RTL_R32(OCPAR) & OCPAR_FLAG)
748 break;
749 }
750
751 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
752}
753
françois romieue6de30d2011-01-03 15:08:37 +0000754#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
755
756static void r8168dp_2_mdio_start(void __iomem *ioaddr)
757{
758 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
759}
760
761static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
762{
763 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
764}
765
766static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
767{
768 r8168dp_2_mdio_start(ioaddr);
769
770 r8169_mdio_write(ioaddr, reg_addr, value);
771
772 r8168dp_2_mdio_stop(ioaddr);
773}
774
775static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
776{
777 int value;
778
779 r8168dp_2_mdio_start(ioaddr);
780
781 value = r8169_mdio_read(ioaddr, reg_addr);
782
783 r8168dp_2_mdio_stop(ioaddr);
784
785 return value;
786}
787
françois romieu4da19632011-01-03 15:07:55 +0000788static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +0200789{
françois romieuc0e45c12011-01-03 15:08:04 +0000790 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +0200791}
792
françois romieu4da19632011-01-03 15:07:55 +0000793static int rtl_readphy(struct rtl8169_private *tp, int location)
794{
françois romieuc0e45c12011-01-03 15:08:04 +0000795 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +0000796}
797
798static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
799{
800 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
801}
802
803static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +0000804{
805 int val;
806
françois romieu4da19632011-01-03 15:07:55 +0000807 val = rtl_readphy(tp, reg_addr);
808 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +0000809}
810
Francois Romieuccdffb92008-07-26 14:26:06 +0200811static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
812 int val)
813{
814 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200815
françois romieu4da19632011-01-03 15:07:55 +0000816 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +0200817}
818
819static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
820{
821 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200822
françois romieu4da19632011-01-03 15:07:55 +0000823 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +0200824}
825
Francois Romieudacf8152008-08-02 20:44:13 +0200826static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
827{
828 unsigned int i;
829
830 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
831 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
832
833 for (i = 0; i < 100; i++) {
834 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
835 break;
836 udelay(10);
837 }
838}
839
840static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
841{
842 u16 value = 0xffff;
843 unsigned int i;
844
845 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
846
847 for (i = 0; i < 100; i++) {
848 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
849 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
850 break;
851 }
852 udelay(10);
853 }
854
855 return value;
856}
857
858static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
859{
860 unsigned int i;
861
862 RTL_W32(CSIDR, value);
863 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
864 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
865
866 for (i = 0; i < 100; i++) {
867 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
868 break;
869 udelay(10);
870 }
871}
872
873static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
874{
875 u32 value = ~0x00;
876 unsigned int i;
877
878 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
879 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
880
881 for (i = 0; i < 100; i++) {
882 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
883 value = RTL_R32(CSIDR);
884 break;
885 }
886 udelay(10);
887 }
888
889 return value;
890}
891
françois romieudaf9df62009-10-07 12:44:20 +0000892static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
893{
894 u8 value = 0xff;
895 unsigned int i;
896
897 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
898
899 for (i = 0; i < 300; i++) {
900 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
901 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
902 break;
903 }
904 udelay(100);
905 }
906
907 return value;
908}
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
911{
912 RTL_W16(IntrMask, 0x0000);
913
914 RTL_W16(IntrStatus, 0xffff);
915}
916
917static void rtl8169_asic_down(void __iomem *ioaddr)
918{
919 RTL_W8(ChipCmd, 0x00);
920 rtl8169_irq_mask_and_ack(ioaddr);
921 RTL_R16(CPlusCmd);
922}
923
françois romieu4da19632011-01-03 15:07:55 +0000924static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
françois romieu4da19632011-01-03 15:07:55 +0000926 void __iomem *ioaddr = tp->mmio_addr;
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return RTL_R32(TBICSR) & TBIReset;
929}
930
françois romieu4da19632011-01-03 15:07:55 +0000931static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
françois romieu4da19632011-01-03 15:07:55 +0000933 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
936static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
937{
938 return RTL_R32(TBICSR) & TBILinkOk;
939}
940
941static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
942{
943 return RTL_R8(PHYstatus) & LinkStatus;
944}
945
françois romieu4da19632011-01-03 15:07:55 +0000946static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
françois romieu4da19632011-01-03 15:07:55 +0000948 void __iomem *ioaddr = tp->mmio_addr;
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
951}
952
françois romieu4da19632011-01-03 15:07:55 +0000953static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 unsigned int val;
956
françois romieu4da19632011-01-03 15:07:55 +0000957 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
958 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000961static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieu07d3f512007-02-21 22:40:46 +0100962 struct rtl8169_private *tp,
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000963 void __iomem *ioaddr,
964 bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 unsigned long flags;
967
968 spin_lock_irqsave(&tp->lock, flags);
969 if (tp->link_ok(ioaddr)) {
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000970 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000971 if (pm)
972 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 netif_carrier_on(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +0000974 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200975 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +0000977 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000978 if (pm)
979 pm_schedule_suspend(&tp->pci_dev->dev, 100);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 spin_unlock_irqrestore(&tp->lock, flags);
982}
983
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000984static void rtl8169_check_link_status(struct net_device *dev,
985 struct rtl8169_private *tp,
986 void __iomem *ioaddr)
987{
988 __rtl8169_check_link_status(dev, tp, ioaddr, false);
989}
990
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000991#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
992
993static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
994{
995 void __iomem *ioaddr = tp->mmio_addr;
996 u8 options;
997 u32 wolopts = 0;
998
999 options = RTL_R8(Config1);
1000 if (!(options & PMEnable))
1001 return 0;
1002
1003 options = RTL_R8(Config3);
1004 if (options & LinkUp)
1005 wolopts |= WAKE_PHY;
1006 if (options & MagicPacket)
1007 wolopts |= WAKE_MAGIC;
1008
1009 options = RTL_R8(Config5);
1010 if (options & UWF)
1011 wolopts |= WAKE_UCAST;
1012 if (options & BWF)
1013 wolopts |= WAKE_BCAST;
1014 if (options & MWF)
1015 wolopts |= WAKE_MCAST;
1016
1017 return wolopts;
1018}
1019
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001020static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1021{
1022 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001023
1024 spin_lock_irq(&tp->lock);
1025
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001026 wol->supported = WAKE_ANY;
1027 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001028
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001029 spin_unlock_irq(&tp->lock);
1030}
1031
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001032static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001033{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001034 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001035 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001036 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001037 u32 opt;
1038 u16 reg;
1039 u8 mask;
1040 } cfg[] = {
1041 { WAKE_ANY, Config1, PMEnable },
1042 { WAKE_PHY, Config3, LinkUp },
1043 { WAKE_MAGIC, Config3, MagicPacket },
1044 { WAKE_UCAST, Config5, UWF },
1045 { WAKE_BCAST, Config5, BWF },
1046 { WAKE_MCAST, Config5, MWF },
1047 { WAKE_ANY, Config5, LanWake }
1048 };
1049
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001050 RTL_W8(Cfg9346, Cfg9346_Unlock);
1051
1052 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1053 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001054 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001055 options |= cfg[i].mask;
1056 RTL_W8(cfg[i].reg, options);
1057 }
1058
1059 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001060}
1061
1062static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1063{
1064 struct rtl8169_private *tp = netdev_priv(dev);
1065
1066 spin_lock_irq(&tp->lock);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001067
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001068 if (wol->wolopts)
1069 tp->features |= RTL_FEATURE_WOL;
1070 else
1071 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001072 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001073 spin_unlock_irq(&tp->lock);
1074
françois romieuea809072010-11-08 13:23:58 +00001075 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1076
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001077 return 0;
1078}
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080static void rtl8169_get_drvinfo(struct net_device *dev,
1081 struct ethtool_drvinfo *info)
1082{
1083 struct rtl8169_private *tp = netdev_priv(dev);
1084
1085 strcpy(info->driver, MODULENAME);
1086 strcpy(info->version, RTL8169_VERSION);
1087 strcpy(info->bus_info, pci_name(tp->pci_dev));
1088}
1089
1090static int rtl8169_get_regs_len(struct net_device *dev)
1091{
1092 return R8169_REGS_SIZE;
1093}
1094
1095static int rtl8169_set_speed_tbi(struct net_device *dev,
1096 u8 autoneg, u16 speed, u8 duplex)
1097{
1098 struct rtl8169_private *tp = netdev_priv(dev);
1099 void __iomem *ioaddr = tp->mmio_addr;
1100 int ret = 0;
1101 u32 reg;
1102
1103 reg = RTL_R32(TBICSR);
1104 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1105 (duplex == DUPLEX_FULL)) {
1106 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1107 } else if (autoneg == AUTONEG_ENABLE)
1108 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1109 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001110 netif_warn(tp, link, dev,
1111 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 ret = -EOPNOTSUPP;
1113 }
1114
1115 return ret;
1116}
1117
1118static int rtl8169_set_speed_xmii(struct net_device *dev,
1119 u8 autoneg, u16 speed, u8 duplex)
1120{
1121 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001122 int giga_ctrl, bmcr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001125 int auto_nego;
1126
françois romieu4da19632011-01-03 15:07:55 +00001127 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001128 auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
1129 ADVERTISE_100HALF | ADVERTISE_100FULL);
françois romieu3577aa12009-05-19 10:46:48 +00001130 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1131
françois romieu4da19632011-01-03 15:07:55 +00001132 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001133 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1134
1135 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1136 if ((tp->mac_version != RTL_GIGA_MAC_VER_07) &&
1137 (tp->mac_version != RTL_GIGA_MAC_VER_08) &&
1138 (tp->mac_version != RTL_GIGA_MAC_VER_09) &&
1139 (tp->mac_version != RTL_GIGA_MAC_VER_10) &&
1140 (tp->mac_version != RTL_GIGA_MAC_VER_13) &&
1141 (tp->mac_version != RTL_GIGA_MAC_VER_14) &&
1142 (tp->mac_version != RTL_GIGA_MAC_VER_15) &&
1143 (tp->mac_version != RTL_GIGA_MAC_VER_16)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001144 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Joe Perchesbf82c182010-02-09 11:49:50 +00001145 } else {
1146 netif_info(tp, link, dev,
1147 "PHY does not support 1000Mbps\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02001148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
françois romieu3577aa12009-05-19 10:46:48 +00001150 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001151
françois romieu3577aa12009-05-19 10:46:48 +00001152 if ((tp->mac_version == RTL_GIGA_MAC_VER_11) ||
1153 (tp->mac_version == RTL_GIGA_MAC_VER_12) ||
1154 (tp->mac_version >= RTL_GIGA_MAC_VER_17)) {
1155 /*
1156 * Wake up the PHY.
1157 * Vendor specific (0x1f) and reserved (0x0e) MII
1158 * registers.
1159 */
françois romieu4da19632011-01-03 15:07:55 +00001160 rtl_writephy(tp, 0x1f, 0x0000);
1161 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001162 }
1163
françois romieu4da19632011-01-03 15:07:55 +00001164 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1165 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001166 } else {
1167 giga_ctrl = 0;
1168
1169 if (speed == SPEED_10)
1170 bmcr = 0;
1171 else if (speed == SPEED_100)
1172 bmcr = BMCR_SPEED100;
1173 else
1174 return -EINVAL;
1175
1176 if (duplex == DUPLEX_FULL)
1177 bmcr |= BMCR_FULLDPLX;
1178
françois romieu4da19632011-01-03 15:07:55 +00001179 rtl_writephy(tp, 0x1f, 0x0000);
Roger So2584fbc2007-07-31 23:52:42 +02001180 }
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 tp->phy_1000_ctrl_reg = giga_ctrl;
1183
françois romieu4da19632011-01-03 15:07:55 +00001184 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001185
1186 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1187 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
1188 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001189 rtl_writephy(tp, 0x17, 0x2138);
1190 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001191 } else {
françois romieu4da19632011-01-03 15:07:55 +00001192 rtl_writephy(tp, 0x17, 0x2108);
1193 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001194 }
1195 }
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return 0;
1198}
1199
1200static int rtl8169_set_speed(struct net_device *dev,
1201 u8 autoneg, u16 speed, u8 duplex)
1202{
1203 struct rtl8169_private *tp = netdev_priv(dev);
1204 int ret;
1205
1206 ret = tp->set_speed(dev, autoneg, speed, duplex);
1207
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001208 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
1210
1211 return ret;
1212}
1213
1214static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1215{
1216 struct rtl8169_private *tp = netdev_priv(dev);
1217 unsigned long flags;
1218 int ret;
1219
1220 spin_lock_irqsave(&tp->lock, flags);
1221 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
1222 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return ret;
1225}
1226
1227static u32 rtl8169_get_rx_csum(struct net_device *dev)
1228{
1229 struct rtl8169_private *tp = netdev_priv(dev);
1230
1231 return tp->cp_cmd & RxChkSum;
1232}
1233
1234static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
1235{
1236 struct rtl8169_private *tp = netdev_priv(dev);
1237 void __iomem *ioaddr = tp->mmio_addr;
1238 unsigned long flags;
1239
1240 spin_lock_irqsave(&tp->lock, flags);
1241
1242 if (data)
1243 tp->cp_cmd |= RxChkSum;
1244 else
1245 tp->cp_cmd &= ~RxChkSum;
1246
1247 RTL_W16(CPlusCmd, tp->cp_cmd);
1248 RTL_R16(CPlusCmd);
1249
1250 spin_unlock_irqrestore(&tp->lock, flags);
1251
1252 return 0;
1253}
1254
1255#ifdef CONFIG_R8169_VLAN
1256
1257static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1258 struct sk_buff *skb)
1259{
Jesse Grosseab6d182010-10-20 13:56:03 +00001260 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1262}
1263
1264static void rtl8169_vlan_rx_register(struct net_device *dev,
1265 struct vlan_group *grp)
1266{
1267 struct rtl8169_private *tp = netdev_priv(dev);
1268 void __iomem *ioaddr = tp->mmio_addr;
1269 unsigned long flags;
1270
1271 spin_lock_irqsave(&tp->lock, flags);
1272 tp->vlgrp = grp;
Simon Wunderlich05af2142009-10-24 06:47:33 -07001273 /*
1274 * Do not disable RxVlan on 8110SCd.
1275 */
1276 if (tp->vlgrp || (tp->mac_version == RTL_GIGA_MAC_VER_05))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 tp->cp_cmd |= RxVlan;
1278 else
1279 tp->cp_cmd &= ~RxVlan;
1280 RTL_W16(CPlusCmd, tp->cp_cmd);
1281 RTL_R16(CPlusCmd);
1282 spin_unlock_irqrestore(&tp->lock, flags);
1283}
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
Eric Dumazet630b9432010-03-31 02:08:31 +00001286 struct sk_buff *skb, int polling)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
1288 u32 opts2 = le32_to_cpu(desc->opts2);
Francois Romieu865c6522008-05-11 14:51:00 +02001289 struct vlan_group *vlgrp = tp->vlgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 int ret;
1291
Francois Romieu865c6522008-05-11 14:51:00 +02001292 if (vlgrp && (opts2 & RxVlanTag)) {
Eric Dumazet2edae082010-09-06 18:46:39 +00001293 u16 vtag = swab16(opts2 & 0xffff);
1294
1295 if (likely(polling))
1296 vlan_gro_receive(&tp->napi, vlgrp, vtag, skb);
1297 else
1298 __vlan_hwaccel_rx(skb, vlgrp, vtag, polling);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 ret = 0;
1300 } else
1301 ret = -1;
1302 desc->opts2 = 0;
1303 return ret;
1304}
1305
1306#else /* !CONFIG_R8169_VLAN */
1307
1308static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1309 struct sk_buff *skb)
1310{
1311 return 0;
1312}
1313
1314static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
Eric Dumazet630b9432010-03-31 02:08:31 +00001315 struct sk_buff *skb, int polling)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 return -1;
1318}
1319
1320#endif
1321
Francois Romieuccdffb92008-07-26 14:26:06 +02001322static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
1324 struct rtl8169_private *tp = netdev_priv(dev);
1325 void __iomem *ioaddr = tp->mmio_addr;
1326 u32 status;
1327
1328 cmd->supported =
1329 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1330 cmd->port = PORT_FIBRE;
1331 cmd->transceiver = XCVR_INTERNAL;
1332
1333 status = RTL_R32(TBICSR);
1334 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1335 cmd->autoneg = !!(status & TBINwEnable);
1336
1337 cmd->speed = SPEED_1000;
1338 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001339
1340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341}
1342
Francois Romieuccdffb92008-07-26 14:26:06 +02001343static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
1345 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Francois Romieuccdffb92008-07-26 14:26:06 +02001347 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
1350static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1351{
1352 struct rtl8169_private *tp = netdev_priv(dev);
1353 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +02001354 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 spin_lock_irqsave(&tp->lock, flags);
1357
Francois Romieuccdffb92008-07-26 14:26:06 +02001358 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +02001361 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
1364static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1365 void *p)
1366{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001367 struct rtl8169_private *tp = netdev_priv(dev);
1368 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Francois Romieu5b0384f2006-08-16 16:00:01 +02001370 if (regs->len > R8169_REGS_SIZE)
1371 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Francois Romieu5b0384f2006-08-16 16:00:01 +02001373 spin_lock_irqsave(&tp->lock, flags);
1374 memcpy_fromio(p, tp->mmio_addr, regs->len);
1375 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001378static u32 rtl8169_get_msglevel(struct net_device *dev)
1379{
1380 struct rtl8169_private *tp = netdev_priv(dev);
1381
1382 return tp->msg_enable;
1383}
1384
1385static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1386{
1387 struct rtl8169_private *tp = netdev_priv(dev);
1388
1389 tp->msg_enable = value;
1390}
1391
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001392static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1393 "tx_packets",
1394 "rx_packets",
1395 "tx_errors",
1396 "rx_errors",
1397 "rx_missed",
1398 "align_errors",
1399 "tx_single_collisions",
1400 "tx_multi_collisions",
1401 "unicast",
1402 "broadcast",
1403 "multicast",
1404 "tx_aborted",
1405 "tx_underrun",
1406};
1407
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001408static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001409{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001410 switch (sset) {
1411 case ETH_SS_STATS:
1412 return ARRAY_SIZE(rtl8169_gstrings);
1413 default:
1414 return -EOPNOTSUPP;
1415 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001416}
1417
Ivan Vecera355423d2009-02-06 21:49:57 -08001418static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001419{
1420 struct rtl8169_private *tp = netdev_priv(dev);
1421 void __iomem *ioaddr = tp->mmio_addr;
1422 struct rtl8169_counters *counters;
1423 dma_addr_t paddr;
1424 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001425 int wait = 1000;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001426 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001427
Ivan Vecera355423d2009-02-06 21:49:57 -08001428 /*
1429 * Some chips are unable to dump tally counters when the receiver
1430 * is disabled.
1431 */
1432 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1433 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001434
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001435 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001436 if (!counters)
1437 return;
1438
1439 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001440 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001441 RTL_W32(CounterAddrLow, cmd);
1442 RTL_W32(CounterAddrLow, cmd | CounterDump);
1443
Ivan Vecera355423d2009-02-06 21:49:57 -08001444 while (wait--) {
1445 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
1446 /* copy updated counters */
1447 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001448 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001449 }
1450 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001451 }
1452
1453 RTL_W32(CounterAddrLow, 0);
1454 RTL_W32(CounterAddrHigh, 0);
1455
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001456 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001457}
1458
Ivan Vecera355423d2009-02-06 21:49:57 -08001459static void rtl8169_get_ethtool_stats(struct net_device *dev,
1460 struct ethtool_stats *stats, u64 *data)
1461{
1462 struct rtl8169_private *tp = netdev_priv(dev);
1463
1464 ASSERT_RTNL();
1465
1466 rtl8169_update_counters(dev);
1467
1468 data[0] = le64_to_cpu(tp->counters.tx_packets);
1469 data[1] = le64_to_cpu(tp->counters.rx_packets);
1470 data[2] = le64_to_cpu(tp->counters.tx_errors);
1471 data[3] = le32_to_cpu(tp->counters.rx_errors);
1472 data[4] = le16_to_cpu(tp->counters.rx_missed);
1473 data[5] = le16_to_cpu(tp->counters.align_errors);
1474 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1475 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1476 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1477 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1478 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1479 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1480 data[12] = le16_to_cpu(tp->counters.tx_underun);
1481}
1482
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001483static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1484{
1485 switch(stringset) {
1486 case ETH_SS_STATS:
1487 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1488 break;
1489 }
1490}
1491
Jeff Garzik7282d492006-09-13 14:30:00 -04001492static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 .get_drvinfo = rtl8169_get_drvinfo,
1494 .get_regs_len = rtl8169_get_regs_len,
1495 .get_link = ethtool_op_get_link,
1496 .get_settings = rtl8169_get_settings,
1497 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001498 .get_msglevel = rtl8169_get_msglevel,
1499 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 .get_rx_csum = rtl8169_get_rx_csum,
1501 .set_rx_csum = rtl8169_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 .set_tx_csum = ethtool_op_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 .set_tso = ethtool_op_set_tso,
1505 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001506 .get_wol = rtl8169_get_wol,
1507 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001508 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001509 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001510 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511};
1512
Francois Romieu07d3f512007-02-21 22:40:46 +01001513static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1514 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
Francois Romieu0e485152007-02-20 00:00:26 +01001516 /*
1517 * The driver currently handles the 8168Bf and the 8168Be identically
1518 * but they can be identified more specifically through the test below
1519 * if needed:
1520 *
1521 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001522 *
1523 * Same thing for the 8101Eb and the 8101Ec:
1524 *
1525 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001526 */
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001527 static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001529 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 int mac_version;
1531 } mac_info[] = {
Francois Romieu5b538df2008-07-20 16:22:45 +02001532 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001533 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1534 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001535 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001536
françois romieue6de30d2011-01-03 15:08:37 +00001537 /* 8168DP family. */
1538 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1539 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
1540
Francois Romieuef808d52008-06-29 13:10:54 +02001541 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001542 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001543 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001544 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001545 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001546 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1547 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001548 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001549 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001550 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001551
1552 /* 8168B family. */
1553 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1554 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1555 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1556 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1557
1558 /* 8101 family. */
Francois Romieu2857ffb2008-08-02 21:08:49 +02001559 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1560 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1561 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1562 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1563 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1564 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001565 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001566 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001567 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001568 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1569 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001570 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1571 /* FIXME: where did these entries come from ? -- FR */
1572 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1573 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1574
1575 /* 8110 family. */
1576 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1577 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1578 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1579 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1580 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1581 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1582
Jean Delvaref21b75e2009-05-26 20:54:48 -07001583 /* Catch-all */
1584 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }, *p = mac_info;
1586 u32 reg;
1587
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001588 reg = RTL_R32(TxConfig);
1589 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 p++;
1591 tp->mac_version = p->mac_version;
1592}
1593
1594static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1595{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001596 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
Francois Romieu867763c2007-08-17 18:21:58 +02001599struct phy_reg {
1600 u16 reg;
1601 u16 val;
1602};
1603
françois romieu4da19632011-01-03 15:07:55 +00001604static void rtl_writephy_batch(struct rtl8169_private *tp,
1605 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001606{
1607 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001608 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001609 regs++;
1610 }
1611}
1612
françois romieubca03d52011-01-03 15:07:31 +00001613#define PHY_READ 0x00000000
1614#define PHY_DATA_OR 0x10000000
1615#define PHY_DATA_AND 0x20000000
1616#define PHY_BJMPN 0x30000000
1617#define PHY_READ_EFUSE 0x40000000
1618#define PHY_READ_MAC_BYTE 0x50000000
1619#define PHY_WRITE_MAC_BYTE 0x60000000
1620#define PHY_CLEAR_READCOUNT 0x70000000
1621#define PHY_WRITE 0x80000000
1622#define PHY_READCOUNT_EQ_SKIP 0x90000000
1623#define PHY_COMP_EQ_SKIPN 0xa0000000
1624#define PHY_COMP_NEQ_SKIPN 0xb0000000
1625#define PHY_WRITE_PREVIOUS 0xc0000000
1626#define PHY_SKIPN 0xd0000000
1627#define PHY_DELAY_MS 0xe0000000
1628#define PHY_WRITE_ERI_WORD 0xf0000000
1629
1630static void
1631rtl_phy_write_fw(struct rtl8169_private *tp, const struct firmware *fw)
1632{
françois romieubca03d52011-01-03 15:07:31 +00001633 __le32 *phytable = (__le32 *)fw->data;
1634 struct net_device *dev = tp->dev;
hayeswang42b82dc2011-01-10 02:07:25 +00001635 size_t index, fw_size = fw->size / sizeof(*phytable);
1636 u32 predata, count;
françois romieubca03d52011-01-03 15:07:31 +00001637
1638 if (fw->size % sizeof(*phytable)) {
1639 netif_err(tp, probe, dev, "odd sized firmware %zd\n", fw->size);
1640 return;
1641 }
1642
hayeswang42b82dc2011-01-10 02:07:25 +00001643 for (index = 0; index < fw_size; index++) {
1644 u32 action = le32_to_cpu(phytable[index]);
1645 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00001646
hayeswang42b82dc2011-01-10 02:07:25 +00001647 switch(action & 0xf0000000) {
1648 case PHY_READ:
1649 case PHY_DATA_OR:
1650 case PHY_DATA_AND:
1651 case PHY_READ_EFUSE:
1652 case PHY_CLEAR_READCOUNT:
1653 case PHY_WRITE:
1654 case PHY_WRITE_PREVIOUS:
1655 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00001656 break;
1657
hayeswang42b82dc2011-01-10 02:07:25 +00001658 case PHY_BJMPN:
1659 if (regno > index) {
1660 netif_err(tp, probe, tp->dev,
1661 "Out of range of firmware\n");
1662 return;
1663 }
1664 break;
1665 case PHY_READCOUNT_EQ_SKIP:
1666 if (index + 2 >= fw_size) {
1667 netif_err(tp, probe, tp->dev,
1668 "Out of range of firmware\n");
1669 return;
1670 }
1671 break;
1672 case PHY_COMP_EQ_SKIPN:
1673 case PHY_COMP_NEQ_SKIPN:
1674 case PHY_SKIPN:
1675 if (index + 1 + regno >= fw_size) {
1676 netif_err(tp, probe, tp->dev,
1677 "Out of range of firmware\n");
1678 return;
1679 }
1680 break;
1681
1682 case PHY_READ_MAC_BYTE:
1683 case PHY_WRITE_MAC_BYTE:
1684 case PHY_WRITE_ERI_WORD:
1685 default:
1686 netif_err(tp, probe, tp->dev,
1687 "Invalid action 0x%08x\n", action);
françois romieubca03d52011-01-03 15:07:31 +00001688 return;
1689 }
1690 }
1691
hayeswang42b82dc2011-01-10 02:07:25 +00001692 predata = 0;
1693 count = 0;
1694
1695 for (index = 0; index < fw_size; ) {
1696 u32 action = le32_to_cpu(phytable[index]);
françois romieubca03d52011-01-03 15:07:31 +00001697 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00001698 u32 regno = (action & 0x0fff0000) >> 16;
1699
1700 if (!action)
1701 break;
françois romieubca03d52011-01-03 15:07:31 +00001702
1703 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00001704 case PHY_READ:
1705 predata = rtl_readphy(tp, regno);
1706 count++;
1707 index++;
françois romieubca03d52011-01-03 15:07:31 +00001708 break;
hayeswang42b82dc2011-01-10 02:07:25 +00001709 case PHY_DATA_OR:
1710 predata |= data;
1711 index++;
1712 break;
1713 case PHY_DATA_AND:
1714 predata &= data;
1715 index++;
1716 break;
1717 case PHY_BJMPN:
1718 index -= regno;
1719 break;
1720 case PHY_READ_EFUSE:
1721 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
1722 index++;
1723 break;
1724 case PHY_CLEAR_READCOUNT:
1725 count = 0;
1726 index++;
1727 break;
1728 case PHY_WRITE:
1729 rtl_writephy(tp, regno, data);
1730 index++;
1731 break;
1732 case PHY_READCOUNT_EQ_SKIP:
1733 if (count == data)
1734 index += 2;
1735 else
1736 index += 1;
1737 break;
1738 case PHY_COMP_EQ_SKIPN:
1739 if (predata == data)
1740 index += regno;
1741 index++;
1742 break;
1743 case PHY_COMP_NEQ_SKIPN:
1744 if (predata != data)
1745 index += regno;
1746 index++;
1747 break;
1748 case PHY_WRITE_PREVIOUS:
1749 rtl_writephy(tp, regno, predata);
1750 index++;
1751 break;
1752 case PHY_SKIPN:
1753 index += regno + 1;
1754 break;
1755 case PHY_DELAY_MS:
1756 mdelay(data);
1757 index++;
1758 break;
1759
1760 case PHY_READ_MAC_BYTE:
1761 case PHY_WRITE_MAC_BYTE:
1762 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00001763 default:
1764 BUG();
1765 }
1766 }
1767}
1768
françois romieu4da19632011-01-03 15:07:55 +00001769static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001771 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00001772 { 0x1f, 0x0001 },
1773 { 0x06, 0x006e },
1774 { 0x08, 0x0708 },
1775 { 0x15, 0x4000 },
1776 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
françois romieu0b9b5712009-08-10 19:44:56 +00001778 { 0x1f, 0x0001 },
1779 { 0x03, 0x00a1 },
1780 { 0x02, 0x0008 },
1781 { 0x01, 0x0120 },
1782 { 0x00, 0x1000 },
1783 { 0x04, 0x0800 },
1784 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
françois romieu0b9b5712009-08-10 19:44:56 +00001786 { 0x03, 0xff41 },
1787 { 0x02, 0xdf60 },
1788 { 0x01, 0x0140 },
1789 { 0x00, 0x0077 },
1790 { 0x04, 0x7800 },
1791 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
françois romieu0b9b5712009-08-10 19:44:56 +00001793 { 0x03, 0x802f },
1794 { 0x02, 0x4f02 },
1795 { 0x01, 0x0409 },
1796 { 0x00, 0xf0f9 },
1797 { 0x04, 0x9800 },
1798 { 0x04, 0x9000 },
1799
1800 { 0x03, 0xdf01 },
1801 { 0x02, 0xdf20 },
1802 { 0x01, 0xff95 },
1803 { 0x00, 0xba00 },
1804 { 0x04, 0xa800 },
1805 { 0x04, 0xa000 },
1806
1807 { 0x03, 0xff41 },
1808 { 0x02, 0xdf20 },
1809 { 0x01, 0x0140 },
1810 { 0x00, 0x00bb },
1811 { 0x04, 0xb800 },
1812 { 0x04, 0xb000 },
1813
1814 { 0x03, 0xdf41 },
1815 { 0x02, 0xdc60 },
1816 { 0x01, 0x6340 },
1817 { 0x00, 0x007d },
1818 { 0x04, 0xd800 },
1819 { 0x04, 0xd000 },
1820
1821 { 0x03, 0xdf01 },
1822 { 0x02, 0xdf20 },
1823 { 0x01, 0x100a },
1824 { 0x00, 0xa0ff },
1825 { 0x04, 0xf800 },
1826 { 0x04, 0xf000 },
1827
1828 { 0x1f, 0x0000 },
1829 { 0x0b, 0x0000 },
1830 { 0x00, 0x9200 }
1831 };
1832
françois romieu4da19632011-01-03 15:07:55 +00001833 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
françois romieu4da19632011-01-03 15:07:55 +00001836static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02001837{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001838 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02001839 { 0x1f, 0x0002 },
1840 { 0x01, 0x90d0 },
1841 { 0x1f, 0x0000 }
1842 };
1843
françois romieu4da19632011-01-03 15:07:55 +00001844 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001845}
1846
françois romieu4da19632011-01-03 15:07:55 +00001847static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001848{
1849 struct pci_dev *pdev = tp->pci_dev;
1850 u16 vendor_id, device_id;
1851
1852 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
1853 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
1854
1855 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
1856 return;
1857
françois romieu4da19632011-01-03 15:07:55 +00001858 rtl_writephy(tp, 0x1f, 0x0001);
1859 rtl_writephy(tp, 0x10, 0xf01b);
1860 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00001861}
1862
françois romieu4da19632011-01-03 15:07:55 +00001863static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001864{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001865 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00001866 { 0x1f, 0x0001 },
1867 { 0x04, 0x0000 },
1868 { 0x03, 0x00a1 },
1869 { 0x02, 0x0008 },
1870 { 0x01, 0x0120 },
1871 { 0x00, 0x1000 },
1872 { 0x04, 0x0800 },
1873 { 0x04, 0x9000 },
1874 { 0x03, 0x802f },
1875 { 0x02, 0x4f02 },
1876 { 0x01, 0x0409 },
1877 { 0x00, 0xf099 },
1878 { 0x04, 0x9800 },
1879 { 0x04, 0xa000 },
1880 { 0x03, 0xdf01 },
1881 { 0x02, 0xdf20 },
1882 { 0x01, 0xff95 },
1883 { 0x00, 0xba00 },
1884 { 0x04, 0xa800 },
1885 { 0x04, 0xf000 },
1886 { 0x03, 0xdf01 },
1887 { 0x02, 0xdf20 },
1888 { 0x01, 0x101a },
1889 { 0x00, 0xa0ff },
1890 { 0x04, 0xf800 },
1891 { 0x04, 0x0000 },
1892 { 0x1f, 0x0000 },
1893
1894 { 0x1f, 0x0001 },
1895 { 0x10, 0xf41b },
1896 { 0x14, 0xfb54 },
1897 { 0x18, 0xf5c7 },
1898 { 0x1f, 0x0000 },
1899
1900 { 0x1f, 0x0001 },
1901 { 0x17, 0x0cc0 },
1902 { 0x1f, 0x0000 }
1903 };
1904
françois romieu4da19632011-01-03 15:07:55 +00001905 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00001906
françois romieu4da19632011-01-03 15:07:55 +00001907 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00001908}
1909
françois romieu4da19632011-01-03 15:07:55 +00001910static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00001911{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001912 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00001913 { 0x1f, 0x0001 },
1914 { 0x04, 0x0000 },
1915 { 0x03, 0x00a1 },
1916 { 0x02, 0x0008 },
1917 { 0x01, 0x0120 },
1918 { 0x00, 0x1000 },
1919 { 0x04, 0x0800 },
1920 { 0x04, 0x9000 },
1921 { 0x03, 0x802f },
1922 { 0x02, 0x4f02 },
1923 { 0x01, 0x0409 },
1924 { 0x00, 0xf099 },
1925 { 0x04, 0x9800 },
1926 { 0x04, 0xa000 },
1927 { 0x03, 0xdf01 },
1928 { 0x02, 0xdf20 },
1929 { 0x01, 0xff95 },
1930 { 0x00, 0xba00 },
1931 { 0x04, 0xa800 },
1932 { 0x04, 0xf000 },
1933 { 0x03, 0xdf01 },
1934 { 0x02, 0xdf20 },
1935 { 0x01, 0x101a },
1936 { 0x00, 0xa0ff },
1937 { 0x04, 0xf800 },
1938 { 0x04, 0x0000 },
1939 { 0x1f, 0x0000 },
1940
1941 { 0x1f, 0x0001 },
1942 { 0x0b, 0x8480 },
1943 { 0x1f, 0x0000 },
1944
1945 { 0x1f, 0x0001 },
1946 { 0x18, 0x67c7 },
1947 { 0x04, 0x2000 },
1948 { 0x03, 0x002f },
1949 { 0x02, 0x4360 },
1950 { 0x01, 0x0109 },
1951 { 0x00, 0x3022 },
1952 { 0x04, 0x2800 },
1953 { 0x1f, 0x0000 },
1954
1955 { 0x1f, 0x0001 },
1956 { 0x17, 0x0cc0 },
1957 { 0x1f, 0x0000 }
1958 };
1959
françois romieu4da19632011-01-03 15:07:55 +00001960 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00001961}
1962
françois romieu4da19632011-01-03 15:07:55 +00001963static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02001964{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001965 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02001966 { 0x10, 0xf41b },
1967 { 0x1f, 0x0000 }
1968 };
1969
françois romieu4da19632011-01-03 15:07:55 +00001970 rtl_writephy(tp, 0x1f, 0x0001);
1971 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02001972
françois romieu4da19632011-01-03 15:07:55 +00001973 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02001974}
1975
françois romieu4da19632011-01-03 15:07:55 +00001976static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02001977{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001978 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02001979 { 0x1f, 0x0001 },
1980 { 0x10, 0xf41b },
1981 { 0x1f, 0x0000 }
1982 };
1983
françois romieu4da19632011-01-03 15:07:55 +00001984 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02001985}
1986
françois romieu4da19632011-01-03 15:07:55 +00001987static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02001988{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001989 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02001990 { 0x1f, 0x0000 },
1991 { 0x1d, 0x0f00 },
1992 { 0x1f, 0x0002 },
1993 { 0x0c, 0x1ec8 },
1994 { 0x1f, 0x0000 }
1995 };
1996
françois romieu4da19632011-01-03 15:07:55 +00001997 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02001998}
1999
françois romieu4da19632011-01-03 15:07:55 +00002000static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002001{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002002 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002003 { 0x1f, 0x0001 },
2004 { 0x1d, 0x3d98 },
2005 { 0x1f, 0x0000 }
2006 };
2007
françois romieu4da19632011-01-03 15:07:55 +00002008 rtl_writephy(tp, 0x1f, 0x0000);
2009 rtl_patchphy(tp, 0x14, 1 << 5);
2010 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002011
françois romieu4da19632011-01-03 15:07:55 +00002012 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002013}
2014
françois romieu4da19632011-01-03 15:07:55 +00002015static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002016{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002017 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002018 { 0x1f, 0x0001 },
2019 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002020 { 0x1f, 0x0002 },
2021 { 0x00, 0x88d4 },
2022 { 0x01, 0x82b1 },
2023 { 0x03, 0x7002 },
2024 { 0x08, 0x9e30 },
2025 { 0x09, 0x01f0 },
2026 { 0x0a, 0x5500 },
2027 { 0x0c, 0x00c8 },
2028 { 0x1f, 0x0003 },
2029 { 0x12, 0xc096 },
2030 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002031 { 0x1f, 0x0000 },
2032 { 0x1f, 0x0000 },
2033 { 0x09, 0x2000 },
2034 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002035 };
2036
françois romieu4da19632011-01-03 15:07:55 +00002037 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002038
françois romieu4da19632011-01-03 15:07:55 +00002039 rtl_patchphy(tp, 0x14, 1 << 5);
2040 rtl_patchphy(tp, 0x0d, 1 << 5);
2041 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002042}
2043
françois romieu4da19632011-01-03 15:07:55 +00002044static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002045{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002046 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002047 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002048 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002049 { 0x03, 0x802f },
2050 { 0x02, 0x4f02 },
2051 { 0x01, 0x0409 },
2052 { 0x00, 0xf099 },
2053 { 0x04, 0x9800 },
2054 { 0x04, 0x9000 },
2055 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002056 { 0x1f, 0x0002 },
2057 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002058 { 0x06, 0x0761 },
2059 { 0x1f, 0x0003 },
2060 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002061 { 0x1f, 0x0000 }
2062 };
2063
françois romieu4da19632011-01-03 15:07:55 +00002064 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002065
françois romieu4da19632011-01-03 15:07:55 +00002066 rtl_patchphy(tp, 0x16, 1 << 0);
2067 rtl_patchphy(tp, 0x14, 1 << 5);
2068 rtl_patchphy(tp, 0x0d, 1 << 5);
2069 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002070}
2071
françois romieu4da19632011-01-03 15:07:55 +00002072static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002073{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002074 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002075 { 0x1f, 0x0001 },
2076 { 0x12, 0x2300 },
2077 { 0x1d, 0x3d98 },
2078 { 0x1f, 0x0002 },
2079 { 0x0c, 0x7eb8 },
2080 { 0x06, 0x5461 },
2081 { 0x1f, 0x0003 },
2082 { 0x16, 0x0f0a },
2083 { 0x1f, 0x0000 }
2084 };
2085
françois romieu4da19632011-01-03 15:07:55 +00002086 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002087
françois romieu4da19632011-01-03 15:07:55 +00002088 rtl_patchphy(tp, 0x16, 1 << 0);
2089 rtl_patchphy(tp, 0x14, 1 << 5);
2090 rtl_patchphy(tp, 0x0d, 1 << 5);
2091 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002092}
2093
françois romieu4da19632011-01-03 15:07:55 +00002094static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002095{
françois romieu4da19632011-01-03 15:07:55 +00002096 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002097}
2098
françois romieubca03d52011-01-03 15:07:31 +00002099static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002100{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002101 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002102 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002103 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002104 { 0x06, 0x4064 },
2105 { 0x07, 0x2863 },
2106 { 0x08, 0x059c },
2107 { 0x09, 0x26b4 },
2108 { 0x0a, 0x6a19 },
2109 { 0x0b, 0xdcc8 },
2110 { 0x10, 0xf06d },
2111 { 0x14, 0x7f68 },
2112 { 0x18, 0x7fd9 },
2113 { 0x1c, 0xf0ff },
2114 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002115 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002116 { 0x12, 0xf49f },
2117 { 0x13, 0x070b },
2118 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002119 { 0x14, 0x94c0 },
2120
2121 /*
2122 * Tx Error Issue
2123 * enhance line driver power
2124 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002125 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002126 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002127 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002128 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002129 { 0x06, 0x5561 },
2130
2131 /*
2132 * Can not link to 1Gbps with bad cable
2133 * Decrease SNR threshold form 21.07dB to 19.04dB
2134 */
2135 { 0x1f, 0x0001 },
2136 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002137
2138 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002139 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002140 };
françois romieubca03d52011-01-03 15:07:31 +00002141 void __iomem *ioaddr = tp->mmio_addr;
2142 const struct firmware *fw;
Francois Romieu5b538df2008-07-20 16:22:45 +02002143
françois romieu4da19632011-01-03 15:07:55 +00002144 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002145
françois romieubca03d52011-01-03 15:07:31 +00002146 /*
2147 * Rx Error Issue
2148 * Fine Tune Switching regulator parameter
2149 */
françois romieu4da19632011-01-03 15:07:55 +00002150 rtl_writephy(tp, 0x1f, 0x0002);
2151 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2152 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002153
françois romieudaf9df62009-10-07 12:44:20 +00002154 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002155 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002156 { 0x1f, 0x0002 },
2157 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002158 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002159 { 0x05, 0x8330 },
2160 { 0x06, 0x669a },
2161 { 0x1f, 0x0002 }
2162 };
2163 int val;
2164
françois romieu4da19632011-01-03 15:07:55 +00002165 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002166
françois romieu4da19632011-01-03 15:07:55 +00002167 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002168
2169 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002170 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002171 0x0065, 0x0066, 0x0067, 0x0068,
2172 0x0069, 0x006a, 0x006b, 0x006c
2173 };
2174 int i;
2175
françois romieu4da19632011-01-03 15:07:55 +00002176 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002177
2178 val &= 0xff00;
2179 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002180 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002181 }
2182 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002183 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002184 { 0x1f, 0x0002 },
2185 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002186 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002187 { 0x05, 0x8330 },
2188 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002189 };
2190
françois romieu4da19632011-01-03 15:07:55 +00002191 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002192 }
2193
françois romieubca03d52011-01-03 15:07:31 +00002194 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002195 rtl_writephy(tp, 0x1f, 0x0002);
2196 rtl_patchphy(tp, 0x0d, 0x0300);
2197 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002198
françois romieubca03d52011-01-03 15:07:31 +00002199 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002200 rtl_writephy(tp, 0x1f, 0x0002);
2201 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2202 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002203
françois romieu4da19632011-01-03 15:07:55 +00002204 rtl_writephy(tp, 0x1f, 0x0005);
2205 rtl_writephy(tp, 0x05, 0x001b);
2206 if (rtl_readphy(tp, 0x06) == 0xbf00 &&
françois romieubca03d52011-01-03 15:07:31 +00002207 request_firmware(&fw, FIRMWARE_8168D_1, &tp->pci_dev->dev) == 0) {
2208 rtl_phy_write_fw(tp, fw);
2209 release_firmware(fw);
2210 } else {
2211 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2212 }
2213
françois romieu4da19632011-01-03 15:07:55 +00002214 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002215}
2216
françois romieubca03d52011-01-03 15:07:31 +00002217static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002218{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002219 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002220 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002221 { 0x1f, 0x0001 },
2222 { 0x06, 0x4064 },
2223 { 0x07, 0x2863 },
2224 { 0x08, 0x059c },
2225 { 0x09, 0x26b4 },
2226 { 0x0a, 0x6a19 },
2227 { 0x0b, 0xdcc8 },
2228 { 0x10, 0xf06d },
2229 { 0x14, 0x7f68 },
2230 { 0x18, 0x7fd9 },
2231 { 0x1c, 0xf0ff },
2232 { 0x1d, 0x3d9c },
2233 { 0x1f, 0x0003 },
2234 { 0x12, 0xf49f },
2235 { 0x13, 0x070b },
2236 { 0x1a, 0x05ad },
2237 { 0x14, 0x94c0 },
2238
françois romieubca03d52011-01-03 15:07:31 +00002239 /*
2240 * Tx Error Issue
2241 * enhance line driver power
2242 */
françois romieudaf9df62009-10-07 12:44:20 +00002243 { 0x1f, 0x0002 },
2244 { 0x06, 0x5561 },
2245 { 0x1f, 0x0005 },
2246 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002247 { 0x06, 0x5561 },
2248
2249 /*
2250 * Can not link to 1Gbps with bad cable
2251 * Decrease SNR threshold form 21.07dB to 19.04dB
2252 */
2253 { 0x1f, 0x0001 },
2254 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002255
2256 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002257 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002258 };
françois romieubca03d52011-01-03 15:07:31 +00002259 void __iomem *ioaddr = tp->mmio_addr;
2260 const struct firmware *fw;
françois romieudaf9df62009-10-07 12:44:20 +00002261
françois romieu4da19632011-01-03 15:07:55 +00002262 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002263
2264 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002265 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002266 { 0x1f, 0x0002 },
2267 { 0x05, 0x669a },
2268 { 0x1f, 0x0005 },
2269 { 0x05, 0x8330 },
2270 { 0x06, 0x669a },
2271
2272 { 0x1f, 0x0002 }
2273 };
2274 int val;
2275
françois romieu4da19632011-01-03 15:07:55 +00002276 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002277
françois romieu4da19632011-01-03 15:07:55 +00002278 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002279 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002280 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002281 0x0065, 0x0066, 0x0067, 0x0068,
2282 0x0069, 0x006a, 0x006b, 0x006c
2283 };
2284 int i;
2285
françois romieu4da19632011-01-03 15:07:55 +00002286 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002287
2288 val &= 0xff00;
2289 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002290 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002291 }
2292 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002293 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002294 { 0x1f, 0x0002 },
2295 { 0x05, 0x2642 },
2296 { 0x1f, 0x0005 },
2297 { 0x05, 0x8330 },
2298 { 0x06, 0x2642 }
2299 };
2300
françois romieu4da19632011-01-03 15:07:55 +00002301 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002302 }
2303
françois romieubca03d52011-01-03 15:07:31 +00002304 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002305 rtl_writephy(tp, 0x1f, 0x0002);
2306 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2307 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002308
françois romieubca03d52011-01-03 15:07:31 +00002309 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002310 rtl_writephy(tp, 0x1f, 0x0002);
2311 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002312
françois romieu4da19632011-01-03 15:07:55 +00002313 rtl_writephy(tp, 0x1f, 0x0005);
2314 rtl_writephy(tp, 0x05, 0x001b);
2315 if (rtl_readphy(tp, 0x06) == 0xb300 &&
françois romieubca03d52011-01-03 15:07:31 +00002316 request_firmware(&fw, FIRMWARE_8168D_2, &tp->pci_dev->dev) == 0) {
2317 rtl_phy_write_fw(tp, fw);
2318 release_firmware(fw);
2319 } else {
2320 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2321 }
2322
françois romieu4da19632011-01-03 15:07:55 +00002323 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002324}
2325
françois romieu4da19632011-01-03 15:07:55 +00002326static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002327{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002328 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002329 { 0x1f, 0x0002 },
2330 { 0x10, 0x0008 },
2331 { 0x0d, 0x006c },
2332
2333 { 0x1f, 0x0000 },
2334 { 0x0d, 0xf880 },
2335
2336 { 0x1f, 0x0001 },
2337 { 0x17, 0x0cc0 },
2338
2339 { 0x1f, 0x0001 },
2340 { 0x0b, 0xa4d8 },
2341 { 0x09, 0x281c },
2342 { 0x07, 0x2883 },
2343 { 0x0a, 0x6b35 },
2344 { 0x1d, 0x3da4 },
2345 { 0x1c, 0xeffd },
2346 { 0x14, 0x7f52 },
2347 { 0x18, 0x7fc6 },
2348 { 0x08, 0x0601 },
2349 { 0x06, 0x4063 },
2350 { 0x10, 0xf074 },
2351 { 0x1f, 0x0003 },
2352 { 0x13, 0x0789 },
2353 { 0x12, 0xf4bd },
2354 { 0x1a, 0x04fd },
2355 { 0x14, 0x84b0 },
2356 { 0x1f, 0x0000 },
2357 { 0x00, 0x9200 },
2358
2359 { 0x1f, 0x0005 },
2360 { 0x01, 0x0340 },
2361 { 0x1f, 0x0001 },
2362 { 0x04, 0x4000 },
2363 { 0x03, 0x1d21 },
2364 { 0x02, 0x0c32 },
2365 { 0x01, 0x0200 },
2366 { 0x00, 0x5554 },
2367 { 0x04, 0x4800 },
2368 { 0x04, 0x4000 },
2369 { 0x04, 0xf000 },
2370 { 0x03, 0xdf01 },
2371 { 0x02, 0xdf20 },
2372 { 0x01, 0x101a },
2373 { 0x00, 0xa0ff },
2374 { 0x04, 0xf800 },
2375 { 0x04, 0xf000 },
2376 { 0x1f, 0x0000 },
2377
2378 { 0x1f, 0x0007 },
2379 { 0x1e, 0x0023 },
2380 { 0x16, 0x0000 },
2381 { 0x1f, 0x0000 }
2382 };
2383
françois romieu4da19632011-01-03 15:07:55 +00002384 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002385}
2386
françois romieue6de30d2011-01-03 15:08:37 +00002387static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2388{
2389 static const struct phy_reg phy_reg_init[] = {
2390 { 0x1f, 0x0001 },
2391 { 0x17, 0x0cc0 },
2392
2393 { 0x1f, 0x0007 },
2394 { 0x1e, 0x002d },
2395 { 0x18, 0x0040 },
2396 { 0x1f, 0x0000 }
2397 };
2398
2399 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2400 rtl_patchphy(tp, 0x0d, 1 << 5);
2401}
2402
françois romieu4da19632011-01-03 15:07:55 +00002403static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02002404{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002405 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002406 { 0x1f, 0x0003 },
2407 { 0x08, 0x441d },
2408 { 0x01, 0x9100 },
2409 { 0x1f, 0x0000 }
2410 };
2411
françois romieu4da19632011-01-03 15:07:55 +00002412 rtl_writephy(tp, 0x1f, 0x0000);
2413 rtl_patchphy(tp, 0x11, 1 << 12);
2414 rtl_patchphy(tp, 0x19, 1 << 13);
2415 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002416
françois romieu4da19632011-01-03 15:07:55 +00002417 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02002418}
2419
Francois Romieu5615d9f2007-08-17 17:50:46 +02002420static void rtl_hw_phy_config(struct net_device *dev)
2421{
2422 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002423
2424 rtl8169_print_mac_version(tp);
2425
2426 switch (tp->mac_version) {
2427 case RTL_GIGA_MAC_VER_01:
2428 break;
2429 case RTL_GIGA_MAC_VER_02:
2430 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00002431 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002432 break;
2433 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00002434 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002435 break;
françois romieu2e9558562009-08-10 19:44:19 +00002436 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00002437 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002438 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002439 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00002440 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00002441 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002442 case RTL_GIGA_MAC_VER_07:
2443 case RTL_GIGA_MAC_VER_08:
2444 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00002445 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002446 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002447 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00002448 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002449 break;
2450 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00002451 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002452 break;
2453 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00002454 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002455 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002456 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00002457 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002458 break;
2459 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00002460 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002461 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002462 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00002463 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002464 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002465 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00002466 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02002467 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002468 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00002469 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002470 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002471 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002472 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00002473 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02002474 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002475 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002476 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002477 break;
2478 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002479 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002480 break;
2481 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00002482 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02002483 break;
françois romieue6de30d2011-01-03 15:08:37 +00002484 case RTL_GIGA_MAC_VER_28:
2485 rtl8168d_4_hw_phy_config(tp);
2486 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002487
Francois Romieu5615d9f2007-08-17 17:50:46 +02002488 default:
2489 break;
2490 }
2491}
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493static void rtl8169_phy_timer(unsigned long __opaque)
2494{
2495 struct net_device *dev = (struct net_device *)__opaque;
2496 struct rtl8169_private *tp = netdev_priv(dev);
2497 struct timer_list *timer = &tp->timer;
2498 void __iomem *ioaddr = tp->mmio_addr;
2499 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2500
Francois Romieubcf0bf92006-07-26 23:14:13 +02002501 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Francois Romieu64e4bfb2006-08-17 12:43:06 +02002503 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 return;
2505
2506 spin_lock_irq(&tp->lock);
2507
françois romieu4da19632011-01-03 15:07:55 +00002508 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02002509 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 * A busy loop could burn quite a few cycles on nowadays CPU.
2511 * Let's delay the execution of the timer for a few ticks.
2512 */
2513 timeout = HZ/10;
2514 goto out_mod_timer;
2515 }
2516
2517 if (tp->link_ok(ioaddr))
2518 goto out_unlock;
2519
Joe Perchesbf82c182010-02-09 11:49:50 +00002520 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
françois romieu4da19632011-01-03 15:07:55 +00002522 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524out_mod_timer:
2525 mod_timer(timer, jiffies + timeout);
2526out_unlock:
2527 spin_unlock_irq(&tp->lock);
2528}
2529
2530static inline void rtl8169_delete_timer(struct net_device *dev)
2531{
2532 struct rtl8169_private *tp = netdev_priv(dev);
2533 struct timer_list *timer = &tp->timer;
2534
Francois Romieue179bb72007-08-17 15:05:21 +02002535 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 return;
2537
2538 del_timer_sync(timer);
2539}
2540
2541static inline void rtl8169_request_timer(struct net_device *dev)
2542{
2543 struct rtl8169_private *tp = netdev_priv(dev);
2544 struct timer_list *timer = &tp->timer;
2545
Francois Romieue179bb72007-08-17 15:05:21 +02002546 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 return;
2548
Francois Romieu2efa53f2007-03-09 00:00:05 +01002549 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550}
2551
2552#ifdef CONFIG_NET_POLL_CONTROLLER
2553/*
2554 * Polling 'interrupt' - used by things like netconsole to send skbs
2555 * without having to re-enable interrupts. It's not called while
2556 * the interrupt routine is executing.
2557 */
2558static void rtl8169_netpoll(struct net_device *dev)
2559{
2560 struct rtl8169_private *tp = netdev_priv(dev);
2561 struct pci_dev *pdev = tp->pci_dev;
2562
2563 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002564 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 enable_irq(pdev->irq);
2566}
2567#endif
2568
2569static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
2570 void __iomem *ioaddr)
2571{
2572 iounmap(ioaddr);
2573 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002574 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 pci_disable_device(pdev);
2576 free_netdev(dev);
2577}
2578
Francois Romieubf793292006-11-01 00:53:05 +01002579static void rtl8169_phy_reset(struct net_device *dev,
2580 struct rtl8169_private *tp)
2581{
Francois Romieu07d3f512007-02-21 22:40:46 +01002582 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01002583
françois romieu4da19632011-01-03 15:07:55 +00002584 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01002585 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00002586 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01002587 return;
2588 msleep(1);
2589 }
Joe Perchesbf82c182010-02-09 11:49:50 +00002590 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01002591}
2592
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002593static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002595 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002596
Francois Romieu5615d9f2007-08-17 17:50:46 +02002597 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002598
Marcus Sundberg773328942008-07-10 21:28:08 +02002599 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
2600 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2601 RTL_W8(0x82, 0x01);
2602 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002603
Francois Romieu6dccd162007-02-13 23:38:05 +01002604 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
2605
2606 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
2607 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002608
Francois Romieubcf0bf92006-07-26 23:14:13 +02002609 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002610 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2611 RTL_W8(0x82, 0x01);
2612 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00002613 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002614 }
2615
Francois Romieubf793292006-11-01 00:53:05 +01002616 rtl8169_phy_reset(dev, tp);
2617
Francois Romieu901dda22007-02-21 00:10:20 +01002618 /*
2619 * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
2620 * only 8101. Don't panic.
2621 */
2622 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002623
Joe Perchesbf82c182010-02-09 11:49:50 +00002624 if (RTL_R8(PHYstatus) & TBI_Enable)
2625 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002626}
2627
Francois Romieu773d2022007-01-31 23:47:43 +01002628static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
2629{
2630 void __iomem *ioaddr = tp->mmio_addr;
2631 u32 high;
2632 u32 low;
2633
2634 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
2635 high = addr[4] | (addr[5] << 8);
2636
2637 spin_lock_irq(&tp->lock);
2638
2639 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00002640
Francois Romieu773d2022007-01-31 23:47:43 +01002641 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00002642 RTL_R32(MAC4);
2643
Francois Romieu78f1cd02010-03-27 19:35:46 -07002644 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00002645 RTL_R32(MAC0);
2646
Francois Romieu773d2022007-01-31 23:47:43 +01002647 RTL_W8(Cfg9346, Cfg9346_Lock);
2648
2649 spin_unlock_irq(&tp->lock);
2650}
2651
2652static int rtl_set_mac_address(struct net_device *dev, void *p)
2653{
2654 struct rtl8169_private *tp = netdev_priv(dev);
2655 struct sockaddr *addr = p;
2656
2657 if (!is_valid_ether_addr(addr->sa_data))
2658 return -EADDRNOTAVAIL;
2659
2660 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2661
2662 rtl_rar_set(tp, dev->dev_addr);
2663
2664 return 0;
2665}
2666
Francois Romieu5f787a12006-08-17 13:02:36 +02002667static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2668{
2669 struct rtl8169_private *tp = netdev_priv(dev);
2670 struct mii_ioctl_data *data = if_mii(ifr);
2671
Francois Romieu8b4ab282008-11-19 22:05:25 -08002672 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
2673}
Francois Romieu5f787a12006-08-17 13:02:36 +02002674
Francois Romieu8b4ab282008-11-19 22:05:25 -08002675static int rtl_xmii_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2676{
Francois Romieu5f787a12006-08-17 13:02:36 +02002677 switch (cmd) {
2678 case SIOCGMIIPHY:
2679 data->phy_id = 32; /* Internal PHY */
2680 return 0;
2681
2682 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002683 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02002684 return 0;
2685
2686 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002687 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02002688 return 0;
2689 }
2690 return -EOPNOTSUPP;
2691}
2692
Francois Romieu8b4ab282008-11-19 22:05:25 -08002693static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2694{
2695 return -EOPNOTSUPP;
2696}
2697
Francois Romieu0e485152007-02-20 00:00:26 +01002698static const struct rtl_cfg_info {
2699 void (*hw_start)(struct net_device *);
2700 unsigned int region;
2701 unsigned int align;
2702 u16 intr_event;
2703 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02002704 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07002705 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01002706} rtl_cfg_infos [] = {
2707 [RTL_CFG_0] = {
2708 .hw_start = rtl_hw_start_8169,
2709 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01002710 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01002711 .intr_event = SYSErr | LinkChg | RxOverflow |
2712 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002713 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002714 .features = RTL_FEATURE_GMII,
2715 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01002716 },
2717 [RTL_CFG_1] = {
2718 .hw_start = rtl_hw_start_8168,
2719 .region = 2,
2720 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00002721 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01002722 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002723 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002724 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
2725 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01002726 },
2727 [RTL_CFG_2] = {
2728 .hw_start = rtl_hw_start_8101,
2729 .region = 2,
2730 .align = 8,
2731 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
2732 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002733 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002734 .features = RTL_FEATURE_MSI,
2735 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01002736 }
2737};
2738
Francois Romieufbac58f2007-10-04 22:51:38 +02002739/* Cfg9346_Unlock assumed. */
2740static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
2741 const struct rtl_cfg_info *cfg)
2742{
2743 unsigned msi = 0;
2744 u8 cfg2;
2745
2746 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02002747 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02002748 if (pci_enable_msi(pdev)) {
2749 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
2750 } else {
2751 cfg2 |= MSIEnable;
2752 msi = RTL_FEATURE_MSI;
2753 }
2754 }
2755 RTL_W8(Config2, cfg2);
2756 return msi;
2757}
2758
2759static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
2760{
2761 if (tp->features & RTL_FEATURE_MSI) {
2762 pci_disable_msi(pdev);
2763 tp->features &= ~RTL_FEATURE_MSI;
2764 }
2765}
2766
Francois Romieu8b4ab282008-11-19 22:05:25 -08002767static const struct net_device_ops rtl8169_netdev_ops = {
2768 .ndo_open = rtl8169_open,
2769 .ndo_stop = rtl8169_close,
2770 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08002771 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002772 .ndo_tx_timeout = rtl8169_tx_timeout,
2773 .ndo_validate_addr = eth_validate_addr,
2774 .ndo_change_mtu = rtl8169_change_mtu,
2775 .ndo_set_mac_address = rtl_set_mac_address,
2776 .ndo_do_ioctl = rtl8169_ioctl,
2777 .ndo_set_multicast_list = rtl_set_rx_mode,
2778#ifdef CONFIG_R8169_VLAN
2779 .ndo_vlan_rx_register = rtl8169_vlan_rx_register,
2780#endif
2781#ifdef CONFIG_NET_POLL_CONTROLLER
2782 .ndo_poll_controller = rtl8169_netpoll,
2783#endif
2784
2785};
2786
françois romieuc0e45c12011-01-03 15:08:04 +00002787static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
2788{
2789 struct mdio_ops *ops = &tp->mdio_ops;
2790
2791 switch (tp->mac_version) {
2792 case RTL_GIGA_MAC_VER_27:
2793 ops->write = r8168dp_1_mdio_write;
2794 ops->read = r8168dp_1_mdio_read;
2795 break;
françois romieue6de30d2011-01-03 15:08:37 +00002796 case RTL_GIGA_MAC_VER_28:
2797 ops->write = r8168dp_2_mdio_write;
2798 ops->read = r8168dp_2_mdio_read;
2799 break;
françois romieuc0e45c12011-01-03 15:08:04 +00002800 default:
2801 ops->write = r8169_mdio_write;
2802 ops->read = r8169_mdio_read;
2803 break;
2804 }
2805}
2806
françois romieu065c27c2011-01-03 15:08:12 +00002807static void r810x_phy_power_down(struct rtl8169_private *tp)
2808{
2809 rtl_writephy(tp, 0x1f, 0x0000);
2810 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2811}
2812
2813static void r810x_phy_power_up(struct rtl8169_private *tp)
2814{
2815 rtl_writephy(tp, 0x1f, 0x0000);
2816 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2817}
2818
2819static void r810x_pll_power_down(struct rtl8169_private *tp)
2820{
2821 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2822 rtl_writephy(tp, 0x1f, 0x0000);
2823 rtl_writephy(tp, MII_BMCR, 0x0000);
2824 return;
2825 }
2826
2827 r810x_phy_power_down(tp);
2828}
2829
2830static void r810x_pll_power_up(struct rtl8169_private *tp)
2831{
2832 r810x_phy_power_up(tp);
2833}
2834
2835static void r8168_phy_power_up(struct rtl8169_private *tp)
2836{
2837 rtl_writephy(tp, 0x1f, 0x0000);
2838 rtl_writephy(tp, 0x0e, 0x0000);
2839 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2840}
2841
2842static void r8168_phy_power_down(struct rtl8169_private *tp)
2843{
2844 rtl_writephy(tp, 0x1f, 0x0000);
2845 rtl_writephy(tp, 0x0e, 0x0200);
2846 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2847}
2848
2849static void r8168_pll_power_down(struct rtl8169_private *tp)
2850{
2851 void __iomem *ioaddr = tp->mmio_addr;
2852
2853 if (tp->mac_version == RTL_GIGA_MAC_VER_27)
2854 return;
2855
2856 if (((tp->mac_version == RTL_GIGA_MAC_VER_23) ||
2857 (tp->mac_version == RTL_GIGA_MAC_VER_24)) &&
2858 (RTL_R16(CPlusCmd) & ASF)) {
2859 return;
2860 }
2861
2862 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2863 rtl_writephy(tp, 0x1f, 0x0000);
2864 rtl_writephy(tp, MII_BMCR, 0x0000);
2865
2866 RTL_W32(RxConfig, RTL_R32(RxConfig) |
2867 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
2868 return;
2869 }
2870
2871 r8168_phy_power_down(tp);
2872
2873 switch (tp->mac_version) {
2874 case RTL_GIGA_MAC_VER_25:
2875 case RTL_GIGA_MAC_VER_26:
2876 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
2877 break;
2878 }
2879}
2880
2881static void r8168_pll_power_up(struct rtl8169_private *tp)
2882{
2883 void __iomem *ioaddr = tp->mmio_addr;
2884
2885 if (tp->mac_version == RTL_GIGA_MAC_VER_27)
2886 return;
2887
2888 switch (tp->mac_version) {
2889 case RTL_GIGA_MAC_VER_25:
2890 case RTL_GIGA_MAC_VER_26:
2891 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
2892 break;
2893 }
2894
2895 r8168_phy_power_up(tp);
2896}
2897
2898static void rtl_pll_power_op(struct rtl8169_private *tp,
2899 void (*op)(struct rtl8169_private *))
2900{
2901 if (op)
2902 op(tp);
2903}
2904
2905static void rtl_pll_power_down(struct rtl8169_private *tp)
2906{
2907 rtl_pll_power_op(tp, tp->pll_power_ops.down);
2908}
2909
2910static void rtl_pll_power_up(struct rtl8169_private *tp)
2911{
2912 rtl_pll_power_op(tp, tp->pll_power_ops.up);
2913}
2914
2915static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
2916{
2917 struct pll_power_ops *ops = &tp->pll_power_ops;
2918
2919 switch (tp->mac_version) {
2920 case RTL_GIGA_MAC_VER_07:
2921 case RTL_GIGA_MAC_VER_08:
2922 case RTL_GIGA_MAC_VER_09:
2923 case RTL_GIGA_MAC_VER_10:
2924 case RTL_GIGA_MAC_VER_16:
2925 ops->down = r810x_pll_power_down;
2926 ops->up = r810x_pll_power_up;
2927 break;
2928
2929 case RTL_GIGA_MAC_VER_11:
2930 case RTL_GIGA_MAC_VER_12:
2931 case RTL_GIGA_MAC_VER_17:
2932 case RTL_GIGA_MAC_VER_18:
2933 case RTL_GIGA_MAC_VER_19:
2934 case RTL_GIGA_MAC_VER_20:
2935 case RTL_GIGA_MAC_VER_21:
2936 case RTL_GIGA_MAC_VER_22:
2937 case RTL_GIGA_MAC_VER_23:
2938 case RTL_GIGA_MAC_VER_24:
2939 case RTL_GIGA_MAC_VER_25:
2940 case RTL_GIGA_MAC_VER_26:
2941 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00002942 case RTL_GIGA_MAC_VER_28:
françois romieu065c27c2011-01-03 15:08:12 +00002943 ops->down = r8168_pll_power_down;
2944 ops->up = r8168_pll_power_up;
2945 break;
2946
2947 default:
2948 ops->down = NULL;
2949 ops->up = NULL;
2950 break;
2951 }
2952}
2953
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002954static int __devinit
2955rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
2956{
Francois Romieu0e485152007-02-20 00:00:26 +01002957 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
2958 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02002960 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002961 struct net_device *dev;
2962 void __iomem *ioaddr;
Francois Romieu07d3f512007-02-21 22:40:46 +01002963 unsigned int i;
2964 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002966 if (netif_msg_drv(&debug)) {
2967 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
2968 MODULENAME, RTL8169_VERSION);
2969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002972 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002973 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04002974 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002975 rc = -ENOMEM;
2976 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 }
2978
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08002980 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00002982 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02002983 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002984 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Francois Romieuccdffb92008-07-26 14:26:06 +02002986 mii = &tp->mii;
2987 mii->dev = dev;
2988 mii->mdio_read = rtl_mdio_read;
2989 mii->mdio_write = rtl_mdio_write;
2990 mii->phy_id_mask = 0x1f;
2991 mii->reg_num_mask = 0x1f;
2992 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
2993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 /* enable device (incl. PCI PM wakeup and hotplug setup) */
2995 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002996 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00002997 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002998 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 }
3000
françois romieu87aeec72010-04-26 11:42:06 +00003001 if (pci_set_mwi(pdev) < 0)
3002 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003005 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003006 netif_err(tp, probe, dev,
3007 "region #%d not an MMIO resource, aborting\n",
3008 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003010 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003014 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003015 netif_err(tp, probe, dev,
3016 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003018 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 }
3020
3021 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003022 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003023 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00003024 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 }
3026
3027 tp->cp_cmd = PCIMulRW | RxChkSum;
3028
3029 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07003030 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 tp->cp_cmd |= PCIDAC;
3032 dev->features |= NETIF_F_HIGHDMA;
3033 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003034 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003036 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00003037 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 }
3039 }
3040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003042 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003043 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003044 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00003046 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 }
3048
David S. Miller4300e8c2010-03-26 10:23:30 -07003049 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3050 if (!tp->pcie_cap)
3051 netif_info(tp, probe, dev, "no PCI Express capability\n");
3052
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003053 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
3055 /* Soft reset the chip. */
3056 RTL_W8(ChipCmd, CmdReset);
3057
3058 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003059 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3061 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003062 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 }
3064
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003065 RTL_W16(IntrStatus, 0xffff);
3066
françois romieuca52efd2009-07-24 12:34:19 +00003067 pci_set_master(pdev);
3068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 /* Identify chip attached to board */
3070 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
françois romieuc0e45c12011-01-03 15:08:04 +00003072 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00003073 rtl_init_pll_power_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00003074
Jean Delvaref21b75e2009-05-26 20:54:48 -07003075 /* Use appropriate default if unknown */
3076 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003077 netif_notice(tp, probe, dev,
3078 "unknown MAC, using family default\n");
Jean Delvaref21b75e2009-05-26 20:54:48 -07003079 tp->mac_version = cfg->default_ver;
3080 }
3081
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
Roel Kluincee60c32008-04-17 22:35:54 +02003084 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 if (tp->mac_version == rtl_chip_info[i].mac_version)
3086 break;
3087 }
Roel Kluincee60c32008-04-17 22:35:54 +02003088 if (i == ARRAY_SIZE(rtl_chip_info)) {
Jean Delvaref21b75e2009-05-26 20:54:48 -07003089 dev_err(&pdev->dev,
3090 "driver bug, MAC version not found in rtl_chip_info\n");
françois romieu87aeec72010-04-26 11:42:06 +00003091 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 }
3093 tp->chipset = i;
3094
Francois Romieu5d06a992006-02-23 00:47:58 +01003095 RTL_W8(Cfg9346, Cfg9346_Unlock);
3096 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
3097 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07003098 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
3099 tp->features |= RTL_FEATURE_WOL;
3100 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
3101 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02003102 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01003103 RTL_W8(Cfg9346, Cfg9346_Lock);
3104
Francois Romieu66ec5d42007-11-06 22:56:10 +01003105 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
3106 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 tp->set_speed = rtl8169_set_speed_tbi;
3108 tp->get_settings = rtl8169_gset_tbi;
3109 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
3110 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
3111 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003112 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Francois Romieu64e4bfb2006-08-17 12:43:06 +02003114 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 } else {
3116 tp->set_speed = rtl8169_set_speed_xmii;
3117 tp->get_settings = rtl8169_gset_xmii;
3118 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
3119 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
3120 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003121 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 }
3123
Francois Romieudf58ef52008-10-09 14:35:58 -07003124 spin_lock_init(&tp->lock);
3125
Petr Vandrovec738e1e62008-10-12 20:58:29 -07003126 tp->mmio_addr = ioaddr;
3127
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00003128 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 for (i = 0; i < MAC_ADDR_LEN; i++)
3130 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04003131 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
3135 dev->irq = pdev->irq;
3136 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003138 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139
3140#ifdef CONFIG_R8169_VLAN
3141 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142#endif
Eric Dumazet2edae082010-09-06 18:46:39 +00003143 dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
3145 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01003146 tp->hw_start = cfg->hw_start;
3147 tp->intr_event = cfg->intr_event;
3148 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Francois Romieu2efa53f2007-03-09 00:00:05 +01003150 init_timer(&tp->timer);
3151 tp->timer.data = (unsigned long) dev;
3152 tp->timer.function = rtl8169_phy_timer;
3153
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003155 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00003156 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
3158 pci_set_drvdata(pdev, dev);
3159
Joe Perchesbf82c182010-02-09 11:49:50 +00003160 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
3161 rtl_chip_info[tp->chipset].name,
3162 dev->base_addr, dev->dev_addr,
3163 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
françois romieue6de30d2011-01-03 15:08:37 +00003165 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3166 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003167 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003168 }
françois romieub646d902011-01-03 15:08:21 +00003169
Bruno Prémont8b76ab32008-10-08 17:06:25 -07003170 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Alan Sternf3ec4f82010-06-08 15:23:51 -04003172 if (pci_dev_run_wake(pdev))
3173 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003174
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003175out:
3176 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
françois romieu87aeec72010-04-26 11:42:06 +00003178err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02003179 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003180 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00003181err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003182 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003183err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003184 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003185 pci_disable_device(pdev);
3186err_out_free_dev_1:
3187 free_netdev(dev);
3188 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189}
3190
Francois Romieu07d3f512007-02-21 22:40:46 +01003191static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192{
3193 struct net_device *dev = pci_get_drvdata(pdev);
3194 struct rtl8169_private *tp = netdev_priv(dev);
3195
françois romieue6de30d2011-01-03 15:08:37 +00003196 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3197 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003198 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003199 }
françois romieub646d902011-01-03 15:08:21 +00003200
Tejun Heo23f333a2010-12-12 16:45:14 +01003201 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01003202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08003204
Alan Sternf3ec4f82010-06-08 15:23:51 -04003205 if (pci_dev_run_wake(pdev))
3206 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003207
Ivan Veceracc098dc2009-11-29 23:12:52 -08003208 /* restore original MAC address */
3209 rtl_rar_set(tp, dev->perm_addr);
3210
Francois Romieufbac58f2007-10-04 22:51:38 +02003211 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 rtl8169_release_board(pdev, dev, tp->mmio_addr);
3213 pci_set_drvdata(pdev, NULL);
3214}
3215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216static int rtl8169_open(struct net_device *dev)
3217{
3218 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00003219 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02003221 int retval = -ENOMEM;
3222
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003223 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
Neil Hormanc0cd8842010-03-29 13:16:02 -07003225 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003227 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003229 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
3230 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003232 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003234 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
3235 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02003237 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239 retval = rtl8169_init_ring(dev);
3240 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02003241 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
David Howellsc4028952006-11-22 14:57:56 +00003243 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Francois Romieu99f252b2007-04-02 22:59:59 +02003245 smp_mb();
3246
Francois Romieufbac58f2007-10-04 22:51:38 +02003247 retval = request_irq(dev->irq, rtl8169_interrupt,
3248 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02003249 dev->name, dev);
3250 if (retval < 0)
3251 goto err_release_ring_2;
3252
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003253 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003254
françois romieueee3a962011-01-08 02:17:26 +00003255 rtl8169_init_phy(dev, tp);
3256
3257 /*
3258 * Pretend we are using VLANs; This bypasses a nasty bug where
3259 * Interrupts stop flowing on high load on 8110SCd controllers.
3260 */
3261 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3262 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | RxVlan);
3263
françois romieu065c27c2011-01-03 15:08:12 +00003264 rtl_pll_power_up(tp);
3265
Francois Romieu07ce4062007-02-23 23:36:39 +01003266 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 rtl8169_request_timer(dev);
3269
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003270 tp->saved_wolopts = 0;
3271 pm_runtime_put_noidle(&pdev->dev);
3272
françois romieueee3a962011-01-08 02:17:26 +00003273 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274out:
3275 return retval;
3276
Francois Romieu99f252b2007-04-02 22:59:59 +02003277err_release_ring_2:
3278 rtl8169_rx_clear(tp);
3279err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003280 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
3281 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003282 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02003283err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003284 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
3285 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003286 tp->TxDescArray = NULL;
3287err_pm_runtime_put:
3288 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 goto out;
3290}
3291
françois romieue6de30d2011-01-03 15:08:37 +00003292static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293{
françois romieue6de30d2011-01-03 15:08:37 +00003294 void __iomem *ioaddr = tp->mmio_addr;
3295
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 /* Disable interrupts */
3297 rtl8169_irq_mask_and_ack(ioaddr);
3298
françois romieue6de30d2011-01-03 15:08:37 +00003299 if (tp->mac_version == RTL_GIGA_MAC_VER_28) {
3300 while (RTL_R8(TxPoll) & NPQ)
3301 udelay(20);
3302
3303 }
3304
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 /* Reset the chipset */
3306 RTL_W8(ChipCmd, CmdReset);
3307
3308 /* PCI commit */
3309 RTL_R8(ChipCmd);
3310}
3311
Francois Romieu7f796d82007-06-11 23:04:41 +02003312static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003313{
3314 void __iomem *ioaddr = tp->mmio_addr;
3315 u32 cfg = rtl8169_rx_config;
3316
3317 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
3318 RTL_W32(RxConfig, cfg);
3319
3320 /* Set DMA burst size and Interframe Gap Time */
3321 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3322 (InterFrameGap << TxInterFrameGapShift));
3323}
3324
Francois Romieu07ce4062007-02-23 23:36:39 +01003325static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326{
3327 struct rtl8169_private *tp = netdev_priv(dev);
3328 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01003329 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
3331 /* Soft reset the chip. */
3332 RTL_W8(ChipCmd, CmdReset);
3333
3334 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003335 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3337 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003338 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 }
3340
Francois Romieu07ce4062007-02-23 23:36:39 +01003341 tp->hw_start(dev);
3342
Francois Romieu07ce4062007-02-23 23:36:39 +01003343 netif_start_queue(dev);
3344}
3345
3346
Francois Romieu7f796d82007-06-11 23:04:41 +02003347static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
3348 void __iomem *ioaddr)
3349{
3350 /*
3351 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3352 * register to be written before TxDescAddrLow to work.
3353 * Switching from MMIO to I/O access fixes the issue as well.
3354 */
3355 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003356 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003357 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003358 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003359}
3360
3361static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
3362{
3363 u16 cmd;
3364
3365 cmd = RTL_R16(CPlusCmd);
3366 RTL_W16(CPlusCmd, cmd);
3367 return cmd;
3368}
3369
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07003370static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02003371{
3372 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00003373 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02003374}
3375
Francois Romieu6dccd162007-02-13 23:38:05 +01003376static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
3377{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003378 static const struct {
Francois Romieu6dccd162007-02-13 23:38:05 +01003379 u32 mac_version;
3380 u32 clk;
3381 u32 val;
3382 } cfg2_info [] = {
3383 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
3384 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
3385 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
3386 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
3387 }, *p = cfg2_info;
3388 unsigned int i;
3389 u32 clk;
3390
3391 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01003392 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01003393 if ((p->mac_version == mac_version) && (p->clk == clk)) {
3394 RTL_W32(0x7c, p->val);
3395 break;
3396 }
3397 }
3398}
3399
Francois Romieu07ce4062007-02-23 23:36:39 +01003400static void rtl_hw_start_8169(struct net_device *dev)
3401{
3402 struct rtl8169_private *tp = netdev_priv(dev);
3403 void __iomem *ioaddr = tp->mmio_addr;
3404 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01003405
Francois Romieu9cb427b2006-11-02 00:10:16 +01003406 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
3407 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
3408 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
3409 }
3410
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003412 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3413 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3414 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3415 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3416 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3417
françois romieuf0298f82011-01-03 15:07:42 +00003418 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003420 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Francois Romieuc946b302007-10-04 00:42:50 +02003422 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3423 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3424 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3425 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3426 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Francois Romieu7f796d82007-06-11 23:04:41 +02003428 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02003429
3430 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3431 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Joe Perches06fa7352007-10-18 21:15:00 +02003432 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02003434 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 }
3436
Francois Romieubcf0bf92006-07-26 23:14:13 +02003437 RTL_W16(CPlusCmd, tp->cp_cmd);
3438
Francois Romieu6dccd162007-02-13 23:38:05 +01003439 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 /*
3442 * Undocumented corner. Supposedly:
3443 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3444 */
3445 RTL_W16(IntrMitigate, 0x0000);
3446
Francois Romieu7f796d82007-06-11 23:04:41 +02003447 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003448
Francois Romieuc946b302007-10-04 00:42:50 +02003449 if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
3450 (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
3451 (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
3452 (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
3453 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3454 rtl_set_rx_tx_config_registers(tp);
3455 }
3456
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02003458
3459 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3460 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
3462 RTL_W32(RxMissed, 0);
3463
Francois Romieu07ce4062007-02-23 23:36:39 +01003464 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466 /* no early-rx interrupts */
3467 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003468
3469 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01003470 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003471}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Francois Romieu9c14cea2008-07-05 00:21:15 +02003473static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02003474{
Francois Romieu9c14cea2008-07-05 00:21:15 +02003475 struct net_device *dev = pci_get_drvdata(pdev);
3476 struct rtl8169_private *tp = netdev_priv(dev);
3477 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02003478
Francois Romieu9c14cea2008-07-05 00:21:15 +02003479 if (cap) {
3480 u16 ctl;
3481
3482 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
3483 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
3484 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
3485 }
Francois Romieu458a9f62008-08-02 15:50:02 +02003486}
3487
françois romieu650e8d52011-01-03 15:08:29 +00003488static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02003489{
3490 u32 csi;
3491
3492 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00003493 rtl_csi_write(ioaddr, 0x070c, csi | bits);
3494}
3495
françois romieue6de30d2011-01-03 15:08:37 +00003496static void rtl_csi_access_enable_1(void __iomem *ioaddr)
3497{
3498 rtl_csi_access_enable(ioaddr, 0x17000000);
3499}
3500
françois romieu650e8d52011-01-03 15:08:29 +00003501static void rtl_csi_access_enable_2(void __iomem *ioaddr)
3502{
3503 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02003504}
3505
3506struct ephy_info {
3507 unsigned int offset;
3508 u16 mask;
3509 u16 bits;
3510};
3511
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003512static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02003513{
3514 u16 w;
3515
3516 while (len-- > 0) {
3517 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
3518 rtl_ephy_write(ioaddr, e->offset, w);
3519 e++;
3520 }
3521}
3522
Francois Romieub726e492008-06-28 12:22:59 +02003523static void rtl_disable_clock_request(struct pci_dev *pdev)
3524{
3525 struct net_device *dev = pci_get_drvdata(pdev);
3526 struct rtl8169_private *tp = netdev_priv(dev);
3527 int cap = tp->pcie_cap;
3528
3529 if (cap) {
3530 u16 ctl;
3531
3532 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3533 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
3534 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3535 }
3536}
3537
françois romieue6de30d2011-01-03 15:08:37 +00003538static void rtl_enable_clock_request(struct pci_dev *pdev)
3539{
3540 struct net_device *dev = pci_get_drvdata(pdev);
3541 struct rtl8169_private *tp = netdev_priv(dev);
3542 int cap = tp->pcie_cap;
3543
3544 if (cap) {
3545 u16 ctl;
3546
3547 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3548 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3549 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3550 }
3551}
3552
Francois Romieub726e492008-06-28 12:22:59 +02003553#define R8168_CPCMD_QUIRK_MASK (\
3554 EnableBist | \
3555 Mac_dbgo_oe | \
3556 Force_half_dup | \
3557 Force_rxflow_en | \
3558 Force_txflow_en | \
3559 Cxpl_dbg_sel | \
3560 ASF | \
3561 PktCntrDisable | \
3562 Mac_dbgo_sel)
3563
Francois Romieu219a1e92008-06-28 11:58:39 +02003564static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
3565{
Francois Romieub726e492008-06-28 12:22:59 +02003566 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3567
3568 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3569
Francois Romieu2e68ae42008-06-28 12:00:55 +02003570 rtl_tx_performance_tweak(pdev,
3571 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02003572}
3573
3574static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
3575{
3576 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02003577
françois romieuf0298f82011-01-03 15:07:42 +00003578 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02003579
3580 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02003581}
3582
3583static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
3584{
Francois Romieub726e492008-06-28 12:22:59 +02003585 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
3586
3587 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3588
Francois Romieu219a1e92008-06-28 11:58:39 +02003589 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02003590
3591 rtl_disable_clock_request(pdev);
3592
3593 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02003594}
3595
Francois Romieuef3386f2008-06-29 12:24:30 +02003596static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02003597{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003598 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003599 { 0x01, 0, 0x0001 },
3600 { 0x02, 0x0800, 0x1000 },
3601 { 0x03, 0, 0x0042 },
3602 { 0x06, 0x0080, 0x0000 },
3603 { 0x07, 0, 0x2000 }
3604 };
3605
françois romieu650e8d52011-01-03 15:08:29 +00003606 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003607
3608 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
3609
Francois Romieu219a1e92008-06-28 11:58:39 +02003610 __rtl_hw_start_8168cp(ioaddr, pdev);
3611}
3612
Francois Romieuef3386f2008-06-29 12:24:30 +02003613static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
3614{
françois romieu650e8d52011-01-03 15:08:29 +00003615 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02003616
3617 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3618
3619 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3620
3621 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3622}
3623
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003624static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
3625{
françois romieu650e8d52011-01-03 15:08:29 +00003626 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003627
3628 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3629
3630 /* Magic. */
3631 RTL_W8(DBG_REG, 0x20);
3632
françois romieuf0298f82011-01-03 15:07:42 +00003633 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003634
3635 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3636
3637 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3638}
3639
Francois Romieu219a1e92008-06-28 11:58:39 +02003640static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
3641{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003642 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003643 { 0x02, 0x0800, 0x1000 },
3644 { 0x03, 0, 0x0002 },
3645 { 0x06, 0x0080, 0x0000 }
3646 };
3647
françois romieu650e8d52011-01-03 15:08:29 +00003648 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003649
3650 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
3651
3652 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
3653
Francois Romieu219a1e92008-06-28 11:58:39 +02003654 __rtl_hw_start_8168cp(ioaddr, pdev);
3655}
3656
3657static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
3658{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003659 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003660 { 0x01, 0, 0x0001 },
3661 { 0x03, 0x0400, 0x0220 }
3662 };
3663
françois romieu650e8d52011-01-03 15:08:29 +00003664 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003665
3666 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
3667
Francois Romieu219a1e92008-06-28 11:58:39 +02003668 __rtl_hw_start_8168cp(ioaddr, pdev);
3669}
3670
Francois Romieu197ff762008-06-28 13:16:02 +02003671static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
3672{
3673 rtl_hw_start_8168c_2(ioaddr, pdev);
3674}
3675
Francois Romieu6fb07052008-06-29 11:54:28 +02003676static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
3677{
françois romieu650e8d52011-01-03 15:08:29 +00003678 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02003679
3680 __rtl_hw_start_8168cp(ioaddr, pdev);
3681}
3682
Francois Romieu5b538df2008-07-20 16:22:45 +02003683static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
3684{
françois romieu650e8d52011-01-03 15:08:29 +00003685 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02003686
3687 rtl_disable_clock_request(pdev);
3688
françois romieuf0298f82011-01-03 15:07:42 +00003689 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02003690
3691 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3692
3693 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3694}
3695
françois romieue6de30d2011-01-03 15:08:37 +00003696static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
3697{
3698 static const struct ephy_info e_info_8168d_4[] = {
3699 { 0x0b, ~0, 0x48 },
3700 { 0x19, 0x20, 0x50 },
3701 { 0x0c, ~0, 0x20 }
3702 };
3703 int i;
3704
3705 rtl_csi_access_enable_1(ioaddr);
3706
3707 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3708
3709 RTL_W8(MaxTxPacketSize, TxPacketMax);
3710
3711 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
3712 const struct ephy_info *e = e_info_8168d_4 + i;
3713 u16 w;
3714
3715 w = rtl_ephy_read(ioaddr, e->offset);
3716 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
3717 }
3718
3719 rtl_enable_clock_request(pdev);
3720}
3721
Francois Romieu07ce4062007-02-23 23:36:39 +01003722static void rtl_hw_start_8168(struct net_device *dev)
3723{
Francois Romieu2dd99532007-06-11 23:22:52 +02003724 struct rtl8169_private *tp = netdev_priv(dev);
3725 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01003726 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02003727
3728 RTL_W8(Cfg9346, Cfg9346_Unlock);
3729
françois romieuf0298f82011-01-03 15:07:42 +00003730 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02003731
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003732 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02003733
Francois Romieu0e485152007-02-20 00:00:26 +01003734 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02003735
3736 RTL_W16(CPlusCmd, tp->cp_cmd);
3737
Francois Romieu0e485152007-02-20 00:00:26 +01003738 RTL_W16(IntrMitigate, 0x5151);
3739
3740 /* Work around for RxFIFO overflow. */
3741 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
3742 tp->intr_event |= RxFIFOOver | PCSTimeout;
3743 tp->intr_event &= ~RxOverflow;
3744 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003745
3746 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3747
Francois Romieub8363902008-06-01 12:31:57 +02003748 rtl_set_rx_mode(dev);
3749
3750 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3751 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02003752
3753 RTL_R8(IntrMask);
3754
Francois Romieu219a1e92008-06-28 11:58:39 +02003755 switch (tp->mac_version) {
3756 case RTL_GIGA_MAC_VER_11:
3757 rtl_hw_start_8168bb(ioaddr, pdev);
3758 break;
3759
3760 case RTL_GIGA_MAC_VER_12:
3761 case RTL_GIGA_MAC_VER_17:
3762 rtl_hw_start_8168bef(ioaddr, pdev);
3763 break;
3764
3765 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02003766 rtl_hw_start_8168cp_1(ioaddr, pdev);
Francois Romieu219a1e92008-06-28 11:58:39 +02003767 break;
3768
3769 case RTL_GIGA_MAC_VER_19:
3770 rtl_hw_start_8168c_1(ioaddr, pdev);
3771 break;
3772
3773 case RTL_GIGA_MAC_VER_20:
3774 rtl_hw_start_8168c_2(ioaddr, pdev);
3775 break;
3776
Francois Romieu197ff762008-06-28 13:16:02 +02003777 case RTL_GIGA_MAC_VER_21:
3778 rtl_hw_start_8168c_3(ioaddr, pdev);
3779 break;
3780
Francois Romieu6fb07052008-06-29 11:54:28 +02003781 case RTL_GIGA_MAC_VER_22:
3782 rtl_hw_start_8168c_4(ioaddr, pdev);
3783 break;
3784
Francois Romieuef3386f2008-06-29 12:24:30 +02003785 case RTL_GIGA_MAC_VER_23:
3786 rtl_hw_start_8168cp_2(ioaddr, pdev);
3787 break;
3788
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003789 case RTL_GIGA_MAC_VER_24:
3790 rtl_hw_start_8168cp_3(ioaddr, pdev);
3791 break;
3792
Francois Romieu5b538df2008-07-20 16:22:45 +02003793 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00003794 case RTL_GIGA_MAC_VER_26:
3795 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02003796 rtl_hw_start_8168d(ioaddr, pdev);
3797 break;
3798
françois romieue6de30d2011-01-03 15:08:37 +00003799 case RTL_GIGA_MAC_VER_28:
3800 rtl_hw_start_8168d_4(ioaddr, pdev);
3801 break;
3802
Francois Romieu219a1e92008-06-28 11:58:39 +02003803 default:
3804 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
3805 dev->name, tp->mac_version);
3806 break;
3807 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003808
Francois Romieu0e485152007-02-20 00:00:26 +01003809 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3810
Francois Romieub8363902008-06-01 12:31:57 +02003811 RTL_W8(Cfg9346, Cfg9346_Lock);
3812
Francois Romieu2dd99532007-06-11 23:22:52 +02003813 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003814
Francois Romieu0e485152007-02-20 00:00:26 +01003815 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003816}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Francois Romieu2857ffb2008-08-02 21:08:49 +02003818#define R810X_CPCMD_QUIRK_MASK (\
3819 EnableBist | \
3820 Mac_dbgo_oe | \
3821 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00003822 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02003823 Force_txflow_en | \
3824 Cxpl_dbg_sel | \
3825 ASF | \
3826 PktCntrDisable | \
3827 PCIDAC | \
3828 PCIMulRW)
3829
3830static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
3831{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003832 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003833 { 0x01, 0, 0x6e65 },
3834 { 0x02, 0, 0x091f },
3835 { 0x03, 0, 0xc2f9 },
3836 { 0x06, 0, 0xafb5 },
3837 { 0x07, 0, 0x0e00 },
3838 { 0x19, 0, 0xec80 },
3839 { 0x01, 0, 0x2e65 },
3840 { 0x01, 0, 0x6e65 }
3841 };
3842 u8 cfg1;
3843
françois romieu650e8d52011-01-03 15:08:29 +00003844 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003845
3846 RTL_W8(DBG_REG, FIX_NAK_1);
3847
3848 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3849
3850 RTL_W8(Config1,
3851 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
3852 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3853
3854 cfg1 = RTL_R8(Config1);
3855 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
3856 RTL_W8(Config1, cfg1 & ~LEDS0);
3857
3858 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
3859
3860 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
3861}
3862
3863static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
3864{
françois romieu650e8d52011-01-03 15:08:29 +00003865 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003866
3867 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3868
3869 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
3870 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3871
3872 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
3873}
3874
3875static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
3876{
3877 rtl_hw_start_8102e_2(ioaddr, pdev);
3878
3879 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
3880}
3881
Francois Romieu07ce4062007-02-23 23:36:39 +01003882static void rtl_hw_start_8101(struct net_device *dev)
3883{
Francois Romieucdf1a602007-06-11 23:29:50 +02003884 struct rtl8169_private *tp = netdev_priv(dev);
3885 void __iomem *ioaddr = tp->mmio_addr;
3886 struct pci_dev *pdev = tp->pci_dev;
3887
Francois Romieue3cf0cc2007-08-17 14:55:46 +02003888 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
3889 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02003890 int cap = tp->pcie_cap;
3891
3892 if (cap) {
3893 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
3894 PCI_EXP_DEVCTL_NOSNOOP_EN);
3895 }
Francois Romieucdf1a602007-06-11 23:29:50 +02003896 }
3897
Francois Romieu2857ffb2008-08-02 21:08:49 +02003898 switch (tp->mac_version) {
3899 case RTL_GIGA_MAC_VER_07:
3900 rtl_hw_start_8102e_1(ioaddr, pdev);
3901 break;
3902
3903 case RTL_GIGA_MAC_VER_08:
3904 rtl_hw_start_8102e_3(ioaddr, pdev);
3905 break;
3906
3907 case RTL_GIGA_MAC_VER_09:
3908 rtl_hw_start_8102e_2(ioaddr, pdev);
3909 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02003910 }
3911
3912 RTL_W8(Cfg9346, Cfg9346_Unlock);
3913
françois romieuf0298f82011-01-03 15:07:42 +00003914 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02003915
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003916 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02003917
3918 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
3919
3920 RTL_W16(CPlusCmd, tp->cp_cmd);
3921
3922 RTL_W16(IntrMitigate, 0x0000);
3923
3924 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3925
3926 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3927 rtl_set_rx_tx_config_registers(tp);
3928
3929 RTL_W8(Cfg9346, Cfg9346_Lock);
3930
3931 RTL_R8(IntrMask);
3932
Francois Romieucdf1a602007-06-11 23:29:50 +02003933 rtl_set_rx_mode(dev);
3934
Francois Romieu0e485152007-02-20 00:00:26 +01003935 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3936
Francois Romieucdf1a602007-06-11 23:29:50 +02003937 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003938
Francois Romieu0e485152007-02-20 00:00:26 +01003939 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940}
3941
3942static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
3943{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
3945 return -EINVAL;
3946
3947 dev->mtu = new_mtu;
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00003948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949}
3950
3951static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
3952{
Al Viro95e09182007-12-22 18:55:39 +00003953 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
3955}
3956
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003957static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
3958 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003960 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00003961 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003962
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003963 kfree(*data_buff);
3964 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 rtl8169_make_unusable_by_asic(desc);
3966}
3967
3968static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
3969{
3970 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
3971
3972 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
3973}
3974
3975static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
3976 u32 rx_buf_sz)
3977{
3978 desc->addr = cpu_to_le64(mapping);
3979 wmb();
3980 rtl8169_mark_to_asic(desc, rx_buf_sz);
3981}
3982
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003983static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003985 return (void *)ALIGN((long)data, 16);
3986}
3987
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003988static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
3989 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003990{
3991 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003993 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003994 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003995 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003997 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
3998 if (!data)
3999 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004000
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004001 if (rtl8169_align(data) != data) {
4002 kfree(data);
4003 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4004 if (!data)
4005 return NULL;
4006 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004007
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004008 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004009 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004010 if (unlikely(dma_mapping_error(d, mapping))) {
4011 if (net_ratelimit())
4012 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004013 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015
4016 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004017 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004018
4019err_out:
4020 kfree(data);
4021 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022}
4023
4024static void rtl8169_rx_clear(struct rtl8169_private *tp)
4025{
Francois Romieu07d3f512007-02-21 22:40:46 +01004026 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
4028 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004029 if (tp->Rx_databuff[i]) {
4030 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 tp->RxDescArray + i);
4032 }
4033 }
4034}
4035
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004036static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004038 desc->opts1 |= cpu_to_le32(RingEnd);
4039}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004040
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004041static int rtl8169_rx_fill(struct rtl8169_private *tp)
4042{
4043 unsigned int i;
4044
4045 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004046 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004047
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004048 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004050
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004051 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004052 if (!data) {
4053 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004054 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004055 }
4056 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004059 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4060 return 0;
4061
4062err_out:
4063 rtl8169_rx_clear(tp);
4064 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065}
4066
4067static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4068{
4069 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
4070}
4071
4072static int rtl8169_init_ring(struct net_device *dev)
4073{
4074 struct rtl8169_private *tp = netdev_priv(dev);
4075
4076 rtl8169_init_ring_indexes(tp);
4077
4078 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004079 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004081 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082}
4083
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004084static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 struct TxDesc *desc)
4086{
4087 unsigned int len = tx_skb->len;
4088
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004089 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4090
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 desc->opts1 = 0x00;
4092 desc->opts2 = 0x00;
4093 desc->addr = 0x00;
4094 tx_skb->len = 0;
4095}
4096
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004097static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4098 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099{
4100 unsigned int i;
4101
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004102 for (i = 0; i < n; i++) {
4103 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 struct ring_info *tx_skb = tp->tx_skb + entry;
4105 unsigned int len = tx_skb->len;
4106
4107 if (len) {
4108 struct sk_buff *skb = tx_skb->skb;
4109
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004110 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 tp->TxDescArray + entry);
4112 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004113 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 dev_kfree_skb(skb);
4115 tx_skb->skb = NULL;
4116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 }
4118 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004119}
4120
4121static void rtl8169_tx_clear(struct rtl8169_private *tp)
4122{
4123 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 tp->cur_tx = tp->dirty_tx = 0;
4125}
4126
David Howellsc4028952006-11-22 14:57:56 +00004127static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128{
4129 struct rtl8169_private *tp = netdev_priv(dev);
4130
David Howellsc4028952006-11-22 14:57:56 +00004131 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 schedule_delayed_work(&tp->task, 4);
4133}
4134
4135static void rtl8169_wait_for_quiescence(struct net_device *dev)
4136{
4137 struct rtl8169_private *tp = netdev_priv(dev);
4138 void __iomem *ioaddr = tp->mmio_addr;
4139
4140 synchronize_irq(dev->irq);
4141
4142 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004143 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
4145 rtl8169_irq_mask_and_ack(ioaddr);
4146
David S. Millerd1d08d12008-01-07 20:53:33 -08004147 tp->intr_mask = 0xffff;
4148 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004149 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150}
4151
David Howellsc4028952006-11-22 14:57:56 +00004152static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153{
David Howellsc4028952006-11-22 14:57:56 +00004154 struct rtl8169_private *tp =
4155 container_of(work, struct rtl8169_private, task.work);
4156 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157 int ret;
4158
Francois Romieueb2a0212007-02-15 23:37:21 +01004159 rtnl_lock();
4160
4161 if (!netif_running(dev))
4162 goto out_unlock;
4163
4164 rtl8169_wait_for_quiescence(dev);
4165 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
4167 ret = rtl8169_open(dev);
4168 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004169 if (net_ratelimit())
4170 netif_err(tp, drv, dev,
4171 "reinit failure (status = %d). Rescheduling\n",
4172 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 rtl8169_schedule_work(dev, rtl8169_reinit_task);
4174 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004175
4176out_unlock:
4177 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178}
4179
David Howellsc4028952006-11-22 14:57:56 +00004180static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181{
David Howellsc4028952006-11-22 14:57:56 +00004182 struct rtl8169_private *tp =
4183 container_of(work, struct rtl8169_private, task.work);
4184 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185
Francois Romieueb2a0212007-02-15 23:37:21 +01004186 rtnl_lock();
4187
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01004189 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
4191 rtl8169_wait_for_quiescence(dev);
4192
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004193 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 rtl8169_tx_clear(tp);
4195
4196 if (tp->dirty_rx == tp->cur_rx) {
4197 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004198 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 netif_wake_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004200 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 } else {
Joe Perchesbf82c182010-02-09 11:49:50 +00004202 if (net_ratelimit())
4203 netif_emerg(tp, intr, dev, "Rx buffers shortage\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 rtl8169_schedule_work(dev, rtl8169_reset_task);
4205 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004206
4207out_unlock:
4208 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209}
4210
4211static void rtl8169_tx_timeout(struct net_device *dev)
4212{
4213 struct rtl8169_private *tp = netdev_priv(dev);
4214
françois romieue6de30d2011-01-03 15:08:37 +00004215 rtl8169_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
4217 /* Let's wait a bit while any (async) irq lands on */
4218 rtl8169_schedule_work(dev, rtl8169_reset_task);
4219}
4220
4221static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
4222 u32 opts1)
4223{
4224 struct skb_shared_info *info = skb_shinfo(skb);
4225 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04004226 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004227 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
4229 entry = tp->cur_tx;
4230 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
4231 skb_frag_t *frag = info->frags + cur_frag;
4232 dma_addr_t mapping;
4233 u32 status, len;
4234 void *addr;
4235
4236 entry = (entry + 1) % NUM_TX_DESC;
4237
4238 txd = tp->TxDescArray + entry;
4239 len = frag->size;
4240 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004241 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004242 if (unlikely(dma_mapping_error(d, mapping))) {
4243 if (net_ratelimit())
4244 netif_err(tp, drv, tp->dev,
4245 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004246 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248
4249 /* anti gcc 2.95.3 bugware (sic) */
4250 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4251
4252 txd->opts1 = cpu_to_le32(status);
4253 txd->addr = cpu_to_le64(mapping);
4254
4255 tp->tx_skb[entry].len = len;
4256 }
4257
4258 if (cur_frag) {
4259 tp->tx_skb[entry].skb = skb;
4260 txd->opts1 |= cpu_to_le32(LastFrag);
4261 }
4262
4263 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004264
4265err_out:
4266 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
4267 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268}
4269
4270static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
4271{
4272 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07004273 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
4275 if (mss)
4276 return LargeSend | ((mss & MSSMask) << MSSShift);
4277 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07004278 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004279 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
4281 if (ip->protocol == IPPROTO_TCP)
4282 return IPCS | TCPCS;
4283 else if (ip->protocol == IPPROTO_UDP)
4284 return IPCS | UDPCS;
4285 WARN_ON(1); /* we need a WARN() */
4286 }
4287 return 0;
4288}
4289
Stephen Hemminger613573252009-08-31 19:50:58 +00004290static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
4291 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292{
4293 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004294 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 struct TxDesc *txd = tp->TxDescArray + entry;
4296 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004297 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 dma_addr_t mapping;
4299 u32 status, len;
4300 u32 opts1;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004301 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02004302
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004304 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004305 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 }
4307
4308 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004309 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004311 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004312 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004313 if (unlikely(dma_mapping_error(d, mapping))) {
4314 if (net_ratelimit())
4315 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004316 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318
4319 tp->tx_skb[entry].len = len;
4320 txd->addr = cpu_to_le64(mapping);
4321 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
4322
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004323 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
4324
4325 frags = rtl8169_xmit_frags(tp, skb, opts1);
4326 if (frags < 0)
4327 goto err_dma_1;
4328 else if (frags)
4329 opts1 |= FirstFrag;
4330 else {
4331 opts1 |= FirstFrag | LastFrag;
4332 tp->tx_skb[entry].skb = skb;
4333 }
4334
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 wmb();
4336
4337 /* anti gcc 2.95.3 bugware (sic) */
4338 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4339 txd->opts1 = cpu_to_le32(status);
4340
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 tp->cur_tx += frags + 1;
4342
David Dillow4c020a92010-03-03 16:33:10 +00004343 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
Francois Romieu275391a2007-02-23 23:50:28 +01004345 RTL_W8(TxPoll, NPQ); /* set polling bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
4347 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
4348 netif_stop_queue(dev);
4349 smp_rmb();
4350 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
4351 netif_wake_queue(dev);
4352 }
4353
Stephen Hemminger613573252009-08-31 19:50:58 +00004354 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004356err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004357 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004358err_dma_0:
4359 dev_kfree_skb(skb);
4360 dev->stats.tx_dropped++;
4361 return NETDEV_TX_OK;
4362
4363err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004365 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00004366 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367}
4368
4369static void rtl8169_pcierr_interrupt(struct net_device *dev)
4370{
4371 struct rtl8169_private *tp = netdev_priv(dev);
4372 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 u16 pci_status, pci_cmd;
4374
4375 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
4376 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
4377
Joe Perchesbf82c182010-02-09 11:49:50 +00004378 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4379 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
4381 /*
4382 * The recovery sequence below admits a very elaborated explanation:
4383 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01004384 * - I did not see what else could be done;
4385 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 *
4387 * Feel free to adjust to your needs.
4388 */
Francois Romieua27993f2006-12-18 00:04:19 +01004389 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01004390 pci_cmd &= ~PCI_COMMAND_PARITY;
4391 else
4392 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
4393
4394 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
4396 pci_write_config_word(pdev, PCI_STATUS,
4397 pci_status & (PCI_STATUS_DETECTED_PARITY |
4398 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
4399 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
4400
4401 /* The infamous DAC f*ckup only happens at boot time */
4402 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00004403 void __iomem *ioaddr = tp->mmio_addr;
4404
Joe Perchesbf82c182010-02-09 11:49:50 +00004405 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 tp->cp_cmd &= ~PCIDAC;
4407 RTL_W16(CPlusCmd, tp->cp_cmd);
4408 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 }
4410
françois romieue6de30d2011-01-03 15:08:37 +00004411 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01004412
4413 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414}
4415
Francois Romieu07d3f512007-02-21 22:40:46 +01004416static void rtl8169_tx_interrupt(struct net_device *dev,
4417 struct rtl8169_private *tp,
4418 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419{
4420 unsigned int dirty_tx, tx_left;
4421
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 dirty_tx = tp->dirty_tx;
4423 smp_rmb();
4424 tx_left = tp->cur_tx - dirty_tx;
4425
4426 while (tx_left > 0) {
4427 unsigned int entry = dirty_tx % NUM_TX_DESC;
4428 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 u32 status;
4430
4431 rmb();
4432 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
4433 if (status & DescOwn)
4434 break;
4435
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004436 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
4437 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004439 dev->stats.tx_packets++;
4440 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00004441 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 tx_skb->skb = NULL;
4443 }
4444 dirty_tx++;
4445 tx_left--;
4446 }
4447
4448 if (tp->dirty_tx != dirty_tx) {
4449 tp->dirty_tx = dirty_tx;
4450 smp_wmb();
4451 if (netif_queue_stopped(dev) &&
4452 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
4453 netif_wake_queue(dev);
4454 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02004455 /*
4456 * 8168 hack: TxPoll requests are lost when the Tx packets are
4457 * too close. Let's kick an extra TxPoll request when a burst
4458 * of start_xmit activity is detected (if it is not detected,
4459 * it is slow enough). -- FR
4460 */
4461 smp_rmb();
4462 if (tp->cur_tx != dirty_tx)
4463 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 }
4465}
4466
Francois Romieu126fa4b2005-05-12 20:09:17 -04004467static inline int rtl8169_fragmented_frame(u32 status)
4468{
4469 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4470}
4471
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004472static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 u32 status = opts1 & RxProtoMask;
4475
4476 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00004477 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 skb->ip_summed = CHECKSUM_UNNECESSARY;
4479 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07004480 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481}
4482
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004483static struct sk_buff *rtl8169_try_rx_copy(void *data,
4484 struct rtl8169_private *tp,
4485 int pkt_size,
4486 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004488 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004489 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004491 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004492 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004493 prefetch(data);
4494 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
4495 if (skb)
4496 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004497 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
4498
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004499 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500}
4501
Eric Dumazet630b9432010-03-31 02:08:31 +00004502/*
4503 * Warning : rtl8169_rx_interrupt() might be called :
4504 * 1) from NAPI (softirq) context
4505 * (polling = 1 : we should call netif_receive_skb())
4506 * 2) from process context (rtl8169_reset_task())
4507 * (polling = 0 : we must call netif_rx() instead)
4508 */
Francois Romieu07d3f512007-02-21 22:40:46 +01004509static int rtl8169_rx_interrupt(struct net_device *dev,
4510 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004511 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512{
4513 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004514 unsigned int count;
Eric Dumazet630b9432010-03-31 02:08:31 +00004515 int polling = (budget != ~(u32)0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 cur_rx = tp->cur_rx;
4518 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02004519 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004521 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004523 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 u32 status;
4525
4526 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04004527 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
4529 if (status & DescOwn)
4530 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004531 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004532 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
4533 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004534 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02004536 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02004538 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004539 if (status & RxFOVF) {
4540 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004541 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004542 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004543 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004545 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004546 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
Francois Romieu126fa4b2005-05-12 20:09:17 -04004549 /*
4550 * The driver does not support incoming fragmented
4551 * frames. They are seen as a symptom of over-mtu
4552 * sized frames.
4553 */
4554 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02004555 dev->stats.rx_dropped++;
4556 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004557 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004558 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004559 }
4560
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004561 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
4562 tp, pkt_size, addr);
4563 rtl8169_mark_to_asic(desc, rx_buf_sz);
4564 if (!skb) {
4565 dev->stats.rx_dropped++;
4566 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 }
4568
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004569 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 skb_put(skb, pkt_size);
4571 skb->protocol = eth_type_trans(skb, dev);
4572
Eric Dumazet630b9432010-03-31 02:08:31 +00004573 if (rtl8169_rx_vlan_skb(tp, desc, skb, polling) < 0) {
4574 if (likely(polling))
Eric Dumazet2edae082010-09-06 18:46:39 +00004575 napi_gro_receive(&tp->napi, skb);
Eric Dumazet630b9432010-03-31 02:08:31 +00004576 else
4577 netif_rx(skb);
4578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579
Francois Romieucebf8cc2007-10-18 12:06:54 +02004580 dev->stats.rx_bytes += pkt_size;
4581 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 }
Francois Romieu6dccd162007-02-13 23:38:05 +01004583
4584 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00004585 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01004586 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
4587 desc->opts2 = 0;
4588 cur_rx++;
4589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 }
4591
4592 count = cur_rx - tp->cur_rx;
4593 tp->cur_rx = cur_rx;
4594
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004595 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596
4597 return count;
4598}
4599
Francois Romieu07d3f512007-02-21 22:40:46 +01004600static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601{
Francois Romieu07d3f512007-02-21 22:40:46 +01004602 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02004606 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
David Dillowf11a3772009-05-22 15:29:34 +00004608 /* loop handling interrupts until we have no new ones or
4609 * we hit a invalid/hotplug case.
4610 */
Francois Romieu865c6522008-05-11 14:51:00 +02004611 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00004612 while (status && status != 0xffff) {
4613 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
David Dillowf11a3772009-05-22 15:29:34 +00004615 /* Handle all of the error cases first. These will reset
4616 * the chip, so just exit the loop.
4617 */
4618 if (unlikely(!netif_running(dev))) {
4619 rtl8169_asic_down(ioaddr);
4620 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 }
David Dillowf11a3772009-05-22 15:29:34 +00004622
4623 /* Work around for rx fifo overflow */
françois romieu53f57352010-11-08 13:23:05 +00004624 if (unlikely(status & RxFIFOOver) &&
4625 (tp->mac_version == RTL_GIGA_MAC_VER_11)) {
David Dillowf11a3772009-05-22 15:29:34 +00004626 netif_stop_queue(dev);
4627 rtl8169_tx_timeout(dev);
4628 break;
4629 }
4630
4631 if (unlikely(status & SYSErr)) {
4632 rtl8169_pcierr_interrupt(dev);
4633 break;
4634 }
4635
4636 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004637 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00004638
4639 /* We need to see the lastest version of tp->intr_mask to
4640 * avoid ignoring an MSI interrupt and having to wait for
4641 * another event which may never come.
4642 */
4643 smp_rmb();
4644 if (status & tp->intr_mask & tp->napi_event) {
4645 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
4646 tp->intr_mask = ~tp->napi_event;
4647
4648 if (likely(napi_schedule_prep(&tp->napi)))
4649 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00004650 else
4651 netif_info(tp, intr, dev,
4652 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00004653 }
4654
4655 /* We only get a new MSI interrupt when all active irq
4656 * sources on the chip have been acknowledged. So, ack
4657 * everything we've seen and check if new sources have become
4658 * active to avoid blocking all interrupts from the chip.
4659 */
4660 RTL_W16(IntrStatus,
4661 (status & RxFIFOOver) ? (status | RxOverflow) : status);
4662 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 }
David Dillowf11a3772009-05-22 15:29:34 +00004664
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 return IRQ_RETVAL(handled);
4666}
4667
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004668static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004670 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
4671 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004673 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004675 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 rtl8169_tx_interrupt(dev, tp, ioaddr);
4677
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004678 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004679 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00004680
4681 /* We need for force the visibility of tp->intr_mask
4682 * for other CPUs, as we can loose an MSI interrupt
4683 * and potentially wait for a retransmit timeout if we don't.
4684 * The posted write to IntrMask is safe, as it will
4685 * eventually make it to the chip and we won't loose anything
4686 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 */
David Dillowf11a3772009-05-22 15:29:34 +00004688 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00004689 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01004690 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 }
4692
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004693 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695
Francois Romieu523a6092008-09-10 22:28:56 +02004696static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
4697{
4698 struct rtl8169_private *tp = netdev_priv(dev);
4699
4700 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
4701 return;
4702
4703 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
4704 RTL_W32(RxMissed, 0);
4705}
4706
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707static void rtl8169_down(struct net_device *dev)
4708{
4709 struct rtl8169_private *tp = netdev_priv(dev);
4710 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
4712 rtl8169_delete_timer(dev);
4713
4714 netif_stop_queue(dev);
4715
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004716 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004717
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 spin_lock_irq(&tp->lock);
4719
4720 rtl8169_asic_down(ioaddr);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004721 /*
4722 * At this point device interrupts can not be enabled in any function,
4723 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
4724 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
4725 */
Francois Romieu523a6092008-09-10 22:28:56 +02004726 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
4728 spin_unlock_irq(&tp->lock);
4729
4730 synchronize_irq(dev->irq);
4731
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004733 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 rtl8169_tx_clear(tp);
4736
4737 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00004738
4739 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740}
4741
4742static int rtl8169_close(struct net_device *dev)
4743{
4744 struct rtl8169_private *tp = netdev_priv(dev);
4745 struct pci_dev *pdev = tp->pci_dev;
4746
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004747 pm_runtime_get_sync(&pdev->dev);
4748
Ivan Vecera355423d2009-02-06 21:49:57 -08004749 /* update counters before going down */
4750 rtl8169_update_counters(dev);
4751
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 rtl8169_down(dev);
4753
4754 free_irq(dev->irq, dev);
4755
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004756 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
4757 tp->RxPhyAddr);
4758 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
4759 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760 tp->TxDescArray = NULL;
4761 tp->RxDescArray = NULL;
4762
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004763 pm_runtime_put_sync(&pdev->dev);
4764
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 return 0;
4766}
4767
Francois Romieu07ce4062007-02-23 23:36:39 +01004768static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769{
4770 struct rtl8169_private *tp = netdev_priv(dev);
4771 void __iomem *ioaddr = tp->mmio_addr;
4772 unsigned long flags;
4773 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01004774 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775 u32 tmp = 0;
4776
4777 if (dev->flags & IFF_PROMISC) {
4778 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00004779 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 rx_mode =
4781 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4782 AcceptAllPhys;
4783 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00004784 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00004785 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 /* Too many to filter perfectly -- accept all multicasts. */
4787 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4788 mc_filter[1] = mc_filter[0] = 0xffffffff;
4789 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00004790 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01004791
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 rx_mode = AcceptBroadcast | AcceptMyPhys;
4793 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00004794 netdev_for_each_mc_addr(ha, dev) {
4795 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4797 rx_mode |= AcceptMulticast;
4798 }
4799 }
4800
4801 spin_lock_irqsave(&tp->lock, flags);
4802
4803 tmp = rtl8169_rx_config | rx_mode |
4804 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
4805
Francois Romieuf887cce2008-07-17 22:24:18 +02004806 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01004807 u32 data = mc_filter[0];
4808
4809 mc_filter[0] = swab32(mc_filter[1]);
4810 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02004811 }
4812
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07004814 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
Francois Romieu57a9f232007-06-04 22:10:15 +02004816 RTL_W32(RxConfig, tmp);
4817
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 spin_unlock_irqrestore(&tp->lock, flags);
4819}
4820
4821/**
4822 * rtl8169_get_stats - Get rtl8169 read/write statistics
4823 * @dev: The Ethernet Device to get statistics for
4824 *
4825 * Get TX/RX statistics for rtl8169
4826 */
4827static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
4828{
4829 struct rtl8169_private *tp = netdev_priv(dev);
4830 void __iomem *ioaddr = tp->mmio_addr;
4831 unsigned long flags;
4832
4833 if (netif_running(dev)) {
4834 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02004835 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 spin_unlock_irqrestore(&tp->lock, flags);
4837 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02004838
Francois Romieucebf8cc2007-10-18 12:06:54 +02004839 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840}
4841
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004842static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01004843{
françois romieu065c27c2011-01-03 15:08:12 +00004844 struct rtl8169_private *tp = netdev_priv(dev);
4845
Francois Romieu5d06a992006-02-23 00:47:58 +01004846 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004847 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01004848
françois romieu065c27c2011-01-03 15:08:12 +00004849 rtl_pll_power_down(tp);
4850
Francois Romieu5d06a992006-02-23 00:47:58 +01004851 netif_device_detach(dev);
4852 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004853}
Francois Romieu5d06a992006-02-23 00:47:58 +01004854
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004855#ifdef CONFIG_PM
4856
4857static int rtl8169_suspend(struct device *device)
4858{
4859 struct pci_dev *pdev = to_pci_dev(device);
4860 struct net_device *dev = pci_get_drvdata(pdev);
4861
4862 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02004863
Francois Romieu5d06a992006-02-23 00:47:58 +01004864 return 0;
4865}
4866
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004867static void __rtl8169_resume(struct net_device *dev)
4868{
françois romieu065c27c2011-01-03 15:08:12 +00004869 struct rtl8169_private *tp = netdev_priv(dev);
4870
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004871 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00004872
4873 rtl_pll_power_up(tp);
4874
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004875 rtl8169_schedule_work(dev, rtl8169_reset_task);
4876}
4877
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004878static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01004879{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004880 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01004881 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00004882 struct rtl8169_private *tp = netdev_priv(dev);
4883
4884 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01004885
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004886 if (netif_running(dev))
4887 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01004888
Francois Romieu5d06a992006-02-23 00:47:58 +01004889 return 0;
4890}
4891
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004892static int rtl8169_runtime_suspend(struct device *device)
4893{
4894 struct pci_dev *pdev = to_pci_dev(device);
4895 struct net_device *dev = pci_get_drvdata(pdev);
4896 struct rtl8169_private *tp = netdev_priv(dev);
4897
4898 if (!tp->TxDescArray)
4899 return 0;
4900
4901 spin_lock_irq(&tp->lock);
4902 tp->saved_wolopts = __rtl8169_get_wol(tp);
4903 __rtl8169_set_wol(tp, WAKE_ANY);
4904 spin_unlock_irq(&tp->lock);
4905
4906 rtl8169_net_suspend(dev);
4907
4908 return 0;
4909}
4910
4911static int rtl8169_runtime_resume(struct device *device)
4912{
4913 struct pci_dev *pdev = to_pci_dev(device);
4914 struct net_device *dev = pci_get_drvdata(pdev);
4915 struct rtl8169_private *tp = netdev_priv(dev);
4916
4917 if (!tp->TxDescArray)
4918 return 0;
4919
4920 spin_lock_irq(&tp->lock);
4921 __rtl8169_set_wol(tp, tp->saved_wolopts);
4922 tp->saved_wolopts = 0;
4923 spin_unlock_irq(&tp->lock);
4924
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00004925 rtl8169_init_phy(dev, tp);
4926
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004927 __rtl8169_resume(dev);
4928
4929 return 0;
4930}
4931
4932static int rtl8169_runtime_idle(struct device *device)
4933{
4934 struct pci_dev *pdev = to_pci_dev(device);
4935 struct net_device *dev = pci_get_drvdata(pdev);
4936 struct rtl8169_private *tp = netdev_priv(dev);
4937
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004938 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004939}
4940
Alexey Dobriyan47145212009-12-14 18:00:08 -08004941static const struct dev_pm_ops rtl8169_pm_ops = {
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004942 .suspend = rtl8169_suspend,
4943 .resume = rtl8169_resume,
4944 .freeze = rtl8169_suspend,
4945 .thaw = rtl8169_resume,
4946 .poweroff = rtl8169_suspend,
4947 .restore = rtl8169_resume,
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004948 .runtime_suspend = rtl8169_runtime_suspend,
4949 .runtime_resume = rtl8169_runtime_resume,
4950 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004951};
4952
4953#define RTL8169_PM_OPS (&rtl8169_pm_ops)
4954
4955#else /* !CONFIG_PM */
4956
4957#define RTL8169_PM_OPS NULL
4958
4959#endif /* !CONFIG_PM */
4960
Francois Romieu1765f952008-09-13 17:21:40 +02004961static void rtl_shutdown(struct pci_dev *pdev)
4962{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004963 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00004964 struct rtl8169_private *tp = netdev_priv(dev);
4965 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02004966
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004967 rtl8169_net_suspend(dev);
4968
Ivan Veceracc098dc2009-11-29 23:12:52 -08004969 /* restore original MAC address */
4970 rtl_rar_set(tp, dev->perm_addr);
4971
françois romieu4bb3f522009-06-17 11:41:45 +00004972 spin_lock_irq(&tp->lock);
4973
4974 rtl8169_asic_down(ioaddr);
4975
4976 spin_unlock_irq(&tp->lock);
4977
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004978 if (system_state == SYSTEM_POWER_OFF) {
françois romieuca52efd2009-07-24 12:34:19 +00004979 /* WoL fails with some 8168 when the receiver is disabled. */
4980 if (tp->features & RTL_FEATURE_WOL) {
4981 pci_clear_master(pdev);
4982
4983 RTL_W8(ChipCmd, CmdRxEnb);
4984 /* PCI commit */
4985 RTL_R8(ChipCmd);
4986 }
4987
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004988 pci_wake_from_d3(pdev, true);
4989 pci_set_power_state(pdev, PCI_D3hot);
4990 }
4991}
Francois Romieu5d06a992006-02-23 00:47:58 +01004992
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993static struct pci_driver rtl8169_pci_driver = {
4994 .name = MODULENAME,
4995 .id_table = rtl8169_pci_tbl,
4996 .probe = rtl8169_init_one,
4997 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02004998 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004999 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000};
5001
Francois Romieu07d3f512007-02-21 22:40:46 +01005002static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003{
Jeff Garzik29917622006-08-19 17:48:59 -04005004 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005}
5006
Francois Romieu07d3f512007-02-21 22:40:46 +01005007static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008{
5009 pci_unregister_driver(&rtl8169_pci_driver);
5010}
5011
5012module_init(rtl8169_init_module);
5013module_exit(rtl8169_cleanup_module);