blob: b52ee17de74d30259ad19c2e7e77f7bbd468eaf7 [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>
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +000028#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Francois Romieu99f252b2007-04-02 22:59:59 +020030#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/io.h>
32#include <asm/irq.h>
33
Francois Romieu865c6522008-05-11 14:51:00 +020034#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define MODULENAME "r8169"
36#define PFX MODULENAME ": "
37
françois romieubca03d52011-01-03 15:07:31 +000038#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
39#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
hayeswang01dc7fe2011-03-21 01:50:28 +000040#define FIRMWARE_8168E_1 "rtl_nic/rtl8168e-1.fw"
41#define FIRMWARE_8168E_2 "rtl_nic/rtl8168e-2.fw"
Hayes Wang5a5e4442011-02-22 17:26:21 +080042#define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
françois romieubca03d52011-01-03 15:07:31 +000043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#ifdef RTL8169_DEBUG
45#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020046 if (!(expr)) { \
47 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070048 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020049 }
Joe Perches06fa7352007-10-18 21:15:00 +020050#define dprintk(fmt, args...) \
51 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#else
53#define assert(expr) do {} while (0)
54#define dprintk(fmt, args...) do {} while (0)
55#endif /* RTL8169_DEBUG */
56
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020057#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070058 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define TX_BUFFS_AVAIL(tp) \
61 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
64 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050065static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* MAC address length */
68#define MAC_ADDR_LEN 6
69
Francois Romieu9c14cea2008-07-05 00:21:15 +020070#define MAX_READ_REQUEST_SHIFT 12
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
72#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
73#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
75#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
76
77#define R8169_REGS_SIZE 256
78#define R8169_NAPI_WEIGHT 64
79#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
80#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
81#define RX_BUF_SIZE 1536 /* Rx Buffer size */
82#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
83#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
84
85#define RTL8169_TX_TIMEOUT (6*HZ)
86#define RTL8169_PHY_TIMEOUT (10*HZ)
87
françois romieuea8dbdd2009-03-15 01:10:50 +000088#define RTL_EEPROM_SIG cpu_to_le32(0x8129)
89#define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
Francois Romieue1564ec2008-10-16 22:46:13 +020090#define RTL_EEPROM_SIG_ADDR 0x0000
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* write/read MMIO register */
93#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
94#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
95#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
96#define RTL_R8(reg) readb (ioaddr + (reg))
97#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +000098#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100enum mac_version {
Jean Delvaref21b75e2009-05-26 20:54:48 -0700101 RTL_GIGA_MAC_NONE = 0x00,
Francois Romieuba6eb6e2007-06-11 23:35:18 +0200102 RTL_GIGA_MAC_VER_01 = 0x01, // 8169
103 RTL_GIGA_MAC_VER_02 = 0x02, // 8169S
104 RTL_GIGA_MAC_VER_03 = 0x03, // 8110S
105 RTL_GIGA_MAC_VER_04 = 0x04, // 8169SB
106 RTL_GIGA_MAC_VER_05 = 0x05, // 8110SCd
Francois Romieu6dccd162007-02-13 23:38:05 +0100107 RTL_GIGA_MAC_VER_06 = 0x06, // 8110SCe
Francois Romieu2857ffb2008-08-02 21:08:49 +0200108 RTL_GIGA_MAC_VER_07 = 0x07, // 8102e
109 RTL_GIGA_MAC_VER_08 = 0x08, // 8102e
110 RTL_GIGA_MAC_VER_09 = 0x09, // 8102e
111 RTL_GIGA_MAC_VER_10 = 0x0a, // 8101e
Francois Romieu2dd99532007-06-11 23:22:52 +0200112 RTL_GIGA_MAC_VER_11 = 0x0b, // 8168Bb
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200113 RTL_GIGA_MAC_VER_12 = 0x0c, // 8168Be
114 RTL_GIGA_MAC_VER_13 = 0x0d, // 8101Eb
115 RTL_GIGA_MAC_VER_14 = 0x0e, // 8101 ?
116 RTL_GIGA_MAC_VER_15 = 0x0f, // 8101 ?
117 RTL_GIGA_MAC_VER_16 = 0x11, // 8101Ec
118 RTL_GIGA_MAC_VER_17 = 0x10, // 8168Bf
119 RTL_GIGA_MAC_VER_18 = 0x12, // 8168CP
120 RTL_GIGA_MAC_VER_19 = 0x13, // 8168C
Francois Romieu197ff762008-06-28 13:16:02 +0200121 RTL_GIGA_MAC_VER_20 = 0x14, // 8168C
Francois Romieu6fb07052008-06-29 11:54:28 +0200122 RTL_GIGA_MAC_VER_21 = 0x15, // 8168C
Francois Romieuef3386f2008-06-29 12:24:30 +0200123 RTL_GIGA_MAC_VER_22 = 0x16, // 8168C
Francois Romieu7f3e3d32008-07-20 18:53:20 +0200124 RTL_GIGA_MAC_VER_23 = 0x17, // 8168CP
Francois Romieu5b538df2008-07-20 16:22:45 +0200125 RTL_GIGA_MAC_VER_24 = 0x18, // 8168CP
françois romieudaf9df62009-10-07 12:44:20 +0000126 RTL_GIGA_MAC_VER_25 = 0x19, // 8168D
127 RTL_GIGA_MAC_VER_26 = 0x1a, // 8168D
françois romieue6de30d2011-01-03 15:08:37 +0000128 RTL_GIGA_MAC_VER_27 = 0x1b, // 8168DP
129 RTL_GIGA_MAC_VER_28 = 0x1c, // 8168DP
Hayes Wang5a5e4442011-02-22 17:26:21 +0800130 RTL_GIGA_MAC_VER_29 = 0x1d, // 8105E
131 RTL_GIGA_MAC_VER_30 = 0x1e, // 8105E
hayeswang4804b3b2011-03-21 01:50:29 +0000132 RTL_GIGA_MAC_VER_31 = 0x1f, // 8168DP
hayeswang01dc7fe2011-03-21 01:50:28 +0000133 RTL_GIGA_MAC_VER_32 = 0x20, // 8168E
134 RTL_GIGA_MAC_VER_33 = 0x21, // 8168E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
Francois Romieu2b7b4312011-04-18 22:53:24 -0700137enum rtl_tx_desc_version {
138 RTL_TD_0 = 0,
139 RTL_TD_1 = 1,
140};
141
142#define _R(NAME,MAC,TD) \
143 { .name = NAME, .mac_version = MAC, .txd_version = TD }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800145static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 const char *name;
147 u8 mac_version;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700148 enum rtl_tx_desc_version txd_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149} rtl_chip_info[] = {
Francois Romieu2b7b4312011-04-18 22:53:24 -0700150 _R("RTL8169", RTL_GIGA_MAC_VER_01, RTL_TD_0), // 8169
151 _R("RTL8169s", RTL_GIGA_MAC_VER_02, RTL_TD_0), // 8169S
152 _R("RTL8110s", RTL_GIGA_MAC_VER_03, RTL_TD_0), // 8110S
153 _R("RTL8169sb/8110sb", RTL_GIGA_MAC_VER_04, RTL_TD_0), // 8169SB
154 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_05, RTL_TD_0), // 8110SCd
155 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_06, RTL_TD_0), // 8110SCe
156 _R("RTL8102e", RTL_GIGA_MAC_VER_07, RTL_TD_1), // PCI-E
157 _R("RTL8102e", RTL_GIGA_MAC_VER_08, RTL_TD_1), // PCI-E
158 _R("RTL8102e", RTL_GIGA_MAC_VER_09, RTL_TD_1), // PCI-E
159 _R("RTL8101e", RTL_GIGA_MAC_VER_10, RTL_TD_0), // PCI-E
160 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_11, RTL_TD_0), // PCI-E
161 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_12, RTL_TD_0), // PCI-E
162 _R("RTL8101e", RTL_GIGA_MAC_VER_13, RTL_TD_0), // PCI-E 8139
163 _R("RTL8100e", RTL_GIGA_MAC_VER_14, RTL_TD_0), // PCI-E 8139
164 _R("RTL8100e", RTL_GIGA_MAC_VER_15, RTL_TD_0), // PCI-E 8139
165 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_17, RTL_TD_0), // PCI-E
166 _R("RTL8101e", RTL_GIGA_MAC_VER_16, RTL_TD_0), // PCI-E
167 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_18, RTL_TD_1), // PCI-E
168 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_19, RTL_TD_1), // PCI-E
169 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_20, RTL_TD_1), // PCI-E
170 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_21, RTL_TD_1), // PCI-E
171 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_22, RTL_TD_1), // PCI-E
172 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_23, RTL_TD_1), // PCI-E
173 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_24, RTL_TD_1), // PCI-E
174 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_25, RTL_TD_1), // PCI-E
175 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_26, RTL_TD_1), // PCI-E
176 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_27, RTL_TD_1), // PCI-E
177 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_28, RTL_TD_1), // PCI-E
178 _R("RTL8105e", RTL_GIGA_MAC_VER_29, RTL_TD_1), // PCI-E
179 _R("RTL8105e", RTL_GIGA_MAC_VER_30, RTL_TD_1), // PCI-E
180 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_31, RTL_TD_1), // PCI-E
181 _R("RTL8168e/8111e", RTL_GIGA_MAC_VER_32, RTL_TD_1), // PCI-E
182 _R("RTL8168e/8111e", RTL_GIGA_MAC_VER_33, RTL_TD_1) // PCI-E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183};
184#undef _R
185
François Romieu953a12c2011-04-24 17:38:48 +0200186static const struct rtl_firmware_info {
187 int mac_version;
188 const char *fw_name;
189} rtl_firmware_infos[] = {
190 { .mac_version = RTL_GIGA_MAC_VER_25, .fw_name = FIRMWARE_8168D_1 },
191 { .mac_version = RTL_GIGA_MAC_VER_26, .fw_name = FIRMWARE_8168D_2 },
192 { .mac_version = RTL_GIGA_MAC_VER_29, .fw_name = FIRMWARE_8105E_1 },
David S. Miller2bd93d72011-04-26 12:16:46 -0700193 { .mac_version = RTL_GIGA_MAC_VER_30, .fw_name = FIRMWARE_8105E_1 },
Francois Romieu15ecd032011-04-27 13:52:22 -0700194 { .mac_version = RTL_GIGA_MAC_VER_32, .fw_name = FIRMWARE_8168E_1 },
195 { .mac_version = RTL_GIGA_MAC_VER_33, .fw_name = FIRMWARE_8168E_2 }
François Romieu953a12c2011-04-24 17:38:48 +0200196};
197
Francois Romieubcf0bf92006-07-26 23:14:13 +0200198enum cfg_version {
199 RTL_CFG_0 = 0x00,
200 RTL_CFG_1,
201 RTL_CFG_2
202};
203
Francois Romieu07ce4062007-02-23 23:36:39 +0100204static void rtl_hw_start_8169(struct net_device *);
205static void rtl_hw_start_8168(struct net_device *);
206static void rtl_hw_start_8101(struct net_device *);
207
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000208static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200209 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200210 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200211 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100212 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200213 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
214 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200215 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200216 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
217 { PCI_VENDOR_ID_LINKSYS, 0x1032,
218 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100219 { 0x0001, 0x8168,
220 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 {0,},
222};
223
224MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
225
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000226static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700227static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200228static struct {
229 u32 msg_enable;
230} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Francois Romieu07d3f512007-02-21 22:40:46 +0100232enum rtl_registers {
233 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100234 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100235 MAR0 = 8, /* Multicast filter. */
236 CounterAddrLow = 0x10,
237 CounterAddrHigh = 0x14,
238 TxDescStartAddrLow = 0x20,
239 TxDescStartAddrHigh = 0x24,
240 TxHDescStartAddrLow = 0x28,
241 TxHDescStartAddrHigh = 0x2c,
242 FLASH = 0x30,
243 ERSR = 0x36,
244 ChipCmd = 0x37,
245 TxPoll = 0x38,
246 IntrMask = 0x3c,
247 IntrStatus = 0x3e,
248 TxConfig = 0x40,
249 RxConfig = 0x44,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700250
251#define RTL_RX_CONFIG_MASK 0xff7e1880u
252
Francois Romieu07d3f512007-02-21 22:40:46 +0100253 RxMissed = 0x4c,
254 Cfg9346 = 0x50,
255 Config0 = 0x51,
256 Config1 = 0x52,
257 Config2 = 0x53,
258 Config3 = 0x54,
259 Config4 = 0x55,
260 Config5 = 0x56,
261 MultiIntr = 0x5c,
262 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100263 PHYstatus = 0x6c,
264 RxMaxSize = 0xda,
265 CPlusCmd = 0xe0,
266 IntrMitigate = 0xe2,
267 RxDescAddrLow = 0xe4,
268 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000269 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
270
271#define NoEarlyTx 0x3f /* Max value : no early transmit. */
272
273 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
274
275#define TxPacketMax (8064 >> 7)
276
Francois Romieu07d3f512007-02-21 22:40:46 +0100277 FuncEvent = 0xf0,
278 FuncEventMask = 0xf4,
279 FuncPresetState = 0xf8,
280 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281};
282
Francois Romieuf162a5d2008-06-01 22:37:49 +0200283enum rtl8110_registers {
284 TBICSR = 0x64,
285 TBI_ANAR = 0x68,
286 TBI_LPAR = 0x6a,
287};
288
289enum rtl8168_8101_registers {
290 CSIDR = 0x64,
291 CSIAR = 0x68,
292#define CSIAR_FLAG 0x80000000
293#define CSIAR_WRITE_CMD 0x80000000
294#define CSIAR_BYTE_ENABLE 0x0f
295#define CSIAR_BYTE_ENABLE_SHIFT 12
296#define CSIAR_ADDR_MASK 0x0fff
françois romieu065c27c2011-01-03 15:08:12 +0000297 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200298 EPHYAR = 0x80,
299#define EPHYAR_FLAG 0x80000000
300#define EPHYAR_WRITE_CMD 0x80000000
301#define EPHYAR_REG_MASK 0x1f
302#define EPHYAR_REG_SHIFT 16
303#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800304 DLLPR = 0xd0,
305#define PM_SWITCH (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200306 DBG_REG = 0xd1,
307#define FIX_NAK_1 (1 << 4)
308#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800309 TWSI = 0xd2,
310 MCU = 0xd3,
311#define EN_NDP (1 << 3)
312#define EN_OOB_RESET (1 << 2)
françois romieudaf9df62009-10-07 12:44:20 +0000313 EFUSEAR = 0xdc,
314#define EFUSEAR_FLAG 0x80000000
315#define EFUSEAR_WRITE_CMD 0x80000000
316#define EFUSEAR_READ_CMD 0x00000000
317#define EFUSEAR_REG_MASK 0x03ff
318#define EFUSEAR_REG_SHIFT 8
319#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200320};
321
françois romieuc0e45c12011-01-03 15:08:04 +0000322enum rtl8168_registers {
françois romieub646d902011-01-03 15:08:21 +0000323 ERIDR = 0x70,
324 ERIAR = 0x74,
325#define ERIAR_FLAG 0x80000000
326#define ERIAR_WRITE_CMD 0x80000000
327#define ERIAR_READ_CMD 0x00000000
328#define ERIAR_ADDR_BYTE_ALIGN 4
329#define ERIAR_EXGMAC 0
330#define ERIAR_MSIX 1
331#define ERIAR_ASF 2
332#define ERIAR_TYPE_SHIFT 16
333#define ERIAR_BYTEEN 0x0f
334#define ERIAR_BYTEEN_SHIFT 12
françois romieuc0e45c12011-01-03 15:08:04 +0000335 EPHY_RXER_NUM = 0x7c,
336 OCPDR = 0xb0, /* OCP GPHY access */
337#define OCPDR_WRITE_CMD 0x80000000
338#define OCPDR_READ_CMD 0x00000000
339#define OCPDR_REG_MASK 0x7f
340#define OCPDR_GPHY_REG_SHIFT 16
341#define OCPDR_DATA_MASK 0xffff
342 OCPAR = 0xb4,
343#define OCPAR_FLAG 0x80000000
344#define OCPAR_GPHY_WRITE_CMD 0x8000f060
345#define OCPAR_GPHY_READ_CMD 0x0000f060
hayeswang01dc7fe2011-03-21 01:50:28 +0000346 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
347 MISC = 0xf0, /* 8168e only. */
348 txpla_rst = (1 << 29)
françois romieuc0e45c12011-01-03 15:08:04 +0000349};
350
Francois Romieu07d3f512007-02-21 22:40:46 +0100351enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100353 SYSErr = 0x8000,
354 PCSTimeout = 0x4000,
355 SWInt = 0x0100,
356 TxDescUnavail = 0x0080,
357 RxFIFOOver = 0x0040,
358 LinkChg = 0x0020,
359 RxOverflow = 0x0010,
360 TxErr = 0x0008,
361 TxOK = 0x0004,
362 RxErr = 0x0002,
363 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200366 RxFOVF = (1 << 23),
367 RxRWT = (1 << 22),
368 RxRES = (1 << 21),
369 RxRUNT = (1 << 20),
370 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 /* ChipCmdBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100373 CmdReset = 0x10,
374 CmdRxEnb = 0x08,
375 CmdTxEnb = 0x04,
376 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Francois Romieu275391a2007-02-23 23:50:28 +0100378 /* TXPoll register p.5 */
379 HPQ = 0x80, /* Poll cmd on the high prio queue */
380 NPQ = 0x40, /* Poll cmd on the low prio queue */
381 FSWInt = 0x01, /* Forced software interrupt */
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100384 Cfg9346_Lock = 0x00,
385 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100388 AcceptErr = 0x20,
389 AcceptRunt = 0x10,
390 AcceptBroadcast = 0x08,
391 AcceptMulticast = 0x04,
392 AcceptMyPhys = 0x02,
393 AcceptAllPhys = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /* RxConfigBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100396 RxCfgFIFOShift = 13,
397 RxCfgDMAShift = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /* TxConfigBits */
400 TxInterFrameGapShift = 24,
401 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
402
Francois Romieu5d06a992006-02-23 00:47:58 +0100403 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200404 LEDS1 = (1 << 7),
405 LEDS0 = (1 << 6),
Francois Romieufbac58f2007-10-04 22:51:38 +0200406 MSIEnable = (1 << 5), /* Enable Message Signaled Interrupt */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200407 Speed_down = (1 << 4),
408 MEMMAP = (1 << 3),
409 IOMAP = (1 << 2),
410 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100411 PMEnable = (1 << 0), /* Power Management Enable */
412
Francois Romieu6dccd162007-02-13 23:38:05 +0100413 /* Config2 register p. 25 */
414 PCI_Clock_66MHz = 0x01,
415 PCI_Clock_33MHz = 0x00,
416
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100417 /* Config3 register p.25 */
418 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
419 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200420 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100421
Francois Romieu5d06a992006-02-23 00:47:58 +0100422 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100423 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
424 MWF = (1 << 5), /* Accept Multicast wakeup frame */
425 UWF = (1 << 4), /* Accept Unicast wakeup frame */
hayeswang01dc7fe2011-03-21 01:50:28 +0000426 spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100427 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100428 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /* TBICSR p.28 */
431 TBIReset = 0x80000000,
432 TBILoopback = 0x40000000,
433 TBINwEnable = 0x20000000,
434 TBINwRestart = 0x10000000,
435 TBILinkOk = 0x02000000,
436 TBINwComplete = 0x01000000,
437
438 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200439 EnableBist = (1 << 15), // 8168 8101
440 Mac_dbgo_oe = (1 << 14), // 8168 8101
441 Normal_mode = (1 << 13), // unused
442 Force_half_dup = (1 << 12), // 8168 8101
443 Force_rxflow_en = (1 << 11), // 8168 8101
444 Force_txflow_en = (1 << 10), // 8168 8101
445 Cxpl_dbg_sel = (1 << 9), // 8168 8101
446 ASF = (1 << 8), // 8168 8101
447 PktCntrDisable = (1 << 7), // 8168 8101
448 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 RxVlan = (1 << 6),
450 RxChkSum = (1 << 5),
451 PCIDAC = (1 << 4),
452 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100453 INTT_0 = 0x0000, // 8168
454 INTT_1 = 0x0001, // 8168
455 INTT_2 = 0x0002, // 8168
456 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100459 TBI_Enable = 0x80,
460 TxFlowCtrl = 0x40,
461 RxFlowCtrl = 0x20,
462 _1000bpsF = 0x10,
463 _100bps = 0x08,
464 _10bps = 0x04,
465 LinkStatus = 0x02,
466 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100469 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200470
471 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100472 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473};
474
Francois Romieu2b7b4312011-04-18 22:53:24 -0700475enum rtl_desc_bit {
476 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
478 RingEnd = (1 << 30), /* End of descriptor ring */
479 FirstFrag = (1 << 29), /* First segment of a packet */
480 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700481};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Francois Romieu2b7b4312011-04-18 22:53:24 -0700483/* Generic case. */
484enum rtl_tx_desc_bit {
485 /* First doubleword. */
486 TD_LSO = (1 << 27), /* Large Send Offload */
487#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Francois Romieu2b7b4312011-04-18 22:53:24 -0700489 /* Second doubleword. */
490 TxVlanTag = (1 << 17), /* Add VLAN tag */
491};
492
493/* 8169, 8168b and 810x except 8102e. */
494enum rtl_tx_desc_bit_0 {
495 /* First doubleword. */
496#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
497 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
498 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
499 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
500};
501
502/* 8102e, 8168c and beyond. */
503enum rtl_tx_desc_bit_1 {
504 /* Second doubleword. */
505#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
506 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
507 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
508 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
509};
510
511static const struct rtl_tx_desc_info {
512 struct {
513 u32 udp;
514 u32 tcp;
515 } checksum;
516 u16 mss_shift;
517 u16 opts_offset;
518} tx_desc_info [] = {
519 [RTL_TD_0] = {
520 .checksum = {
521 .udp = TD0_IP_CS | TD0_UDP_CS,
522 .tcp = TD0_IP_CS | TD0_TCP_CS
523 },
524 .mss_shift = TD0_MSS_SHIFT,
525 .opts_offset = 0
526 },
527 [RTL_TD_1] = {
528 .checksum = {
529 .udp = TD1_IP_CS | TD1_UDP_CS,
530 .tcp = TD1_IP_CS | TD1_TCP_CS
531 },
532 .mss_shift = TD1_MSS_SHIFT,
533 .opts_offset = 1
534 }
535};
536
537enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /* Rx private */
539 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
540 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
541
542#define RxProtoUDP (PID1)
543#define RxProtoTCP (PID0)
544#define RxProtoIP (PID1 | PID0)
545#define RxProtoMask RxProtoIP
546
547 IPFail = (1 << 16), /* IP checksum failed */
548 UDPFail = (1 << 15), /* UDP/IP checksum failed */
549 TCPFail = (1 << 14), /* TCP/IP checksum failed */
550 RxVlanTag = (1 << 16), /* VLAN tag available */
551};
552
553#define RsvdMask 0x3fffc000
554
555struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200556 __le32 opts1;
557 __le32 opts2;
558 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559};
560
561struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200562 __le32 opts1;
563 __le32 opts2;
564 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565};
566
567struct ring_info {
568 struct sk_buff *skb;
569 u32 len;
570 u8 __pad[sizeof(void *) - sizeof(u32)];
571};
572
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200573enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200574 RTL_FEATURE_WOL = (1 << 0),
575 RTL_FEATURE_MSI = (1 << 1),
576 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200577};
578
Ivan Vecera355423d2009-02-06 21:49:57 -0800579struct rtl8169_counters {
580 __le64 tx_packets;
581 __le64 rx_packets;
582 __le64 tx_errors;
583 __le32 rx_errors;
584 __le16 rx_missed;
585 __le16 align_errors;
586 __le32 tx_one_collision;
587 __le32 tx_multi_collision;
588 __le64 rx_unicast;
589 __le64 rx_broadcast;
590 __le32 rx_multicast;
591 __le16 tx_aborted;
592 __le16 tx_underun;
593};
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595struct rtl8169_private {
596 void __iomem *mmio_addr; /* memory map physical address */
597 struct pci_dev *pci_dev; /* Index of PCI device */
David Howellsc4028952006-11-22 14:57:56 +0000598 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700599 struct napi_struct napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 spinlock_t lock; /* spin lock flag */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200601 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700602 u16 txd_version;
603 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
605 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
606 u32 dirty_rx;
607 u32 dirty_tx;
608 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
609 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
610 dma_addr_t TxPhyAddr;
611 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000612 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 struct timer_list timer;
615 u16 cp_cmd;
Francois Romieu0e485152007-02-20 00:00:26 +0100616 u16 intr_event;
617 u16 napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 u16 intr_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 int phy_1000_ctrl_reg;
françois romieuc0e45c12011-01-03 15:08:04 +0000620
621 struct mdio_ops {
622 void (*write)(void __iomem *, int, int);
623 int (*read)(void __iomem *, int);
624 } mdio_ops;
625
françois romieu065c27c2011-01-03 15:08:12 +0000626 struct pll_power_ops {
627 void (*down)(struct rtl8169_private *);
628 void (*up)(struct rtl8169_private *);
629 } pll_power_ops;
630
Oliver Neukum54405cd2011-01-06 21:55:13 +0100631 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200632 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000633 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100634 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000635 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800637 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu9c14cea2008-07-05 00:21:15 +0200638 int pcie_cap;
David Howellsc4028952006-11-22 14:57:56 +0000639 struct delayed_work task;
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200640 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200641
642 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800643 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000644 u32 saved_wolopts;
françois romieuf1e02ed2011-01-13 13:07:53 +0000645
646 const struct firmware *fw;
François Romieu953a12c2011-04-24 17:38:48 +0200647#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648};
649
Ralf Baechle979b6c12005-06-13 14:30:40 -0700650MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700653MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200654module_param_named(debug, debug.msg_enable, int, 0);
655MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656MODULE_LICENSE("GPL");
657MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000658MODULE_FIRMWARE(FIRMWARE_8168D_1);
659MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000660MODULE_FIRMWARE(FIRMWARE_8168E_1);
661MODULE_FIRMWARE(FIRMWARE_8168E_2);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800662MODULE_FIRMWARE(FIRMWARE_8105E_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664static int rtl8169_open(struct net_device *dev);
Stephen Hemminger613573252009-08-31 19:50:58 +0000665static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
666 struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100667static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100669static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100671static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200673static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700675 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200676static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200678static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700679static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200682 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
françois romieub646d902011-01-03 15:08:21 +0000684static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
685{
686 void __iomem *ioaddr = tp->mmio_addr;
687 int i;
688
689 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
690 for (i = 0; i < 20; i++) {
691 udelay(100);
692 if (RTL_R32(OCPAR) & OCPAR_FLAG)
693 break;
694 }
695 return RTL_R32(OCPDR);
696}
697
698static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
699{
700 void __iomem *ioaddr = tp->mmio_addr;
701 int i;
702
703 RTL_W32(OCPDR, data);
704 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
705 for (i = 0; i < 20; i++) {
706 udelay(100);
707 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
708 break;
709 }
710}
711
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800712static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000713{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800714 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000715 int i;
716
717 RTL_W8(ERIDR, cmd);
718 RTL_W32(ERIAR, 0x800010e8);
719 msleep(2);
720 for (i = 0; i < 5; i++) {
721 udelay(100);
722 if (!(RTL_R32(ERIDR) & ERIAR_FLAG))
723 break;
724 }
725
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800726 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000727}
728
729#define OOB_CMD_RESET 0x00
730#define OOB_CMD_DRIVER_START 0x05
731#define OOB_CMD_DRIVER_STOP 0x06
732
733static void rtl8168_driver_start(struct rtl8169_private *tp)
734{
735 int i;
hayeswang4804b3b2011-03-21 01:50:29 +0000736 u32 reg;
françois romieub646d902011-01-03 15:08:21 +0000737
738 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
739
hayeswang4804b3b2011-03-21 01:50:29 +0000740 if (tp->mac_version == RTL_GIGA_MAC_VER_31)
741 reg = 0xb8;
742 else
743 reg = 0x10;
744
françois romieub646d902011-01-03 15:08:21 +0000745 for (i = 0; i < 10; i++) {
746 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000747 if (ocp_read(tp, 0x0f, reg) & 0x00000800)
françois romieub646d902011-01-03 15:08:21 +0000748 break;
749 }
750}
751
752static void rtl8168_driver_stop(struct rtl8169_private *tp)
753{
754 int i;
hayeswang4804b3b2011-03-21 01:50:29 +0000755 u32 reg;
françois romieub646d902011-01-03 15:08:21 +0000756
757 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
758
hayeswang4804b3b2011-03-21 01:50:29 +0000759 if (tp->mac_version == RTL_GIGA_MAC_VER_31)
760 reg = 0xb8;
761 else
762 reg = 0x10;
763
françois romieub646d902011-01-03 15:08:21 +0000764 for (i = 0; i < 10; i++) {
765 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000766 if ((ocp_read(tp, 0x0f, reg) & 0x00000800) == 0)
françois romieub646d902011-01-03 15:08:21 +0000767 break;
768 }
769}
770
hayeswang4804b3b2011-03-21 01:50:29 +0000771static int r8168dp_check_dash(struct rtl8169_private *tp)
772{
773 u32 reg;
774
775 if (tp->mac_version == RTL_GIGA_MAC_VER_31)
776 reg = 0xb8;
777 else
778 reg = 0x10;
779
780 if (ocp_read(tp, 0xF, reg) & 0x00008000)
781 return 1;
782 else
783 return 0;
784}
françois romieub646d902011-01-03 15:08:21 +0000785
françois romieu4da19632011-01-03 15:07:55 +0000786static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 int i;
789
Francois Romieua6baf3a2007-11-08 23:23:21 +0100790 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Francois Romieu23714082006-01-29 00:49:09 +0100792 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100793 /*
794 * Check if the RTL8169 has completed writing to the specified
795 * MII register.
796 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200797 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 break;
Francois Romieu23714082006-01-29 00:49:09 +0100799 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700801 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700802 * According to hardware specs a 20us delay is required after write
803 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700804 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700805 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
françois romieu4da19632011-01-03 15:07:55 +0000808static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 int i, value = -1;
811
Francois Romieua6baf3a2007-11-08 23:23:21 +0100812 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Francois Romieu23714082006-01-29 00:49:09 +0100814 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100815 /*
816 * Check if the RTL8169 has completed retrieving data from
817 * the specified MII register.
818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100820 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 break;
822 }
Francois Romieu23714082006-01-29 00:49:09 +0100823 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700825 /*
826 * According to hardware specs a 20us delay is required after read
827 * complete indication, but before sending next command.
828 */
829 udelay(20);
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return value;
832}
833
françois romieuc0e45c12011-01-03 15:08:04 +0000834static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
835{
836 int i;
837
838 RTL_W32(OCPDR, data |
839 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
840 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
841 RTL_W32(EPHY_RXER_NUM, 0);
842
843 for (i = 0; i < 100; i++) {
844 mdelay(1);
845 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
846 break;
847 }
848}
849
850static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
851{
852 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
853 (value & OCPDR_DATA_MASK));
854}
855
856static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
857{
858 int i;
859
860 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
861
862 mdelay(1);
863 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
864 RTL_W32(EPHY_RXER_NUM, 0);
865
866 for (i = 0; i < 100; i++) {
867 mdelay(1);
868 if (RTL_R32(OCPAR) & OCPAR_FLAG)
869 break;
870 }
871
872 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
873}
874
françois romieue6de30d2011-01-03 15:08:37 +0000875#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
876
877static void r8168dp_2_mdio_start(void __iomem *ioaddr)
878{
879 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
880}
881
882static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
883{
884 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
885}
886
887static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
888{
889 r8168dp_2_mdio_start(ioaddr);
890
891 r8169_mdio_write(ioaddr, reg_addr, value);
892
893 r8168dp_2_mdio_stop(ioaddr);
894}
895
896static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
897{
898 int value;
899
900 r8168dp_2_mdio_start(ioaddr);
901
902 value = r8169_mdio_read(ioaddr, reg_addr);
903
904 r8168dp_2_mdio_stop(ioaddr);
905
906 return value;
907}
908
françois romieu4da19632011-01-03 15:07:55 +0000909static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +0200910{
françois romieuc0e45c12011-01-03 15:08:04 +0000911 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +0200912}
913
françois romieu4da19632011-01-03 15:07:55 +0000914static int rtl_readphy(struct rtl8169_private *tp, int location)
915{
françois romieuc0e45c12011-01-03 15:08:04 +0000916 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +0000917}
918
919static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
920{
921 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
922}
923
924static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +0000925{
926 int val;
927
françois romieu4da19632011-01-03 15:07:55 +0000928 val = rtl_readphy(tp, reg_addr);
929 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +0000930}
931
Francois Romieuccdffb92008-07-26 14:26:06 +0200932static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
933 int val)
934{
935 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200936
françois romieu4da19632011-01-03 15:07:55 +0000937 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +0200938}
939
940static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
941{
942 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200943
françois romieu4da19632011-01-03 15:07:55 +0000944 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +0200945}
946
Francois Romieudacf8152008-08-02 20:44:13 +0200947static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
948{
949 unsigned int i;
950
951 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
952 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
953
954 for (i = 0; i < 100; i++) {
955 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
956 break;
957 udelay(10);
958 }
959}
960
961static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
962{
963 u16 value = 0xffff;
964 unsigned int i;
965
966 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
967
968 for (i = 0; i < 100; i++) {
969 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
970 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
971 break;
972 }
973 udelay(10);
974 }
975
976 return value;
977}
978
979static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
980{
981 unsigned int i;
982
983 RTL_W32(CSIDR, value);
984 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
985 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
986
987 for (i = 0; i < 100; i++) {
988 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
989 break;
990 udelay(10);
991 }
992}
993
994static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
995{
996 u32 value = ~0x00;
997 unsigned int i;
998
999 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
1000 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
1001
1002 for (i = 0; i < 100; i++) {
1003 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
1004 value = RTL_R32(CSIDR);
1005 break;
1006 }
1007 udelay(10);
1008 }
1009
1010 return value;
1011}
1012
françois romieudaf9df62009-10-07 12:44:20 +00001013static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
1014{
1015 u8 value = 0xff;
1016 unsigned int i;
1017
1018 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1019
1020 for (i = 0; i < 300; i++) {
1021 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
1022 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
1023 break;
1024 }
1025 udelay(100);
1026 }
1027
1028 return value;
1029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
1032{
1033 RTL_W16(IntrMask, 0x0000);
1034
1035 RTL_W16(IntrStatus, 0xffff);
1036}
1037
1038static void rtl8169_asic_down(void __iomem *ioaddr)
1039{
1040 RTL_W8(ChipCmd, 0x00);
1041 rtl8169_irq_mask_and_ack(ioaddr);
1042 RTL_R16(CPlusCmd);
1043}
1044
françois romieu4da19632011-01-03 15:07:55 +00001045static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
françois romieu4da19632011-01-03 15:07:55 +00001047 void __iomem *ioaddr = tp->mmio_addr;
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return RTL_R32(TBICSR) & TBIReset;
1050}
1051
françois romieu4da19632011-01-03 15:07:55 +00001052static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
françois romieu4da19632011-01-03 15:07:55 +00001054 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
1057static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1058{
1059 return RTL_R32(TBICSR) & TBILinkOk;
1060}
1061
1062static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1063{
1064 return RTL_R8(PHYstatus) & LinkStatus;
1065}
1066
françois romieu4da19632011-01-03 15:07:55 +00001067static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
françois romieu4da19632011-01-03 15:07:55 +00001069 void __iomem *ioaddr = tp->mmio_addr;
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1072}
1073
françois romieu4da19632011-01-03 15:07:55 +00001074static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 unsigned int val;
1077
françois romieu4da19632011-01-03 15:07:55 +00001078 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1079 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001082static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieu07d3f512007-02-21 22:40:46 +01001083 struct rtl8169_private *tp,
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001084 void __iomem *ioaddr,
1085 bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 unsigned long flags;
1088
1089 spin_lock_irqsave(&tp->lock, flags);
1090 if (tp->link_ok(ioaddr)) {
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001091 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001092 if (pm)
1093 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001095 if (net_ratelimit())
1096 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001097 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001099 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001100 if (pm)
1101 pm_schedule_suspend(&tp->pci_dev->dev, 100);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 spin_unlock_irqrestore(&tp->lock, flags);
1104}
1105
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001106static void rtl8169_check_link_status(struct net_device *dev,
1107 struct rtl8169_private *tp,
1108 void __iomem *ioaddr)
1109{
1110 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1111}
1112
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001113#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1114
1115static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1116{
1117 void __iomem *ioaddr = tp->mmio_addr;
1118 u8 options;
1119 u32 wolopts = 0;
1120
1121 options = RTL_R8(Config1);
1122 if (!(options & PMEnable))
1123 return 0;
1124
1125 options = RTL_R8(Config3);
1126 if (options & LinkUp)
1127 wolopts |= WAKE_PHY;
1128 if (options & MagicPacket)
1129 wolopts |= WAKE_MAGIC;
1130
1131 options = RTL_R8(Config5);
1132 if (options & UWF)
1133 wolopts |= WAKE_UCAST;
1134 if (options & BWF)
1135 wolopts |= WAKE_BCAST;
1136 if (options & MWF)
1137 wolopts |= WAKE_MCAST;
1138
1139 return wolopts;
1140}
1141
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001142static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1143{
1144 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001145
1146 spin_lock_irq(&tp->lock);
1147
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001148 wol->supported = WAKE_ANY;
1149 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001150
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001151 spin_unlock_irq(&tp->lock);
1152}
1153
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001154static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001155{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001156 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001157 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001158 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001159 u32 opt;
1160 u16 reg;
1161 u8 mask;
1162 } cfg[] = {
1163 { WAKE_ANY, Config1, PMEnable },
1164 { WAKE_PHY, Config3, LinkUp },
1165 { WAKE_MAGIC, Config3, MagicPacket },
1166 { WAKE_UCAST, Config5, UWF },
1167 { WAKE_BCAST, Config5, BWF },
1168 { WAKE_MCAST, Config5, MWF },
1169 { WAKE_ANY, Config5, LanWake }
1170 };
1171
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001172 RTL_W8(Cfg9346, Cfg9346_Unlock);
1173
1174 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1175 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001176 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001177 options |= cfg[i].mask;
1178 RTL_W8(cfg[i].reg, options);
1179 }
1180
1181 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001182}
1183
1184static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1185{
1186 struct rtl8169_private *tp = netdev_priv(dev);
1187
1188 spin_lock_irq(&tp->lock);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001189
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001190 if (wol->wolopts)
1191 tp->features |= RTL_FEATURE_WOL;
1192 else
1193 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001194 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001195 spin_unlock_irq(&tp->lock);
1196
françois romieuea809072010-11-08 13:23:58 +00001197 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1198
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001199 return 0;
1200}
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202static void rtl8169_get_drvinfo(struct net_device *dev,
1203 struct ethtool_drvinfo *info)
1204{
1205 struct rtl8169_private *tp = netdev_priv(dev);
1206
1207 strcpy(info->driver, MODULENAME);
1208 strcpy(info->version, RTL8169_VERSION);
1209 strcpy(info->bus_info, pci_name(tp->pci_dev));
1210}
1211
1212static int rtl8169_get_regs_len(struct net_device *dev)
1213{
1214 return R8169_REGS_SIZE;
1215}
1216
1217static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001218 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 struct rtl8169_private *tp = netdev_priv(dev);
1221 void __iomem *ioaddr = tp->mmio_addr;
1222 int ret = 0;
1223 u32 reg;
1224
1225 reg = RTL_R32(TBICSR);
1226 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1227 (duplex == DUPLEX_FULL)) {
1228 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1229 } else if (autoneg == AUTONEG_ENABLE)
1230 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1231 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001232 netif_warn(tp, link, dev,
1233 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 ret = -EOPNOTSUPP;
1235 }
1236
1237 return ret;
1238}
1239
1240static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001241 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
1243 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001244 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001245 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Hayes Wang716b50a2011-02-22 17:26:18 +08001247 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001250 int auto_nego;
1251
françois romieu4da19632011-01-03 15:07:55 +00001252 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001253 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1254 ADVERTISE_100HALF | ADVERTISE_100FULL);
1255
1256 if (adv & ADVERTISED_10baseT_Half)
1257 auto_nego |= ADVERTISE_10HALF;
1258 if (adv & ADVERTISED_10baseT_Full)
1259 auto_nego |= ADVERTISE_10FULL;
1260 if (adv & ADVERTISED_100baseT_Half)
1261 auto_nego |= ADVERTISE_100HALF;
1262 if (adv & ADVERTISED_100baseT_Full)
1263 auto_nego |= ADVERTISE_100FULL;
1264
françois romieu3577aa12009-05-19 10:46:48 +00001265 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1266
françois romieu4da19632011-01-03 15:07:55 +00001267 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001268 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1269
1270 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1271 if ((tp->mac_version != RTL_GIGA_MAC_VER_07) &&
1272 (tp->mac_version != RTL_GIGA_MAC_VER_08) &&
1273 (tp->mac_version != RTL_GIGA_MAC_VER_09) &&
1274 (tp->mac_version != RTL_GIGA_MAC_VER_10) &&
1275 (tp->mac_version != RTL_GIGA_MAC_VER_13) &&
1276 (tp->mac_version != RTL_GIGA_MAC_VER_14) &&
1277 (tp->mac_version != RTL_GIGA_MAC_VER_15) &&
Hayes Wang5a5e4442011-02-22 17:26:21 +08001278 (tp->mac_version != RTL_GIGA_MAC_VER_16) &&
1279 (tp->mac_version != RTL_GIGA_MAC_VER_29) &&
1280 (tp->mac_version != RTL_GIGA_MAC_VER_30)) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001281 if (adv & ADVERTISED_1000baseT_Half)
1282 giga_ctrl |= ADVERTISE_1000HALF;
1283 if (adv & ADVERTISED_1000baseT_Full)
1284 giga_ctrl |= ADVERTISE_1000FULL;
1285 } else if (adv & (ADVERTISED_1000baseT_Half |
1286 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001287 netif_info(tp, link, dev,
1288 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001289 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
françois romieu3577aa12009-05-19 10:46:48 +00001292 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001293
françois romieu4da19632011-01-03 15:07:55 +00001294 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1295 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001296 } else {
1297 giga_ctrl = 0;
1298
1299 if (speed == SPEED_10)
1300 bmcr = 0;
1301 else if (speed == SPEED_100)
1302 bmcr = BMCR_SPEED100;
1303 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001304 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001305
1306 if (duplex == DUPLEX_FULL)
1307 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001308 }
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 tp->phy_1000_ctrl_reg = giga_ctrl;
1311
françois romieu4da19632011-01-03 15:07:55 +00001312 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001313
1314 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1315 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
1316 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001317 rtl_writephy(tp, 0x17, 0x2138);
1318 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001319 } else {
françois romieu4da19632011-01-03 15:07:55 +00001320 rtl_writephy(tp, 0x17, 0x2108);
1321 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001322 }
1323 }
1324
Oliver Neukum54405cd2011-01-06 21:55:13 +01001325 rc = 0;
1326out:
1327 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
1330static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001331 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
1333 struct rtl8169_private *tp = netdev_priv(dev);
1334 int ret;
1335
Oliver Neukum54405cd2011-01-06 21:55:13 +01001336 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001338 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
1340
1341 return ret;
1342}
1343
1344static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1345{
1346 struct rtl8169_private *tp = netdev_priv(dev);
1347 unsigned long flags;
1348 int ret;
1349
1350 spin_lock_irqsave(&tp->lock, flags);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001351 ret = rtl8169_set_speed(dev,
David Decotigny25db0332011-04-27 18:32:39 +00001352 cmd->autoneg, ethtool_cmd_speed(cmd),
1353 cmd->duplex, cmd->advertising);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return ret;
1357}
1358
Michał Mirosław350fb322011-04-08 06:35:56 +00001359static u32 rtl8169_fix_features(struct net_device *dev, u32 features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Francois Romieu2b7b4312011-04-18 22:53:24 -07001361 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001362 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Michał Mirosław350fb322011-04-08 06:35:56 +00001364 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Michał Mirosław350fb322011-04-08 06:35:56 +00001367static int rtl8169_set_features(struct net_device *dev, u32 features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
1369 struct rtl8169_private *tp = netdev_priv(dev);
1370 void __iomem *ioaddr = tp->mmio_addr;
1371 unsigned long flags;
1372
1373 spin_lock_irqsave(&tp->lock, flags);
1374
Michał Mirosław350fb322011-04-08 06:35:56 +00001375 if (features & NETIF_F_RXCSUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 tp->cp_cmd |= RxChkSum;
1377 else
1378 tp->cp_cmd &= ~RxChkSum;
1379
Michał Mirosław350fb322011-04-08 06:35:56 +00001380 if (dev->features & NETIF_F_HW_VLAN_RX)
1381 tp->cp_cmd |= RxVlan;
1382 else
1383 tp->cp_cmd &= ~RxVlan;
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 RTL_W16(CPlusCmd, tp->cp_cmd);
1386 RTL_R16(CPlusCmd);
1387
1388 spin_unlock_irqrestore(&tp->lock, flags);
1389
1390 return 0;
1391}
1392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1394 struct sk_buff *skb)
1395{
Jesse Grosseab6d182010-10-20 13:56:03 +00001396 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1398}
1399
Francois Romieu7a8fc772011-03-01 17:18:33 +01001400static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
1402 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Francois Romieu7a8fc772011-03-01 17:18:33 +01001404 if (opts2 & RxVlanTag)
1405 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Eric Dumazet2edae082010-09-06 18:46:39 +00001406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 desc->opts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
Francois Romieuccdffb92008-07-26 14:26:06 +02001410static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
1412 struct rtl8169_private *tp = netdev_priv(dev);
1413 void __iomem *ioaddr = tp->mmio_addr;
1414 u32 status;
1415
1416 cmd->supported =
1417 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1418 cmd->port = PORT_FIBRE;
1419 cmd->transceiver = XCVR_INTERNAL;
1420
1421 status = RTL_R32(TBICSR);
1422 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1423 cmd->autoneg = !!(status & TBINwEnable);
1424
1425 cmd->speed = SPEED_1000;
1426 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001427
1428 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Francois Romieuccdffb92008-07-26 14:26:06 +02001431static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
1433 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Francois Romieuccdffb92008-07-26 14:26:06 +02001435 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1439{
1440 struct rtl8169_private *tp = netdev_priv(dev);
1441 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +02001442 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444 spin_lock_irqsave(&tp->lock, flags);
1445
Francois Romieuccdffb92008-07-26 14:26:06 +02001446 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +02001449 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
1452static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1453 void *p)
1454{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001455 struct rtl8169_private *tp = netdev_priv(dev);
1456 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Francois Romieu5b0384f2006-08-16 16:00:01 +02001458 if (regs->len > R8169_REGS_SIZE)
1459 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Francois Romieu5b0384f2006-08-16 16:00:01 +02001461 spin_lock_irqsave(&tp->lock, flags);
1462 memcpy_fromio(p, tp->mmio_addr, regs->len);
1463 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001466static u32 rtl8169_get_msglevel(struct net_device *dev)
1467{
1468 struct rtl8169_private *tp = netdev_priv(dev);
1469
1470 return tp->msg_enable;
1471}
1472
1473static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1474{
1475 struct rtl8169_private *tp = netdev_priv(dev);
1476
1477 tp->msg_enable = value;
1478}
1479
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001480static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1481 "tx_packets",
1482 "rx_packets",
1483 "tx_errors",
1484 "rx_errors",
1485 "rx_missed",
1486 "align_errors",
1487 "tx_single_collisions",
1488 "tx_multi_collisions",
1489 "unicast",
1490 "broadcast",
1491 "multicast",
1492 "tx_aborted",
1493 "tx_underrun",
1494};
1495
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001496static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001497{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001498 switch (sset) {
1499 case ETH_SS_STATS:
1500 return ARRAY_SIZE(rtl8169_gstrings);
1501 default:
1502 return -EOPNOTSUPP;
1503 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001504}
1505
Ivan Vecera355423d2009-02-06 21:49:57 -08001506static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001507{
1508 struct rtl8169_private *tp = netdev_priv(dev);
1509 void __iomem *ioaddr = tp->mmio_addr;
1510 struct rtl8169_counters *counters;
1511 dma_addr_t paddr;
1512 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001513 int wait = 1000;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001514 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001515
Ivan Vecera355423d2009-02-06 21:49:57 -08001516 /*
1517 * Some chips are unable to dump tally counters when the receiver
1518 * is disabled.
1519 */
1520 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1521 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001522
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001523 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001524 if (!counters)
1525 return;
1526
1527 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001528 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001529 RTL_W32(CounterAddrLow, cmd);
1530 RTL_W32(CounterAddrLow, cmd | CounterDump);
1531
Ivan Vecera355423d2009-02-06 21:49:57 -08001532 while (wait--) {
1533 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
1534 /* copy updated counters */
1535 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001536 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001537 }
1538 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001539 }
1540
1541 RTL_W32(CounterAddrLow, 0);
1542 RTL_W32(CounterAddrHigh, 0);
1543
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001544 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001545}
1546
Ivan Vecera355423d2009-02-06 21:49:57 -08001547static void rtl8169_get_ethtool_stats(struct net_device *dev,
1548 struct ethtool_stats *stats, u64 *data)
1549{
1550 struct rtl8169_private *tp = netdev_priv(dev);
1551
1552 ASSERT_RTNL();
1553
1554 rtl8169_update_counters(dev);
1555
1556 data[0] = le64_to_cpu(tp->counters.tx_packets);
1557 data[1] = le64_to_cpu(tp->counters.rx_packets);
1558 data[2] = le64_to_cpu(tp->counters.tx_errors);
1559 data[3] = le32_to_cpu(tp->counters.rx_errors);
1560 data[4] = le16_to_cpu(tp->counters.rx_missed);
1561 data[5] = le16_to_cpu(tp->counters.align_errors);
1562 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1563 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1564 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1565 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1566 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1567 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1568 data[12] = le16_to_cpu(tp->counters.tx_underun);
1569}
1570
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001571static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1572{
1573 switch(stringset) {
1574 case ETH_SS_STATS:
1575 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1576 break;
1577 }
1578}
1579
Jeff Garzik7282d492006-09-13 14:30:00 -04001580static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 .get_drvinfo = rtl8169_get_drvinfo,
1582 .get_regs_len = rtl8169_get_regs_len,
1583 .get_link = ethtool_op_get_link,
1584 .get_settings = rtl8169_get_settings,
1585 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001586 .get_msglevel = rtl8169_get_msglevel,
1587 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001589 .get_wol = rtl8169_get_wol,
1590 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001591 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001592 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001593 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594};
1595
Francois Romieu07d3f512007-02-21 22:40:46 +01001596static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1597 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
Francois Romieu0e485152007-02-20 00:00:26 +01001599 /*
1600 * The driver currently handles the 8168Bf and the 8168Be identically
1601 * but they can be identified more specifically through the test below
1602 * if needed:
1603 *
1604 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001605 *
1606 * Same thing for the 8101Eb and the 8101Ec:
1607 *
1608 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001609 */
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001610 static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001612 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 int mac_version;
1614 } mac_info[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00001615 /* 8168E family. */
1616 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
1617 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
1618 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
1619
Francois Romieu5b538df2008-07-20 16:22:45 +02001620 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001621 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1622 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001623 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001624
françois romieue6de30d2011-01-03 15:08:37 +00001625 /* 8168DP family. */
1626 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1627 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00001628 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00001629
Francois Romieuef808d52008-06-29 13:10:54 +02001630 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001631 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001632 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001633 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001634 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001635 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1636 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001637 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001638 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001639 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001640
1641 /* 8168B family. */
1642 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1643 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1644 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1645 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1646
1647 /* 8101 family. */
hayeswang36a0e6c2011-03-21 01:50:30 +00001648 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08001649 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
1650 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
1651 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001652 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1653 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1654 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1655 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1656 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1657 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001658 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001659 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001660 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001661 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1662 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001663 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1664 /* FIXME: where did these entries come from ? -- FR */
1665 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1666 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1667
1668 /* 8110 family. */
1669 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1670 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1671 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1672 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1673 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1674 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1675
Jean Delvaref21b75e2009-05-26 20:54:48 -07001676 /* Catch-all */
1677 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }, *p = mac_info;
1679 u32 reg;
1680
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001681 reg = RTL_R32(TxConfig);
1682 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 p++;
1684 tp->mac_version = p->mac_version;
1685}
1686
1687static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1688{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001689 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
1691
Francois Romieu867763c2007-08-17 18:21:58 +02001692struct phy_reg {
1693 u16 reg;
1694 u16 val;
1695};
1696
françois romieu4da19632011-01-03 15:07:55 +00001697static void rtl_writephy_batch(struct rtl8169_private *tp,
1698 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001699{
1700 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001701 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001702 regs++;
1703 }
1704}
1705
françois romieubca03d52011-01-03 15:07:31 +00001706#define PHY_READ 0x00000000
1707#define PHY_DATA_OR 0x10000000
1708#define PHY_DATA_AND 0x20000000
1709#define PHY_BJMPN 0x30000000
1710#define PHY_READ_EFUSE 0x40000000
1711#define PHY_READ_MAC_BYTE 0x50000000
1712#define PHY_WRITE_MAC_BYTE 0x60000000
1713#define PHY_CLEAR_READCOUNT 0x70000000
1714#define PHY_WRITE 0x80000000
1715#define PHY_READCOUNT_EQ_SKIP 0x90000000
1716#define PHY_COMP_EQ_SKIPN 0xa0000000
1717#define PHY_COMP_NEQ_SKIPN 0xb0000000
1718#define PHY_WRITE_PREVIOUS 0xc0000000
1719#define PHY_SKIPN 0xd0000000
1720#define PHY_DELAY_MS 0xe0000000
1721#define PHY_WRITE_ERI_WORD 0xf0000000
1722
1723static void
1724rtl_phy_write_fw(struct rtl8169_private *tp, const struct firmware *fw)
1725{
françois romieubca03d52011-01-03 15:07:31 +00001726 __le32 *phytable = (__le32 *)fw->data;
1727 struct net_device *dev = tp->dev;
hayeswang42b82dc2011-01-10 02:07:25 +00001728 size_t index, fw_size = fw->size / sizeof(*phytable);
1729 u32 predata, count;
françois romieubca03d52011-01-03 15:07:31 +00001730
1731 if (fw->size % sizeof(*phytable)) {
1732 netif_err(tp, probe, dev, "odd sized firmware %zd\n", fw->size);
1733 return;
1734 }
1735
hayeswang42b82dc2011-01-10 02:07:25 +00001736 for (index = 0; index < fw_size; index++) {
1737 u32 action = le32_to_cpu(phytable[index]);
1738 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00001739
hayeswang42b82dc2011-01-10 02:07:25 +00001740 switch(action & 0xf0000000) {
1741 case PHY_READ:
1742 case PHY_DATA_OR:
1743 case PHY_DATA_AND:
1744 case PHY_READ_EFUSE:
1745 case PHY_CLEAR_READCOUNT:
1746 case PHY_WRITE:
1747 case PHY_WRITE_PREVIOUS:
1748 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00001749 break;
1750
hayeswang42b82dc2011-01-10 02:07:25 +00001751 case PHY_BJMPN:
1752 if (regno > index) {
1753 netif_err(tp, probe, tp->dev,
1754 "Out of range of firmware\n");
1755 return;
1756 }
1757 break;
1758 case PHY_READCOUNT_EQ_SKIP:
1759 if (index + 2 >= fw_size) {
1760 netif_err(tp, probe, tp->dev,
1761 "Out of range of firmware\n");
1762 return;
1763 }
1764 break;
1765 case PHY_COMP_EQ_SKIPN:
1766 case PHY_COMP_NEQ_SKIPN:
1767 case PHY_SKIPN:
1768 if (index + 1 + regno >= fw_size) {
1769 netif_err(tp, probe, tp->dev,
1770 "Out of range of firmware\n");
1771 return;
1772 }
1773 break;
1774
1775 case PHY_READ_MAC_BYTE:
1776 case PHY_WRITE_MAC_BYTE:
1777 case PHY_WRITE_ERI_WORD:
1778 default:
1779 netif_err(tp, probe, tp->dev,
1780 "Invalid action 0x%08x\n", action);
françois romieubca03d52011-01-03 15:07:31 +00001781 return;
1782 }
1783 }
1784
hayeswang42b82dc2011-01-10 02:07:25 +00001785 predata = 0;
1786 count = 0;
1787
1788 for (index = 0; index < fw_size; ) {
1789 u32 action = le32_to_cpu(phytable[index]);
françois romieubca03d52011-01-03 15:07:31 +00001790 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00001791 u32 regno = (action & 0x0fff0000) >> 16;
1792
1793 if (!action)
1794 break;
françois romieubca03d52011-01-03 15:07:31 +00001795
1796 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00001797 case PHY_READ:
1798 predata = rtl_readphy(tp, regno);
1799 count++;
1800 index++;
françois romieubca03d52011-01-03 15:07:31 +00001801 break;
hayeswang42b82dc2011-01-10 02:07:25 +00001802 case PHY_DATA_OR:
1803 predata |= data;
1804 index++;
1805 break;
1806 case PHY_DATA_AND:
1807 predata &= data;
1808 index++;
1809 break;
1810 case PHY_BJMPN:
1811 index -= regno;
1812 break;
1813 case PHY_READ_EFUSE:
1814 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
1815 index++;
1816 break;
1817 case PHY_CLEAR_READCOUNT:
1818 count = 0;
1819 index++;
1820 break;
1821 case PHY_WRITE:
1822 rtl_writephy(tp, regno, data);
1823 index++;
1824 break;
1825 case PHY_READCOUNT_EQ_SKIP:
1826 if (count == data)
1827 index += 2;
1828 else
1829 index += 1;
1830 break;
1831 case PHY_COMP_EQ_SKIPN:
1832 if (predata == data)
1833 index += regno;
1834 index++;
1835 break;
1836 case PHY_COMP_NEQ_SKIPN:
1837 if (predata != data)
1838 index += regno;
1839 index++;
1840 break;
1841 case PHY_WRITE_PREVIOUS:
1842 rtl_writephy(tp, regno, predata);
1843 index++;
1844 break;
1845 case PHY_SKIPN:
1846 index += regno + 1;
1847 break;
1848 case PHY_DELAY_MS:
1849 mdelay(data);
1850 index++;
1851 break;
1852
1853 case PHY_READ_MAC_BYTE:
1854 case PHY_WRITE_MAC_BYTE:
1855 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00001856 default:
1857 BUG();
1858 }
1859 }
1860}
1861
françois romieuf1e02ed2011-01-13 13:07:53 +00001862static void rtl_release_firmware(struct rtl8169_private *tp)
1863{
François Romieu953a12c2011-04-24 17:38:48 +02001864 if (!IS_ERR_OR_NULL(tp->fw))
1865 release_firmware(tp->fw);
1866 tp->fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00001867}
1868
François Romieu953a12c2011-04-24 17:38:48 +02001869static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00001870{
François Romieu953a12c2011-04-24 17:38:48 +02001871 const struct firmware *fw = tp->fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00001872
1873 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
François Romieu953a12c2011-04-24 17:38:48 +02001874 if (!IS_ERR_OR_NULL(fw))
1875 rtl_phy_write_fw(tp, fw);
1876}
1877
1878static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
1879{
1880 if (rtl_readphy(tp, reg) != val)
1881 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
1882 else
1883 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00001884}
1885
françois romieu4da19632011-01-03 15:07:55 +00001886static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001888 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00001889 { 0x1f, 0x0001 },
1890 { 0x06, 0x006e },
1891 { 0x08, 0x0708 },
1892 { 0x15, 0x4000 },
1893 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
françois romieu0b9b5712009-08-10 19:44:56 +00001895 { 0x1f, 0x0001 },
1896 { 0x03, 0x00a1 },
1897 { 0x02, 0x0008 },
1898 { 0x01, 0x0120 },
1899 { 0x00, 0x1000 },
1900 { 0x04, 0x0800 },
1901 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
françois romieu0b9b5712009-08-10 19:44:56 +00001903 { 0x03, 0xff41 },
1904 { 0x02, 0xdf60 },
1905 { 0x01, 0x0140 },
1906 { 0x00, 0x0077 },
1907 { 0x04, 0x7800 },
1908 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
françois romieu0b9b5712009-08-10 19:44:56 +00001910 { 0x03, 0x802f },
1911 { 0x02, 0x4f02 },
1912 { 0x01, 0x0409 },
1913 { 0x00, 0xf0f9 },
1914 { 0x04, 0x9800 },
1915 { 0x04, 0x9000 },
1916
1917 { 0x03, 0xdf01 },
1918 { 0x02, 0xdf20 },
1919 { 0x01, 0xff95 },
1920 { 0x00, 0xba00 },
1921 { 0x04, 0xa800 },
1922 { 0x04, 0xa000 },
1923
1924 { 0x03, 0xff41 },
1925 { 0x02, 0xdf20 },
1926 { 0x01, 0x0140 },
1927 { 0x00, 0x00bb },
1928 { 0x04, 0xb800 },
1929 { 0x04, 0xb000 },
1930
1931 { 0x03, 0xdf41 },
1932 { 0x02, 0xdc60 },
1933 { 0x01, 0x6340 },
1934 { 0x00, 0x007d },
1935 { 0x04, 0xd800 },
1936 { 0x04, 0xd000 },
1937
1938 { 0x03, 0xdf01 },
1939 { 0x02, 0xdf20 },
1940 { 0x01, 0x100a },
1941 { 0x00, 0xa0ff },
1942 { 0x04, 0xf800 },
1943 { 0x04, 0xf000 },
1944
1945 { 0x1f, 0x0000 },
1946 { 0x0b, 0x0000 },
1947 { 0x00, 0x9200 }
1948 };
1949
françois romieu4da19632011-01-03 15:07:55 +00001950 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951}
1952
françois romieu4da19632011-01-03 15:07:55 +00001953static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02001954{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001955 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02001956 { 0x1f, 0x0002 },
1957 { 0x01, 0x90d0 },
1958 { 0x1f, 0x0000 }
1959 };
1960
françois romieu4da19632011-01-03 15:07:55 +00001961 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001962}
1963
françois romieu4da19632011-01-03 15:07:55 +00001964static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001965{
1966 struct pci_dev *pdev = tp->pci_dev;
1967 u16 vendor_id, device_id;
1968
1969 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
1970 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
1971
1972 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
1973 return;
1974
françois romieu4da19632011-01-03 15:07:55 +00001975 rtl_writephy(tp, 0x1f, 0x0001);
1976 rtl_writephy(tp, 0x10, 0xf01b);
1977 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00001978}
1979
françois romieu4da19632011-01-03 15:07:55 +00001980static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001981{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001982 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00001983 { 0x1f, 0x0001 },
1984 { 0x04, 0x0000 },
1985 { 0x03, 0x00a1 },
1986 { 0x02, 0x0008 },
1987 { 0x01, 0x0120 },
1988 { 0x00, 0x1000 },
1989 { 0x04, 0x0800 },
1990 { 0x04, 0x9000 },
1991 { 0x03, 0x802f },
1992 { 0x02, 0x4f02 },
1993 { 0x01, 0x0409 },
1994 { 0x00, 0xf099 },
1995 { 0x04, 0x9800 },
1996 { 0x04, 0xa000 },
1997 { 0x03, 0xdf01 },
1998 { 0x02, 0xdf20 },
1999 { 0x01, 0xff95 },
2000 { 0x00, 0xba00 },
2001 { 0x04, 0xa800 },
2002 { 0x04, 0xf000 },
2003 { 0x03, 0xdf01 },
2004 { 0x02, 0xdf20 },
2005 { 0x01, 0x101a },
2006 { 0x00, 0xa0ff },
2007 { 0x04, 0xf800 },
2008 { 0x04, 0x0000 },
2009 { 0x1f, 0x0000 },
2010
2011 { 0x1f, 0x0001 },
2012 { 0x10, 0xf41b },
2013 { 0x14, 0xfb54 },
2014 { 0x18, 0xf5c7 },
2015 { 0x1f, 0x0000 },
2016
2017 { 0x1f, 0x0001 },
2018 { 0x17, 0x0cc0 },
2019 { 0x1f, 0x0000 }
2020 };
2021
françois romieu4da19632011-01-03 15:07:55 +00002022 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002023
françois romieu4da19632011-01-03 15:07:55 +00002024 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002025}
2026
françois romieu4da19632011-01-03 15:07:55 +00002027static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002028{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002029 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002030 { 0x1f, 0x0001 },
2031 { 0x04, 0x0000 },
2032 { 0x03, 0x00a1 },
2033 { 0x02, 0x0008 },
2034 { 0x01, 0x0120 },
2035 { 0x00, 0x1000 },
2036 { 0x04, 0x0800 },
2037 { 0x04, 0x9000 },
2038 { 0x03, 0x802f },
2039 { 0x02, 0x4f02 },
2040 { 0x01, 0x0409 },
2041 { 0x00, 0xf099 },
2042 { 0x04, 0x9800 },
2043 { 0x04, 0xa000 },
2044 { 0x03, 0xdf01 },
2045 { 0x02, 0xdf20 },
2046 { 0x01, 0xff95 },
2047 { 0x00, 0xba00 },
2048 { 0x04, 0xa800 },
2049 { 0x04, 0xf000 },
2050 { 0x03, 0xdf01 },
2051 { 0x02, 0xdf20 },
2052 { 0x01, 0x101a },
2053 { 0x00, 0xa0ff },
2054 { 0x04, 0xf800 },
2055 { 0x04, 0x0000 },
2056 { 0x1f, 0x0000 },
2057
2058 { 0x1f, 0x0001 },
2059 { 0x0b, 0x8480 },
2060 { 0x1f, 0x0000 },
2061
2062 { 0x1f, 0x0001 },
2063 { 0x18, 0x67c7 },
2064 { 0x04, 0x2000 },
2065 { 0x03, 0x002f },
2066 { 0x02, 0x4360 },
2067 { 0x01, 0x0109 },
2068 { 0x00, 0x3022 },
2069 { 0x04, 0x2800 },
2070 { 0x1f, 0x0000 },
2071
2072 { 0x1f, 0x0001 },
2073 { 0x17, 0x0cc0 },
2074 { 0x1f, 0x0000 }
2075 };
2076
françois romieu4da19632011-01-03 15:07:55 +00002077 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002078}
2079
françois romieu4da19632011-01-03 15:07:55 +00002080static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002081{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002082 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002083 { 0x10, 0xf41b },
2084 { 0x1f, 0x0000 }
2085 };
2086
françois romieu4da19632011-01-03 15:07:55 +00002087 rtl_writephy(tp, 0x1f, 0x0001);
2088 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002089
françois romieu4da19632011-01-03 15:07:55 +00002090 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002091}
2092
françois romieu4da19632011-01-03 15:07:55 +00002093static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002094{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002095 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002096 { 0x1f, 0x0001 },
2097 { 0x10, 0xf41b },
2098 { 0x1f, 0x0000 }
2099 };
2100
françois romieu4da19632011-01-03 15:07:55 +00002101 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002102}
2103
françois romieu4da19632011-01-03 15:07:55 +00002104static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002105{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002106 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002107 { 0x1f, 0x0000 },
2108 { 0x1d, 0x0f00 },
2109 { 0x1f, 0x0002 },
2110 { 0x0c, 0x1ec8 },
2111 { 0x1f, 0x0000 }
2112 };
2113
françois romieu4da19632011-01-03 15:07:55 +00002114 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002115}
2116
françois romieu4da19632011-01-03 15:07:55 +00002117static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002118{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002119 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002120 { 0x1f, 0x0001 },
2121 { 0x1d, 0x3d98 },
2122 { 0x1f, 0x0000 }
2123 };
2124
françois romieu4da19632011-01-03 15:07:55 +00002125 rtl_writephy(tp, 0x1f, 0x0000);
2126 rtl_patchphy(tp, 0x14, 1 << 5);
2127 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002128
françois romieu4da19632011-01-03 15:07:55 +00002129 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002130}
2131
françois romieu4da19632011-01-03 15:07:55 +00002132static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002133{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002134 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002135 { 0x1f, 0x0001 },
2136 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002137 { 0x1f, 0x0002 },
2138 { 0x00, 0x88d4 },
2139 { 0x01, 0x82b1 },
2140 { 0x03, 0x7002 },
2141 { 0x08, 0x9e30 },
2142 { 0x09, 0x01f0 },
2143 { 0x0a, 0x5500 },
2144 { 0x0c, 0x00c8 },
2145 { 0x1f, 0x0003 },
2146 { 0x12, 0xc096 },
2147 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002148 { 0x1f, 0x0000 },
2149 { 0x1f, 0x0000 },
2150 { 0x09, 0x2000 },
2151 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002152 };
2153
françois romieu4da19632011-01-03 15:07:55 +00002154 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002155
françois romieu4da19632011-01-03 15:07:55 +00002156 rtl_patchphy(tp, 0x14, 1 << 5);
2157 rtl_patchphy(tp, 0x0d, 1 << 5);
2158 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002159}
2160
françois romieu4da19632011-01-03 15:07:55 +00002161static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002162{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002163 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002164 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002165 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002166 { 0x03, 0x802f },
2167 { 0x02, 0x4f02 },
2168 { 0x01, 0x0409 },
2169 { 0x00, 0xf099 },
2170 { 0x04, 0x9800 },
2171 { 0x04, 0x9000 },
2172 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002173 { 0x1f, 0x0002 },
2174 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002175 { 0x06, 0x0761 },
2176 { 0x1f, 0x0003 },
2177 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002178 { 0x1f, 0x0000 }
2179 };
2180
françois romieu4da19632011-01-03 15:07:55 +00002181 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002182
françois romieu4da19632011-01-03 15:07:55 +00002183 rtl_patchphy(tp, 0x16, 1 << 0);
2184 rtl_patchphy(tp, 0x14, 1 << 5);
2185 rtl_patchphy(tp, 0x0d, 1 << 5);
2186 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002187}
2188
françois romieu4da19632011-01-03 15:07:55 +00002189static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002190{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002191 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002192 { 0x1f, 0x0001 },
2193 { 0x12, 0x2300 },
2194 { 0x1d, 0x3d98 },
2195 { 0x1f, 0x0002 },
2196 { 0x0c, 0x7eb8 },
2197 { 0x06, 0x5461 },
2198 { 0x1f, 0x0003 },
2199 { 0x16, 0x0f0a },
2200 { 0x1f, 0x0000 }
2201 };
2202
françois romieu4da19632011-01-03 15:07:55 +00002203 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002204
françois romieu4da19632011-01-03 15:07:55 +00002205 rtl_patchphy(tp, 0x16, 1 << 0);
2206 rtl_patchphy(tp, 0x14, 1 << 5);
2207 rtl_patchphy(tp, 0x0d, 1 << 5);
2208 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002209}
2210
françois romieu4da19632011-01-03 15:07:55 +00002211static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002212{
françois romieu4da19632011-01-03 15:07:55 +00002213 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002214}
2215
françois romieubca03d52011-01-03 15:07:31 +00002216static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002217{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002218 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002219 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002220 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002221 { 0x06, 0x4064 },
2222 { 0x07, 0x2863 },
2223 { 0x08, 0x059c },
2224 { 0x09, 0x26b4 },
2225 { 0x0a, 0x6a19 },
2226 { 0x0b, 0xdcc8 },
2227 { 0x10, 0xf06d },
2228 { 0x14, 0x7f68 },
2229 { 0x18, 0x7fd9 },
2230 { 0x1c, 0xf0ff },
2231 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002232 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002233 { 0x12, 0xf49f },
2234 { 0x13, 0x070b },
2235 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002236 { 0x14, 0x94c0 },
2237
2238 /*
2239 * Tx Error Issue
2240 * enhance line driver power
2241 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002242 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002243 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002244 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002245 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002246 { 0x06, 0x5561 },
2247
2248 /*
2249 * Can not link to 1Gbps with bad cable
2250 * Decrease SNR threshold form 21.07dB to 19.04dB
2251 */
2252 { 0x1f, 0x0001 },
2253 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002254
2255 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002256 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002257 };
françois romieubca03d52011-01-03 15:07:31 +00002258 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002259
françois romieu4da19632011-01-03 15:07:55 +00002260 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002261
françois romieubca03d52011-01-03 15:07:31 +00002262 /*
2263 * Rx Error Issue
2264 * Fine Tune Switching regulator parameter
2265 */
françois romieu4da19632011-01-03 15:07:55 +00002266 rtl_writephy(tp, 0x1f, 0x0002);
2267 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2268 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002269
françois romieudaf9df62009-10-07 12:44:20 +00002270 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002271 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002272 { 0x1f, 0x0002 },
2273 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002274 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002275 { 0x05, 0x8330 },
2276 { 0x06, 0x669a },
2277 { 0x1f, 0x0002 }
2278 };
2279 int val;
2280
françois romieu4da19632011-01-03 15:07:55 +00002281 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002282
françois romieu4da19632011-01-03 15:07:55 +00002283 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002284
2285 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002286 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002287 0x0065, 0x0066, 0x0067, 0x0068,
2288 0x0069, 0x006a, 0x006b, 0x006c
2289 };
2290 int i;
2291
françois romieu4da19632011-01-03 15:07:55 +00002292 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002293
2294 val &= 0xff00;
2295 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002296 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002297 }
2298 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002299 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002300 { 0x1f, 0x0002 },
2301 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002302 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002303 { 0x05, 0x8330 },
2304 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002305 };
2306
françois romieu4da19632011-01-03 15:07:55 +00002307 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002308 }
2309
françois romieubca03d52011-01-03 15:07:31 +00002310 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002311 rtl_writephy(tp, 0x1f, 0x0002);
2312 rtl_patchphy(tp, 0x0d, 0x0300);
2313 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002314
françois romieubca03d52011-01-03 15:07:31 +00002315 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002316 rtl_writephy(tp, 0x1f, 0x0002);
2317 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2318 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002319
françois romieu4da19632011-01-03 15:07:55 +00002320 rtl_writephy(tp, 0x1f, 0x0005);
2321 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002322
2323 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002324
françois romieu4da19632011-01-03 15:07:55 +00002325 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002326}
2327
françois romieubca03d52011-01-03 15:07:31 +00002328static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002329{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002330 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002331 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002332 { 0x1f, 0x0001 },
2333 { 0x06, 0x4064 },
2334 { 0x07, 0x2863 },
2335 { 0x08, 0x059c },
2336 { 0x09, 0x26b4 },
2337 { 0x0a, 0x6a19 },
2338 { 0x0b, 0xdcc8 },
2339 { 0x10, 0xf06d },
2340 { 0x14, 0x7f68 },
2341 { 0x18, 0x7fd9 },
2342 { 0x1c, 0xf0ff },
2343 { 0x1d, 0x3d9c },
2344 { 0x1f, 0x0003 },
2345 { 0x12, 0xf49f },
2346 { 0x13, 0x070b },
2347 { 0x1a, 0x05ad },
2348 { 0x14, 0x94c0 },
2349
françois romieubca03d52011-01-03 15:07:31 +00002350 /*
2351 * Tx Error Issue
2352 * enhance line driver power
2353 */
françois romieudaf9df62009-10-07 12:44:20 +00002354 { 0x1f, 0x0002 },
2355 { 0x06, 0x5561 },
2356 { 0x1f, 0x0005 },
2357 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002358 { 0x06, 0x5561 },
2359
2360 /*
2361 * Can not link to 1Gbps with bad cable
2362 * Decrease SNR threshold form 21.07dB to 19.04dB
2363 */
2364 { 0x1f, 0x0001 },
2365 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002366
2367 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002368 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002369 };
françois romieubca03d52011-01-03 15:07:31 +00002370 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002371
françois romieu4da19632011-01-03 15:07:55 +00002372 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002373
2374 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002375 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002376 { 0x1f, 0x0002 },
2377 { 0x05, 0x669a },
2378 { 0x1f, 0x0005 },
2379 { 0x05, 0x8330 },
2380 { 0x06, 0x669a },
2381
2382 { 0x1f, 0x0002 }
2383 };
2384 int val;
2385
françois romieu4da19632011-01-03 15:07:55 +00002386 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002387
françois romieu4da19632011-01-03 15:07:55 +00002388 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002389 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002390 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002391 0x0065, 0x0066, 0x0067, 0x0068,
2392 0x0069, 0x006a, 0x006b, 0x006c
2393 };
2394 int i;
2395
françois romieu4da19632011-01-03 15:07:55 +00002396 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002397
2398 val &= 0xff00;
2399 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002400 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002401 }
2402 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002403 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002404 { 0x1f, 0x0002 },
2405 { 0x05, 0x2642 },
2406 { 0x1f, 0x0005 },
2407 { 0x05, 0x8330 },
2408 { 0x06, 0x2642 }
2409 };
2410
françois romieu4da19632011-01-03 15:07:55 +00002411 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002412 }
2413
françois romieubca03d52011-01-03 15:07:31 +00002414 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002415 rtl_writephy(tp, 0x1f, 0x0002);
2416 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2417 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002418
françois romieubca03d52011-01-03 15:07:31 +00002419 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002420 rtl_writephy(tp, 0x1f, 0x0002);
2421 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002422
françois romieu4da19632011-01-03 15:07:55 +00002423 rtl_writephy(tp, 0x1f, 0x0005);
2424 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002425
2426 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002427
françois romieu4da19632011-01-03 15:07:55 +00002428 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002429}
2430
françois romieu4da19632011-01-03 15:07:55 +00002431static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002432{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002433 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002434 { 0x1f, 0x0002 },
2435 { 0x10, 0x0008 },
2436 { 0x0d, 0x006c },
2437
2438 { 0x1f, 0x0000 },
2439 { 0x0d, 0xf880 },
2440
2441 { 0x1f, 0x0001 },
2442 { 0x17, 0x0cc0 },
2443
2444 { 0x1f, 0x0001 },
2445 { 0x0b, 0xa4d8 },
2446 { 0x09, 0x281c },
2447 { 0x07, 0x2883 },
2448 { 0x0a, 0x6b35 },
2449 { 0x1d, 0x3da4 },
2450 { 0x1c, 0xeffd },
2451 { 0x14, 0x7f52 },
2452 { 0x18, 0x7fc6 },
2453 { 0x08, 0x0601 },
2454 { 0x06, 0x4063 },
2455 { 0x10, 0xf074 },
2456 { 0x1f, 0x0003 },
2457 { 0x13, 0x0789 },
2458 { 0x12, 0xf4bd },
2459 { 0x1a, 0x04fd },
2460 { 0x14, 0x84b0 },
2461 { 0x1f, 0x0000 },
2462 { 0x00, 0x9200 },
2463
2464 { 0x1f, 0x0005 },
2465 { 0x01, 0x0340 },
2466 { 0x1f, 0x0001 },
2467 { 0x04, 0x4000 },
2468 { 0x03, 0x1d21 },
2469 { 0x02, 0x0c32 },
2470 { 0x01, 0x0200 },
2471 { 0x00, 0x5554 },
2472 { 0x04, 0x4800 },
2473 { 0x04, 0x4000 },
2474 { 0x04, 0xf000 },
2475 { 0x03, 0xdf01 },
2476 { 0x02, 0xdf20 },
2477 { 0x01, 0x101a },
2478 { 0x00, 0xa0ff },
2479 { 0x04, 0xf800 },
2480 { 0x04, 0xf000 },
2481 { 0x1f, 0x0000 },
2482
2483 { 0x1f, 0x0007 },
2484 { 0x1e, 0x0023 },
2485 { 0x16, 0x0000 },
2486 { 0x1f, 0x0000 }
2487 };
2488
françois romieu4da19632011-01-03 15:07:55 +00002489 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002490}
2491
françois romieue6de30d2011-01-03 15:08:37 +00002492static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2493{
2494 static const struct phy_reg phy_reg_init[] = {
2495 { 0x1f, 0x0001 },
2496 { 0x17, 0x0cc0 },
2497
2498 { 0x1f, 0x0007 },
2499 { 0x1e, 0x002d },
2500 { 0x18, 0x0040 },
2501 { 0x1f, 0x0000 }
2502 };
2503
2504 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2505 rtl_patchphy(tp, 0x0d, 1 << 5);
2506}
2507
hayeswang01dc7fe2011-03-21 01:50:28 +00002508static void rtl8168e_hw_phy_config(struct rtl8169_private *tp)
2509{
2510 static const struct phy_reg phy_reg_init[] = {
2511 /* Enable Delay cap */
2512 { 0x1f, 0x0005 },
2513 { 0x05, 0x8b80 },
2514 { 0x06, 0xc896 },
2515 { 0x1f, 0x0000 },
2516
2517 /* Channel estimation fine tune */
2518 { 0x1f, 0x0001 },
2519 { 0x0b, 0x6c20 },
2520 { 0x07, 0x2872 },
2521 { 0x1c, 0xefff },
2522 { 0x1f, 0x0003 },
2523 { 0x14, 0x6420 },
2524 { 0x1f, 0x0000 },
2525
2526 /* Update PFM & 10M TX idle timer */
2527 { 0x1f, 0x0007 },
2528 { 0x1e, 0x002f },
2529 { 0x15, 0x1919 },
2530 { 0x1f, 0x0000 },
2531
2532 { 0x1f, 0x0007 },
2533 { 0x1e, 0x00ac },
2534 { 0x18, 0x0006 },
2535 { 0x1f, 0x0000 }
2536 };
2537
Francois Romieu15ecd032011-04-27 13:52:22 -07002538 rtl_apply_firmware(tp);
2539
hayeswang01dc7fe2011-03-21 01:50:28 +00002540 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2541
2542 /* DCO enable for 10M IDLE Power */
2543 rtl_writephy(tp, 0x1f, 0x0007);
2544 rtl_writephy(tp, 0x1e, 0x0023);
2545 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2546 rtl_writephy(tp, 0x1f, 0x0000);
2547
2548 /* For impedance matching */
2549 rtl_writephy(tp, 0x1f, 0x0002);
2550 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
2551 rtl_writephy(tp, 0x1F, 0x0000);
2552
2553 /* PHY auto speed down */
2554 rtl_writephy(tp, 0x1f, 0x0007);
2555 rtl_writephy(tp, 0x1e, 0x002d);
2556 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
2557 rtl_writephy(tp, 0x1f, 0x0000);
2558 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2559
2560 rtl_writephy(tp, 0x1f, 0x0005);
2561 rtl_writephy(tp, 0x05, 0x8b86);
2562 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2563 rtl_writephy(tp, 0x1f, 0x0000);
2564
2565 rtl_writephy(tp, 0x1f, 0x0005);
2566 rtl_writephy(tp, 0x05, 0x8b85);
2567 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2568 rtl_writephy(tp, 0x1f, 0x0007);
2569 rtl_writephy(tp, 0x1e, 0x0020);
2570 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
2571 rtl_writephy(tp, 0x1f, 0x0006);
2572 rtl_writephy(tp, 0x00, 0x5a00);
2573 rtl_writephy(tp, 0x1f, 0x0000);
2574 rtl_writephy(tp, 0x0d, 0x0007);
2575 rtl_writephy(tp, 0x0e, 0x003c);
2576 rtl_writephy(tp, 0x0d, 0x4007);
2577 rtl_writephy(tp, 0x0e, 0x0000);
2578 rtl_writephy(tp, 0x0d, 0x0000);
2579}
2580
françois romieu4da19632011-01-03 15:07:55 +00002581static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02002582{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002583 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002584 { 0x1f, 0x0003 },
2585 { 0x08, 0x441d },
2586 { 0x01, 0x9100 },
2587 { 0x1f, 0x0000 }
2588 };
2589
françois romieu4da19632011-01-03 15:07:55 +00002590 rtl_writephy(tp, 0x1f, 0x0000);
2591 rtl_patchphy(tp, 0x11, 1 << 12);
2592 rtl_patchphy(tp, 0x19, 1 << 13);
2593 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002594
françois romieu4da19632011-01-03 15:07:55 +00002595 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02002596}
2597
Hayes Wang5a5e4442011-02-22 17:26:21 +08002598static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
2599{
2600 static const struct phy_reg phy_reg_init[] = {
2601 { 0x1f, 0x0005 },
2602 { 0x1a, 0x0000 },
2603 { 0x1f, 0x0000 },
2604
2605 { 0x1f, 0x0004 },
2606 { 0x1c, 0x0000 },
2607 { 0x1f, 0x0000 },
2608
2609 { 0x1f, 0x0001 },
2610 { 0x15, 0x7701 },
2611 { 0x1f, 0x0000 }
2612 };
2613
2614 /* Disable ALDPS before ram code */
2615 rtl_writephy(tp, 0x1f, 0x0000);
2616 rtl_writephy(tp, 0x18, 0x0310);
2617 msleep(100);
2618
François Romieu953a12c2011-04-24 17:38:48 +02002619 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08002620
2621 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2622}
2623
Francois Romieu5615d9f2007-08-17 17:50:46 +02002624static void rtl_hw_phy_config(struct net_device *dev)
2625{
2626 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002627
2628 rtl8169_print_mac_version(tp);
2629
2630 switch (tp->mac_version) {
2631 case RTL_GIGA_MAC_VER_01:
2632 break;
2633 case RTL_GIGA_MAC_VER_02:
2634 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00002635 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002636 break;
2637 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00002638 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002639 break;
françois romieu2e9558562009-08-10 19:44:19 +00002640 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00002641 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002642 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002643 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00002644 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00002645 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002646 case RTL_GIGA_MAC_VER_07:
2647 case RTL_GIGA_MAC_VER_08:
2648 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00002649 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002650 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002651 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00002652 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002653 break;
2654 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00002655 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002656 break;
2657 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00002658 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002659 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002660 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00002661 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002662 break;
2663 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00002664 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002665 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002666 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00002667 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002668 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002669 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00002670 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02002671 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002672 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00002673 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002674 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002675 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002676 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00002677 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02002678 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002679 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002680 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002681 break;
2682 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002683 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002684 break;
2685 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00002686 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02002687 break;
françois romieue6de30d2011-01-03 15:08:37 +00002688 case RTL_GIGA_MAC_VER_28:
2689 rtl8168d_4_hw_phy_config(tp);
2690 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08002691 case RTL_GIGA_MAC_VER_29:
2692 case RTL_GIGA_MAC_VER_30:
2693 rtl8105e_hw_phy_config(tp);
2694 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00002695 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00002696 case RTL_GIGA_MAC_VER_33:
Francois Romieu15ecd032011-04-27 13:52:22 -07002697 rtl8168e_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00002698 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002699
Francois Romieu5615d9f2007-08-17 17:50:46 +02002700 default:
2701 break;
2702 }
2703}
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705static void rtl8169_phy_timer(unsigned long __opaque)
2706{
2707 struct net_device *dev = (struct net_device *)__opaque;
2708 struct rtl8169_private *tp = netdev_priv(dev);
2709 struct timer_list *timer = &tp->timer;
2710 void __iomem *ioaddr = tp->mmio_addr;
2711 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2712
Francois Romieubcf0bf92006-07-26 23:14:13 +02002713 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Francois Romieu64e4bfb2006-08-17 12:43:06 +02002715 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 return;
2717
2718 spin_lock_irq(&tp->lock);
2719
françois romieu4da19632011-01-03 15:07:55 +00002720 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02002721 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 * A busy loop could burn quite a few cycles on nowadays CPU.
2723 * Let's delay the execution of the timer for a few ticks.
2724 */
2725 timeout = HZ/10;
2726 goto out_mod_timer;
2727 }
2728
2729 if (tp->link_ok(ioaddr))
2730 goto out_unlock;
2731
Joe Perchesbf82c182010-02-09 11:49:50 +00002732 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
françois romieu4da19632011-01-03 15:07:55 +00002734 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
2736out_mod_timer:
2737 mod_timer(timer, jiffies + timeout);
2738out_unlock:
2739 spin_unlock_irq(&tp->lock);
2740}
2741
2742static inline void rtl8169_delete_timer(struct net_device *dev)
2743{
2744 struct rtl8169_private *tp = netdev_priv(dev);
2745 struct timer_list *timer = &tp->timer;
2746
Francois Romieue179bb72007-08-17 15:05:21 +02002747 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 return;
2749
2750 del_timer_sync(timer);
2751}
2752
2753static inline void rtl8169_request_timer(struct net_device *dev)
2754{
2755 struct rtl8169_private *tp = netdev_priv(dev);
2756 struct timer_list *timer = &tp->timer;
2757
Francois Romieue179bb72007-08-17 15:05:21 +02002758 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 return;
2760
Francois Romieu2efa53f2007-03-09 00:00:05 +01002761 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762}
2763
2764#ifdef CONFIG_NET_POLL_CONTROLLER
2765/*
2766 * Polling 'interrupt' - used by things like netconsole to send skbs
2767 * without having to re-enable interrupts. It's not called while
2768 * the interrupt routine is executing.
2769 */
2770static void rtl8169_netpoll(struct net_device *dev)
2771{
2772 struct rtl8169_private *tp = netdev_priv(dev);
2773 struct pci_dev *pdev = tp->pci_dev;
2774
2775 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002776 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 enable_irq(pdev->irq);
2778}
2779#endif
2780
2781static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
2782 void __iomem *ioaddr)
2783{
2784 iounmap(ioaddr);
2785 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002786 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 pci_disable_device(pdev);
2788 free_netdev(dev);
2789}
2790
Francois Romieubf793292006-11-01 00:53:05 +01002791static void rtl8169_phy_reset(struct net_device *dev,
2792 struct rtl8169_private *tp)
2793{
Francois Romieu07d3f512007-02-21 22:40:46 +01002794 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01002795
françois romieu4da19632011-01-03 15:07:55 +00002796 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01002797 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00002798 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01002799 return;
2800 msleep(1);
2801 }
Joe Perchesbf82c182010-02-09 11:49:50 +00002802 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01002803}
2804
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002805static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002807 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002808
Francois Romieu5615d9f2007-08-17 17:50:46 +02002809 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002810
Marcus Sundberg773328942008-07-10 21:28:08 +02002811 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
2812 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2813 RTL_W8(0x82, 0x01);
2814 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002815
Francois Romieu6dccd162007-02-13 23:38:05 +01002816 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
2817
2818 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
2819 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002820
Francois Romieubcf0bf92006-07-26 23:14:13 +02002821 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002822 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2823 RTL_W8(0x82, 0x01);
2824 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00002825 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002826 }
2827
Francois Romieubf793292006-11-01 00:53:05 +01002828 rtl8169_phy_reset(dev, tp);
2829
Oliver Neukum54405cd2011-01-06 21:55:13 +01002830 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
2831 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
2832 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
Eric Dumazetdb552b32011-03-19 16:39:11 +01002833 (tp->mii.supports_gmii ?
Oliver Neukum54405cd2011-01-06 21:55:13 +01002834 ADVERTISED_1000baseT_Half |
Eric Dumazetdb552b32011-03-19 16:39:11 +01002835 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002836
Joe Perchesbf82c182010-02-09 11:49:50 +00002837 if (RTL_R8(PHYstatus) & TBI_Enable)
2838 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002839}
2840
Francois Romieu773d2022007-01-31 23:47:43 +01002841static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
2842{
2843 void __iomem *ioaddr = tp->mmio_addr;
2844 u32 high;
2845 u32 low;
2846
2847 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
2848 high = addr[4] | (addr[5] << 8);
2849
2850 spin_lock_irq(&tp->lock);
2851
2852 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00002853
Francois Romieu773d2022007-01-31 23:47:43 +01002854 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00002855 RTL_R32(MAC4);
2856
Francois Romieu78f1cd02010-03-27 19:35:46 -07002857 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00002858 RTL_R32(MAC0);
2859
Francois Romieu773d2022007-01-31 23:47:43 +01002860 RTL_W8(Cfg9346, Cfg9346_Lock);
2861
2862 spin_unlock_irq(&tp->lock);
2863}
2864
2865static int rtl_set_mac_address(struct net_device *dev, void *p)
2866{
2867 struct rtl8169_private *tp = netdev_priv(dev);
2868 struct sockaddr *addr = p;
2869
2870 if (!is_valid_ether_addr(addr->sa_data))
2871 return -EADDRNOTAVAIL;
2872
2873 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2874
2875 rtl_rar_set(tp, dev->dev_addr);
2876
2877 return 0;
2878}
2879
Francois Romieu5f787a12006-08-17 13:02:36 +02002880static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2881{
2882 struct rtl8169_private *tp = netdev_priv(dev);
2883 struct mii_ioctl_data *data = if_mii(ifr);
2884
Francois Romieu8b4ab282008-11-19 22:05:25 -08002885 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
2886}
Francois Romieu5f787a12006-08-17 13:02:36 +02002887
Francois Romieu8b4ab282008-11-19 22:05:25 -08002888static int rtl_xmii_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2889{
Francois Romieu5f787a12006-08-17 13:02:36 +02002890 switch (cmd) {
2891 case SIOCGMIIPHY:
2892 data->phy_id = 32; /* Internal PHY */
2893 return 0;
2894
2895 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002896 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02002897 return 0;
2898
2899 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002900 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02002901 return 0;
2902 }
2903 return -EOPNOTSUPP;
2904}
2905
Francois Romieu8b4ab282008-11-19 22:05:25 -08002906static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2907{
2908 return -EOPNOTSUPP;
2909}
2910
Francois Romieu0e485152007-02-20 00:00:26 +01002911static const struct rtl_cfg_info {
2912 void (*hw_start)(struct net_device *);
2913 unsigned int region;
2914 unsigned int align;
2915 u16 intr_event;
2916 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02002917 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07002918 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01002919} rtl_cfg_infos [] = {
2920 [RTL_CFG_0] = {
2921 .hw_start = rtl_hw_start_8169,
2922 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01002923 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01002924 .intr_event = SYSErr | LinkChg | RxOverflow |
2925 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002926 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002927 .features = RTL_FEATURE_GMII,
2928 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01002929 },
2930 [RTL_CFG_1] = {
2931 .hw_start = rtl_hw_start_8168,
2932 .region = 2,
2933 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00002934 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01002935 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002936 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002937 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
2938 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01002939 },
2940 [RTL_CFG_2] = {
2941 .hw_start = rtl_hw_start_8101,
2942 .region = 2,
2943 .align = 8,
2944 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
2945 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002946 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002947 .features = RTL_FEATURE_MSI,
2948 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01002949 }
2950};
2951
Francois Romieufbac58f2007-10-04 22:51:38 +02002952/* Cfg9346_Unlock assumed. */
2953static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
2954 const struct rtl_cfg_info *cfg)
2955{
2956 unsigned msi = 0;
2957 u8 cfg2;
2958
2959 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02002960 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02002961 if (pci_enable_msi(pdev)) {
2962 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
2963 } else {
2964 cfg2 |= MSIEnable;
2965 msi = RTL_FEATURE_MSI;
2966 }
2967 }
2968 RTL_W8(Config2, cfg2);
2969 return msi;
2970}
2971
2972static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
2973{
2974 if (tp->features & RTL_FEATURE_MSI) {
2975 pci_disable_msi(pdev);
2976 tp->features &= ~RTL_FEATURE_MSI;
2977 }
2978}
2979
Francois Romieu8b4ab282008-11-19 22:05:25 -08002980static const struct net_device_ops rtl8169_netdev_ops = {
2981 .ndo_open = rtl8169_open,
2982 .ndo_stop = rtl8169_close,
2983 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08002984 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002985 .ndo_tx_timeout = rtl8169_tx_timeout,
2986 .ndo_validate_addr = eth_validate_addr,
2987 .ndo_change_mtu = rtl8169_change_mtu,
Michał Mirosław350fb322011-04-08 06:35:56 +00002988 .ndo_fix_features = rtl8169_fix_features,
2989 .ndo_set_features = rtl8169_set_features,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002990 .ndo_set_mac_address = rtl_set_mac_address,
2991 .ndo_do_ioctl = rtl8169_ioctl,
2992 .ndo_set_multicast_list = rtl_set_rx_mode,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002993#ifdef CONFIG_NET_POLL_CONTROLLER
2994 .ndo_poll_controller = rtl8169_netpoll,
2995#endif
2996
2997};
2998
françois romieuc0e45c12011-01-03 15:08:04 +00002999static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
3000{
3001 struct mdio_ops *ops = &tp->mdio_ops;
3002
3003 switch (tp->mac_version) {
3004 case RTL_GIGA_MAC_VER_27:
3005 ops->write = r8168dp_1_mdio_write;
3006 ops->read = r8168dp_1_mdio_read;
3007 break;
françois romieue6de30d2011-01-03 15:08:37 +00003008 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003009 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003010 ops->write = r8168dp_2_mdio_write;
3011 ops->read = r8168dp_2_mdio_read;
3012 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003013 default:
3014 ops->write = r8169_mdio_write;
3015 ops->read = r8169_mdio_read;
3016 break;
3017 }
3018}
3019
françois romieu065c27c2011-01-03 15:08:12 +00003020static void r810x_phy_power_down(struct rtl8169_private *tp)
3021{
3022 rtl_writephy(tp, 0x1f, 0x0000);
3023 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3024}
3025
3026static void r810x_phy_power_up(struct rtl8169_private *tp)
3027{
3028 rtl_writephy(tp, 0x1f, 0x0000);
3029 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3030}
3031
3032static void r810x_pll_power_down(struct rtl8169_private *tp)
3033{
3034 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
3035 rtl_writephy(tp, 0x1f, 0x0000);
3036 rtl_writephy(tp, MII_BMCR, 0x0000);
3037 return;
3038 }
3039
3040 r810x_phy_power_down(tp);
3041}
3042
3043static void r810x_pll_power_up(struct rtl8169_private *tp)
3044{
3045 r810x_phy_power_up(tp);
3046}
3047
3048static void r8168_phy_power_up(struct rtl8169_private *tp)
3049{
3050 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003051 switch (tp->mac_version) {
3052 case RTL_GIGA_MAC_VER_11:
3053 case RTL_GIGA_MAC_VER_12:
3054 case RTL_GIGA_MAC_VER_17:
3055 case RTL_GIGA_MAC_VER_18:
3056 case RTL_GIGA_MAC_VER_19:
3057 case RTL_GIGA_MAC_VER_20:
3058 case RTL_GIGA_MAC_VER_21:
3059 case RTL_GIGA_MAC_VER_22:
3060 case RTL_GIGA_MAC_VER_23:
3061 case RTL_GIGA_MAC_VER_24:
3062 case RTL_GIGA_MAC_VER_25:
3063 case RTL_GIGA_MAC_VER_26:
3064 case RTL_GIGA_MAC_VER_27:
3065 case RTL_GIGA_MAC_VER_28:
3066 case RTL_GIGA_MAC_VER_31:
3067 rtl_writephy(tp, 0x0e, 0x0000);
3068 break;
3069 default:
3070 break;
3071 }
françois romieu065c27c2011-01-03 15:08:12 +00003072 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3073}
3074
3075static void r8168_phy_power_down(struct rtl8169_private *tp)
3076{
3077 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003078 switch (tp->mac_version) {
3079 case RTL_GIGA_MAC_VER_32:
3080 case RTL_GIGA_MAC_VER_33:
3081 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3082 break;
3083
3084 case RTL_GIGA_MAC_VER_11:
3085 case RTL_GIGA_MAC_VER_12:
3086 case RTL_GIGA_MAC_VER_17:
3087 case RTL_GIGA_MAC_VER_18:
3088 case RTL_GIGA_MAC_VER_19:
3089 case RTL_GIGA_MAC_VER_20:
3090 case RTL_GIGA_MAC_VER_21:
3091 case RTL_GIGA_MAC_VER_22:
3092 case RTL_GIGA_MAC_VER_23:
3093 case RTL_GIGA_MAC_VER_24:
3094 case RTL_GIGA_MAC_VER_25:
3095 case RTL_GIGA_MAC_VER_26:
3096 case RTL_GIGA_MAC_VER_27:
3097 case RTL_GIGA_MAC_VER_28:
3098 case RTL_GIGA_MAC_VER_31:
3099 rtl_writephy(tp, 0x0e, 0x0200);
3100 default:
3101 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3102 break;
3103 }
françois romieu065c27c2011-01-03 15:08:12 +00003104}
3105
3106static void r8168_pll_power_down(struct rtl8169_private *tp)
3107{
3108 void __iomem *ioaddr = tp->mmio_addr;
3109
Hayes Wang5d2e1952011-02-22 17:26:22 +08003110 if (((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
hayeswang4804b3b2011-03-21 01:50:29 +00003111 (tp->mac_version == RTL_GIGA_MAC_VER_28) ||
3112 (tp->mac_version == RTL_GIGA_MAC_VER_31)) &&
3113 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003114 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003115 }
françois romieu065c27c2011-01-03 15:08:12 +00003116
3117 if (((tp->mac_version == RTL_GIGA_MAC_VER_23) ||
3118 (tp->mac_version == RTL_GIGA_MAC_VER_24)) &&
3119 (RTL_R16(CPlusCmd) & ASF)) {
3120 return;
3121 }
3122
hayeswang01dc7fe2011-03-21 01:50:28 +00003123 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3124 tp->mac_version == RTL_GIGA_MAC_VER_33)
3125 rtl_ephy_write(ioaddr, 0x19, 0xff64);
3126
françois romieu065c27c2011-01-03 15:08:12 +00003127 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
3128 rtl_writephy(tp, 0x1f, 0x0000);
3129 rtl_writephy(tp, MII_BMCR, 0x0000);
3130
3131 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3132 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3133 return;
3134 }
3135
3136 r8168_phy_power_down(tp);
3137
3138 switch (tp->mac_version) {
3139 case RTL_GIGA_MAC_VER_25:
3140 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003141 case RTL_GIGA_MAC_VER_27:
3142 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003143 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003144 case RTL_GIGA_MAC_VER_32:
3145 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003146 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3147 break;
3148 }
3149}
3150
3151static void r8168_pll_power_up(struct rtl8169_private *tp)
3152{
3153 void __iomem *ioaddr = tp->mmio_addr;
3154
Hayes Wang5d2e1952011-02-22 17:26:22 +08003155 if (((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
hayeswang4804b3b2011-03-21 01:50:29 +00003156 (tp->mac_version == RTL_GIGA_MAC_VER_28) ||
3157 (tp->mac_version == RTL_GIGA_MAC_VER_31)) &&
3158 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003159 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003160 }
françois romieu065c27c2011-01-03 15:08:12 +00003161
3162 switch (tp->mac_version) {
3163 case RTL_GIGA_MAC_VER_25:
3164 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003165 case RTL_GIGA_MAC_VER_27:
3166 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003167 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003168 case RTL_GIGA_MAC_VER_32:
3169 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003170 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3171 break;
3172 }
3173
3174 r8168_phy_power_up(tp);
3175}
3176
3177static void rtl_pll_power_op(struct rtl8169_private *tp,
3178 void (*op)(struct rtl8169_private *))
3179{
3180 if (op)
3181 op(tp);
3182}
3183
3184static void rtl_pll_power_down(struct rtl8169_private *tp)
3185{
3186 rtl_pll_power_op(tp, tp->pll_power_ops.down);
3187}
3188
3189static void rtl_pll_power_up(struct rtl8169_private *tp)
3190{
3191 rtl_pll_power_op(tp, tp->pll_power_ops.up);
3192}
3193
3194static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
3195{
3196 struct pll_power_ops *ops = &tp->pll_power_ops;
3197
3198 switch (tp->mac_version) {
3199 case RTL_GIGA_MAC_VER_07:
3200 case RTL_GIGA_MAC_VER_08:
3201 case RTL_GIGA_MAC_VER_09:
3202 case RTL_GIGA_MAC_VER_10:
3203 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08003204 case RTL_GIGA_MAC_VER_29:
3205 case RTL_GIGA_MAC_VER_30:
françois romieu065c27c2011-01-03 15:08:12 +00003206 ops->down = r810x_pll_power_down;
3207 ops->up = r810x_pll_power_up;
3208 break;
3209
3210 case RTL_GIGA_MAC_VER_11:
3211 case RTL_GIGA_MAC_VER_12:
3212 case RTL_GIGA_MAC_VER_17:
3213 case RTL_GIGA_MAC_VER_18:
3214 case RTL_GIGA_MAC_VER_19:
3215 case RTL_GIGA_MAC_VER_20:
3216 case RTL_GIGA_MAC_VER_21:
3217 case RTL_GIGA_MAC_VER_22:
3218 case RTL_GIGA_MAC_VER_23:
3219 case RTL_GIGA_MAC_VER_24:
3220 case RTL_GIGA_MAC_VER_25:
3221 case RTL_GIGA_MAC_VER_26:
3222 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00003223 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003224 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003225 case RTL_GIGA_MAC_VER_32:
3226 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003227 ops->down = r8168_pll_power_down;
3228 ops->up = r8168_pll_power_up;
3229 break;
3230
3231 default:
3232 ops->down = NULL;
3233 ops->up = NULL;
3234 break;
3235 }
3236}
3237
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003238static int __devinit
3239rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
3240{
Francois Romieu0e485152007-02-20 00:00:26 +01003241 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
3242 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02003244 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003245 struct net_device *dev;
3246 void __iomem *ioaddr;
Francois Romieu2b7b4312011-04-18 22:53:24 -07003247 int chipset, i;
Francois Romieu07d3f512007-02-21 22:40:46 +01003248 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003250 if (netif_msg_drv(&debug)) {
3251 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
3252 MODULENAME, RTL8169_VERSION);
3253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003256 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003257 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04003258 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003259 rc = -ENOMEM;
3260 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 }
3262
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08003264 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00003266 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02003267 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003268 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
Francois Romieuccdffb92008-07-26 14:26:06 +02003270 mii = &tp->mii;
3271 mii->dev = dev;
3272 mii->mdio_read = rtl_mdio_read;
3273 mii->mdio_write = rtl_mdio_write;
3274 mii->phy_id_mask = 0x1f;
3275 mii->reg_num_mask = 0x1f;
3276 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
3277
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +00003278 /* disable ASPM completely as that cause random device stop working
3279 * problems as well as full system hangs for some PCIe devices users */
3280 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
3281 PCIE_LINK_STATE_CLKPM);
3282
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3284 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003285 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003286 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003287 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 }
3289
françois romieu87aeec72010-04-26 11:42:06 +00003290 if (pci_set_mwi(pdev) < 0)
3291 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003294 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003295 netif_err(tp, probe, dev,
3296 "region #%d not an MMIO resource, aborting\n",
3297 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003299 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003301
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003303 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003304 netif_err(tp, probe, dev,
3305 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003307 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 }
3309
3310 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003311 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003312 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00003313 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 }
3315
Hayes Wangd24e9aa2011-02-22 17:26:19 +08003316 tp->cp_cmd = RxChkSum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
3318 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07003319 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 tp->cp_cmd |= PCIDAC;
3321 dev->features |= NETIF_F_HIGHDMA;
3322 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003323 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003325 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00003326 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 }
3328 }
3329
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003331 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003332 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003333 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00003335 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 }
3337
David S. Miller4300e8c2010-03-26 10:23:30 -07003338 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3339 if (!tp->pcie_cap)
3340 netif_info(tp, probe, dev, "no PCI Express capability\n");
3341
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003342 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
3344 /* Soft reset the chip. */
3345 RTL_W8(ChipCmd, CmdReset);
3346
3347 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003348 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3350 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003351 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 }
3353
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003354 RTL_W16(IntrStatus, 0xffff);
3355
françois romieuca52efd2009-07-24 12:34:19 +00003356 pci_set_master(pdev);
3357
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 /* Identify chip attached to board */
3359 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
Francois Romieu7a8fc772011-03-01 17:18:33 +01003361 /*
3362 * Pretend we are using VLANs; This bypasses a nasty bug where
3363 * Interrupts stop flowing on high load on 8110SCd controllers.
3364 */
3365 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3366 tp->cp_cmd |= RxVlan;
3367
françois romieuc0e45c12011-01-03 15:08:04 +00003368 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00003369 rtl_init_pll_power_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00003370
Jean Delvaref21b75e2009-05-26 20:54:48 -07003371 /* Use appropriate default if unknown */
3372 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003373 netif_notice(tp, probe, dev,
3374 "unknown MAC, using family default\n");
Jean Delvaref21b75e2009-05-26 20:54:48 -07003375 tp->mac_version = cfg->default_ver;
3376 }
3377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Roel Kluincee60c32008-04-17 22:35:54 +02003380 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 if (tp->mac_version == rtl_chip_info[i].mac_version)
3382 break;
3383 }
Roel Kluincee60c32008-04-17 22:35:54 +02003384 if (i == ARRAY_SIZE(rtl_chip_info)) {
Jean Delvaref21b75e2009-05-26 20:54:48 -07003385 dev_err(&pdev->dev,
3386 "driver bug, MAC version not found in rtl_chip_info\n");
françois romieu87aeec72010-04-26 11:42:06 +00003387 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 }
Francois Romieu2b7b4312011-04-18 22:53:24 -07003389 chipset = i;
3390 tp->txd_version = rtl_chip_info[chipset].txd_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Francois Romieu5d06a992006-02-23 00:47:58 +01003392 RTL_W8(Cfg9346, Cfg9346_Unlock);
3393 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
3394 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07003395 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
3396 tp->features |= RTL_FEATURE_WOL;
3397 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
3398 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02003399 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01003400 RTL_W8(Cfg9346, Cfg9346_Lock);
3401
Francois Romieu66ec5d42007-11-06 22:56:10 +01003402 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
3403 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 tp->set_speed = rtl8169_set_speed_tbi;
3405 tp->get_settings = rtl8169_gset_tbi;
3406 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
3407 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
3408 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003409 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Francois Romieu64e4bfb2006-08-17 12:43:06 +02003411 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 } else {
3413 tp->set_speed = rtl8169_set_speed_xmii;
3414 tp->get_settings = rtl8169_gset_xmii;
3415 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
3416 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
3417 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003418 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 }
3420
Francois Romieudf58ef52008-10-09 14:35:58 -07003421 spin_lock_init(&tp->lock);
3422
Petr Vandrovec738e1e62008-10-12 20:58:29 -07003423 tp->mmio_addr = ioaddr;
3424
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00003425 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 for (i = 0; i < MAC_ADDR_LEN; i++)
3427 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04003428 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
3432 dev->irq = pdev->irq;
3433 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003435 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Michał Mirosław350fb322011-04-08 06:35:56 +00003437 /* don't enable SG, IP_CSUM and TSO by default - it might not work
3438 * properly for all devices */
3439 dev->features |= NETIF_F_RXCSUM |
3440 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3441
3442 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
3443 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3444 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
3445 NETIF_F_HIGHDMA;
3446
3447 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3448 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
3449 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
3451 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01003452 tp->hw_start = cfg->hw_start;
3453 tp->intr_event = cfg->intr_event;
3454 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Francois Romieu2efa53f2007-03-09 00:00:05 +01003456 init_timer(&tp->timer);
3457 tp->timer.data = (unsigned long) dev;
3458 tp->timer.function = rtl8169_phy_timer;
3459
François Romieu953a12c2011-04-24 17:38:48 +02003460 tp->fw = RTL_FIRMWARE_UNKNOWN;
3461
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003463 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00003464 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466 pci_set_drvdata(pdev, dev);
3467
Joe Perchesbf82c182010-02-09 11:49:50 +00003468 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
Francois Romieu2b7b4312011-04-18 22:53:24 -07003469 rtl_chip_info[chipset].name, dev->base_addr, dev->dev_addr,
Joe Perchesbf82c182010-02-09 11:49:50 +00003470 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
françois romieue6de30d2011-01-03 15:08:37 +00003472 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
hayeswang4804b3b2011-03-21 01:50:29 +00003473 (tp->mac_version == RTL_GIGA_MAC_VER_28) ||
3474 (tp->mac_version == RTL_GIGA_MAC_VER_31)) {
françois romieub646d902011-01-03 15:08:21 +00003475 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003476 }
françois romieub646d902011-01-03 15:08:21 +00003477
Bruno Prémont8b76ab32008-10-08 17:06:25 -07003478 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Alan Sternf3ec4f82010-06-08 15:23:51 -04003480 if (pci_dev_run_wake(pdev))
3481 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003482
Ivan Vecera0d672e92011-02-15 02:08:39 +00003483 netif_carrier_off(dev);
3484
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003485out:
3486 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
françois romieu87aeec72010-04-26 11:42:06 +00003488err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02003489 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003490 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00003491err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003492 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003493err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003494 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003495 pci_disable_device(pdev);
3496err_out_free_dev_1:
3497 free_netdev(dev);
3498 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499}
3500
Francois Romieu07d3f512007-02-21 22:40:46 +01003501static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502{
3503 struct net_device *dev = pci_get_drvdata(pdev);
3504 struct rtl8169_private *tp = netdev_priv(dev);
3505
françois romieue6de30d2011-01-03 15:08:37 +00003506 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
hayeswang4804b3b2011-03-21 01:50:29 +00003507 (tp->mac_version == RTL_GIGA_MAC_VER_28) ||
3508 (tp->mac_version == RTL_GIGA_MAC_VER_31)) {
françois romieub646d902011-01-03 15:08:21 +00003509 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003510 }
françois romieub646d902011-01-03 15:08:21 +00003511
Tejun Heo23f333a2010-12-12 16:45:14 +01003512 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01003513
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08003515
François Romieu953a12c2011-04-24 17:38:48 +02003516 rtl_release_firmware(tp);
3517
Alan Sternf3ec4f82010-06-08 15:23:51 -04003518 if (pci_dev_run_wake(pdev))
3519 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003520
Ivan Veceracc098dc2009-11-29 23:12:52 -08003521 /* restore original MAC address */
3522 rtl_rar_set(tp, dev->perm_addr);
3523
Francois Romieufbac58f2007-10-04 22:51:38 +02003524 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 rtl8169_release_board(pdev, dev, tp->mmio_addr);
3526 pci_set_drvdata(pdev, NULL);
3527}
3528
François Romieu953a12c2011-04-24 17:38:48 +02003529static void rtl_request_firmware(struct rtl8169_private *tp)
3530{
3531 int i;
3532
3533 /* Return early if the firmware is already loaded / cached. */
3534 if (!IS_ERR(tp->fw))
3535 goto out;
3536
3537 for (i = 0; i < ARRAY_SIZE(rtl_firmware_infos); i++) {
3538 const struct rtl_firmware_info *info = rtl_firmware_infos + i;
3539
3540 if (info->mac_version == tp->mac_version) {
3541 const char *name = info->fw_name;
3542 int rc;
3543
3544 rc = request_firmware(&tp->fw, name, &tp->pci_dev->dev);
3545 if (rc < 0) {
3546 netif_warn(tp, ifup, tp->dev, "unable to load "
3547 "firmware patch %s (%d)\n", name, rc);
3548 goto out_disable_request_firmware;
3549 }
3550 goto out;
3551 }
3552 }
3553
3554out_disable_request_firmware:
3555 tp->fw = NULL;
3556out:
3557 return;
3558}
3559
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560static int rtl8169_open(struct net_device *dev)
3561{
3562 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00003563 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02003565 int retval = -ENOMEM;
3566
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003567 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
Neil Hormanc0cd8842010-03-29 13:16:02 -07003569 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003571 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003573 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
3574 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003576 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003578 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
3579 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02003581 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
3583 retval = rtl8169_init_ring(dev);
3584 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02003585 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
David Howellsc4028952006-11-22 14:57:56 +00003587 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Francois Romieu99f252b2007-04-02 22:59:59 +02003589 smp_mb();
3590
François Romieu953a12c2011-04-24 17:38:48 +02003591 rtl_request_firmware(tp);
3592
Francois Romieufbac58f2007-10-04 22:51:38 +02003593 retval = request_irq(dev->irq, rtl8169_interrupt,
3594 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02003595 dev->name, dev);
3596 if (retval < 0)
François Romieu953a12c2011-04-24 17:38:48 +02003597 goto err_release_fw_2;
Francois Romieu99f252b2007-04-02 22:59:59 +02003598
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003599 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003600
françois romieueee3a962011-01-08 02:17:26 +00003601 rtl8169_init_phy(dev, tp);
3602
Michał Mirosław350fb322011-04-08 06:35:56 +00003603 rtl8169_set_features(dev, dev->features);
françois romieueee3a962011-01-08 02:17:26 +00003604
françois romieu065c27c2011-01-03 15:08:12 +00003605 rtl_pll_power_up(tp);
3606
Francois Romieu07ce4062007-02-23 23:36:39 +01003607 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
3609 rtl8169_request_timer(dev);
3610
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003611 tp->saved_wolopts = 0;
3612 pm_runtime_put_noidle(&pdev->dev);
3613
françois romieueee3a962011-01-08 02:17:26 +00003614 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615out:
3616 return retval;
3617
François Romieu953a12c2011-04-24 17:38:48 +02003618err_release_fw_2:
3619 rtl_release_firmware(tp);
Francois Romieu99f252b2007-04-02 22:59:59 +02003620 rtl8169_rx_clear(tp);
3621err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003622 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
3623 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003624 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02003625err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003626 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
3627 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003628 tp->TxDescArray = NULL;
3629err_pm_runtime_put:
3630 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 goto out;
3632}
3633
françois romieue6de30d2011-01-03 15:08:37 +00003634static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635{
françois romieue6de30d2011-01-03 15:08:37 +00003636 void __iomem *ioaddr = tp->mmio_addr;
3637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 /* Disable interrupts */
3639 rtl8169_irq_mask_and_ack(ioaddr);
3640
Hayes Wang5d2e1952011-02-22 17:26:22 +08003641 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00003642 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3643 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieue6de30d2011-01-03 15:08:37 +00003644 while (RTL_R8(TxPoll) & NPQ)
3645 udelay(20);
3646
3647 }
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 /* Reset the chipset */
3650 RTL_W8(ChipCmd, CmdReset);
3651
3652 /* PCI commit */
3653 RTL_R8(ChipCmd);
3654}
3655
Francois Romieu7f796d82007-06-11 23:04:41 +02003656static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003657{
3658 void __iomem *ioaddr = tp->mmio_addr;
3659 u32 cfg = rtl8169_rx_config;
3660
Francois Romieu2b7b4312011-04-18 22:53:24 -07003661 cfg |= (RTL_R32(RxConfig) & RTL_RX_CONFIG_MASK);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003662 RTL_W32(RxConfig, cfg);
3663
3664 /* Set DMA burst size and Interframe Gap Time */
3665 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3666 (InterFrameGap << TxInterFrameGapShift));
3667}
3668
Francois Romieu07ce4062007-02-23 23:36:39 +01003669static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670{
3671 struct rtl8169_private *tp = netdev_priv(dev);
3672 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01003673 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
3675 /* Soft reset the chip. */
3676 RTL_W8(ChipCmd, CmdReset);
3677
3678 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003679 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3681 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003682 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 }
3684
Francois Romieu07ce4062007-02-23 23:36:39 +01003685 tp->hw_start(dev);
3686
Francois Romieu07ce4062007-02-23 23:36:39 +01003687 netif_start_queue(dev);
3688}
3689
3690
Francois Romieu7f796d82007-06-11 23:04:41 +02003691static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
3692 void __iomem *ioaddr)
3693{
3694 /*
3695 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3696 * register to be written before TxDescAddrLow to work.
3697 * Switching from MMIO to I/O access fixes the issue as well.
3698 */
3699 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003700 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003701 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003702 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003703}
3704
3705static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
3706{
3707 u16 cmd;
3708
3709 cmd = RTL_R16(CPlusCmd);
3710 RTL_W16(CPlusCmd, cmd);
3711 return cmd;
3712}
3713
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07003714static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02003715{
3716 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00003717 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02003718}
3719
Francois Romieu6dccd162007-02-13 23:38:05 +01003720static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
3721{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003722 static const struct {
Francois Romieu6dccd162007-02-13 23:38:05 +01003723 u32 mac_version;
3724 u32 clk;
3725 u32 val;
3726 } cfg2_info [] = {
3727 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
3728 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
3729 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
3730 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
3731 }, *p = cfg2_info;
3732 unsigned int i;
3733 u32 clk;
3734
3735 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01003736 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01003737 if ((p->mac_version == mac_version) && (p->clk == clk)) {
3738 RTL_W32(0x7c, p->val);
3739 break;
3740 }
3741 }
3742}
3743
Francois Romieu07ce4062007-02-23 23:36:39 +01003744static void rtl_hw_start_8169(struct net_device *dev)
3745{
3746 struct rtl8169_private *tp = netdev_priv(dev);
3747 void __iomem *ioaddr = tp->mmio_addr;
3748 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01003749
Francois Romieu9cb427b2006-11-02 00:10:16 +01003750 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
3751 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
3752 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
3753 }
3754
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003756 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3757 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3758 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3759 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3760 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3761
françois romieuf0298f82011-01-03 15:07:42 +00003762 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003764 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
Francois Romieuc946b302007-10-04 00:42:50 +02003766 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3767 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3768 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3769 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3770 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Francois Romieu7f796d82007-06-11 23:04:41 +02003772 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02003773
3774 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3775 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Joe Perches06fa7352007-10-18 21:15:00 +02003776 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02003778 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 }
3780
Francois Romieubcf0bf92006-07-26 23:14:13 +02003781 RTL_W16(CPlusCmd, tp->cp_cmd);
3782
Francois Romieu6dccd162007-02-13 23:38:05 +01003783 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
3784
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 /*
3786 * Undocumented corner. Supposedly:
3787 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3788 */
3789 RTL_W16(IntrMitigate, 0x0000);
3790
Francois Romieu7f796d82007-06-11 23:04:41 +02003791 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003792
Francois Romieuc946b302007-10-04 00:42:50 +02003793 if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
3794 (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
3795 (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
3796 (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
3797 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3798 rtl_set_rx_tx_config_registers(tp);
3799 }
3800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02003802
3803 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3804 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805
3806 RTL_W32(RxMissed, 0);
3807
Francois Romieu07ce4062007-02-23 23:36:39 +01003808 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
3810 /* no early-rx interrupts */
3811 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003812
3813 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01003814 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003815}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
Francois Romieu9c14cea2008-07-05 00:21:15 +02003817static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02003818{
Francois Romieu9c14cea2008-07-05 00:21:15 +02003819 struct net_device *dev = pci_get_drvdata(pdev);
3820 struct rtl8169_private *tp = netdev_priv(dev);
3821 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02003822
Francois Romieu9c14cea2008-07-05 00:21:15 +02003823 if (cap) {
3824 u16 ctl;
3825
3826 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
3827 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
3828 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
3829 }
Francois Romieu458a9f62008-08-02 15:50:02 +02003830}
3831
françois romieu650e8d52011-01-03 15:08:29 +00003832static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02003833{
3834 u32 csi;
3835
3836 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00003837 rtl_csi_write(ioaddr, 0x070c, csi | bits);
3838}
3839
françois romieue6de30d2011-01-03 15:08:37 +00003840static void rtl_csi_access_enable_1(void __iomem *ioaddr)
3841{
3842 rtl_csi_access_enable(ioaddr, 0x17000000);
3843}
3844
françois romieu650e8d52011-01-03 15:08:29 +00003845static void rtl_csi_access_enable_2(void __iomem *ioaddr)
3846{
3847 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02003848}
3849
3850struct ephy_info {
3851 unsigned int offset;
3852 u16 mask;
3853 u16 bits;
3854};
3855
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003856static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02003857{
3858 u16 w;
3859
3860 while (len-- > 0) {
3861 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
3862 rtl_ephy_write(ioaddr, e->offset, w);
3863 e++;
3864 }
3865}
3866
Francois Romieub726e492008-06-28 12:22:59 +02003867static void rtl_disable_clock_request(struct pci_dev *pdev)
3868{
3869 struct net_device *dev = pci_get_drvdata(pdev);
3870 struct rtl8169_private *tp = netdev_priv(dev);
3871 int cap = tp->pcie_cap;
3872
3873 if (cap) {
3874 u16 ctl;
3875
3876 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3877 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
3878 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3879 }
3880}
3881
françois romieue6de30d2011-01-03 15:08:37 +00003882static void rtl_enable_clock_request(struct pci_dev *pdev)
3883{
3884 struct net_device *dev = pci_get_drvdata(pdev);
3885 struct rtl8169_private *tp = netdev_priv(dev);
3886 int cap = tp->pcie_cap;
3887
3888 if (cap) {
3889 u16 ctl;
3890
3891 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3892 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3893 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3894 }
3895}
3896
Francois Romieub726e492008-06-28 12:22:59 +02003897#define R8168_CPCMD_QUIRK_MASK (\
3898 EnableBist | \
3899 Mac_dbgo_oe | \
3900 Force_half_dup | \
3901 Force_rxflow_en | \
3902 Force_txflow_en | \
3903 Cxpl_dbg_sel | \
3904 ASF | \
3905 PktCntrDisable | \
3906 Mac_dbgo_sel)
3907
Francois Romieu219a1e92008-06-28 11:58:39 +02003908static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
3909{
Francois Romieub726e492008-06-28 12:22:59 +02003910 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3911
3912 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3913
Francois Romieu2e68ae42008-06-28 12:00:55 +02003914 rtl_tx_performance_tweak(pdev,
3915 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02003916}
3917
3918static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
3919{
3920 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02003921
françois romieuf0298f82011-01-03 15:07:42 +00003922 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02003923
3924 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02003925}
3926
3927static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
3928{
Francois Romieub726e492008-06-28 12:22:59 +02003929 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
3930
3931 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3932
Francois Romieu219a1e92008-06-28 11:58:39 +02003933 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02003934
3935 rtl_disable_clock_request(pdev);
3936
3937 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02003938}
3939
Francois Romieuef3386f2008-06-29 12:24:30 +02003940static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02003941{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003942 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003943 { 0x01, 0, 0x0001 },
3944 { 0x02, 0x0800, 0x1000 },
3945 { 0x03, 0, 0x0042 },
3946 { 0x06, 0x0080, 0x0000 },
3947 { 0x07, 0, 0x2000 }
3948 };
3949
françois romieu650e8d52011-01-03 15:08:29 +00003950 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003951
3952 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
3953
Francois Romieu219a1e92008-06-28 11:58:39 +02003954 __rtl_hw_start_8168cp(ioaddr, pdev);
3955}
3956
Francois Romieuef3386f2008-06-29 12:24:30 +02003957static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
3958{
françois romieu650e8d52011-01-03 15:08:29 +00003959 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02003960
3961 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3962
3963 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3964
3965 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3966}
3967
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003968static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
3969{
françois romieu650e8d52011-01-03 15:08:29 +00003970 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003971
3972 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3973
3974 /* Magic. */
3975 RTL_W8(DBG_REG, 0x20);
3976
françois romieuf0298f82011-01-03 15:07:42 +00003977 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003978
3979 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3980
3981 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3982}
3983
Francois Romieu219a1e92008-06-28 11:58:39 +02003984static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
3985{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003986 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003987 { 0x02, 0x0800, 0x1000 },
3988 { 0x03, 0, 0x0002 },
3989 { 0x06, 0x0080, 0x0000 }
3990 };
3991
françois romieu650e8d52011-01-03 15:08:29 +00003992 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003993
3994 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
3995
3996 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
3997
Francois Romieu219a1e92008-06-28 11:58:39 +02003998 __rtl_hw_start_8168cp(ioaddr, pdev);
3999}
4000
4001static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
4002{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004003 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004004 { 0x01, 0, 0x0001 },
4005 { 0x03, 0x0400, 0x0220 }
4006 };
4007
françois romieu650e8d52011-01-03 15:08:29 +00004008 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004009
4010 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
4011
Francois Romieu219a1e92008-06-28 11:58:39 +02004012 __rtl_hw_start_8168cp(ioaddr, pdev);
4013}
4014
Francois Romieu197ff762008-06-28 13:16:02 +02004015static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
4016{
4017 rtl_hw_start_8168c_2(ioaddr, pdev);
4018}
4019
Francois Romieu6fb07052008-06-29 11:54:28 +02004020static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
4021{
françois romieu650e8d52011-01-03 15:08:29 +00004022 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02004023
4024 __rtl_hw_start_8168cp(ioaddr, pdev);
4025}
4026
Francois Romieu5b538df2008-07-20 16:22:45 +02004027static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
4028{
françois romieu650e8d52011-01-03 15:08:29 +00004029 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02004030
4031 rtl_disable_clock_request(pdev);
4032
françois romieuf0298f82011-01-03 15:07:42 +00004033 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02004034
4035 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4036
4037 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4038}
4039
hayeswang4804b3b2011-03-21 01:50:29 +00004040static void rtl_hw_start_8168dp(void __iomem *ioaddr, struct pci_dev *pdev)
4041{
4042 rtl_csi_access_enable_1(ioaddr);
4043
4044 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4045
4046 RTL_W8(MaxTxPacketSize, TxPacketMax);
4047
4048 rtl_disable_clock_request(pdev);
4049}
4050
françois romieue6de30d2011-01-03 15:08:37 +00004051static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
4052{
4053 static const struct ephy_info e_info_8168d_4[] = {
4054 { 0x0b, ~0, 0x48 },
4055 { 0x19, 0x20, 0x50 },
4056 { 0x0c, ~0, 0x20 }
4057 };
4058 int i;
4059
4060 rtl_csi_access_enable_1(ioaddr);
4061
4062 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4063
4064 RTL_W8(MaxTxPacketSize, TxPacketMax);
4065
4066 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
4067 const struct ephy_info *e = e_info_8168d_4 + i;
4068 u16 w;
4069
4070 w = rtl_ephy_read(ioaddr, e->offset);
4071 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
4072 }
4073
4074 rtl_enable_clock_request(pdev);
4075}
4076
hayeswang01dc7fe2011-03-21 01:50:28 +00004077static void rtl_hw_start_8168e(void __iomem *ioaddr, struct pci_dev *pdev)
4078{
4079 static const struct ephy_info e_info_8168e[] = {
4080 { 0x00, 0x0200, 0x0100 },
4081 { 0x00, 0x0000, 0x0004 },
4082 { 0x06, 0x0002, 0x0001 },
4083 { 0x06, 0x0000, 0x0030 },
4084 { 0x07, 0x0000, 0x2000 },
4085 { 0x00, 0x0000, 0x0020 },
4086 { 0x03, 0x5800, 0x2000 },
4087 { 0x03, 0x0000, 0x0001 },
4088 { 0x01, 0x0800, 0x1000 },
4089 { 0x07, 0x0000, 0x4000 },
4090 { 0x1e, 0x0000, 0x2000 },
4091 { 0x19, 0xffff, 0xfe6c },
4092 { 0x0a, 0x0000, 0x0040 }
4093 };
4094
4095 rtl_csi_access_enable_2(ioaddr);
4096
4097 rtl_ephy_init(ioaddr, e_info_8168e, ARRAY_SIZE(e_info_8168e));
4098
4099 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4100
4101 RTL_W8(MaxTxPacketSize, TxPacketMax);
4102
4103 rtl_disable_clock_request(pdev);
4104
4105 /* Reset tx FIFO pointer */
4106 RTL_W32(MISC, RTL_R32(MISC) | txpla_rst);
4107 RTL_W32(MISC, RTL_R32(MISC) & ~txpla_rst);
4108
4109 RTL_W8(Config5, RTL_R8(Config5) & ~spi_en);
4110}
4111
Francois Romieu07ce4062007-02-23 23:36:39 +01004112static void rtl_hw_start_8168(struct net_device *dev)
4113{
Francois Romieu2dd99532007-06-11 23:22:52 +02004114 struct rtl8169_private *tp = netdev_priv(dev);
4115 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01004116 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02004117
4118 RTL_W8(Cfg9346, Cfg9346_Unlock);
4119
françois romieuf0298f82011-01-03 15:07:42 +00004120 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02004121
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004122 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02004123
Francois Romieu0e485152007-02-20 00:00:26 +01004124 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02004125
4126 RTL_W16(CPlusCmd, tp->cp_cmd);
4127
Francois Romieu0e485152007-02-20 00:00:26 +01004128 RTL_W16(IntrMitigate, 0x5151);
4129
4130 /* Work around for RxFIFO overflow. */
Ivan Vecerab5ba6d12011-01-27 12:24:11 +01004131 if (tp->mac_version == RTL_GIGA_MAC_VER_11 ||
4132 tp->mac_version == RTL_GIGA_MAC_VER_22) {
Francois Romieu0e485152007-02-20 00:00:26 +01004133 tp->intr_event |= RxFIFOOver | PCSTimeout;
4134 tp->intr_event &= ~RxOverflow;
4135 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004136
4137 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4138
Francois Romieub8363902008-06-01 12:31:57 +02004139 rtl_set_rx_mode(dev);
4140
4141 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4142 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02004143
4144 RTL_R8(IntrMask);
4145
Francois Romieu219a1e92008-06-28 11:58:39 +02004146 switch (tp->mac_version) {
4147 case RTL_GIGA_MAC_VER_11:
4148 rtl_hw_start_8168bb(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004149 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004150
4151 case RTL_GIGA_MAC_VER_12:
4152 case RTL_GIGA_MAC_VER_17:
4153 rtl_hw_start_8168bef(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004154 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004155
4156 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02004157 rtl_hw_start_8168cp_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004158 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004159
4160 case RTL_GIGA_MAC_VER_19:
4161 rtl_hw_start_8168c_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004162 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004163
4164 case RTL_GIGA_MAC_VER_20:
4165 rtl_hw_start_8168c_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004166 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004167
Francois Romieu197ff762008-06-28 13:16:02 +02004168 case RTL_GIGA_MAC_VER_21:
4169 rtl_hw_start_8168c_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004170 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004171
Francois Romieu6fb07052008-06-29 11:54:28 +02004172 case RTL_GIGA_MAC_VER_22:
4173 rtl_hw_start_8168c_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004174 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004175
Francois Romieuef3386f2008-06-29 12:24:30 +02004176 case RTL_GIGA_MAC_VER_23:
4177 rtl_hw_start_8168cp_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004178 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004179
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004180 case RTL_GIGA_MAC_VER_24:
4181 rtl_hw_start_8168cp_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004182 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004183
Francois Romieu5b538df2008-07-20 16:22:45 +02004184 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00004185 case RTL_GIGA_MAC_VER_26:
4186 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02004187 rtl_hw_start_8168d(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004188 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004189
françois romieue6de30d2011-01-03 15:08:37 +00004190 case RTL_GIGA_MAC_VER_28:
4191 rtl_hw_start_8168d_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004192 break;
4193 case RTL_GIGA_MAC_VER_31:
4194 rtl_hw_start_8168dp(ioaddr, pdev);
4195 break;
4196
hayeswang01dc7fe2011-03-21 01:50:28 +00004197 case RTL_GIGA_MAC_VER_32:
4198 case RTL_GIGA_MAC_VER_33:
4199 rtl_hw_start_8168e(ioaddr, pdev);
4200 break;
françois romieue6de30d2011-01-03 15:08:37 +00004201
Francois Romieu219a1e92008-06-28 11:58:39 +02004202 default:
4203 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
4204 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00004205 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004206 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004207
Francois Romieu0e485152007-02-20 00:00:26 +01004208 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4209
Francois Romieub8363902008-06-01 12:31:57 +02004210 RTL_W8(Cfg9346, Cfg9346_Lock);
4211
Francois Romieu2dd99532007-06-11 23:22:52 +02004212 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004213
Francois Romieu0e485152007-02-20 00:00:26 +01004214 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01004215}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
Francois Romieu2857ffb2008-08-02 21:08:49 +02004217#define R810X_CPCMD_QUIRK_MASK (\
4218 EnableBist | \
4219 Mac_dbgo_oe | \
4220 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00004221 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02004222 Force_txflow_en | \
4223 Cxpl_dbg_sel | \
4224 ASF | \
4225 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004226 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004227
4228static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4229{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004230 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004231 { 0x01, 0, 0x6e65 },
4232 { 0x02, 0, 0x091f },
4233 { 0x03, 0, 0xc2f9 },
4234 { 0x06, 0, 0xafb5 },
4235 { 0x07, 0, 0x0e00 },
4236 { 0x19, 0, 0xec80 },
4237 { 0x01, 0, 0x2e65 },
4238 { 0x01, 0, 0x6e65 }
4239 };
4240 u8 cfg1;
4241
françois romieu650e8d52011-01-03 15:08:29 +00004242 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004243
4244 RTL_W8(DBG_REG, FIX_NAK_1);
4245
4246 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4247
4248 RTL_W8(Config1,
4249 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
4250 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4251
4252 cfg1 = RTL_R8(Config1);
4253 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
4254 RTL_W8(Config1, cfg1 & ~LEDS0);
4255
Francois Romieu2857ffb2008-08-02 21:08:49 +02004256 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
4257}
4258
4259static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4260{
françois romieu650e8d52011-01-03 15:08:29 +00004261 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004262
4263 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4264
4265 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
4266 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004267}
4268
4269static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
4270{
4271 rtl_hw_start_8102e_2(ioaddr, pdev);
4272
4273 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
4274}
4275
Hayes Wang5a5e4442011-02-22 17:26:21 +08004276static void rtl_hw_start_8105e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4277{
4278 static const struct ephy_info e_info_8105e_1[] = {
4279 { 0x07, 0, 0x4000 },
4280 { 0x19, 0, 0x0200 },
4281 { 0x19, 0, 0x0020 },
4282 { 0x1e, 0, 0x2000 },
4283 { 0x03, 0, 0x0001 },
4284 { 0x19, 0, 0x0100 },
4285 { 0x19, 0, 0x0004 },
4286 { 0x0a, 0, 0x0020 }
4287 };
4288
4289 /* Force LAN exit from ASPM if Rx/Tx are not idel */
4290 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
4291
4292 /* disable Early Tally Counter */
4293 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
4294
4295 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
4296 RTL_W8(DLLPR, RTL_R8(DLLPR) | PM_SWITCH);
4297
4298 rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
4299}
4300
4301static void rtl_hw_start_8105e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4302{
4303 rtl_hw_start_8105e_1(ioaddr, pdev);
4304 rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
4305}
4306
Francois Romieu07ce4062007-02-23 23:36:39 +01004307static void rtl_hw_start_8101(struct net_device *dev)
4308{
Francois Romieucdf1a602007-06-11 23:29:50 +02004309 struct rtl8169_private *tp = netdev_priv(dev);
4310 void __iomem *ioaddr = tp->mmio_addr;
4311 struct pci_dev *pdev = tp->pci_dev;
4312
Francois Romieue3cf0cc2007-08-17 14:55:46 +02004313 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
4314 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02004315 int cap = tp->pcie_cap;
4316
4317 if (cap) {
4318 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
4319 PCI_EXP_DEVCTL_NOSNOOP_EN);
4320 }
Francois Romieucdf1a602007-06-11 23:29:50 +02004321 }
4322
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004323 RTL_W8(Cfg9346, Cfg9346_Unlock);
4324
Francois Romieu2857ffb2008-08-02 21:08:49 +02004325 switch (tp->mac_version) {
4326 case RTL_GIGA_MAC_VER_07:
4327 rtl_hw_start_8102e_1(ioaddr, pdev);
4328 break;
4329
4330 case RTL_GIGA_MAC_VER_08:
4331 rtl_hw_start_8102e_3(ioaddr, pdev);
4332 break;
4333
4334 case RTL_GIGA_MAC_VER_09:
4335 rtl_hw_start_8102e_2(ioaddr, pdev);
4336 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004337
4338 case RTL_GIGA_MAC_VER_29:
4339 rtl_hw_start_8105e_1(ioaddr, pdev);
4340 break;
4341 case RTL_GIGA_MAC_VER_30:
4342 rtl_hw_start_8105e_2(ioaddr, pdev);
4343 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02004344 }
4345
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004346 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02004347
françois romieuf0298f82011-01-03 15:07:42 +00004348 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02004349
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004350 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02004351
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004352 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02004353 RTL_W16(CPlusCmd, tp->cp_cmd);
4354
4355 RTL_W16(IntrMitigate, 0x0000);
4356
4357 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4358
4359 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4360 rtl_set_rx_tx_config_registers(tp);
4361
Francois Romieucdf1a602007-06-11 23:29:50 +02004362 RTL_R8(IntrMask);
4363
Francois Romieucdf1a602007-06-11 23:29:50 +02004364 rtl_set_rx_mode(dev);
4365
4366 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004367
Francois Romieu0e485152007-02-20 00:00:26 +01004368 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369}
4370
4371static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
4372{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
4374 return -EINVAL;
4375
4376 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00004377 netdev_update_features(dev);
4378
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380}
4381
4382static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
4383{
Al Viro95e09182007-12-22 18:55:39 +00004384 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
4386}
4387
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004388static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
4389 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004391 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004392 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004393
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004394 kfree(*data_buff);
4395 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 rtl8169_make_unusable_by_asic(desc);
4397}
4398
4399static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
4400{
4401 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
4402
4403 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
4404}
4405
4406static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
4407 u32 rx_buf_sz)
4408{
4409 desc->addr = cpu_to_le64(mapping);
4410 wmb();
4411 rtl8169_mark_to_asic(desc, rx_buf_sz);
4412}
4413
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004414static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004416 return (void *)ALIGN((long)data, 16);
4417}
4418
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004419static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
4420 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004421{
4422 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004424 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004425 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004426 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004428 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
4429 if (!data)
4430 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004431
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004432 if (rtl8169_align(data) != data) {
4433 kfree(data);
4434 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4435 if (!data)
4436 return NULL;
4437 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004438
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004439 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004440 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004441 if (unlikely(dma_mapping_error(d, mapping))) {
4442 if (net_ratelimit())
4443 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004444 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446
4447 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004448 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004449
4450err_out:
4451 kfree(data);
4452 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453}
4454
4455static void rtl8169_rx_clear(struct rtl8169_private *tp)
4456{
Francois Romieu07d3f512007-02-21 22:40:46 +01004457 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458
4459 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004460 if (tp->Rx_databuff[i]) {
4461 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 tp->RxDescArray + i);
4463 }
4464 }
4465}
4466
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004467static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004469 desc->opts1 |= cpu_to_le32(RingEnd);
4470}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004471
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004472static int rtl8169_rx_fill(struct rtl8169_private *tp)
4473{
4474 unsigned int i;
4475
4476 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004477 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004478
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004479 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004481
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004482 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004483 if (!data) {
4484 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004485 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004486 }
4487 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004490 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4491 return 0;
4492
4493err_out:
4494 rtl8169_rx_clear(tp);
4495 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496}
4497
4498static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4499{
4500 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
4501}
4502
4503static int rtl8169_init_ring(struct net_device *dev)
4504{
4505 struct rtl8169_private *tp = netdev_priv(dev);
4506
4507 rtl8169_init_ring_indexes(tp);
4508
4509 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004510 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004512 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513}
4514
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004515static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 struct TxDesc *desc)
4517{
4518 unsigned int len = tx_skb->len;
4519
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004520 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4521
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 desc->opts1 = 0x00;
4523 desc->opts2 = 0x00;
4524 desc->addr = 0x00;
4525 tx_skb->len = 0;
4526}
4527
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004528static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4529 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530{
4531 unsigned int i;
4532
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004533 for (i = 0; i < n; i++) {
4534 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 struct ring_info *tx_skb = tp->tx_skb + entry;
4536 unsigned int len = tx_skb->len;
4537
4538 if (len) {
4539 struct sk_buff *skb = tx_skb->skb;
4540
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004541 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542 tp->TxDescArray + entry);
4543 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004544 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 dev_kfree_skb(skb);
4546 tx_skb->skb = NULL;
4547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 }
4549 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004550}
4551
4552static void rtl8169_tx_clear(struct rtl8169_private *tp)
4553{
4554 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 tp->cur_tx = tp->dirty_tx = 0;
4556}
4557
David Howellsc4028952006-11-22 14:57:56 +00004558static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559{
4560 struct rtl8169_private *tp = netdev_priv(dev);
4561
David Howellsc4028952006-11-22 14:57:56 +00004562 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 schedule_delayed_work(&tp->task, 4);
4564}
4565
4566static void rtl8169_wait_for_quiescence(struct net_device *dev)
4567{
4568 struct rtl8169_private *tp = netdev_priv(dev);
4569 void __iomem *ioaddr = tp->mmio_addr;
4570
4571 synchronize_irq(dev->irq);
4572
4573 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004574 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
4576 rtl8169_irq_mask_and_ack(ioaddr);
4577
David S. Millerd1d08d12008-01-07 20:53:33 -08004578 tp->intr_mask = 0xffff;
4579 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004580 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581}
4582
David Howellsc4028952006-11-22 14:57:56 +00004583static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584{
David Howellsc4028952006-11-22 14:57:56 +00004585 struct rtl8169_private *tp =
4586 container_of(work, struct rtl8169_private, task.work);
4587 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 int ret;
4589
Francois Romieueb2a0212007-02-15 23:37:21 +01004590 rtnl_lock();
4591
4592 if (!netif_running(dev))
4593 goto out_unlock;
4594
4595 rtl8169_wait_for_quiescence(dev);
4596 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
4598 ret = rtl8169_open(dev);
4599 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004600 if (net_ratelimit())
4601 netif_err(tp, drv, dev,
4602 "reinit failure (status = %d). Rescheduling\n",
4603 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 rtl8169_schedule_work(dev, rtl8169_reinit_task);
4605 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004606
4607out_unlock:
4608 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609}
4610
David Howellsc4028952006-11-22 14:57:56 +00004611static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612{
David Howellsc4028952006-11-22 14:57:56 +00004613 struct rtl8169_private *tp =
4614 container_of(work, struct rtl8169_private, task.work);
4615 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
Francois Romieueb2a0212007-02-15 23:37:21 +01004617 rtnl_lock();
4618
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01004620 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
4622 rtl8169_wait_for_quiescence(dev);
4623
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004624 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 rtl8169_tx_clear(tp);
4626
4627 if (tp->dirty_rx == tp->cur_rx) {
4628 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004629 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 netif_wake_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004631 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 } else {
Joe Perchesbf82c182010-02-09 11:49:50 +00004633 if (net_ratelimit())
4634 netif_emerg(tp, intr, dev, "Rx buffers shortage\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 rtl8169_schedule_work(dev, rtl8169_reset_task);
4636 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004637
4638out_unlock:
4639 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640}
4641
4642static void rtl8169_tx_timeout(struct net_device *dev)
4643{
4644 struct rtl8169_private *tp = netdev_priv(dev);
4645
françois romieue6de30d2011-01-03 15:08:37 +00004646 rtl8169_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647
4648 /* Let's wait a bit while any (async) irq lands on */
4649 rtl8169_schedule_work(dev, rtl8169_reset_task);
4650}
4651
4652static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07004653 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654{
4655 struct skb_shared_info *info = skb_shinfo(skb);
4656 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04004657 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004658 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
4660 entry = tp->cur_tx;
4661 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
4662 skb_frag_t *frag = info->frags + cur_frag;
4663 dma_addr_t mapping;
4664 u32 status, len;
4665 void *addr;
4666
4667 entry = (entry + 1) % NUM_TX_DESC;
4668
4669 txd = tp->TxDescArray + entry;
4670 len = frag->size;
4671 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004672 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004673 if (unlikely(dma_mapping_error(d, mapping))) {
4674 if (net_ratelimit())
4675 netif_err(tp, drv, tp->dev,
4676 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004677 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
4680 /* anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07004681 status = opts[0] | len |
4682 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
4684 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07004685 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 txd->addr = cpu_to_le64(mapping);
4687
4688 tp->tx_skb[entry].len = len;
4689 }
4690
4691 if (cur_frag) {
4692 tp->tx_skb[entry].skb = skb;
4693 txd->opts1 |= cpu_to_le32(LastFrag);
4694 }
4695
4696 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004697
4698err_out:
4699 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
4700 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701}
4702
Francois Romieu2b7b4312011-04-18 22:53:24 -07004703static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
4704 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705{
Francois Romieu2b7b4312011-04-18 22:53:24 -07004706 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00004707 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07004708 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709
Francois Romieu2b7b4312011-04-18 22:53:24 -07004710 if (mss) {
4711 opts[0] |= TD_LSO;
4712 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
4713 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004714 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715
4716 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07004717 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07004719 opts[offset] |= info->checksum.udp;
4720 else
4721 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723}
4724
Stephen Hemminger613573252009-08-31 19:50:58 +00004725static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
4726 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727{
4728 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004729 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 struct TxDesc *txd = tp->TxDescArray + entry;
4731 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004732 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 dma_addr_t mapping;
4734 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07004735 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004736 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02004737
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004739 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004740 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 }
4742
4743 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004744 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004746 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004747 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004748 if (unlikely(dma_mapping_error(d, mapping))) {
4749 if (net_ratelimit())
4750 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004751 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753
4754 tp->tx_skb[entry].len = len;
4755 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
Francois Romieu2b7b4312011-04-18 22:53:24 -07004757 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
4758 opts[0] = DescOwn;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004759
Francois Romieu2b7b4312011-04-18 22:53:24 -07004760 rtl8169_tso_csum(tp, skb, opts);
4761
4762 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004763 if (frags < 0)
4764 goto err_dma_1;
4765 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07004766 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004767 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07004768 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004769 tp->tx_skb[entry].skb = skb;
4770 }
4771
Francois Romieu2b7b4312011-04-18 22:53:24 -07004772 txd->opts2 = cpu_to_le32(opts[1]);
4773
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 wmb();
4775
4776 /* anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07004777 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 txd->opts1 = cpu_to_le32(status);
4779
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 tp->cur_tx += frags + 1;
4781
David Dillow4c020a92010-03-03 16:33:10 +00004782 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Francois Romieu275391a2007-02-23 23:50:28 +01004784 RTL_W8(TxPoll, NPQ); /* set polling bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785
4786 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
4787 netif_stop_queue(dev);
4788 smp_rmb();
4789 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
4790 netif_wake_queue(dev);
4791 }
4792
Stephen Hemminger613573252009-08-31 19:50:58 +00004793 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004795err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004796 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004797err_dma_0:
4798 dev_kfree_skb(skb);
4799 dev->stats.tx_dropped++;
4800 return NETDEV_TX_OK;
4801
4802err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004804 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00004805 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806}
4807
4808static void rtl8169_pcierr_interrupt(struct net_device *dev)
4809{
4810 struct rtl8169_private *tp = netdev_priv(dev);
4811 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 u16 pci_status, pci_cmd;
4813
4814 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
4815 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
4816
Joe Perchesbf82c182010-02-09 11:49:50 +00004817 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4818 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
4820 /*
4821 * The recovery sequence below admits a very elaborated explanation:
4822 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01004823 * - I did not see what else could be done;
4824 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 *
4826 * Feel free to adjust to your needs.
4827 */
Francois Romieua27993f2006-12-18 00:04:19 +01004828 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01004829 pci_cmd &= ~PCI_COMMAND_PARITY;
4830 else
4831 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
4832
4833 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834
4835 pci_write_config_word(pdev, PCI_STATUS,
4836 pci_status & (PCI_STATUS_DETECTED_PARITY |
4837 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
4838 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
4839
4840 /* The infamous DAC f*ckup only happens at boot time */
4841 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00004842 void __iomem *ioaddr = tp->mmio_addr;
4843
Joe Perchesbf82c182010-02-09 11:49:50 +00004844 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 tp->cp_cmd &= ~PCIDAC;
4846 RTL_W16(CPlusCmd, tp->cp_cmd);
4847 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 }
4849
françois romieue6de30d2011-01-03 15:08:37 +00004850 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01004851
4852 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853}
4854
Francois Romieu07d3f512007-02-21 22:40:46 +01004855static void rtl8169_tx_interrupt(struct net_device *dev,
4856 struct rtl8169_private *tp,
4857 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858{
4859 unsigned int dirty_tx, tx_left;
4860
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861 dirty_tx = tp->dirty_tx;
4862 smp_rmb();
4863 tx_left = tp->cur_tx - dirty_tx;
4864
4865 while (tx_left > 0) {
4866 unsigned int entry = dirty_tx % NUM_TX_DESC;
4867 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 u32 status;
4869
4870 rmb();
4871 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
4872 if (status & DescOwn)
4873 break;
4874
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004875 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
4876 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004878 dev->stats.tx_packets++;
4879 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00004880 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 tx_skb->skb = NULL;
4882 }
4883 dirty_tx++;
4884 tx_left--;
4885 }
4886
4887 if (tp->dirty_tx != dirty_tx) {
4888 tp->dirty_tx = dirty_tx;
4889 smp_wmb();
4890 if (netif_queue_stopped(dev) &&
4891 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
4892 netif_wake_queue(dev);
4893 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02004894 /*
4895 * 8168 hack: TxPoll requests are lost when the Tx packets are
4896 * too close. Let's kick an extra TxPoll request when a burst
4897 * of start_xmit activity is detected (if it is not detected,
4898 * it is slow enough). -- FR
4899 */
4900 smp_rmb();
4901 if (tp->cur_tx != dirty_tx)
4902 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 }
4904}
4905
Francois Romieu126fa4b2005-05-12 20:09:17 -04004906static inline int rtl8169_fragmented_frame(u32 status)
4907{
4908 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4909}
4910
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004911static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 u32 status = opts1 & RxProtoMask;
4914
4915 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00004916 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 skb->ip_summed = CHECKSUM_UNNECESSARY;
4918 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07004919 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920}
4921
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004922static struct sk_buff *rtl8169_try_rx_copy(void *data,
4923 struct rtl8169_private *tp,
4924 int pkt_size,
4925 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004927 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004928 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004930 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004931 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004932 prefetch(data);
4933 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
4934 if (skb)
4935 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004936 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
4937
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004938 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939}
4940
Eric Dumazet630b9432010-03-31 02:08:31 +00004941/*
4942 * Warning : rtl8169_rx_interrupt() might be called :
4943 * 1) from NAPI (softirq) context
4944 * (polling = 1 : we should call netif_receive_skb())
4945 * 2) from process context (rtl8169_reset_task())
4946 * (polling = 0 : we must call netif_rx() instead)
4947 */
Francois Romieu07d3f512007-02-21 22:40:46 +01004948static int rtl8169_rx_interrupt(struct net_device *dev,
4949 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004950 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951{
4952 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004953 unsigned int count;
Eric Dumazet630b9432010-03-31 02:08:31 +00004954 int polling = (budget != ~(u32)0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 cur_rx = tp->cur_rx;
4957 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02004958 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004960 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004962 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 u32 status;
4964
4965 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04004966 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967
4968 if (status & DescOwn)
4969 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004970 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004971 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
4972 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004973 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02004975 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02004977 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004978 if (status & RxFOVF) {
4979 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004980 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004981 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004982 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004984 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004985 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
Francois Romieu126fa4b2005-05-12 20:09:17 -04004988 /*
4989 * The driver does not support incoming fragmented
4990 * frames. They are seen as a symptom of over-mtu
4991 * sized frames.
4992 */
4993 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02004994 dev->stats.rx_dropped++;
4995 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004996 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004997 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004998 }
4999
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005000 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
5001 tp, pkt_size, addr);
5002 rtl8169_mark_to_asic(desc, rx_buf_sz);
5003 if (!skb) {
5004 dev->stats.rx_dropped++;
5005 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 }
5007
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005008 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 skb_put(skb, pkt_size);
5010 skb->protocol = eth_type_trans(skb, dev);
5011
Francois Romieu7a8fc772011-03-01 17:18:33 +01005012 rtl8169_rx_vlan_tag(desc, skb);
5013
5014 if (likely(polling))
5015 napi_gro_receive(&tp->napi, skb);
5016 else
5017 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
Francois Romieucebf8cc2007-10-18 12:06:54 +02005019 dev->stats.rx_bytes += pkt_size;
5020 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021 }
Francois Romieu6dccd162007-02-13 23:38:05 +01005022
5023 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00005024 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01005025 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
5026 desc->opts2 = 0;
5027 cur_rx++;
5028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 }
5030
5031 count = cur_rx - tp->cur_rx;
5032 tp->cur_rx = cur_rx;
5033
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005034 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035
5036 return count;
5037}
5038
Francois Romieu07d3f512007-02-21 22:40:46 +01005039static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040{
Francois Romieu07d3f512007-02-21 22:40:46 +01005041 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02005045 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
David Dillowf11a3772009-05-22 15:29:34 +00005047 /* loop handling interrupts until we have no new ones or
5048 * we hit a invalid/hotplug case.
5049 */
Francois Romieu865c6522008-05-11 14:51:00 +02005050 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00005051 while (status && status != 0xffff) {
5052 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053
David Dillowf11a3772009-05-22 15:29:34 +00005054 /* Handle all of the error cases first. These will reset
5055 * the chip, so just exit the loop.
5056 */
5057 if (unlikely(!netif_running(dev))) {
5058 rtl8169_asic_down(ioaddr);
5059 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 }
David Dillowf11a3772009-05-22 15:29:34 +00005061
Francois Romieu1519e572011-02-03 12:02:36 +01005062 if (unlikely(status & RxFIFOOver)) {
5063 switch (tp->mac_version) {
5064 /* Work around for rx fifo overflow */
5065 case RTL_GIGA_MAC_VER_11:
5066 case RTL_GIGA_MAC_VER_22:
5067 case RTL_GIGA_MAC_VER_26:
5068 netif_stop_queue(dev);
5069 rtl8169_tx_timeout(dev);
5070 goto done;
Francois Romieuf60ac8e2011-02-03 17:27:52 +01005071 /* Testers needed. */
5072 case RTL_GIGA_MAC_VER_17:
5073 case RTL_GIGA_MAC_VER_19:
5074 case RTL_GIGA_MAC_VER_20:
5075 case RTL_GIGA_MAC_VER_21:
5076 case RTL_GIGA_MAC_VER_23:
5077 case RTL_GIGA_MAC_VER_24:
5078 case RTL_GIGA_MAC_VER_27:
5079 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00005080 case RTL_GIGA_MAC_VER_31:
Francois Romieu1519e572011-02-03 12:02:36 +01005081 /* Experimental science. Pktgen proof. */
5082 case RTL_GIGA_MAC_VER_12:
5083 case RTL_GIGA_MAC_VER_25:
5084 if (status == RxFIFOOver)
5085 goto done;
5086 break;
5087 default:
5088 break;
5089 }
David Dillowf11a3772009-05-22 15:29:34 +00005090 }
5091
5092 if (unlikely(status & SYSErr)) {
5093 rtl8169_pcierr_interrupt(dev);
5094 break;
5095 }
5096
5097 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005098 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00005099
5100 /* We need to see the lastest version of tp->intr_mask to
5101 * avoid ignoring an MSI interrupt and having to wait for
5102 * another event which may never come.
5103 */
5104 smp_rmb();
5105 if (status & tp->intr_mask & tp->napi_event) {
5106 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
5107 tp->intr_mask = ~tp->napi_event;
5108
5109 if (likely(napi_schedule_prep(&tp->napi)))
5110 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00005111 else
5112 netif_info(tp, intr, dev,
5113 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00005114 }
5115
5116 /* We only get a new MSI interrupt when all active irq
5117 * sources on the chip have been acknowledged. So, ack
5118 * everything we've seen and check if new sources have become
5119 * active to avoid blocking all interrupts from the chip.
5120 */
5121 RTL_W16(IntrStatus,
5122 (status & RxFIFOOver) ? (status | RxOverflow) : status);
5123 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 }
Francois Romieu1519e572011-02-03 12:02:36 +01005125done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 return IRQ_RETVAL(handled);
5127}
5128
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005129static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005131 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
5132 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005134 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005136 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 rtl8169_tx_interrupt(dev, tp, ioaddr);
5138
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005139 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005140 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00005141
5142 /* We need for force the visibility of tp->intr_mask
5143 * for other CPUs, as we can loose an MSI interrupt
5144 * and potentially wait for a retransmit timeout if we don't.
5145 * The posted write to IntrMask is safe, as it will
5146 * eventually make it to the chip and we won't loose anything
5147 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 */
David Dillowf11a3772009-05-22 15:29:34 +00005149 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00005150 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01005151 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 }
5153
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005154 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156
Francois Romieu523a6092008-09-10 22:28:56 +02005157static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
5158{
5159 struct rtl8169_private *tp = netdev_priv(dev);
5160
5161 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
5162 return;
5163
5164 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
5165 RTL_W32(RxMissed, 0);
5166}
5167
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168static void rtl8169_down(struct net_device *dev)
5169{
5170 struct rtl8169_private *tp = netdev_priv(dev);
5171 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
5173 rtl8169_delete_timer(dev);
5174
5175 netif_stop_queue(dev);
5176
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005177 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005178
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179 spin_lock_irq(&tp->lock);
5180
5181 rtl8169_asic_down(ioaddr);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005182 /*
5183 * At this point device interrupts can not be enabled in any function,
5184 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
5185 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
5186 */
Francois Romieu523a6092008-09-10 22:28:56 +02005187 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188
5189 spin_unlock_irq(&tp->lock);
5190
5191 synchronize_irq(dev->irq);
5192
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005194 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196 rtl8169_tx_clear(tp);
5197
5198 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00005199
5200 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201}
5202
5203static int rtl8169_close(struct net_device *dev)
5204{
5205 struct rtl8169_private *tp = netdev_priv(dev);
5206 struct pci_dev *pdev = tp->pci_dev;
5207
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005208 pm_runtime_get_sync(&pdev->dev);
5209
Ivan Vecera355423d2009-02-06 21:49:57 -08005210 /* update counters before going down */
5211 rtl8169_update_counters(dev);
5212
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 rtl8169_down(dev);
5214
5215 free_irq(dev->irq, dev);
5216
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00005217 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
5218 tp->RxPhyAddr);
5219 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
5220 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 tp->TxDescArray = NULL;
5222 tp->RxDescArray = NULL;
5223
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005224 pm_runtime_put_sync(&pdev->dev);
5225
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 return 0;
5227}
5228
Francois Romieu07ce4062007-02-23 23:36:39 +01005229static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230{
5231 struct rtl8169_private *tp = netdev_priv(dev);
5232 void __iomem *ioaddr = tp->mmio_addr;
5233 unsigned long flags;
5234 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01005235 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 u32 tmp = 0;
5237
5238 if (dev->flags & IFF_PROMISC) {
5239 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00005240 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241 rx_mode =
5242 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
5243 AcceptAllPhys;
5244 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00005245 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00005246 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 /* Too many to filter perfectly -- accept all multicasts. */
5248 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
5249 mc_filter[1] = mc_filter[0] = 0xffffffff;
5250 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00005251 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01005252
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253 rx_mode = AcceptBroadcast | AcceptMyPhys;
5254 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00005255 netdev_for_each_mc_addr(ha, dev) {
5256 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
5258 rx_mode |= AcceptMulticast;
5259 }
5260 }
5261
5262 spin_lock_irqsave(&tp->lock, flags);
5263
5264 tmp = rtl8169_rx_config | rx_mode |
Francois Romieu2b7b4312011-04-18 22:53:24 -07005265 (RTL_R32(RxConfig) & RTL_RX_CONFIG_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266
Francois Romieuf887cce2008-07-17 22:24:18 +02005267 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01005268 u32 data = mc_filter[0];
5269
5270 mc_filter[0] = swab32(mc_filter[1]);
5271 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02005272 }
5273
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07005275 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
Francois Romieu57a9f232007-06-04 22:10:15 +02005277 RTL_W32(RxConfig, tmp);
5278
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 spin_unlock_irqrestore(&tp->lock, flags);
5280}
5281
5282/**
5283 * rtl8169_get_stats - Get rtl8169 read/write statistics
5284 * @dev: The Ethernet Device to get statistics for
5285 *
5286 * Get TX/RX statistics for rtl8169
5287 */
5288static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
5289{
5290 struct rtl8169_private *tp = netdev_priv(dev);
5291 void __iomem *ioaddr = tp->mmio_addr;
5292 unsigned long flags;
5293
5294 if (netif_running(dev)) {
5295 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02005296 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297 spin_unlock_irqrestore(&tp->lock, flags);
5298 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02005299
Francois Romieucebf8cc2007-10-18 12:06:54 +02005300 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301}
5302
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005303static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01005304{
françois romieu065c27c2011-01-03 15:08:12 +00005305 struct rtl8169_private *tp = netdev_priv(dev);
5306
Francois Romieu5d06a992006-02-23 00:47:58 +01005307 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005308 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01005309
françois romieu065c27c2011-01-03 15:08:12 +00005310 rtl_pll_power_down(tp);
5311
Francois Romieu5d06a992006-02-23 00:47:58 +01005312 netif_device_detach(dev);
5313 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005314}
Francois Romieu5d06a992006-02-23 00:47:58 +01005315
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005316#ifdef CONFIG_PM
5317
5318static int rtl8169_suspend(struct device *device)
5319{
5320 struct pci_dev *pdev = to_pci_dev(device);
5321 struct net_device *dev = pci_get_drvdata(pdev);
5322
5323 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02005324
Francois Romieu5d06a992006-02-23 00:47:58 +01005325 return 0;
5326}
5327
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005328static void __rtl8169_resume(struct net_device *dev)
5329{
françois romieu065c27c2011-01-03 15:08:12 +00005330 struct rtl8169_private *tp = netdev_priv(dev);
5331
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005332 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00005333
5334 rtl_pll_power_up(tp);
5335
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005336 rtl8169_schedule_work(dev, rtl8169_reset_task);
5337}
5338
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005339static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01005340{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005341 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01005342 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005343 struct rtl8169_private *tp = netdev_priv(dev);
5344
5345 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01005346
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005347 if (netif_running(dev))
5348 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01005349
Francois Romieu5d06a992006-02-23 00:47:58 +01005350 return 0;
5351}
5352
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005353static int rtl8169_runtime_suspend(struct device *device)
5354{
5355 struct pci_dev *pdev = to_pci_dev(device);
5356 struct net_device *dev = pci_get_drvdata(pdev);
5357 struct rtl8169_private *tp = netdev_priv(dev);
5358
5359 if (!tp->TxDescArray)
5360 return 0;
5361
5362 spin_lock_irq(&tp->lock);
5363 tp->saved_wolopts = __rtl8169_get_wol(tp);
5364 __rtl8169_set_wol(tp, WAKE_ANY);
5365 spin_unlock_irq(&tp->lock);
5366
5367 rtl8169_net_suspend(dev);
5368
5369 return 0;
5370}
5371
5372static int rtl8169_runtime_resume(struct device *device)
5373{
5374 struct pci_dev *pdev = to_pci_dev(device);
5375 struct net_device *dev = pci_get_drvdata(pdev);
5376 struct rtl8169_private *tp = netdev_priv(dev);
5377
5378 if (!tp->TxDescArray)
5379 return 0;
5380
5381 spin_lock_irq(&tp->lock);
5382 __rtl8169_set_wol(tp, tp->saved_wolopts);
5383 tp->saved_wolopts = 0;
5384 spin_unlock_irq(&tp->lock);
5385
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005386 rtl8169_init_phy(dev, tp);
5387
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005388 __rtl8169_resume(dev);
5389
5390 return 0;
5391}
5392
5393static int rtl8169_runtime_idle(struct device *device)
5394{
5395 struct pci_dev *pdev = to_pci_dev(device);
5396 struct net_device *dev = pci_get_drvdata(pdev);
5397 struct rtl8169_private *tp = netdev_priv(dev);
5398
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005399 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005400}
5401
Alexey Dobriyan47145212009-12-14 18:00:08 -08005402static const struct dev_pm_ops rtl8169_pm_ops = {
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005403 .suspend = rtl8169_suspend,
5404 .resume = rtl8169_resume,
5405 .freeze = rtl8169_suspend,
5406 .thaw = rtl8169_resume,
5407 .poweroff = rtl8169_suspend,
5408 .restore = rtl8169_resume,
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005409 .runtime_suspend = rtl8169_runtime_suspend,
5410 .runtime_resume = rtl8169_runtime_resume,
5411 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005412};
5413
5414#define RTL8169_PM_OPS (&rtl8169_pm_ops)
5415
5416#else /* !CONFIG_PM */
5417
5418#define RTL8169_PM_OPS NULL
5419
5420#endif /* !CONFIG_PM */
5421
Francois Romieu1765f952008-09-13 17:21:40 +02005422static void rtl_shutdown(struct pci_dev *pdev)
5423{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005424 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00005425 struct rtl8169_private *tp = netdev_priv(dev);
5426 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02005427
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005428 rtl8169_net_suspend(dev);
5429
Ivan Veceracc098dc2009-11-29 23:12:52 -08005430 /* restore original MAC address */
5431 rtl_rar_set(tp, dev->perm_addr);
5432
françois romieu4bb3f522009-06-17 11:41:45 +00005433 spin_lock_irq(&tp->lock);
5434
5435 rtl8169_asic_down(ioaddr);
5436
5437 spin_unlock_irq(&tp->lock);
5438
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005439 if (system_state == SYSTEM_POWER_OFF) {
françois romieuca52efd2009-07-24 12:34:19 +00005440 /* WoL fails with some 8168 when the receiver is disabled. */
5441 if (tp->features & RTL_FEATURE_WOL) {
5442 pci_clear_master(pdev);
5443
5444 RTL_W8(ChipCmd, CmdRxEnb);
5445 /* PCI commit */
5446 RTL_R8(ChipCmd);
5447 }
5448
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005449 pci_wake_from_d3(pdev, true);
5450 pci_set_power_state(pdev, PCI_D3hot);
5451 }
5452}
Francois Romieu5d06a992006-02-23 00:47:58 +01005453
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454static struct pci_driver rtl8169_pci_driver = {
5455 .name = MODULENAME,
5456 .id_table = rtl8169_pci_tbl,
5457 .probe = rtl8169_init_one,
5458 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02005459 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005460 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461};
5462
Francois Romieu07d3f512007-02-21 22:40:46 +01005463static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464{
Jeff Garzik29917622006-08-19 17:48:59 -04005465 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466}
5467
Francois Romieu07d3f512007-02-21 22:40:46 +01005468static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469{
5470 pci_unregister_driver(&rtl8169_pci_driver);
5471}
5472
5473module_init(rtl8169_init_module);
5474module_exit(rtl8169_cleanup_module);