blob: 83e5202d30aa57f9a0e966dac5322a771eb6ce3b [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. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200348#define 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 */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200426 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 */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200597 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000598 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700599 struct napi_struct napi;
Francois Romieucecb5fd2011-04-01 10:21:07 +0200600 spinlock_t lock;
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;
françois romieuc0e45c12011-01-03 15:08:04 +0000619
620 struct mdio_ops {
621 void (*write)(void __iomem *, int, int);
622 int (*read)(void __iomem *, int);
623 } mdio_ops;
624
françois romieu065c27c2011-01-03 15:08:12 +0000625 struct pll_power_ops {
626 void (*down)(struct rtl8169_private *);
627 void (*up)(struct rtl8169_private *);
628 } pll_power_ops;
629
Oliver Neukum54405cd2011-01-06 21:55:13 +0100630 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200631 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000632 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100633 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000634 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800636 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu9c14cea2008-07-05 00:21:15 +0200637 int pcie_cap;
David Howellsc4028952006-11-22 14:57:56 +0000638 struct delayed_work task;
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200639 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200640
641 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800642 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000643 u32 saved_wolopts;
françois romieuf1e02ed2011-01-13 13:07:53 +0000644
645 const struct firmware *fw;
François Romieu953a12c2011-04-24 17:38:48 +0200646#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647};
648
Ralf Baechle979b6c12005-06-13 14:30:40 -0700649MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700652MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200653module_param_named(debug, debug.msg_enable, int, 0);
654MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655MODULE_LICENSE("GPL");
656MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000657MODULE_FIRMWARE(FIRMWARE_8168D_1);
658MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000659MODULE_FIRMWARE(FIRMWARE_8168E_1);
660MODULE_FIRMWARE(FIRMWARE_8168E_2);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800661MODULE_FIRMWARE(FIRMWARE_8105E_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663static int rtl8169_open(struct net_device *dev);
Stephen Hemminger613573252009-08-31 19:50:58 +0000664static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
665 struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100666static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100668static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100670static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200672static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700674 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200675static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200677static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700678static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200681 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
françois romieub646d902011-01-03 15:08:21 +0000683static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
684{
685 void __iomem *ioaddr = tp->mmio_addr;
686 int i;
687
688 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
689 for (i = 0; i < 20; i++) {
690 udelay(100);
691 if (RTL_R32(OCPAR) & OCPAR_FLAG)
692 break;
693 }
694 return RTL_R32(OCPDR);
695}
696
697static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
698{
699 void __iomem *ioaddr = tp->mmio_addr;
700 int i;
701
702 RTL_W32(OCPDR, data);
703 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
704 for (i = 0; i < 20; i++) {
705 udelay(100);
706 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
707 break;
708 }
709}
710
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800711static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000712{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800713 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000714 int i;
715
716 RTL_W8(ERIDR, cmd);
717 RTL_W32(ERIAR, 0x800010e8);
718 msleep(2);
719 for (i = 0; i < 5; i++) {
720 udelay(100);
721 if (!(RTL_R32(ERIDR) & ERIAR_FLAG))
722 break;
723 }
724
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800725 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000726}
727
728#define OOB_CMD_RESET 0x00
729#define OOB_CMD_DRIVER_START 0x05
730#define OOB_CMD_DRIVER_STOP 0x06
731
Francois Romieucecb5fd2011-04-01 10:21:07 +0200732static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
733{
734 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
735}
736
françois romieub646d902011-01-03 15:08:21 +0000737static void rtl8168_driver_start(struct rtl8169_private *tp)
738{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200739 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000740 int i;
741
742 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
743
Francois Romieucecb5fd2011-04-01 10:21:07 +0200744 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000745
françois romieub646d902011-01-03 15:08:21 +0000746 for (i = 0; i < 10; i++) {
747 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000748 if (ocp_read(tp, 0x0f, reg) & 0x00000800)
françois romieub646d902011-01-03 15:08:21 +0000749 break;
750 }
751}
752
753static void rtl8168_driver_stop(struct rtl8169_private *tp)
754{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200755 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000756 int i;
757
758 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
759
Francois Romieucecb5fd2011-04-01 10:21:07 +0200760 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000761
françois romieub646d902011-01-03 15:08:21 +0000762 for (i = 0; i < 10; i++) {
763 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000764 if ((ocp_read(tp, 0x0f, reg) & 0x00000800) == 0)
françois romieub646d902011-01-03 15:08:21 +0000765 break;
766 }
767}
768
hayeswang4804b3b2011-03-21 01:50:29 +0000769static int r8168dp_check_dash(struct rtl8169_private *tp)
770{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200771 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000772
Francois Romieucecb5fd2011-04-01 10:21:07 +0200773 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +0000774}
françois romieub646d902011-01-03 15:08:21 +0000775
françois romieu4da19632011-01-03 15:07:55 +0000776static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 int i;
779
Francois Romieua6baf3a2007-11-08 23:23:21 +0100780 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Francois Romieu23714082006-01-29 00:49:09 +0100782 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100783 /*
784 * Check if the RTL8169 has completed writing to the specified
785 * MII register.
786 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200787 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 break;
Francois Romieu23714082006-01-29 00:49:09 +0100789 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700791 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700792 * According to hardware specs a 20us delay is required after write
793 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700794 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700795 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
françois romieu4da19632011-01-03 15:07:55 +0000798static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 int i, value = -1;
801
Francois Romieua6baf3a2007-11-08 23:23:21 +0100802 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Francois Romieu23714082006-01-29 00:49:09 +0100804 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100805 /*
806 * Check if the RTL8169 has completed retrieving data from
807 * the specified MII register.
808 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100810 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 break;
812 }
Francois Romieu23714082006-01-29 00:49:09 +0100813 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700815 /*
816 * According to hardware specs a 20us delay is required after read
817 * complete indication, but before sending next command.
818 */
819 udelay(20);
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return value;
822}
823
françois romieuc0e45c12011-01-03 15:08:04 +0000824static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
825{
826 int i;
827
828 RTL_W32(OCPDR, data |
829 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
830 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
831 RTL_W32(EPHY_RXER_NUM, 0);
832
833 for (i = 0; i < 100; i++) {
834 mdelay(1);
835 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
836 break;
837 }
838}
839
840static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
841{
842 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
843 (value & OCPDR_DATA_MASK));
844}
845
846static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
847{
848 int i;
849
850 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
851
852 mdelay(1);
853 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
854 RTL_W32(EPHY_RXER_NUM, 0);
855
856 for (i = 0; i < 100; i++) {
857 mdelay(1);
858 if (RTL_R32(OCPAR) & OCPAR_FLAG)
859 break;
860 }
861
862 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
863}
864
françois romieue6de30d2011-01-03 15:08:37 +0000865#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
866
867static void r8168dp_2_mdio_start(void __iomem *ioaddr)
868{
869 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
870}
871
872static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
873{
874 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
875}
876
877static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
878{
879 r8168dp_2_mdio_start(ioaddr);
880
881 r8169_mdio_write(ioaddr, reg_addr, value);
882
883 r8168dp_2_mdio_stop(ioaddr);
884}
885
886static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
887{
888 int value;
889
890 r8168dp_2_mdio_start(ioaddr);
891
892 value = r8169_mdio_read(ioaddr, reg_addr);
893
894 r8168dp_2_mdio_stop(ioaddr);
895
896 return value;
897}
898
françois romieu4da19632011-01-03 15:07:55 +0000899static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +0200900{
françois romieuc0e45c12011-01-03 15:08:04 +0000901 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +0200902}
903
françois romieu4da19632011-01-03 15:07:55 +0000904static int rtl_readphy(struct rtl8169_private *tp, int location)
905{
françois romieuc0e45c12011-01-03 15:08:04 +0000906 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +0000907}
908
909static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
910{
911 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
912}
913
914static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +0000915{
916 int val;
917
françois romieu4da19632011-01-03 15:07:55 +0000918 val = rtl_readphy(tp, reg_addr);
919 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +0000920}
921
Francois Romieuccdffb92008-07-26 14:26:06 +0200922static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
923 int val)
924{
925 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200926
françois romieu4da19632011-01-03 15:07:55 +0000927 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +0200928}
929
930static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
931{
932 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200933
françois romieu4da19632011-01-03 15:07:55 +0000934 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +0200935}
936
Francois Romieudacf8152008-08-02 20:44:13 +0200937static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
938{
939 unsigned int i;
940
941 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
942 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
943
944 for (i = 0; i < 100; i++) {
945 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
946 break;
947 udelay(10);
948 }
949}
950
951static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
952{
953 u16 value = 0xffff;
954 unsigned int i;
955
956 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
957
958 for (i = 0; i < 100; i++) {
959 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
960 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
961 break;
962 }
963 udelay(10);
964 }
965
966 return value;
967}
968
969static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
970{
971 unsigned int i;
972
973 RTL_W32(CSIDR, value);
974 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
975 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
976
977 for (i = 0; i < 100; i++) {
978 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
979 break;
980 udelay(10);
981 }
982}
983
984static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
985{
986 u32 value = ~0x00;
987 unsigned int i;
988
989 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
990 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
991
992 for (i = 0; i < 100; i++) {
993 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
994 value = RTL_R32(CSIDR);
995 break;
996 }
997 udelay(10);
998 }
999
1000 return value;
1001}
1002
françois romieudaf9df62009-10-07 12:44:20 +00001003static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
1004{
1005 u8 value = 0xff;
1006 unsigned int i;
1007
1008 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1009
1010 for (i = 0; i < 300; i++) {
1011 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
1012 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
1013 break;
1014 }
1015 udelay(100);
1016 }
1017
1018 return value;
1019}
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
1022{
1023 RTL_W16(IntrMask, 0x0000);
1024
1025 RTL_W16(IntrStatus, 0xffff);
1026}
1027
1028static void rtl8169_asic_down(void __iomem *ioaddr)
1029{
1030 RTL_W8(ChipCmd, 0x00);
1031 rtl8169_irq_mask_and_ack(ioaddr);
1032 RTL_R16(CPlusCmd);
1033}
1034
françois romieu4da19632011-01-03 15:07:55 +00001035static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
françois romieu4da19632011-01-03 15:07:55 +00001037 void __iomem *ioaddr = tp->mmio_addr;
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return RTL_R32(TBICSR) & TBIReset;
1040}
1041
françois romieu4da19632011-01-03 15:07:55 +00001042static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
françois romieu4da19632011-01-03 15:07:55 +00001044 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1048{
1049 return RTL_R32(TBICSR) & TBILinkOk;
1050}
1051
1052static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1053{
1054 return RTL_R8(PHYstatus) & LinkStatus;
1055}
1056
françois romieu4da19632011-01-03 15:07:55 +00001057static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
françois romieu4da19632011-01-03 15:07:55 +00001059 void __iomem *ioaddr = tp->mmio_addr;
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1062}
1063
françois romieu4da19632011-01-03 15:07:55 +00001064static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 unsigned int val;
1067
françois romieu4da19632011-01-03 15:07:55 +00001068 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1069 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001072static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001073 struct rtl8169_private *tp,
1074 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 unsigned long flags;
1077
1078 spin_lock_irqsave(&tp->lock, flags);
1079 if (tp->link_ok(ioaddr)) {
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001080 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001081 if (pm)
1082 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001084 if (net_ratelimit())
1085 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001086 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001088 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001089 if (pm)
1090 pm_schedule_suspend(&tp->pci_dev->dev, 100);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 spin_unlock_irqrestore(&tp->lock, flags);
1093}
1094
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001095static void rtl8169_check_link_status(struct net_device *dev,
1096 struct rtl8169_private *tp,
1097 void __iomem *ioaddr)
1098{
1099 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1100}
1101
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001102#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1103
1104static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1105{
1106 void __iomem *ioaddr = tp->mmio_addr;
1107 u8 options;
1108 u32 wolopts = 0;
1109
1110 options = RTL_R8(Config1);
1111 if (!(options & PMEnable))
1112 return 0;
1113
1114 options = RTL_R8(Config3);
1115 if (options & LinkUp)
1116 wolopts |= WAKE_PHY;
1117 if (options & MagicPacket)
1118 wolopts |= WAKE_MAGIC;
1119
1120 options = RTL_R8(Config5);
1121 if (options & UWF)
1122 wolopts |= WAKE_UCAST;
1123 if (options & BWF)
1124 wolopts |= WAKE_BCAST;
1125 if (options & MWF)
1126 wolopts |= WAKE_MCAST;
1127
1128 return wolopts;
1129}
1130
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001131static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1132{
1133 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001134
1135 spin_lock_irq(&tp->lock);
1136
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001137 wol->supported = WAKE_ANY;
1138 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001139
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001140 spin_unlock_irq(&tp->lock);
1141}
1142
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001143static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001144{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001145 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001146 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001147 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001148 u32 opt;
1149 u16 reg;
1150 u8 mask;
1151 } cfg[] = {
1152 { WAKE_ANY, Config1, PMEnable },
1153 { WAKE_PHY, Config3, LinkUp },
1154 { WAKE_MAGIC, Config3, MagicPacket },
1155 { WAKE_UCAST, Config5, UWF },
1156 { WAKE_BCAST, Config5, BWF },
1157 { WAKE_MCAST, Config5, MWF },
1158 { WAKE_ANY, Config5, LanWake }
1159 };
1160
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001161 RTL_W8(Cfg9346, Cfg9346_Unlock);
1162
1163 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1164 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001165 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001166 options |= cfg[i].mask;
1167 RTL_W8(cfg[i].reg, options);
1168 }
1169
1170 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001171}
1172
1173static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1174{
1175 struct rtl8169_private *tp = netdev_priv(dev);
1176
1177 spin_lock_irq(&tp->lock);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001178
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001179 if (wol->wolopts)
1180 tp->features |= RTL_FEATURE_WOL;
1181 else
1182 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001183 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001184 spin_unlock_irq(&tp->lock);
1185
françois romieuea809072010-11-08 13:23:58 +00001186 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1187
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001188 return 0;
1189}
1190
Francois Romieu31bd2042011-04-26 18:58:59 +02001191static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1192{
1193 int i;
1194
1195 for (i = 0; i < ARRAY_SIZE(rtl_firmware_infos); i++) {
1196 const struct rtl_firmware_info *info = rtl_firmware_infos + i;
1197
1198 if (info->mac_version == tp->mac_version)
1199 return info->fw_name;
1200 }
1201 return NULL;
1202}
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204static void rtl8169_get_drvinfo(struct net_device *dev,
1205 struct ethtool_drvinfo *info)
1206{
1207 struct rtl8169_private *tp = netdev_priv(dev);
1208
1209 strcpy(info->driver, MODULENAME);
1210 strcpy(info->version, RTL8169_VERSION);
1211 strcpy(info->bus_info, pci_name(tp->pci_dev));
Francois Romieu31bd2042011-04-26 18:58:59 +02001212 strncpy(info->fw_version, IS_ERR_OR_NULL(tp->fw) ? "N/A" :
1213 rtl_lookup_firmware_name(tp), sizeof(info->fw_version) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
1216static int rtl8169_get_regs_len(struct net_device *dev)
1217{
1218 return R8169_REGS_SIZE;
1219}
1220
1221static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001222 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
1224 struct rtl8169_private *tp = netdev_priv(dev);
1225 void __iomem *ioaddr = tp->mmio_addr;
1226 int ret = 0;
1227 u32 reg;
1228
1229 reg = RTL_R32(TBICSR);
1230 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1231 (duplex == DUPLEX_FULL)) {
1232 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1233 } else if (autoneg == AUTONEG_ENABLE)
1234 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1235 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001236 netif_warn(tp, link, dev,
1237 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 ret = -EOPNOTSUPP;
1239 }
1240
1241 return ret;
1242}
1243
1244static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001245 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
1247 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001248 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001249 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Hayes Wang716b50a2011-02-22 17:26:18 +08001251 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001254 int auto_nego;
1255
françois romieu4da19632011-01-03 15:07:55 +00001256 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001257 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1258 ADVERTISE_100HALF | ADVERTISE_100FULL);
1259
1260 if (adv & ADVERTISED_10baseT_Half)
1261 auto_nego |= ADVERTISE_10HALF;
1262 if (adv & ADVERTISED_10baseT_Full)
1263 auto_nego |= ADVERTISE_10FULL;
1264 if (adv & ADVERTISED_100baseT_Half)
1265 auto_nego |= ADVERTISE_100HALF;
1266 if (adv & ADVERTISED_100baseT_Full)
1267 auto_nego |= ADVERTISE_100FULL;
1268
françois romieu3577aa12009-05-19 10:46:48 +00001269 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1270
françois romieu4da19632011-01-03 15:07:55 +00001271 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001272 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1273
1274 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001275 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001276 if (adv & ADVERTISED_1000baseT_Half)
1277 giga_ctrl |= ADVERTISE_1000HALF;
1278 if (adv & ADVERTISED_1000baseT_Full)
1279 giga_ctrl |= ADVERTISE_1000FULL;
1280 } else if (adv & (ADVERTISED_1000baseT_Half |
1281 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001282 netif_info(tp, link, dev,
1283 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001284 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
françois romieu3577aa12009-05-19 10:46:48 +00001287 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001288
françois romieu4da19632011-01-03 15:07:55 +00001289 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1290 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001291 } else {
1292 giga_ctrl = 0;
1293
1294 if (speed == SPEED_10)
1295 bmcr = 0;
1296 else if (speed == SPEED_100)
1297 bmcr = BMCR_SPEED100;
1298 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001299 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001300
1301 if (duplex == DUPLEX_FULL)
1302 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001303 }
1304
françois romieu4da19632011-01-03 15:07:55 +00001305 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001306
Francois Romieucecb5fd2011-04-01 10:21:07 +02001307 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1308 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001309 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001310 rtl_writephy(tp, 0x17, 0x2138);
1311 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001312 } else {
françois romieu4da19632011-01-03 15:07:55 +00001313 rtl_writephy(tp, 0x17, 0x2108);
1314 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001315 }
1316 }
1317
Oliver Neukum54405cd2011-01-06 21:55:13 +01001318 rc = 0;
1319out:
1320 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
1323static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001324 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
1326 struct rtl8169_private *tp = netdev_priv(dev);
1327 int ret;
1328
Oliver Neukum54405cd2011-01-06 21:55:13 +01001329 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001330 if (ret < 0)
1331 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Francois Romieu4876cc12011-03-11 21:07:11 +01001333 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1334 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001336 }
1337out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return ret;
1339}
1340
1341static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1342{
1343 struct rtl8169_private *tp = netdev_priv(dev);
1344 unsigned long flags;
1345 int ret;
1346
Francois Romieu4876cc12011-03-11 21:07:11 +01001347 del_timer_sync(&tp->timer);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 spin_lock_irqsave(&tp->lock, flags);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001350 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001351 cmd->duplex, cmd->advertising);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return ret;
1355}
1356
Michał Mirosław350fb322011-04-08 06:35:56 +00001357static u32 rtl8169_fix_features(struct net_device *dev, u32 features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Francois Romieu2b7b4312011-04-18 22:53:24 -07001359 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001360 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Michał Mirosław350fb322011-04-08 06:35:56 +00001362 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
Michał Mirosław350fb322011-04-08 06:35:56 +00001365static int rtl8169_set_features(struct net_device *dev, u32 features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
1367 struct rtl8169_private *tp = netdev_priv(dev);
1368 void __iomem *ioaddr = tp->mmio_addr;
1369 unsigned long flags;
1370
1371 spin_lock_irqsave(&tp->lock, flags);
1372
Michał Mirosław350fb322011-04-08 06:35:56 +00001373 if (features & NETIF_F_RXCSUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 tp->cp_cmd |= RxChkSum;
1375 else
1376 tp->cp_cmd &= ~RxChkSum;
1377
Michał Mirosław350fb322011-04-08 06:35:56 +00001378 if (dev->features & NETIF_F_HW_VLAN_RX)
1379 tp->cp_cmd |= RxVlan;
1380 else
1381 tp->cp_cmd &= ~RxVlan;
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 RTL_W16(CPlusCmd, tp->cp_cmd);
1384 RTL_R16(CPlusCmd);
1385
1386 spin_unlock_irqrestore(&tp->lock, flags);
1387
1388 return 0;
1389}
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1392 struct sk_buff *skb)
1393{
Jesse Grosseab6d182010-10-20 13:56:03 +00001394 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1396}
1397
Francois Romieu7a8fc772011-03-01 17:18:33 +01001398static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
1400 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Francois Romieu7a8fc772011-03-01 17:18:33 +01001402 if (opts2 & RxVlanTag)
1403 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Eric Dumazet2edae082010-09-06 18:46:39 +00001404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 desc->opts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
Francois Romieuccdffb92008-07-26 14:26:06 +02001408static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 struct rtl8169_private *tp = netdev_priv(dev);
1411 void __iomem *ioaddr = tp->mmio_addr;
1412 u32 status;
1413
1414 cmd->supported =
1415 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1416 cmd->port = PORT_FIBRE;
1417 cmd->transceiver = XCVR_INTERNAL;
1418
1419 status = RTL_R32(TBICSR);
1420 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1421 cmd->autoneg = !!(status & TBINwEnable);
1422
David Decotigny70739492011-04-27 18:32:40 +00001423 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001425
1426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427}
1428
Francois Romieuccdffb92008-07-26 14:26:06 +02001429static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
1431 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Francois Romieuccdffb92008-07-26 14:26:06 +02001433 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
1436static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1437{
1438 struct rtl8169_private *tp = netdev_priv(dev);
1439 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +02001440 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 spin_lock_irqsave(&tp->lock, flags);
1443
Francois Romieuccdffb92008-07-26 14:26:06 +02001444 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +02001447 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1451 void *p)
1452{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001453 struct rtl8169_private *tp = netdev_priv(dev);
1454 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Francois Romieu5b0384f2006-08-16 16:00:01 +02001456 if (regs->len > R8169_REGS_SIZE)
1457 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Francois Romieu5b0384f2006-08-16 16:00:01 +02001459 spin_lock_irqsave(&tp->lock, flags);
1460 memcpy_fromio(p, tp->mmio_addr, regs->len);
1461 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001464static u32 rtl8169_get_msglevel(struct net_device *dev)
1465{
1466 struct rtl8169_private *tp = netdev_priv(dev);
1467
1468 return tp->msg_enable;
1469}
1470
1471static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1472{
1473 struct rtl8169_private *tp = netdev_priv(dev);
1474
1475 tp->msg_enable = value;
1476}
1477
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001478static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1479 "tx_packets",
1480 "rx_packets",
1481 "tx_errors",
1482 "rx_errors",
1483 "rx_missed",
1484 "align_errors",
1485 "tx_single_collisions",
1486 "tx_multi_collisions",
1487 "unicast",
1488 "broadcast",
1489 "multicast",
1490 "tx_aborted",
1491 "tx_underrun",
1492};
1493
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001494static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001495{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001496 switch (sset) {
1497 case ETH_SS_STATS:
1498 return ARRAY_SIZE(rtl8169_gstrings);
1499 default:
1500 return -EOPNOTSUPP;
1501 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001502}
1503
Ivan Vecera355423d2009-02-06 21:49:57 -08001504static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001505{
1506 struct rtl8169_private *tp = netdev_priv(dev);
1507 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001508 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001509 struct rtl8169_counters *counters;
1510 dma_addr_t paddr;
1511 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001512 int wait = 1000;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001513
Ivan Vecera355423d2009-02-06 21:49:57 -08001514 /*
1515 * Some chips are unable to dump tally counters when the receiver
1516 * is disabled.
1517 */
1518 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1519 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001520
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001521 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001522 if (!counters)
1523 return;
1524
1525 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001526 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001527 RTL_W32(CounterAddrLow, cmd);
1528 RTL_W32(CounterAddrLow, cmd | CounterDump);
1529
Ivan Vecera355423d2009-02-06 21:49:57 -08001530 while (wait--) {
1531 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
Ivan Vecera355423d2009-02-06 21:49:57 -08001532 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001533 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001534 }
1535 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001536 }
1537
1538 RTL_W32(CounterAddrLow, 0);
1539 RTL_W32(CounterAddrHigh, 0);
1540
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001541 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001542}
1543
Ivan Vecera355423d2009-02-06 21:49:57 -08001544static void rtl8169_get_ethtool_stats(struct net_device *dev,
1545 struct ethtool_stats *stats, u64 *data)
1546{
1547 struct rtl8169_private *tp = netdev_priv(dev);
1548
1549 ASSERT_RTNL();
1550
1551 rtl8169_update_counters(dev);
1552
1553 data[0] = le64_to_cpu(tp->counters.tx_packets);
1554 data[1] = le64_to_cpu(tp->counters.rx_packets);
1555 data[2] = le64_to_cpu(tp->counters.tx_errors);
1556 data[3] = le32_to_cpu(tp->counters.rx_errors);
1557 data[4] = le16_to_cpu(tp->counters.rx_missed);
1558 data[5] = le16_to_cpu(tp->counters.align_errors);
1559 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1560 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1561 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1562 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1563 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1564 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1565 data[12] = le16_to_cpu(tp->counters.tx_underun);
1566}
1567
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001568static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1569{
1570 switch(stringset) {
1571 case ETH_SS_STATS:
1572 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1573 break;
1574 }
1575}
1576
Jeff Garzik7282d492006-09-13 14:30:00 -04001577static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 .get_drvinfo = rtl8169_get_drvinfo,
1579 .get_regs_len = rtl8169_get_regs_len,
1580 .get_link = ethtool_op_get_link,
1581 .get_settings = rtl8169_get_settings,
1582 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001583 .get_msglevel = rtl8169_get_msglevel,
1584 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001586 .get_wol = rtl8169_get_wol,
1587 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001588 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001589 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001590 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591};
1592
Francois Romieu07d3f512007-02-21 22:40:46 +01001593static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1594 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Francois Romieu0e485152007-02-20 00:00:26 +01001596 /*
1597 * The driver currently handles the 8168Bf and the 8168Be identically
1598 * but they can be identified more specifically through the test below
1599 * if needed:
1600 *
1601 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001602 *
1603 * Same thing for the 8101Eb and the 8101Ec:
1604 *
1605 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001606 */
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001607 static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001609 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 int mac_version;
1611 } mac_info[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00001612 /* 8168E family. */
1613 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
1614 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
1615 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
1616
Francois Romieu5b538df2008-07-20 16:22:45 +02001617 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001618 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1619 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001620 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001621
françois romieue6de30d2011-01-03 15:08:37 +00001622 /* 8168DP family. */
1623 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1624 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00001625 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00001626
Francois Romieuef808d52008-06-29 13:10:54 +02001627 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001628 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001629 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001630 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001631 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001632 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1633 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001634 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001635 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001636 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001637
1638 /* 8168B family. */
1639 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1640 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1641 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1642 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1643
1644 /* 8101 family. */
hayeswang36a0e6c2011-03-21 01:50:30 +00001645 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08001646 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
1647 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
1648 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001649 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1650 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1651 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1652 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1653 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1654 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001655 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001656 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001657 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001658 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1659 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001660 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1661 /* FIXME: where did these entries come from ? -- FR */
1662 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1663 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1664
1665 /* 8110 family. */
1666 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1667 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1668 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1669 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1670 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1671 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1672
Jean Delvaref21b75e2009-05-26 20:54:48 -07001673 /* Catch-all */
1674 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }, *p = mac_info;
1676 u32 reg;
1677
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001678 reg = RTL_R32(TxConfig);
1679 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 p++;
1681 tp->mac_version = p->mac_version;
1682}
1683
1684static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1685{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001686 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
Francois Romieu867763c2007-08-17 18:21:58 +02001689struct phy_reg {
1690 u16 reg;
1691 u16 val;
1692};
1693
françois romieu4da19632011-01-03 15:07:55 +00001694static void rtl_writephy_batch(struct rtl8169_private *tp,
1695 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001696{
1697 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001698 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001699 regs++;
1700 }
1701}
1702
françois romieubca03d52011-01-03 15:07:31 +00001703#define PHY_READ 0x00000000
1704#define PHY_DATA_OR 0x10000000
1705#define PHY_DATA_AND 0x20000000
1706#define PHY_BJMPN 0x30000000
1707#define PHY_READ_EFUSE 0x40000000
1708#define PHY_READ_MAC_BYTE 0x50000000
1709#define PHY_WRITE_MAC_BYTE 0x60000000
1710#define PHY_CLEAR_READCOUNT 0x70000000
1711#define PHY_WRITE 0x80000000
1712#define PHY_READCOUNT_EQ_SKIP 0x90000000
1713#define PHY_COMP_EQ_SKIPN 0xa0000000
1714#define PHY_COMP_NEQ_SKIPN 0xb0000000
1715#define PHY_WRITE_PREVIOUS 0xc0000000
1716#define PHY_SKIPN 0xd0000000
1717#define PHY_DELAY_MS 0xe0000000
1718#define PHY_WRITE_ERI_WORD 0xf0000000
1719
1720static void
1721rtl_phy_write_fw(struct rtl8169_private *tp, const struct firmware *fw)
1722{
françois romieubca03d52011-01-03 15:07:31 +00001723 __le32 *phytable = (__le32 *)fw->data;
1724 struct net_device *dev = tp->dev;
hayeswang42b82dc2011-01-10 02:07:25 +00001725 size_t index, fw_size = fw->size / sizeof(*phytable);
1726 u32 predata, count;
françois romieubca03d52011-01-03 15:07:31 +00001727
1728 if (fw->size % sizeof(*phytable)) {
1729 netif_err(tp, probe, dev, "odd sized firmware %zd\n", fw->size);
1730 return;
1731 }
1732
hayeswang42b82dc2011-01-10 02:07:25 +00001733 for (index = 0; index < fw_size; index++) {
1734 u32 action = le32_to_cpu(phytable[index]);
1735 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00001736
hayeswang42b82dc2011-01-10 02:07:25 +00001737 switch(action & 0xf0000000) {
1738 case PHY_READ:
1739 case PHY_DATA_OR:
1740 case PHY_DATA_AND:
1741 case PHY_READ_EFUSE:
1742 case PHY_CLEAR_READCOUNT:
1743 case PHY_WRITE:
1744 case PHY_WRITE_PREVIOUS:
1745 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00001746 break;
1747
hayeswang42b82dc2011-01-10 02:07:25 +00001748 case PHY_BJMPN:
1749 if (regno > index) {
1750 netif_err(tp, probe, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001751 "Out of range of firmware\n");
hayeswang42b82dc2011-01-10 02:07:25 +00001752 return;
1753 }
1754 break;
1755 case PHY_READCOUNT_EQ_SKIP:
1756 if (index + 2 >= fw_size) {
1757 netif_err(tp, probe, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001758 "Out of range of firmware\n");
hayeswang42b82dc2011-01-10 02:07:25 +00001759 return;
1760 }
1761 break;
1762 case PHY_COMP_EQ_SKIPN:
1763 case PHY_COMP_NEQ_SKIPN:
1764 case PHY_SKIPN:
1765 if (index + 1 + regno >= fw_size) {
1766 netif_err(tp, probe, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001767 "Out of range of firmware\n");
hayeswang42b82dc2011-01-10 02:07:25 +00001768 return;
1769 }
1770 break;
1771
1772 case PHY_READ_MAC_BYTE:
1773 case PHY_WRITE_MAC_BYTE:
1774 case PHY_WRITE_ERI_WORD:
1775 default:
1776 netif_err(tp, probe, tp->dev,
1777 "Invalid action 0x%08x\n", action);
françois romieubca03d52011-01-03 15:07:31 +00001778 return;
1779 }
1780 }
1781
hayeswang42b82dc2011-01-10 02:07:25 +00001782 predata = 0;
1783 count = 0;
1784
1785 for (index = 0; index < fw_size; ) {
1786 u32 action = le32_to_cpu(phytable[index]);
françois romieubca03d52011-01-03 15:07:31 +00001787 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00001788 u32 regno = (action & 0x0fff0000) >> 16;
1789
1790 if (!action)
1791 break;
françois romieubca03d52011-01-03 15:07:31 +00001792
1793 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00001794 case PHY_READ:
1795 predata = rtl_readphy(tp, regno);
1796 count++;
1797 index++;
françois romieubca03d52011-01-03 15:07:31 +00001798 break;
hayeswang42b82dc2011-01-10 02:07:25 +00001799 case PHY_DATA_OR:
1800 predata |= data;
1801 index++;
1802 break;
1803 case PHY_DATA_AND:
1804 predata &= data;
1805 index++;
1806 break;
1807 case PHY_BJMPN:
1808 index -= regno;
1809 break;
1810 case PHY_READ_EFUSE:
1811 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
1812 index++;
1813 break;
1814 case PHY_CLEAR_READCOUNT:
1815 count = 0;
1816 index++;
1817 break;
1818 case PHY_WRITE:
1819 rtl_writephy(tp, regno, data);
1820 index++;
1821 break;
1822 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02001823 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00001824 break;
1825 case PHY_COMP_EQ_SKIPN:
1826 if (predata == data)
1827 index += regno;
1828 index++;
1829 break;
1830 case PHY_COMP_NEQ_SKIPN:
1831 if (predata != data)
1832 index += regno;
1833 index++;
1834 break;
1835 case PHY_WRITE_PREVIOUS:
1836 rtl_writephy(tp, regno, predata);
1837 index++;
1838 break;
1839 case PHY_SKIPN:
1840 index += regno + 1;
1841 break;
1842 case PHY_DELAY_MS:
1843 mdelay(data);
1844 index++;
1845 break;
1846
1847 case PHY_READ_MAC_BYTE:
1848 case PHY_WRITE_MAC_BYTE:
1849 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00001850 default:
1851 BUG();
1852 }
1853 }
1854}
1855
françois romieuf1e02ed2011-01-13 13:07:53 +00001856static void rtl_release_firmware(struct rtl8169_private *tp)
1857{
François Romieu953a12c2011-04-24 17:38:48 +02001858 if (!IS_ERR_OR_NULL(tp->fw))
1859 release_firmware(tp->fw);
1860 tp->fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00001861}
1862
François Romieu953a12c2011-04-24 17:38:48 +02001863static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00001864{
François Romieu953a12c2011-04-24 17:38:48 +02001865 const struct firmware *fw = tp->fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00001866
1867 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
François Romieu953a12c2011-04-24 17:38:48 +02001868 if (!IS_ERR_OR_NULL(fw))
1869 rtl_phy_write_fw(tp, fw);
1870}
1871
1872static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
1873{
1874 if (rtl_readphy(tp, reg) != val)
1875 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
1876 else
1877 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00001878}
1879
françois romieu4da19632011-01-03 15:07:55 +00001880static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001882 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00001883 { 0x1f, 0x0001 },
1884 { 0x06, 0x006e },
1885 { 0x08, 0x0708 },
1886 { 0x15, 0x4000 },
1887 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
françois romieu0b9b5712009-08-10 19:44:56 +00001889 { 0x1f, 0x0001 },
1890 { 0x03, 0x00a1 },
1891 { 0x02, 0x0008 },
1892 { 0x01, 0x0120 },
1893 { 0x00, 0x1000 },
1894 { 0x04, 0x0800 },
1895 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
françois romieu0b9b5712009-08-10 19:44:56 +00001897 { 0x03, 0xff41 },
1898 { 0x02, 0xdf60 },
1899 { 0x01, 0x0140 },
1900 { 0x00, 0x0077 },
1901 { 0x04, 0x7800 },
1902 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
françois romieu0b9b5712009-08-10 19:44:56 +00001904 { 0x03, 0x802f },
1905 { 0x02, 0x4f02 },
1906 { 0x01, 0x0409 },
1907 { 0x00, 0xf0f9 },
1908 { 0x04, 0x9800 },
1909 { 0x04, 0x9000 },
1910
1911 { 0x03, 0xdf01 },
1912 { 0x02, 0xdf20 },
1913 { 0x01, 0xff95 },
1914 { 0x00, 0xba00 },
1915 { 0x04, 0xa800 },
1916 { 0x04, 0xa000 },
1917
1918 { 0x03, 0xff41 },
1919 { 0x02, 0xdf20 },
1920 { 0x01, 0x0140 },
1921 { 0x00, 0x00bb },
1922 { 0x04, 0xb800 },
1923 { 0x04, 0xb000 },
1924
1925 { 0x03, 0xdf41 },
1926 { 0x02, 0xdc60 },
1927 { 0x01, 0x6340 },
1928 { 0x00, 0x007d },
1929 { 0x04, 0xd800 },
1930 { 0x04, 0xd000 },
1931
1932 { 0x03, 0xdf01 },
1933 { 0x02, 0xdf20 },
1934 { 0x01, 0x100a },
1935 { 0x00, 0xa0ff },
1936 { 0x04, 0xf800 },
1937 { 0x04, 0xf000 },
1938
1939 { 0x1f, 0x0000 },
1940 { 0x0b, 0x0000 },
1941 { 0x00, 0x9200 }
1942 };
1943
françois romieu4da19632011-01-03 15:07:55 +00001944 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945}
1946
françois romieu4da19632011-01-03 15:07:55 +00001947static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02001948{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001949 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02001950 { 0x1f, 0x0002 },
1951 { 0x01, 0x90d0 },
1952 { 0x1f, 0x0000 }
1953 };
1954
françois romieu4da19632011-01-03 15:07:55 +00001955 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001956}
1957
françois romieu4da19632011-01-03 15:07:55 +00001958static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001959{
1960 struct pci_dev *pdev = tp->pci_dev;
1961 u16 vendor_id, device_id;
1962
1963 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
1964 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
1965
1966 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
1967 return;
1968
françois romieu4da19632011-01-03 15:07:55 +00001969 rtl_writephy(tp, 0x1f, 0x0001);
1970 rtl_writephy(tp, 0x10, 0xf01b);
1971 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00001972}
1973
françois romieu4da19632011-01-03 15:07:55 +00001974static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001975{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001976 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00001977 { 0x1f, 0x0001 },
1978 { 0x04, 0x0000 },
1979 { 0x03, 0x00a1 },
1980 { 0x02, 0x0008 },
1981 { 0x01, 0x0120 },
1982 { 0x00, 0x1000 },
1983 { 0x04, 0x0800 },
1984 { 0x04, 0x9000 },
1985 { 0x03, 0x802f },
1986 { 0x02, 0x4f02 },
1987 { 0x01, 0x0409 },
1988 { 0x00, 0xf099 },
1989 { 0x04, 0x9800 },
1990 { 0x04, 0xa000 },
1991 { 0x03, 0xdf01 },
1992 { 0x02, 0xdf20 },
1993 { 0x01, 0xff95 },
1994 { 0x00, 0xba00 },
1995 { 0x04, 0xa800 },
1996 { 0x04, 0xf000 },
1997 { 0x03, 0xdf01 },
1998 { 0x02, 0xdf20 },
1999 { 0x01, 0x101a },
2000 { 0x00, 0xa0ff },
2001 { 0x04, 0xf800 },
2002 { 0x04, 0x0000 },
2003 { 0x1f, 0x0000 },
2004
2005 { 0x1f, 0x0001 },
2006 { 0x10, 0xf41b },
2007 { 0x14, 0xfb54 },
2008 { 0x18, 0xf5c7 },
2009 { 0x1f, 0x0000 },
2010
2011 { 0x1f, 0x0001 },
2012 { 0x17, 0x0cc0 },
2013 { 0x1f, 0x0000 }
2014 };
2015
françois romieu4da19632011-01-03 15:07:55 +00002016 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002017
françois romieu4da19632011-01-03 15:07:55 +00002018 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002019}
2020
françois romieu4da19632011-01-03 15:07:55 +00002021static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002022{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002023 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002024 { 0x1f, 0x0001 },
2025 { 0x04, 0x0000 },
2026 { 0x03, 0x00a1 },
2027 { 0x02, 0x0008 },
2028 { 0x01, 0x0120 },
2029 { 0x00, 0x1000 },
2030 { 0x04, 0x0800 },
2031 { 0x04, 0x9000 },
2032 { 0x03, 0x802f },
2033 { 0x02, 0x4f02 },
2034 { 0x01, 0x0409 },
2035 { 0x00, 0xf099 },
2036 { 0x04, 0x9800 },
2037 { 0x04, 0xa000 },
2038 { 0x03, 0xdf01 },
2039 { 0x02, 0xdf20 },
2040 { 0x01, 0xff95 },
2041 { 0x00, 0xba00 },
2042 { 0x04, 0xa800 },
2043 { 0x04, 0xf000 },
2044 { 0x03, 0xdf01 },
2045 { 0x02, 0xdf20 },
2046 { 0x01, 0x101a },
2047 { 0x00, 0xa0ff },
2048 { 0x04, 0xf800 },
2049 { 0x04, 0x0000 },
2050 { 0x1f, 0x0000 },
2051
2052 { 0x1f, 0x0001 },
2053 { 0x0b, 0x8480 },
2054 { 0x1f, 0x0000 },
2055
2056 { 0x1f, 0x0001 },
2057 { 0x18, 0x67c7 },
2058 { 0x04, 0x2000 },
2059 { 0x03, 0x002f },
2060 { 0x02, 0x4360 },
2061 { 0x01, 0x0109 },
2062 { 0x00, 0x3022 },
2063 { 0x04, 0x2800 },
2064 { 0x1f, 0x0000 },
2065
2066 { 0x1f, 0x0001 },
2067 { 0x17, 0x0cc0 },
2068 { 0x1f, 0x0000 }
2069 };
2070
françois romieu4da19632011-01-03 15:07:55 +00002071 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002072}
2073
françois romieu4da19632011-01-03 15:07:55 +00002074static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002075{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002076 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002077 { 0x10, 0xf41b },
2078 { 0x1f, 0x0000 }
2079 };
2080
françois romieu4da19632011-01-03 15:07:55 +00002081 rtl_writephy(tp, 0x1f, 0x0001);
2082 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002083
françois romieu4da19632011-01-03 15:07:55 +00002084 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002085}
2086
françois romieu4da19632011-01-03 15:07:55 +00002087static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002088{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002089 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002090 { 0x1f, 0x0001 },
2091 { 0x10, 0xf41b },
2092 { 0x1f, 0x0000 }
2093 };
2094
françois romieu4da19632011-01-03 15:07:55 +00002095 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002096}
2097
françois romieu4da19632011-01-03 15:07:55 +00002098static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002099{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002100 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002101 { 0x1f, 0x0000 },
2102 { 0x1d, 0x0f00 },
2103 { 0x1f, 0x0002 },
2104 { 0x0c, 0x1ec8 },
2105 { 0x1f, 0x0000 }
2106 };
2107
françois romieu4da19632011-01-03 15:07:55 +00002108 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002109}
2110
françois romieu4da19632011-01-03 15:07:55 +00002111static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002112{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002113 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002114 { 0x1f, 0x0001 },
2115 { 0x1d, 0x3d98 },
2116 { 0x1f, 0x0000 }
2117 };
2118
françois romieu4da19632011-01-03 15:07:55 +00002119 rtl_writephy(tp, 0x1f, 0x0000);
2120 rtl_patchphy(tp, 0x14, 1 << 5);
2121 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002122
françois romieu4da19632011-01-03 15:07:55 +00002123 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002124}
2125
françois romieu4da19632011-01-03 15:07:55 +00002126static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002127{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002128 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002129 { 0x1f, 0x0001 },
2130 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002131 { 0x1f, 0x0002 },
2132 { 0x00, 0x88d4 },
2133 { 0x01, 0x82b1 },
2134 { 0x03, 0x7002 },
2135 { 0x08, 0x9e30 },
2136 { 0x09, 0x01f0 },
2137 { 0x0a, 0x5500 },
2138 { 0x0c, 0x00c8 },
2139 { 0x1f, 0x0003 },
2140 { 0x12, 0xc096 },
2141 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002142 { 0x1f, 0x0000 },
2143 { 0x1f, 0x0000 },
2144 { 0x09, 0x2000 },
2145 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002146 };
2147
françois romieu4da19632011-01-03 15:07:55 +00002148 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002149
françois romieu4da19632011-01-03 15:07:55 +00002150 rtl_patchphy(tp, 0x14, 1 << 5);
2151 rtl_patchphy(tp, 0x0d, 1 << 5);
2152 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002153}
2154
françois romieu4da19632011-01-03 15:07:55 +00002155static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002156{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002157 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002158 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002159 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002160 { 0x03, 0x802f },
2161 { 0x02, 0x4f02 },
2162 { 0x01, 0x0409 },
2163 { 0x00, 0xf099 },
2164 { 0x04, 0x9800 },
2165 { 0x04, 0x9000 },
2166 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002167 { 0x1f, 0x0002 },
2168 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002169 { 0x06, 0x0761 },
2170 { 0x1f, 0x0003 },
2171 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002172 { 0x1f, 0x0000 }
2173 };
2174
françois romieu4da19632011-01-03 15:07:55 +00002175 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002176
françois romieu4da19632011-01-03 15:07:55 +00002177 rtl_patchphy(tp, 0x16, 1 << 0);
2178 rtl_patchphy(tp, 0x14, 1 << 5);
2179 rtl_patchphy(tp, 0x0d, 1 << 5);
2180 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002181}
2182
françois romieu4da19632011-01-03 15:07:55 +00002183static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002184{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002185 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002186 { 0x1f, 0x0001 },
2187 { 0x12, 0x2300 },
2188 { 0x1d, 0x3d98 },
2189 { 0x1f, 0x0002 },
2190 { 0x0c, 0x7eb8 },
2191 { 0x06, 0x5461 },
2192 { 0x1f, 0x0003 },
2193 { 0x16, 0x0f0a },
2194 { 0x1f, 0x0000 }
2195 };
2196
françois romieu4da19632011-01-03 15:07:55 +00002197 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002198
françois romieu4da19632011-01-03 15:07:55 +00002199 rtl_patchphy(tp, 0x16, 1 << 0);
2200 rtl_patchphy(tp, 0x14, 1 << 5);
2201 rtl_patchphy(tp, 0x0d, 1 << 5);
2202 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002203}
2204
françois romieu4da19632011-01-03 15:07:55 +00002205static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002206{
françois romieu4da19632011-01-03 15:07:55 +00002207 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002208}
2209
françois romieubca03d52011-01-03 15:07:31 +00002210static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002211{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002212 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002213 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002214 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002215 { 0x06, 0x4064 },
2216 { 0x07, 0x2863 },
2217 { 0x08, 0x059c },
2218 { 0x09, 0x26b4 },
2219 { 0x0a, 0x6a19 },
2220 { 0x0b, 0xdcc8 },
2221 { 0x10, 0xf06d },
2222 { 0x14, 0x7f68 },
2223 { 0x18, 0x7fd9 },
2224 { 0x1c, 0xf0ff },
2225 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002226 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002227 { 0x12, 0xf49f },
2228 { 0x13, 0x070b },
2229 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002230 { 0x14, 0x94c0 },
2231
2232 /*
2233 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002234 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002235 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002236 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002237 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002238 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002239 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002240 { 0x06, 0x5561 },
2241
2242 /*
2243 * Can not link to 1Gbps with bad cable
2244 * Decrease SNR threshold form 21.07dB to 19.04dB
2245 */
2246 { 0x1f, 0x0001 },
2247 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002248
2249 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002250 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002251 };
françois romieubca03d52011-01-03 15:07:31 +00002252 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002253
françois romieu4da19632011-01-03 15:07:55 +00002254 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002255
françois romieubca03d52011-01-03 15:07:31 +00002256 /*
2257 * Rx Error Issue
2258 * Fine Tune Switching regulator parameter
2259 */
françois romieu4da19632011-01-03 15:07:55 +00002260 rtl_writephy(tp, 0x1f, 0x0002);
2261 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2262 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002263
françois romieudaf9df62009-10-07 12:44:20 +00002264 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002265 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002266 { 0x1f, 0x0002 },
2267 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002268 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002269 { 0x05, 0x8330 },
2270 { 0x06, 0x669a },
2271 { 0x1f, 0x0002 }
2272 };
2273 int val;
2274
françois romieu4da19632011-01-03 15:07:55 +00002275 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002276
françois romieu4da19632011-01-03 15:07:55 +00002277 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002278
2279 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002280 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002281 0x0065, 0x0066, 0x0067, 0x0068,
2282 0x0069, 0x006a, 0x006b, 0x006c
2283 };
2284 int i;
2285
françois romieu4da19632011-01-03 15:07:55 +00002286 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002287
2288 val &= 0xff00;
2289 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002290 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002291 }
2292 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002293 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002294 { 0x1f, 0x0002 },
2295 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002296 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002297 { 0x05, 0x8330 },
2298 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002299 };
2300
françois romieu4da19632011-01-03 15:07:55 +00002301 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002302 }
2303
françois romieubca03d52011-01-03 15:07:31 +00002304 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002305 rtl_writephy(tp, 0x1f, 0x0002);
2306 rtl_patchphy(tp, 0x0d, 0x0300);
2307 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002308
françois romieubca03d52011-01-03 15:07:31 +00002309 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002310 rtl_writephy(tp, 0x1f, 0x0002);
2311 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2312 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002313
françois romieu4da19632011-01-03 15:07:55 +00002314 rtl_writephy(tp, 0x1f, 0x0005);
2315 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002316
2317 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002318
françois romieu4da19632011-01-03 15:07:55 +00002319 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002320}
2321
françois romieubca03d52011-01-03 15:07:31 +00002322static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002323{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002324 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002325 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002326 { 0x1f, 0x0001 },
2327 { 0x06, 0x4064 },
2328 { 0x07, 0x2863 },
2329 { 0x08, 0x059c },
2330 { 0x09, 0x26b4 },
2331 { 0x0a, 0x6a19 },
2332 { 0x0b, 0xdcc8 },
2333 { 0x10, 0xf06d },
2334 { 0x14, 0x7f68 },
2335 { 0x18, 0x7fd9 },
2336 { 0x1c, 0xf0ff },
2337 { 0x1d, 0x3d9c },
2338 { 0x1f, 0x0003 },
2339 { 0x12, 0xf49f },
2340 { 0x13, 0x070b },
2341 { 0x1a, 0x05ad },
2342 { 0x14, 0x94c0 },
2343
françois romieubca03d52011-01-03 15:07:31 +00002344 /*
2345 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002346 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002347 */
françois romieudaf9df62009-10-07 12:44:20 +00002348 { 0x1f, 0x0002 },
2349 { 0x06, 0x5561 },
2350 { 0x1f, 0x0005 },
2351 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002352 { 0x06, 0x5561 },
2353
2354 /*
2355 * Can not link to 1Gbps with bad cable
2356 * Decrease SNR threshold form 21.07dB to 19.04dB
2357 */
2358 { 0x1f, 0x0001 },
2359 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002360
2361 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002362 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002363 };
françois romieubca03d52011-01-03 15:07:31 +00002364 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002365
françois romieu4da19632011-01-03 15:07:55 +00002366 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002367
2368 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002369 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002370 { 0x1f, 0x0002 },
2371 { 0x05, 0x669a },
2372 { 0x1f, 0x0005 },
2373 { 0x05, 0x8330 },
2374 { 0x06, 0x669a },
2375
2376 { 0x1f, 0x0002 }
2377 };
2378 int val;
2379
françois romieu4da19632011-01-03 15:07:55 +00002380 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002381
françois romieu4da19632011-01-03 15:07:55 +00002382 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002383 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002384 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002385 0x0065, 0x0066, 0x0067, 0x0068,
2386 0x0069, 0x006a, 0x006b, 0x006c
2387 };
2388 int i;
2389
françois romieu4da19632011-01-03 15:07:55 +00002390 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002391
2392 val &= 0xff00;
2393 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002394 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002395 }
2396 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002397 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002398 { 0x1f, 0x0002 },
2399 { 0x05, 0x2642 },
2400 { 0x1f, 0x0005 },
2401 { 0x05, 0x8330 },
2402 { 0x06, 0x2642 }
2403 };
2404
françois romieu4da19632011-01-03 15:07:55 +00002405 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002406 }
2407
françois romieubca03d52011-01-03 15:07:31 +00002408 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002409 rtl_writephy(tp, 0x1f, 0x0002);
2410 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2411 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002412
françois romieubca03d52011-01-03 15:07:31 +00002413 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002414 rtl_writephy(tp, 0x1f, 0x0002);
2415 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002416
françois romieu4da19632011-01-03 15:07:55 +00002417 rtl_writephy(tp, 0x1f, 0x0005);
2418 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002419
2420 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002421
françois romieu4da19632011-01-03 15:07:55 +00002422 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002423}
2424
françois romieu4da19632011-01-03 15:07:55 +00002425static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002426{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002427 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002428 { 0x1f, 0x0002 },
2429 { 0x10, 0x0008 },
2430 { 0x0d, 0x006c },
2431
2432 { 0x1f, 0x0000 },
2433 { 0x0d, 0xf880 },
2434
2435 { 0x1f, 0x0001 },
2436 { 0x17, 0x0cc0 },
2437
2438 { 0x1f, 0x0001 },
2439 { 0x0b, 0xa4d8 },
2440 { 0x09, 0x281c },
2441 { 0x07, 0x2883 },
2442 { 0x0a, 0x6b35 },
2443 { 0x1d, 0x3da4 },
2444 { 0x1c, 0xeffd },
2445 { 0x14, 0x7f52 },
2446 { 0x18, 0x7fc6 },
2447 { 0x08, 0x0601 },
2448 { 0x06, 0x4063 },
2449 { 0x10, 0xf074 },
2450 { 0x1f, 0x0003 },
2451 { 0x13, 0x0789 },
2452 { 0x12, 0xf4bd },
2453 { 0x1a, 0x04fd },
2454 { 0x14, 0x84b0 },
2455 { 0x1f, 0x0000 },
2456 { 0x00, 0x9200 },
2457
2458 { 0x1f, 0x0005 },
2459 { 0x01, 0x0340 },
2460 { 0x1f, 0x0001 },
2461 { 0x04, 0x4000 },
2462 { 0x03, 0x1d21 },
2463 { 0x02, 0x0c32 },
2464 { 0x01, 0x0200 },
2465 { 0x00, 0x5554 },
2466 { 0x04, 0x4800 },
2467 { 0x04, 0x4000 },
2468 { 0x04, 0xf000 },
2469 { 0x03, 0xdf01 },
2470 { 0x02, 0xdf20 },
2471 { 0x01, 0x101a },
2472 { 0x00, 0xa0ff },
2473 { 0x04, 0xf800 },
2474 { 0x04, 0xf000 },
2475 { 0x1f, 0x0000 },
2476
2477 { 0x1f, 0x0007 },
2478 { 0x1e, 0x0023 },
2479 { 0x16, 0x0000 },
2480 { 0x1f, 0x0000 }
2481 };
2482
françois romieu4da19632011-01-03 15:07:55 +00002483 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002484}
2485
françois romieue6de30d2011-01-03 15:08:37 +00002486static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2487{
2488 static const struct phy_reg phy_reg_init[] = {
2489 { 0x1f, 0x0001 },
2490 { 0x17, 0x0cc0 },
2491
2492 { 0x1f, 0x0007 },
2493 { 0x1e, 0x002d },
2494 { 0x18, 0x0040 },
2495 { 0x1f, 0x0000 }
2496 };
2497
2498 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2499 rtl_patchphy(tp, 0x0d, 1 << 5);
2500}
2501
hayeswang01dc7fe2011-03-21 01:50:28 +00002502static void rtl8168e_hw_phy_config(struct rtl8169_private *tp)
2503{
2504 static const struct phy_reg phy_reg_init[] = {
2505 /* Enable Delay cap */
2506 { 0x1f, 0x0005 },
2507 { 0x05, 0x8b80 },
2508 { 0x06, 0xc896 },
2509 { 0x1f, 0x0000 },
2510
2511 /* Channel estimation fine tune */
2512 { 0x1f, 0x0001 },
2513 { 0x0b, 0x6c20 },
2514 { 0x07, 0x2872 },
2515 { 0x1c, 0xefff },
2516 { 0x1f, 0x0003 },
2517 { 0x14, 0x6420 },
2518 { 0x1f, 0x0000 },
2519
2520 /* Update PFM & 10M TX idle timer */
2521 { 0x1f, 0x0007 },
2522 { 0x1e, 0x002f },
2523 { 0x15, 0x1919 },
2524 { 0x1f, 0x0000 },
2525
2526 { 0x1f, 0x0007 },
2527 { 0x1e, 0x00ac },
2528 { 0x18, 0x0006 },
2529 { 0x1f, 0x0000 }
2530 };
2531
Francois Romieu15ecd032011-04-27 13:52:22 -07002532 rtl_apply_firmware(tp);
2533
hayeswang01dc7fe2011-03-21 01:50:28 +00002534 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2535
2536 /* DCO enable for 10M IDLE Power */
2537 rtl_writephy(tp, 0x1f, 0x0007);
2538 rtl_writephy(tp, 0x1e, 0x0023);
2539 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2540 rtl_writephy(tp, 0x1f, 0x0000);
2541
2542 /* For impedance matching */
2543 rtl_writephy(tp, 0x1f, 0x0002);
2544 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002545 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00002546
2547 /* PHY auto speed down */
2548 rtl_writephy(tp, 0x1f, 0x0007);
2549 rtl_writephy(tp, 0x1e, 0x002d);
2550 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
2551 rtl_writephy(tp, 0x1f, 0x0000);
2552 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2553
2554 rtl_writephy(tp, 0x1f, 0x0005);
2555 rtl_writephy(tp, 0x05, 0x8b86);
2556 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2557 rtl_writephy(tp, 0x1f, 0x0000);
2558
2559 rtl_writephy(tp, 0x1f, 0x0005);
2560 rtl_writephy(tp, 0x05, 0x8b85);
2561 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2562 rtl_writephy(tp, 0x1f, 0x0007);
2563 rtl_writephy(tp, 0x1e, 0x0020);
2564 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
2565 rtl_writephy(tp, 0x1f, 0x0006);
2566 rtl_writephy(tp, 0x00, 0x5a00);
2567 rtl_writephy(tp, 0x1f, 0x0000);
2568 rtl_writephy(tp, 0x0d, 0x0007);
2569 rtl_writephy(tp, 0x0e, 0x003c);
2570 rtl_writephy(tp, 0x0d, 0x4007);
2571 rtl_writephy(tp, 0x0e, 0x0000);
2572 rtl_writephy(tp, 0x0d, 0x0000);
2573}
2574
françois romieu4da19632011-01-03 15:07:55 +00002575static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02002576{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002577 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002578 { 0x1f, 0x0003 },
2579 { 0x08, 0x441d },
2580 { 0x01, 0x9100 },
2581 { 0x1f, 0x0000 }
2582 };
2583
françois romieu4da19632011-01-03 15:07:55 +00002584 rtl_writephy(tp, 0x1f, 0x0000);
2585 rtl_patchphy(tp, 0x11, 1 << 12);
2586 rtl_patchphy(tp, 0x19, 1 << 13);
2587 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002588
françois romieu4da19632011-01-03 15:07:55 +00002589 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02002590}
2591
Hayes Wang5a5e4442011-02-22 17:26:21 +08002592static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
2593{
2594 static const struct phy_reg phy_reg_init[] = {
2595 { 0x1f, 0x0005 },
2596 { 0x1a, 0x0000 },
2597 { 0x1f, 0x0000 },
2598
2599 { 0x1f, 0x0004 },
2600 { 0x1c, 0x0000 },
2601 { 0x1f, 0x0000 },
2602
2603 { 0x1f, 0x0001 },
2604 { 0x15, 0x7701 },
2605 { 0x1f, 0x0000 }
2606 };
2607
2608 /* Disable ALDPS before ram code */
2609 rtl_writephy(tp, 0x1f, 0x0000);
2610 rtl_writephy(tp, 0x18, 0x0310);
2611 msleep(100);
2612
François Romieu953a12c2011-04-24 17:38:48 +02002613 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08002614
2615 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2616}
2617
Francois Romieu5615d9f2007-08-17 17:50:46 +02002618static void rtl_hw_phy_config(struct net_device *dev)
2619{
2620 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002621
2622 rtl8169_print_mac_version(tp);
2623
2624 switch (tp->mac_version) {
2625 case RTL_GIGA_MAC_VER_01:
2626 break;
2627 case RTL_GIGA_MAC_VER_02:
2628 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00002629 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002630 break;
2631 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00002632 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002633 break;
françois romieu2e9558562009-08-10 19:44:19 +00002634 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00002635 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002636 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002637 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00002638 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00002639 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002640 case RTL_GIGA_MAC_VER_07:
2641 case RTL_GIGA_MAC_VER_08:
2642 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00002643 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002644 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002645 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00002646 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002647 break;
2648 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00002649 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002650 break;
2651 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00002652 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002653 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002654 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00002655 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002656 break;
2657 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00002658 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002659 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002660 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00002661 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002662 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002663 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00002664 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02002665 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002666 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00002667 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002668 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002669 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002670 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00002671 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02002672 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002673 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002674 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002675 break;
2676 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002677 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002678 break;
2679 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00002680 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02002681 break;
françois romieue6de30d2011-01-03 15:08:37 +00002682 case RTL_GIGA_MAC_VER_28:
2683 rtl8168d_4_hw_phy_config(tp);
2684 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08002685 case RTL_GIGA_MAC_VER_29:
2686 case RTL_GIGA_MAC_VER_30:
2687 rtl8105e_hw_phy_config(tp);
2688 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02002689 case RTL_GIGA_MAC_VER_31:
2690 /* None. */
2691 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00002692 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00002693 case RTL_GIGA_MAC_VER_33:
Francois Romieu15ecd032011-04-27 13:52:22 -07002694 rtl8168e_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00002695 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002696
Francois Romieu5615d9f2007-08-17 17:50:46 +02002697 default:
2698 break;
2699 }
2700}
2701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702static void rtl8169_phy_timer(unsigned long __opaque)
2703{
2704 struct net_device *dev = (struct net_device *)__opaque;
2705 struct rtl8169_private *tp = netdev_priv(dev);
2706 struct timer_list *timer = &tp->timer;
2707 void __iomem *ioaddr = tp->mmio_addr;
2708 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2709
Francois Romieubcf0bf92006-07-26 23:14:13 +02002710 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 spin_lock_irq(&tp->lock);
2713
françois romieu4da19632011-01-03 15:07:55 +00002714 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02002715 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 * A busy loop could burn quite a few cycles on nowadays CPU.
2717 * Let's delay the execution of the timer for a few ticks.
2718 */
2719 timeout = HZ/10;
2720 goto out_mod_timer;
2721 }
2722
2723 if (tp->link_ok(ioaddr))
2724 goto out_unlock;
2725
Joe Perchesbf82c182010-02-09 11:49:50 +00002726 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
françois romieu4da19632011-01-03 15:07:55 +00002728 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730out_mod_timer:
2731 mod_timer(timer, jiffies + timeout);
2732out_unlock:
2733 spin_unlock_irq(&tp->lock);
2734}
2735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736#ifdef CONFIG_NET_POLL_CONTROLLER
2737/*
2738 * Polling 'interrupt' - used by things like netconsole to send skbs
2739 * without having to re-enable interrupts. It's not called while
2740 * the interrupt routine is executing.
2741 */
2742static void rtl8169_netpoll(struct net_device *dev)
2743{
2744 struct rtl8169_private *tp = netdev_priv(dev);
2745 struct pci_dev *pdev = tp->pci_dev;
2746
2747 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002748 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 enable_irq(pdev->irq);
2750}
2751#endif
2752
2753static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
2754 void __iomem *ioaddr)
2755{
2756 iounmap(ioaddr);
2757 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002758 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 pci_disable_device(pdev);
2760 free_netdev(dev);
2761}
2762
Francois Romieubf793292006-11-01 00:53:05 +01002763static void rtl8169_phy_reset(struct net_device *dev,
2764 struct rtl8169_private *tp)
2765{
Francois Romieu07d3f512007-02-21 22:40:46 +01002766 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01002767
françois romieu4da19632011-01-03 15:07:55 +00002768 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01002769 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00002770 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01002771 return;
2772 msleep(1);
2773 }
Joe Perchesbf82c182010-02-09 11:49:50 +00002774 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01002775}
2776
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002777static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002779 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002780
Francois Romieu5615d9f2007-08-17 17:50:46 +02002781 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002782
Marcus Sundberg773328942008-07-10 21:28:08 +02002783 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
2784 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2785 RTL_W8(0x82, 0x01);
2786 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002787
Francois Romieu6dccd162007-02-13 23:38:05 +01002788 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
2789
2790 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
2791 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002792
Francois Romieubcf0bf92006-07-26 23:14:13 +02002793 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002794 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2795 RTL_W8(0x82, 0x01);
2796 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00002797 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002798 }
2799
Francois Romieubf793292006-11-01 00:53:05 +01002800 rtl8169_phy_reset(dev, tp);
2801
Oliver Neukum54405cd2011-01-06 21:55:13 +01002802 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002803 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
2804 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
2805 (tp->mii.supports_gmii ?
2806 ADVERTISED_1000baseT_Half |
2807 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002808
Joe Perchesbf82c182010-02-09 11:49:50 +00002809 if (RTL_R8(PHYstatus) & TBI_Enable)
2810 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002811}
2812
Francois Romieu773d2022007-01-31 23:47:43 +01002813static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
2814{
2815 void __iomem *ioaddr = tp->mmio_addr;
2816 u32 high;
2817 u32 low;
2818
2819 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
2820 high = addr[4] | (addr[5] << 8);
2821
2822 spin_lock_irq(&tp->lock);
2823
2824 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00002825
Francois Romieu773d2022007-01-31 23:47:43 +01002826 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00002827 RTL_R32(MAC4);
2828
Francois Romieu78f1cd02010-03-27 19:35:46 -07002829 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00002830 RTL_R32(MAC0);
2831
Francois Romieu773d2022007-01-31 23:47:43 +01002832 RTL_W8(Cfg9346, Cfg9346_Lock);
2833
2834 spin_unlock_irq(&tp->lock);
2835}
2836
2837static int rtl_set_mac_address(struct net_device *dev, void *p)
2838{
2839 struct rtl8169_private *tp = netdev_priv(dev);
2840 struct sockaddr *addr = p;
2841
2842 if (!is_valid_ether_addr(addr->sa_data))
2843 return -EADDRNOTAVAIL;
2844
2845 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2846
2847 rtl_rar_set(tp, dev->dev_addr);
2848
2849 return 0;
2850}
2851
Francois Romieu5f787a12006-08-17 13:02:36 +02002852static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2853{
2854 struct rtl8169_private *tp = netdev_priv(dev);
2855 struct mii_ioctl_data *data = if_mii(ifr);
2856
Francois Romieu8b4ab282008-11-19 22:05:25 -08002857 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
2858}
Francois Romieu5f787a12006-08-17 13:02:36 +02002859
Francois Romieucecb5fd2011-04-01 10:21:07 +02002860static int rtl_xmii_ioctl(struct rtl8169_private *tp,
2861 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08002862{
Francois Romieu5f787a12006-08-17 13:02:36 +02002863 switch (cmd) {
2864 case SIOCGMIIPHY:
2865 data->phy_id = 32; /* Internal PHY */
2866 return 0;
2867
2868 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002869 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02002870 return 0;
2871
2872 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002873 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02002874 return 0;
2875 }
2876 return -EOPNOTSUPP;
2877}
2878
Francois Romieu8b4ab282008-11-19 22:05:25 -08002879static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2880{
2881 return -EOPNOTSUPP;
2882}
2883
Francois Romieu0e485152007-02-20 00:00:26 +01002884static const struct rtl_cfg_info {
2885 void (*hw_start)(struct net_device *);
2886 unsigned int region;
2887 unsigned int align;
2888 u16 intr_event;
2889 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02002890 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07002891 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01002892} rtl_cfg_infos [] = {
2893 [RTL_CFG_0] = {
2894 .hw_start = rtl_hw_start_8169,
2895 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01002896 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01002897 .intr_event = SYSErr | LinkChg | RxOverflow |
2898 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002899 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002900 .features = RTL_FEATURE_GMII,
2901 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01002902 },
2903 [RTL_CFG_1] = {
2904 .hw_start = rtl_hw_start_8168,
2905 .region = 2,
2906 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00002907 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01002908 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002909 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002910 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
2911 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01002912 },
2913 [RTL_CFG_2] = {
2914 .hw_start = rtl_hw_start_8101,
2915 .region = 2,
2916 .align = 8,
2917 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
2918 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002919 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002920 .features = RTL_FEATURE_MSI,
2921 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01002922 }
2923};
2924
Francois Romieufbac58f2007-10-04 22:51:38 +02002925/* Cfg9346_Unlock assumed. */
2926static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
2927 const struct rtl_cfg_info *cfg)
2928{
2929 unsigned msi = 0;
2930 u8 cfg2;
2931
2932 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02002933 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02002934 if (pci_enable_msi(pdev)) {
2935 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
2936 } else {
2937 cfg2 |= MSIEnable;
2938 msi = RTL_FEATURE_MSI;
2939 }
2940 }
2941 RTL_W8(Config2, cfg2);
2942 return msi;
2943}
2944
2945static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
2946{
2947 if (tp->features & RTL_FEATURE_MSI) {
2948 pci_disable_msi(pdev);
2949 tp->features &= ~RTL_FEATURE_MSI;
2950 }
2951}
2952
Francois Romieu8b4ab282008-11-19 22:05:25 -08002953static const struct net_device_ops rtl8169_netdev_ops = {
2954 .ndo_open = rtl8169_open,
2955 .ndo_stop = rtl8169_close,
2956 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08002957 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002958 .ndo_tx_timeout = rtl8169_tx_timeout,
2959 .ndo_validate_addr = eth_validate_addr,
2960 .ndo_change_mtu = rtl8169_change_mtu,
Michał Mirosław350fb322011-04-08 06:35:56 +00002961 .ndo_fix_features = rtl8169_fix_features,
2962 .ndo_set_features = rtl8169_set_features,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002963 .ndo_set_mac_address = rtl_set_mac_address,
2964 .ndo_do_ioctl = rtl8169_ioctl,
2965 .ndo_set_multicast_list = rtl_set_rx_mode,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002966#ifdef CONFIG_NET_POLL_CONTROLLER
2967 .ndo_poll_controller = rtl8169_netpoll,
2968#endif
2969
2970};
2971
françois romieuc0e45c12011-01-03 15:08:04 +00002972static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
2973{
2974 struct mdio_ops *ops = &tp->mdio_ops;
2975
2976 switch (tp->mac_version) {
2977 case RTL_GIGA_MAC_VER_27:
2978 ops->write = r8168dp_1_mdio_write;
2979 ops->read = r8168dp_1_mdio_read;
2980 break;
françois romieue6de30d2011-01-03 15:08:37 +00002981 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00002982 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00002983 ops->write = r8168dp_2_mdio_write;
2984 ops->read = r8168dp_2_mdio_read;
2985 break;
françois romieuc0e45c12011-01-03 15:08:04 +00002986 default:
2987 ops->write = r8169_mdio_write;
2988 ops->read = r8169_mdio_read;
2989 break;
2990 }
2991}
2992
françois romieu065c27c2011-01-03 15:08:12 +00002993static void r810x_phy_power_down(struct rtl8169_private *tp)
2994{
2995 rtl_writephy(tp, 0x1f, 0x0000);
2996 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2997}
2998
2999static void r810x_phy_power_up(struct rtl8169_private *tp)
3000{
3001 rtl_writephy(tp, 0x1f, 0x0000);
3002 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3003}
3004
3005static void r810x_pll_power_down(struct rtl8169_private *tp)
3006{
3007 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
3008 rtl_writephy(tp, 0x1f, 0x0000);
3009 rtl_writephy(tp, MII_BMCR, 0x0000);
3010 return;
3011 }
3012
3013 r810x_phy_power_down(tp);
3014}
3015
3016static void r810x_pll_power_up(struct rtl8169_private *tp)
3017{
3018 r810x_phy_power_up(tp);
3019}
3020
3021static void r8168_phy_power_up(struct rtl8169_private *tp)
3022{
3023 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003024 switch (tp->mac_version) {
3025 case RTL_GIGA_MAC_VER_11:
3026 case RTL_GIGA_MAC_VER_12:
3027 case RTL_GIGA_MAC_VER_17:
3028 case RTL_GIGA_MAC_VER_18:
3029 case RTL_GIGA_MAC_VER_19:
3030 case RTL_GIGA_MAC_VER_20:
3031 case RTL_GIGA_MAC_VER_21:
3032 case RTL_GIGA_MAC_VER_22:
3033 case RTL_GIGA_MAC_VER_23:
3034 case RTL_GIGA_MAC_VER_24:
3035 case RTL_GIGA_MAC_VER_25:
3036 case RTL_GIGA_MAC_VER_26:
3037 case RTL_GIGA_MAC_VER_27:
3038 case RTL_GIGA_MAC_VER_28:
3039 case RTL_GIGA_MAC_VER_31:
3040 rtl_writephy(tp, 0x0e, 0x0000);
3041 break;
3042 default:
3043 break;
3044 }
françois romieu065c27c2011-01-03 15:08:12 +00003045 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3046}
3047
3048static void r8168_phy_power_down(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_32:
3053 case RTL_GIGA_MAC_VER_33:
3054 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3055 break;
3056
3057 case RTL_GIGA_MAC_VER_11:
3058 case RTL_GIGA_MAC_VER_12:
3059 case RTL_GIGA_MAC_VER_17:
3060 case RTL_GIGA_MAC_VER_18:
3061 case RTL_GIGA_MAC_VER_19:
3062 case RTL_GIGA_MAC_VER_20:
3063 case RTL_GIGA_MAC_VER_21:
3064 case RTL_GIGA_MAC_VER_22:
3065 case RTL_GIGA_MAC_VER_23:
3066 case RTL_GIGA_MAC_VER_24:
3067 case RTL_GIGA_MAC_VER_25:
3068 case RTL_GIGA_MAC_VER_26:
3069 case RTL_GIGA_MAC_VER_27:
3070 case RTL_GIGA_MAC_VER_28:
3071 case RTL_GIGA_MAC_VER_31:
3072 rtl_writephy(tp, 0x0e, 0x0200);
3073 default:
3074 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3075 break;
3076 }
françois romieu065c27c2011-01-03 15:08:12 +00003077}
3078
3079static void r8168_pll_power_down(struct rtl8169_private *tp)
3080{
3081 void __iomem *ioaddr = tp->mmio_addr;
3082
Francois Romieucecb5fd2011-04-01 10:21:07 +02003083 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3084 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3085 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003086 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003087 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003088 }
françois romieu065c27c2011-01-03 15:08:12 +00003089
Francois Romieucecb5fd2011-04-01 10:21:07 +02003090 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
3091 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00003092 (RTL_R16(CPlusCmd) & ASF)) {
3093 return;
3094 }
3095
hayeswang01dc7fe2011-03-21 01:50:28 +00003096 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3097 tp->mac_version == RTL_GIGA_MAC_VER_33)
3098 rtl_ephy_write(ioaddr, 0x19, 0xff64);
3099
françois romieu065c27c2011-01-03 15:08:12 +00003100 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
3101 rtl_writephy(tp, 0x1f, 0x0000);
3102 rtl_writephy(tp, MII_BMCR, 0x0000);
3103
3104 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3105 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3106 return;
3107 }
3108
3109 r8168_phy_power_down(tp);
3110
3111 switch (tp->mac_version) {
3112 case RTL_GIGA_MAC_VER_25:
3113 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003114 case RTL_GIGA_MAC_VER_27:
3115 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003116 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003117 case RTL_GIGA_MAC_VER_32:
3118 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003119 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3120 break;
3121 }
3122}
3123
3124static void r8168_pll_power_up(struct rtl8169_private *tp)
3125{
3126 void __iomem *ioaddr = tp->mmio_addr;
3127
Francois Romieucecb5fd2011-04-01 10:21:07 +02003128 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3129 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3130 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003131 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003132 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003133 }
françois romieu065c27c2011-01-03 15:08:12 +00003134
3135 switch (tp->mac_version) {
3136 case RTL_GIGA_MAC_VER_25:
3137 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003138 case RTL_GIGA_MAC_VER_27:
3139 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003140 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003141 case RTL_GIGA_MAC_VER_32:
3142 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003143 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3144 break;
3145 }
3146
3147 r8168_phy_power_up(tp);
3148}
3149
3150static void rtl_pll_power_op(struct rtl8169_private *tp,
3151 void (*op)(struct rtl8169_private *))
3152{
3153 if (op)
3154 op(tp);
3155}
3156
3157static void rtl_pll_power_down(struct rtl8169_private *tp)
3158{
3159 rtl_pll_power_op(tp, tp->pll_power_ops.down);
3160}
3161
3162static void rtl_pll_power_up(struct rtl8169_private *tp)
3163{
3164 rtl_pll_power_op(tp, tp->pll_power_ops.up);
3165}
3166
3167static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
3168{
3169 struct pll_power_ops *ops = &tp->pll_power_ops;
3170
3171 switch (tp->mac_version) {
3172 case RTL_GIGA_MAC_VER_07:
3173 case RTL_GIGA_MAC_VER_08:
3174 case RTL_GIGA_MAC_VER_09:
3175 case RTL_GIGA_MAC_VER_10:
3176 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08003177 case RTL_GIGA_MAC_VER_29:
3178 case RTL_GIGA_MAC_VER_30:
françois romieu065c27c2011-01-03 15:08:12 +00003179 ops->down = r810x_pll_power_down;
3180 ops->up = r810x_pll_power_up;
3181 break;
3182
3183 case RTL_GIGA_MAC_VER_11:
3184 case RTL_GIGA_MAC_VER_12:
3185 case RTL_GIGA_MAC_VER_17:
3186 case RTL_GIGA_MAC_VER_18:
3187 case RTL_GIGA_MAC_VER_19:
3188 case RTL_GIGA_MAC_VER_20:
3189 case RTL_GIGA_MAC_VER_21:
3190 case RTL_GIGA_MAC_VER_22:
3191 case RTL_GIGA_MAC_VER_23:
3192 case RTL_GIGA_MAC_VER_24:
3193 case RTL_GIGA_MAC_VER_25:
3194 case RTL_GIGA_MAC_VER_26:
3195 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00003196 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003197 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003198 case RTL_GIGA_MAC_VER_32:
3199 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003200 ops->down = r8168_pll_power_down;
3201 ops->up = r8168_pll_power_up;
3202 break;
3203
3204 default:
3205 ops->down = NULL;
3206 ops->up = NULL;
3207 break;
3208 }
3209}
3210
Francois Romieu6f43adc2011-04-29 15:05:51 +02003211static void rtl_hw_reset(struct rtl8169_private *tp)
3212{
3213 void __iomem *ioaddr = tp->mmio_addr;
3214 int i;
3215
3216 /* Soft reset the chip. */
3217 RTL_W8(ChipCmd, CmdReset);
3218
3219 /* Check that the chip has finished the reset. */
3220 for (i = 0; i < 100; i++) {
3221 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3222 break;
3223 msleep_interruptible(1);
3224 }
3225}
3226
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003227static int __devinit
3228rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
3229{
Francois Romieu0e485152007-02-20 00:00:26 +01003230 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
3231 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02003233 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003234 struct net_device *dev;
3235 void __iomem *ioaddr;
Francois Romieu2b7b4312011-04-18 22:53:24 -07003236 int chipset, i;
Francois Romieu07d3f512007-02-21 22:40:46 +01003237 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003239 if (netif_msg_drv(&debug)) {
3240 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
3241 MODULENAME, RTL8169_VERSION);
3242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003245 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003246 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04003247 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003248 rc = -ENOMEM;
3249 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 }
3251
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08003253 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00003255 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02003256 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003257 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Francois Romieuccdffb92008-07-26 14:26:06 +02003259 mii = &tp->mii;
3260 mii->dev = dev;
3261 mii->mdio_read = rtl_mdio_read;
3262 mii->mdio_write = rtl_mdio_write;
3263 mii->phy_id_mask = 0x1f;
3264 mii->reg_num_mask = 0x1f;
3265 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
3266
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +00003267 /* disable ASPM completely as that cause random device stop working
3268 * problems as well as full system hangs for some PCIe devices users */
3269 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
3270 PCIE_LINK_STATE_CLKPM);
3271
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3273 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003274 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003275 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003276 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 }
3278
françois romieu87aeec72010-04-26 11:42:06 +00003279 if (pci_set_mwi(pdev) < 0)
3280 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003283 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003284 netif_err(tp, probe, dev,
3285 "region #%d not an MMIO resource, aborting\n",
3286 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003288 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003292 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003293 netif_err(tp, probe, dev,
3294 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003296 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 }
3298
3299 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003300 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003301 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00003302 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 }
3304
Hayes Wangd24e9aa2011-02-22 17:26:19 +08003305 tp->cp_cmd = RxChkSum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
3307 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07003308 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 tp->cp_cmd |= PCIDAC;
3310 dev->features |= NETIF_F_HIGHDMA;
3311 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003312 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003314 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00003315 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 }
3317 }
3318
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003320 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003321 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003322 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00003324 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 }
Francois Romieu6f43adc2011-04-29 15:05:51 +02003326 tp->mmio_addr = ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
David S. Miller4300e8c2010-03-26 10:23:30 -07003328 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3329 if (!tp->pcie_cap)
3330 netif_info(tp, probe, dev, "no PCI Express capability\n");
3331
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003332 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
Francois Romieu6f43adc2011-04-29 15:05:51 +02003334 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003336 RTL_W16(IntrStatus, 0xffff);
3337
françois romieuca52efd2009-07-24 12:34:19 +00003338 pci_set_master(pdev);
3339
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 /* Identify chip attached to board */
3341 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
Francois Romieu7a8fc772011-03-01 17:18:33 +01003343 /*
3344 * Pretend we are using VLANs; This bypasses a nasty bug where
3345 * Interrupts stop flowing on high load on 8110SCd controllers.
3346 */
3347 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3348 tp->cp_cmd |= RxVlan;
3349
françois romieuc0e45c12011-01-03 15:08:04 +00003350 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00003351 rtl_init_pll_power_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00003352
Jean Delvaref21b75e2009-05-26 20:54:48 -07003353 /* Use appropriate default if unknown */
3354 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003355 netif_notice(tp, probe, dev,
3356 "unknown MAC, using family default\n");
Jean Delvaref21b75e2009-05-26 20:54:48 -07003357 tp->mac_version = cfg->default_ver;
3358 }
3359
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361
Roel Kluincee60c32008-04-17 22:35:54 +02003362 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 if (tp->mac_version == rtl_chip_info[i].mac_version)
3364 break;
3365 }
Roel Kluincee60c32008-04-17 22:35:54 +02003366 if (i == ARRAY_SIZE(rtl_chip_info)) {
Jean Delvaref21b75e2009-05-26 20:54:48 -07003367 dev_err(&pdev->dev,
3368 "driver bug, MAC version not found in rtl_chip_info\n");
françois romieu87aeec72010-04-26 11:42:06 +00003369 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 }
Francois Romieu2b7b4312011-04-18 22:53:24 -07003371 chipset = i;
3372 tp->txd_version = rtl_chip_info[chipset].txd_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373
Francois Romieu5d06a992006-02-23 00:47:58 +01003374 RTL_W8(Cfg9346, Cfg9346_Unlock);
3375 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
3376 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07003377 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
3378 tp->features |= RTL_FEATURE_WOL;
3379 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
3380 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02003381 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01003382 RTL_W8(Cfg9346, Cfg9346_Lock);
3383
Francois Romieu66ec5d42007-11-06 22:56:10 +01003384 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
3385 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 tp->set_speed = rtl8169_set_speed_tbi;
3387 tp->get_settings = rtl8169_gset_tbi;
3388 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
3389 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
3390 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003391 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 } else {
3393 tp->set_speed = rtl8169_set_speed_xmii;
3394 tp->get_settings = rtl8169_gset_xmii;
3395 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
3396 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
3397 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003398 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 }
3400
Francois Romieudf58ef52008-10-09 14:35:58 -07003401 spin_lock_init(&tp->lock);
3402
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00003403 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 for (i = 0; i < MAC_ADDR_LEN; i++)
3405 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04003406 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
3410 dev->irq = pdev->irq;
3411 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003413 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
Michał Mirosław350fb322011-04-08 06:35:56 +00003415 /* don't enable SG, IP_CSUM and TSO by default - it might not work
3416 * properly for all devices */
3417 dev->features |= NETIF_F_RXCSUM |
3418 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3419
3420 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
3421 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3422 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
3423 NETIF_F_HIGHDMA;
3424
3425 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3426 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
3427 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
3429 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01003430 tp->hw_start = cfg->hw_start;
3431 tp->intr_event = cfg->intr_event;
3432 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Francois Romieu2efa53f2007-03-09 00:00:05 +01003434 init_timer(&tp->timer);
3435 tp->timer.data = (unsigned long) dev;
3436 tp->timer.function = rtl8169_phy_timer;
3437
François Romieu953a12c2011-04-24 17:38:48 +02003438 tp->fw = RTL_FIRMWARE_UNKNOWN;
3439
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003441 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00003442 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
3444 pci_set_drvdata(pdev, dev);
3445
Joe Perchesbf82c182010-02-09 11:49:50 +00003446 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
Francois Romieu2b7b4312011-04-18 22:53:24 -07003447 rtl_chip_info[chipset].name, dev->base_addr, dev->dev_addr,
Joe Perchesbf82c182010-02-09 11:49:50 +00003448 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Francois Romieucecb5fd2011-04-01 10:21:07 +02003450 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3451 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3452 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieub646d902011-01-03 15:08:21 +00003453 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003454 }
françois romieub646d902011-01-03 15:08:21 +00003455
Bruno Prémont8b76ab32008-10-08 17:06:25 -07003456 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
Alan Sternf3ec4f82010-06-08 15:23:51 -04003458 if (pci_dev_run_wake(pdev))
3459 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003460
Ivan Vecera0d672e92011-02-15 02:08:39 +00003461 netif_carrier_off(dev);
3462
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003463out:
3464 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
françois romieu87aeec72010-04-26 11:42:06 +00003466err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02003467 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003468 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00003469err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003470 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003471err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003472 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003473 pci_disable_device(pdev);
3474err_out_free_dev_1:
3475 free_netdev(dev);
3476 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477}
3478
Francois Romieu07d3f512007-02-21 22:40:46 +01003479static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480{
3481 struct net_device *dev = pci_get_drvdata(pdev);
3482 struct rtl8169_private *tp = netdev_priv(dev);
3483
Francois Romieucecb5fd2011-04-01 10:21:07 +02003484 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3485 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3486 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieub646d902011-01-03 15:08:21 +00003487 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003488 }
françois romieub646d902011-01-03 15:08:21 +00003489
Tejun Heo23f333a2010-12-12 16:45:14 +01003490 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01003491
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08003493
François Romieu953a12c2011-04-24 17:38:48 +02003494 rtl_release_firmware(tp);
3495
Alan Sternf3ec4f82010-06-08 15:23:51 -04003496 if (pci_dev_run_wake(pdev))
3497 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003498
Ivan Veceracc098dc2009-11-29 23:12:52 -08003499 /* restore original MAC address */
3500 rtl_rar_set(tp, dev->perm_addr);
3501
Francois Romieufbac58f2007-10-04 22:51:38 +02003502 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 rtl8169_release_board(pdev, dev, tp->mmio_addr);
3504 pci_set_drvdata(pdev, NULL);
3505}
3506
François Romieu953a12c2011-04-24 17:38:48 +02003507static void rtl_request_firmware(struct rtl8169_private *tp)
3508{
François Romieu953a12c2011-04-24 17:38:48 +02003509 /* Return early if the firmware is already loaded / cached. */
Francois Romieu31bd2042011-04-26 18:58:59 +02003510 if (IS_ERR(tp->fw)) {
3511 const char *name;
François Romieu953a12c2011-04-24 17:38:48 +02003512
Francois Romieu31bd2042011-04-26 18:58:59 +02003513 name = rtl_lookup_firmware_name(tp);
3514 if (name) {
François Romieu953a12c2011-04-24 17:38:48 +02003515 int rc;
3516
3517 rc = request_firmware(&tp->fw, name, &tp->pci_dev->dev);
Francois Romieu31bd2042011-04-26 18:58:59 +02003518 if (rc >= 0)
3519 return;
François Romieu953a12c2011-04-24 17:38:48 +02003520
Francois Romieu31bd2042011-04-26 18:58:59 +02003521 netif_warn(tp, ifup, tp->dev, "unable to load "
3522 "firmware patch %s (%d)\n", name, rc);
3523 }
3524 tp->fw = NULL;
3525 }
François Romieu953a12c2011-04-24 17:38:48 +02003526}
3527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528static int rtl8169_open(struct net_device *dev)
3529{
3530 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00003531 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02003533 int retval = -ENOMEM;
3534
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003535 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
Neil Hormanc0cd8842010-03-29 13:16:02 -07003537 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003539 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003541 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
3542 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003544 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003546 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
3547 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02003549 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
3551 retval = rtl8169_init_ring(dev);
3552 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02003553 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
David Howellsc4028952006-11-22 14:57:56 +00003555 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556
Francois Romieu99f252b2007-04-02 22:59:59 +02003557 smp_mb();
3558
François Romieu953a12c2011-04-24 17:38:48 +02003559 rtl_request_firmware(tp);
3560
Francois Romieufbac58f2007-10-04 22:51:38 +02003561 retval = request_irq(dev->irq, rtl8169_interrupt,
3562 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02003563 dev->name, dev);
3564 if (retval < 0)
François Romieu953a12c2011-04-24 17:38:48 +02003565 goto err_release_fw_2;
Francois Romieu99f252b2007-04-02 22:59:59 +02003566
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003567 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003568
françois romieueee3a962011-01-08 02:17:26 +00003569 rtl8169_init_phy(dev, tp);
3570
Michał Mirosław350fb322011-04-08 06:35:56 +00003571 rtl8169_set_features(dev, dev->features);
françois romieueee3a962011-01-08 02:17:26 +00003572
françois romieu065c27c2011-01-03 15:08:12 +00003573 rtl_pll_power_up(tp);
3574
Francois Romieu07ce4062007-02-23 23:36:39 +01003575 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003577 tp->saved_wolopts = 0;
3578 pm_runtime_put_noidle(&pdev->dev);
3579
françois romieueee3a962011-01-08 02:17:26 +00003580 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581out:
3582 return retval;
3583
François Romieu953a12c2011-04-24 17:38:48 +02003584err_release_fw_2:
3585 rtl_release_firmware(tp);
Francois Romieu99f252b2007-04-02 22:59:59 +02003586 rtl8169_rx_clear(tp);
3587err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003588 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
3589 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003590 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02003591err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003592 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
3593 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003594 tp->TxDescArray = NULL;
3595err_pm_runtime_put:
3596 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 goto out;
3598}
3599
françois romieue6de30d2011-01-03 15:08:37 +00003600static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601{
françois romieue6de30d2011-01-03 15:08:37 +00003602 void __iomem *ioaddr = tp->mmio_addr;
3603
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 /* Disable interrupts */
3605 rtl8169_irq_mask_and_ack(ioaddr);
3606
Hayes Wang5d2e1952011-02-22 17:26:22 +08003607 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00003608 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3609 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieue6de30d2011-01-03 15:08:37 +00003610 while (RTL_R8(TxPoll) & NPQ)
3611 udelay(20);
3612
3613 }
3614
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 /* Reset the chipset */
3616 RTL_W8(ChipCmd, CmdReset);
3617
3618 /* PCI commit */
3619 RTL_R8(ChipCmd);
3620}
3621
Francois Romieu7f796d82007-06-11 23:04:41 +02003622static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003623{
3624 void __iomem *ioaddr = tp->mmio_addr;
3625 u32 cfg = rtl8169_rx_config;
3626
Francois Romieu2b7b4312011-04-18 22:53:24 -07003627 cfg |= (RTL_R32(RxConfig) & RTL_RX_CONFIG_MASK);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003628 RTL_W32(RxConfig, cfg);
3629
3630 /* Set DMA burst size and Interframe Gap Time */
3631 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3632 (InterFrameGap << TxInterFrameGapShift));
3633}
3634
Francois Romieu07ce4062007-02-23 23:36:39 +01003635static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636{
3637 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
Francois Romieu6f43adc2011-04-29 15:05:51 +02003639 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
Francois Romieu07ce4062007-02-23 23:36:39 +01003641 tp->hw_start(dev);
3642
Francois Romieu07ce4062007-02-23 23:36:39 +01003643 netif_start_queue(dev);
3644}
3645
Francois Romieu7f796d82007-06-11 23:04:41 +02003646static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
3647 void __iomem *ioaddr)
3648{
3649 /*
3650 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3651 * register to be written before TxDescAddrLow to work.
3652 * Switching from MMIO to I/O access fixes the issue as well.
3653 */
3654 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003655 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003656 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003657 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003658}
3659
3660static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
3661{
3662 u16 cmd;
3663
3664 cmd = RTL_R16(CPlusCmd);
3665 RTL_W16(CPlusCmd, cmd);
3666 return cmd;
3667}
3668
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07003669static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02003670{
3671 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00003672 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02003673}
3674
Francois Romieu6dccd162007-02-13 23:38:05 +01003675static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
3676{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003677 static const struct {
Francois Romieu6dccd162007-02-13 23:38:05 +01003678 u32 mac_version;
3679 u32 clk;
3680 u32 val;
3681 } cfg2_info [] = {
3682 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
3683 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
3684 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
3685 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
3686 }, *p = cfg2_info;
3687 unsigned int i;
3688 u32 clk;
3689
3690 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01003691 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01003692 if ((p->mac_version == mac_version) && (p->clk == clk)) {
3693 RTL_W32(0x7c, p->val);
3694 break;
3695 }
3696 }
3697}
3698
Francois Romieu07ce4062007-02-23 23:36:39 +01003699static void rtl_hw_start_8169(struct net_device *dev)
3700{
3701 struct rtl8169_private *tp = netdev_priv(dev);
3702 void __iomem *ioaddr = tp->mmio_addr;
3703 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01003704
Francois Romieu9cb427b2006-11-02 00:10:16 +01003705 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
3706 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
3707 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
3708 }
3709
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003711 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
3712 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
3713 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
3714 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003715 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3716
françois romieuf0298f82011-01-03 15:07:42 +00003717 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003719 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Francois Romieucecb5fd2011-04-01 10:21:07 +02003721 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
3722 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
3723 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
3724 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02003725 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
Francois Romieu7f796d82007-06-11 23:04:41 +02003727 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02003728
Francois Romieucecb5fd2011-04-01 10:21:07 +02003729 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
3730 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02003731 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02003733 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 }
3735
Francois Romieubcf0bf92006-07-26 23:14:13 +02003736 RTL_W16(CPlusCmd, tp->cp_cmd);
3737
Francois Romieu6dccd162007-02-13 23:38:05 +01003738 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
3739
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 /*
3741 * Undocumented corner. Supposedly:
3742 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3743 */
3744 RTL_W16(IntrMitigate, 0x0000);
3745
Francois Romieu7f796d82007-06-11 23:04:41 +02003746 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003747
Francois Romieucecb5fd2011-04-01 10:21:07 +02003748 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
3749 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
3750 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
3751 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02003752 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3753 rtl_set_rx_tx_config_registers(tp);
3754 }
3755
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02003757
3758 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3759 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760
3761 RTL_W32(RxMissed, 0);
3762
Francois Romieu07ce4062007-02-23 23:36:39 +01003763 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765 /* no early-rx interrupts */
3766 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003767
3768 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01003769 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003770}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Francois Romieu9c14cea2008-07-05 00:21:15 +02003772static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02003773{
Francois Romieu9c14cea2008-07-05 00:21:15 +02003774 struct net_device *dev = pci_get_drvdata(pdev);
3775 struct rtl8169_private *tp = netdev_priv(dev);
3776 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02003777
Francois Romieu9c14cea2008-07-05 00:21:15 +02003778 if (cap) {
3779 u16 ctl;
3780
3781 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
3782 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
3783 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
3784 }
Francois Romieu458a9f62008-08-02 15:50:02 +02003785}
3786
françois romieu650e8d52011-01-03 15:08:29 +00003787static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02003788{
3789 u32 csi;
3790
3791 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00003792 rtl_csi_write(ioaddr, 0x070c, csi | bits);
3793}
3794
françois romieue6de30d2011-01-03 15:08:37 +00003795static void rtl_csi_access_enable_1(void __iomem *ioaddr)
3796{
3797 rtl_csi_access_enable(ioaddr, 0x17000000);
3798}
3799
françois romieu650e8d52011-01-03 15:08:29 +00003800static void rtl_csi_access_enable_2(void __iomem *ioaddr)
3801{
3802 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02003803}
3804
3805struct ephy_info {
3806 unsigned int offset;
3807 u16 mask;
3808 u16 bits;
3809};
3810
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003811static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02003812{
3813 u16 w;
3814
3815 while (len-- > 0) {
3816 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
3817 rtl_ephy_write(ioaddr, e->offset, w);
3818 e++;
3819 }
3820}
3821
Francois Romieub726e492008-06-28 12:22:59 +02003822static void rtl_disable_clock_request(struct pci_dev *pdev)
3823{
3824 struct net_device *dev = pci_get_drvdata(pdev);
3825 struct rtl8169_private *tp = netdev_priv(dev);
3826 int cap = tp->pcie_cap;
3827
3828 if (cap) {
3829 u16 ctl;
3830
3831 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3832 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
3833 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3834 }
3835}
3836
françois romieue6de30d2011-01-03 15:08:37 +00003837static void rtl_enable_clock_request(struct pci_dev *pdev)
3838{
3839 struct net_device *dev = pci_get_drvdata(pdev);
3840 struct rtl8169_private *tp = netdev_priv(dev);
3841 int cap = tp->pcie_cap;
3842
3843 if (cap) {
3844 u16 ctl;
3845
3846 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3847 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3848 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3849 }
3850}
3851
Francois Romieub726e492008-06-28 12:22:59 +02003852#define R8168_CPCMD_QUIRK_MASK (\
3853 EnableBist | \
3854 Mac_dbgo_oe | \
3855 Force_half_dup | \
3856 Force_rxflow_en | \
3857 Force_txflow_en | \
3858 Cxpl_dbg_sel | \
3859 ASF | \
3860 PktCntrDisable | \
3861 Mac_dbgo_sel)
3862
Francois Romieu219a1e92008-06-28 11:58:39 +02003863static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
3864{
Francois Romieub726e492008-06-28 12:22:59 +02003865 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3866
3867 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3868
Francois Romieu2e68ae42008-06-28 12:00:55 +02003869 rtl_tx_performance_tweak(pdev,
3870 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02003871}
3872
3873static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
3874{
3875 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02003876
françois romieuf0298f82011-01-03 15:07:42 +00003877 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02003878
3879 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02003880}
3881
3882static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
3883{
Francois Romieub726e492008-06-28 12:22:59 +02003884 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
3885
3886 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3887
Francois Romieu219a1e92008-06-28 11:58:39 +02003888 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02003889
3890 rtl_disable_clock_request(pdev);
3891
3892 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02003893}
3894
Francois Romieuef3386f2008-06-29 12:24:30 +02003895static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02003896{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003897 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003898 { 0x01, 0, 0x0001 },
3899 { 0x02, 0x0800, 0x1000 },
3900 { 0x03, 0, 0x0042 },
3901 { 0x06, 0x0080, 0x0000 },
3902 { 0x07, 0, 0x2000 }
3903 };
3904
françois romieu650e8d52011-01-03 15:08:29 +00003905 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003906
3907 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
3908
Francois Romieu219a1e92008-06-28 11:58:39 +02003909 __rtl_hw_start_8168cp(ioaddr, pdev);
3910}
3911
Francois Romieuef3386f2008-06-29 12:24:30 +02003912static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
3913{
françois romieu650e8d52011-01-03 15:08:29 +00003914 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02003915
3916 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3917
3918 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3919
3920 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3921}
3922
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003923static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
3924{
françois romieu650e8d52011-01-03 15:08:29 +00003925 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003926
3927 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3928
3929 /* Magic. */
3930 RTL_W8(DBG_REG, 0x20);
3931
françois romieuf0298f82011-01-03 15:07:42 +00003932 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003933
3934 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3935
3936 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3937}
3938
Francois Romieu219a1e92008-06-28 11:58:39 +02003939static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
3940{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003941 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003942 { 0x02, 0x0800, 0x1000 },
3943 { 0x03, 0, 0x0002 },
3944 { 0x06, 0x0080, 0x0000 }
3945 };
3946
françois romieu650e8d52011-01-03 15:08:29 +00003947 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003948
3949 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
3950
3951 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
3952
Francois Romieu219a1e92008-06-28 11:58:39 +02003953 __rtl_hw_start_8168cp(ioaddr, pdev);
3954}
3955
3956static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
3957{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003958 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003959 { 0x01, 0, 0x0001 },
3960 { 0x03, 0x0400, 0x0220 }
3961 };
3962
françois romieu650e8d52011-01-03 15:08:29 +00003963 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003964
3965 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
3966
Francois Romieu219a1e92008-06-28 11:58:39 +02003967 __rtl_hw_start_8168cp(ioaddr, pdev);
3968}
3969
Francois Romieu197ff762008-06-28 13:16:02 +02003970static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
3971{
3972 rtl_hw_start_8168c_2(ioaddr, pdev);
3973}
3974
Francois Romieu6fb07052008-06-29 11:54:28 +02003975static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
3976{
françois romieu650e8d52011-01-03 15:08:29 +00003977 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02003978
3979 __rtl_hw_start_8168cp(ioaddr, pdev);
3980}
3981
Francois Romieu5b538df2008-07-20 16:22:45 +02003982static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
3983{
françois romieu650e8d52011-01-03 15:08:29 +00003984 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02003985
3986 rtl_disable_clock_request(pdev);
3987
françois romieuf0298f82011-01-03 15:07:42 +00003988 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02003989
3990 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3991
3992 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3993}
3994
hayeswang4804b3b2011-03-21 01:50:29 +00003995static void rtl_hw_start_8168dp(void __iomem *ioaddr, struct pci_dev *pdev)
3996{
3997 rtl_csi_access_enable_1(ioaddr);
3998
3999 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4000
4001 RTL_W8(MaxTxPacketSize, TxPacketMax);
4002
4003 rtl_disable_clock_request(pdev);
4004}
4005
françois romieue6de30d2011-01-03 15:08:37 +00004006static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
4007{
4008 static const struct ephy_info e_info_8168d_4[] = {
4009 { 0x0b, ~0, 0x48 },
4010 { 0x19, 0x20, 0x50 },
4011 { 0x0c, ~0, 0x20 }
4012 };
4013 int i;
4014
4015 rtl_csi_access_enable_1(ioaddr);
4016
4017 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4018
4019 RTL_W8(MaxTxPacketSize, TxPacketMax);
4020
4021 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
4022 const struct ephy_info *e = e_info_8168d_4 + i;
4023 u16 w;
4024
4025 w = rtl_ephy_read(ioaddr, e->offset);
4026 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
4027 }
4028
4029 rtl_enable_clock_request(pdev);
4030}
4031
hayeswang01dc7fe2011-03-21 01:50:28 +00004032static void rtl_hw_start_8168e(void __iomem *ioaddr, struct pci_dev *pdev)
4033{
4034 static const struct ephy_info e_info_8168e[] = {
4035 { 0x00, 0x0200, 0x0100 },
4036 { 0x00, 0x0000, 0x0004 },
4037 { 0x06, 0x0002, 0x0001 },
4038 { 0x06, 0x0000, 0x0030 },
4039 { 0x07, 0x0000, 0x2000 },
4040 { 0x00, 0x0000, 0x0020 },
4041 { 0x03, 0x5800, 0x2000 },
4042 { 0x03, 0x0000, 0x0001 },
4043 { 0x01, 0x0800, 0x1000 },
4044 { 0x07, 0x0000, 0x4000 },
4045 { 0x1e, 0x0000, 0x2000 },
4046 { 0x19, 0xffff, 0xfe6c },
4047 { 0x0a, 0x0000, 0x0040 }
4048 };
4049
4050 rtl_csi_access_enable_2(ioaddr);
4051
4052 rtl_ephy_init(ioaddr, e_info_8168e, ARRAY_SIZE(e_info_8168e));
4053
4054 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4055
4056 RTL_W8(MaxTxPacketSize, TxPacketMax);
4057
4058 rtl_disable_clock_request(pdev);
4059
4060 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02004061 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
4062 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00004063
Francois Romieucecb5fd2011-04-01 10:21:07 +02004064 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00004065}
4066
Francois Romieu07ce4062007-02-23 23:36:39 +01004067static void rtl_hw_start_8168(struct net_device *dev)
4068{
Francois Romieu2dd99532007-06-11 23:22:52 +02004069 struct rtl8169_private *tp = netdev_priv(dev);
4070 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01004071 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02004072
4073 RTL_W8(Cfg9346, Cfg9346_Unlock);
4074
françois romieuf0298f82011-01-03 15:07:42 +00004075 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02004076
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004077 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02004078
Francois Romieu0e485152007-02-20 00:00:26 +01004079 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02004080
4081 RTL_W16(CPlusCmd, tp->cp_cmd);
4082
Francois Romieu0e485152007-02-20 00:00:26 +01004083 RTL_W16(IntrMitigate, 0x5151);
4084
4085 /* Work around for RxFIFO overflow. */
Ivan Vecerab5ba6d12011-01-27 12:24:11 +01004086 if (tp->mac_version == RTL_GIGA_MAC_VER_11 ||
4087 tp->mac_version == RTL_GIGA_MAC_VER_22) {
Francois Romieu0e485152007-02-20 00:00:26 +01004088 tp->intr_event |= RxFIFOOver | PCSTimeout;
4089 tp->intr_event &= ~RxOverflow;
4090 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004091
4092 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4093
Francois Romieub8363902008-06-01 12:31:57 +02004094 rtl_set_rx_mode(dev);
4095
4096 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4097 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02004098
4099 RTL_R8(IntrMask);
4100
Francois Romieu219a1e92008-06-28 11:58:39 +02004101 switch (tp->mac_version) {
4102 case RTL_GIGA_MAC_VER_11:
4103 rtl_hw_start_8168bb(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004104 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004105
4106 case RTL_GIGA_MAC_VER_12:
4107 case RTL_GIGA_MAC_VER_17:
4108 rtl_hw_start_8168bef(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004109 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004110
4111 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02004112 rtl_hw_start_8168cp_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004113 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004114
4115 case RTL_GIGA_MAC_VER_19:
4116 rtl_hw_start_8168c_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004117 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004118
4119 case RTL_GIGA_MAC_VER_20:
4120 rtl_hw_start_8168c_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004121 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004122
Francois Romieu197ff762008-06-28 13:16:02 +02004123 case RTL_GIGA_MAC_VER_21:
4124 rtl_hw_start_8168c_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004125 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004126
Francois Romieu6fb07052008-06-29 11:54:28 +02004127 case RTL_GIGA_MAC_VER_22:
4128 rtl_hw_start_8168c_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004129 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004130
Francois Romieuef3386f2008-06-29 12:24:30 +02004131 case RTL_GIGA_MAC_VER_23:
4132 rtl_hw_start_8168cp_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004133 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004134
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004135 case RTL_GIGA_MAC_VER_24:
4136 rtl_hw_start_8168cp_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004137 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004138
Francois Romieu5b538df2008-07-20 16:22:45 +02004139 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00004140 case RTL_GIGA_MAC_VER_26:
4141 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02004142 rtl_hw_start_8168d(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004143 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004144
françois romieue6de30d2011-01-03 15:08:37 +00004145 case RTL_GIGA_MAC_VER_28:
4146 rtl_hw_start_8168d_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004147 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004148
hayeswang4804b3b2011-03-21 01:50:29 +00004149 case RTL_GIGA_MAC_VER_31:
4150 rtl_hw_start_8168dp(ioaddr, pdev);
4151 break;
4152
hayeswang01dc7fe2011-03-21 01:50:28 +00004153 case RTL_GIGA_MAC_VER_32:
4154 case RTL_GIGA_MAC_VER_33:
4155 rtl_hw_start_8168e(ioaddr, pdev);
4156 break;
françois romieue6de30d2011-01-03 15:08:37 +00004157
Francois Romieu219a1e92008-06-28 11:58:39 +02004158 default:
4159 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
4160 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00004161 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004162 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004163
Francois Romieu0e485152007-02-20 00:00:26 +01004164 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4165
Francois Romieub8363902008-06-01 12:31:57 +02004166 RTL_W8(Cfg9346, Cfg9346_Lock);
4167
Francois Romieu2dd99532007-06-11 23:22:52 +02004168 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004169
Francois Romieu0e485152007-02-20 00:00:26 +01004170 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01004171}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
Francois Romieu2857ffb2008-08-02 21:08:49 +02004173#define R810X_CPCMD_QUIRK_MASK (\
4174 EnableBist | \
4175 Mac_dbgo_oe | \
4176 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00004177 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02004178 Force_txflow_en | \
4179 Cxpl_dbg_sel | \
4180 ASF | \
4181 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004182 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004183
4184static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4185{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004186 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004187 { 0x01, 0, 0x6e65 },
4188 { 0x02, 0, 0x091f },
4189 { 0x03, 0, 0xc2f9 },
4190 { 0x06, 0, 0xafb5 },
4191 { 0x07, 0, 0x0e00 },
4192 { 0x19, 0, 0xec80 },
4193 { 0x01, 0, 0x2e65 },
4194 { 0x01, 0, 0x6e65 }
4195 };
4196 u8 cfg1;
4197
françois romieu650e8d52011-01-03 15:08:29 +00004198 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004199
4200 RTL_W8(DBG_REG, FIX_NAK_1);
4201
4202 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4203
4204 RTL_W8(Config1,
4205 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
4206 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4207
4208 cfg1 = RTL_R8(Config1);
4209 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
4210 RTL_W8(Config1, cfg1 & ~LEDS0);
4211
Francois Romieu2857ffb2008-08-02 21:08:49 +02004212 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
4213}
4214
4215static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4216{
françois romieu650e8d52011-01-03 15:08:29 +00004217 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004218
4219 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4220
4221 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
4222 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004223}
4224
4225static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
4226{
4227 rtl_hw_start_8102e_2(ioaddr, pdev);
4228
4229 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
4230}
4231
Hayes Wang5a5e4442011-02-22 17:26:21 +08004232static void rtl_hw_start_8105e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4233{
4234 static const struct ephy_info e_info_8105e_1[] = {
4235 { 0x07, 0, 0x4000 },
4236 { 0x19, 0, 0x0200 },
4237 { 0x19, 0, 0x0020 },
4238 { 0x1e, 0, 0x2000 },
4239 { 0x03, 0, 0x0001 },
4240 { 0x19, 0, 0x0100 },
4241 { 0x19, 0, 0x0004 },
4242 { 0x0a, 0, 0x0020 }
4243 };
4244
Francois Romieucecb5fd2011-04-01 10:21:07 +02004245 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08004246 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
4247
Francois Romieucecb5fd2011-04-01 10:21:07 +02004248 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08004249 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
4250
4251 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
4252 RTL_W8(DLLPR, RTL_R8(DLLPR) | PM_SWITCH);
4253
4254 rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
4255}
4256
4257static void rtl_hw_start_8105e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4258{
4259 rtl_hw_start_8105e_1(ioaddr, pdev);
4260 rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
4261}
4262
Francois Romieu07ce4062007-02-23 23:36:39 +01004263static void rtl_hw_start_8101(struct net_device *dev)
4264{
Francois Romieucdf1a602007-06-11 23:29:50 +02004265 struct rtl8169_private *tp = netdev_priv(dev);
4266 void __iomem *ioaddr = tp->mmio_addr;
4267 struct pci_dev *pdev = tp->pci_dev;
4268
Francois Romieucecb5fd2011-04-01 10:21:07 +02004269 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
4270 tp->mac_version == RTL_GIGA_MAC_VER_16) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02004271 int cap = tp->pcie_cap;
4272
4273 if (cap) {
4274 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
4275 PCI_EXP_DEVCTL_NOSNOOP_EN);
4276 }
Francois Romieucdf1a602007-06-11 23:29:50 +02004277 }
4278
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004279 RTL_W8(Cfg9346, Cfg9346_Unlock);
4280
Francois Romieu2857ffb2008-08-02 21:08:49 +02004281 switch (tp->mac_version) {
4282 case RTL_GIGA_MAC_VER_07:
4283 rtl_hw_start_8102e_1(ioaddr, pdev);
4284 break;
4285
4286 case RTL_GIGA_MAC_VER_08:
4287 rtl_hw_start_8102e_3(ioaddr, pdev);
4288 break;
4289
4290 case RTL_GIGA_MAC_VER_09:
4291 rtl_hw_start_8102e_2(ioaddr, pdev);
4292 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004293
4294 case RTL_GIGA_MAC_VER_29:
4295 rtl_hw_start_8105e_1(ioaddr, pdev);
4296 break;
4297 case RTL_GIGA_MAC_VER_30:
4298 rtl_hw_start_8105e_2(ioaddr, pdev);
4299 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02004300 }
4301
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004302 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02004303
françois romieuf0298f82011-01-03 15:07:42 +00004304 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02004305
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004306 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02004307
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004308 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02004309 RTL_W16(CPlusCmd, tp->cp_cmd);
4310
4311 RTL_W16(IntrMitigate, 0x0000);
4312
4313 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4314
4315 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4316 rtl_set_rx_tx_config_registers(tp);
4317
Francois Romieucdf1a602007-06-11 23:29:50 +02004318 RTL_R8(IntrMask);
4319
Francois Romieucdf1a602007-06-11 23:29:50 +02004320 rtl_set_rx_mode(dev);
4321
4322 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004323
Francois Romieu0e485152007-02-20 00:00:26 +01004324 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325}
4326
4327static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
4328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
4330 return -EINVAL;
4331
4332 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00004333 netdev_update_features(dev);
4334
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004335 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336}
4337
4338static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
4339{
Al Viro95e09182007-12-22 18:55:39 +00004340 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
4342}
4343
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004344static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
4345 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004347 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004348 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004349
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004350 kfree(*data_buff);
4351 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 rtl8169_make_unusable_by_asic(desc);
4353}
4354
4355static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
4356{
4357 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
4358
4359 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
4360}
4361
4362static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
4363 u32 rx_buf_sz)
4364{
4365 desc->addr = cpu_to_le64(mapping);
4366 wmb();
4367 rtl8169_mark_to_asic(desc, rx_buf_sz);
4368}
4369
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004370static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004372 return (void *)ALIGN((long)data, 16);
4373}
4374
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004375static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
4376 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004377{
4378 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004380 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004381 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004382 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004384 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
4385 if (!data)
4386 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004387
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004388 if (rtl8169_align(data) != data) {
4389 kfree(data);
4390 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4391 if (!data)
4392 return NULL;
4393 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004394
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004395 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004396 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004397 if (unlikely(dma_mapping_error(d, mapping))) {
4398 if (net_ratelimit())
4399 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004400 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
4403 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004404 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004405
4406err_out:
4407 kfree(data);
4408 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409}
4410
4411static void rtl8169_rx_clear(struct rtl8169_private *tp)
4412{
Francois Romieu07d3f512007-02-21 22:40:46 +01004413 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
4415 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004416 if (tp->Rx_databuff[i]) {
4417 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418 tp->RxDescArray + i);
4419 }
4420 }
4421}
4422
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004423static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004425 desc->opts1 |= cpu_to_le32(RingEnd);
4426}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004427
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004428static int rtl8169_rx_fill(struct rtl8169_private *tp)
4429{
4430 unsigned int i;
4431
4432 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004433 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004434
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004435 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004437
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004438 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004439 if (!data) {
4440 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004441 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004442 }
4443 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004446 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4447 return 0;
4448
4449err_out:
4450 rtl8169_rx_clear(tp);
4451 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452}
4453
4454static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4455{
4456 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
4457}
4458
4459static int rtl8169_init_ring(struct net_device *dev)
4460{
4461 struct rtl8169_private *tp = netdev_priv(dev);
4462
4463 rtl8169_init_ring_indexes(tp);
4464
4465 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004466 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004468 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469}
4470
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004471static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 struct TxDesc *desc)
4473{
4474 unsigned int len = tx_skb->len;
4475
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004476 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4477
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 desc->opts1 = 0x00;
4479 desc->opts2 = 0x00;
4480 desc->addr = 0x00;
4481 tx_skb->len = 0;
4482}
4483
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004484static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4485 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486{
4487 unsigned int i;
4488
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004489 for (i = 0; i < n; i++) {
4490 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 struct ring_info *tx_skb = tp->tx_skb + entry;
4492 unsigned int len = tx_skb->len;
4493
4494 if (len) {
4495 struct sk_buff *skb = tx_skb->skb;
4496
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004497 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 tp->TxDescArray + entry);
4499 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004500 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 dev_kfree_skb(skb);
4502 tx_skb->skb = NULL;
4503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 }
4505 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004506}
4507
4508static void rtl8169_tx_clear(struct rtl8169_private *tp)
4509{
4510 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 tp->cur_tx = tp->dirty_tx = 0;
4512}
4513
David Howellsc4028952006-11-22 14:57:56 +00004514static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515{
4516 struct rtl8169_private *tp = netdev_priv(dev);
4517
David Howellsc4028952006-11-22 14:57:56 +00004518 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 schedule_delayed_work(&tp->task, 4);
4520}
4521
4522static void rtl8169_wait_for_quiescence(struct net_device *dev)
4523{
4524 struct rtl8169_private *tp = netdev_priv(dev);
4525 void __iomem *ioaddr = tp->mmio_addr;
4526
4527 synchronize_irq(dev->irq);
4528
4529 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004530 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
4532 rtl8169_irq_mask_and_ack(ioaddr);
4533
David S. Millerd1d08d12008-01-07 20:53:33 -08004534 tp->intr_mask = 0xffff;
4535 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004536 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537}
4538
David Howellsc4028952006-11-22 14:57:56 +00004539static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540{
David Howellsc4028952006-11-22 14:57:56 +00004541 struct rtl8169_private *tp =
4542 container_of(work, struct rtl8169_private, task.work);
4543 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 int ret;
4545
Francois Romieueb2a0212007-02-15 23:37:21 +01004546 rtnl_lock();
4547
4548 if (!netif_running(dev))
4549 goto out_unlock;
4550
4551 rtl8169_wait_for_quiescence(dev);
4552 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
4554 ret = rtl8169_open(dev);
4555 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004556 if (net_ratelimit())
4557 netif_err(tp, drv, dev,
4558 "reinit failure (status = %d). Rescheduling\n",
4559 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 rtl8169_schedule_work(dev, rtl8169_reinit_task);
4561 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004562
4563out_unlock:
4564 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565}
4566
David Howellsc4028952006-11-22 14:57:56 +00004567static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568{
David Howellsc4028952006-11-22 14:57:56 +00004569 struct rtl8169_private *tp =
4570 container_of(work, struct rtl8169_private, task.work);
4571 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01004572 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
Francois Romieueb2a0212007-02-15 23:37:21 +01004574 rtnl_lock();
4575
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01004577 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578
4579 rtl8169_wait_for_quiescence(dev);
4580
Francois Romieu56de4142011-03-15 17:29:31 +01004581 for (i = 0; i < NUM_RX_DESC; i++)
4582 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
4583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 rtl8169_tx_clear(tp);
4585
Francois Romieu56de4142011-03-15 17:29:31 +01004586 rtl8169_init_ring_indexes(tp);
4587 rtl_hw_start(dev);
4588 netif_wake_queue(dev);
4589 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Francois Romieueb2a0212007-02-15 23:37:21 +01004590
4591out_unlock:
4592 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593}
4594
4595static void rtl8169_tx_timeout(struct net_device *dev)
4596{
4597 struct rtl8169_private *tp = netdev_priv(dev);
4598
françois romieue6de30d2011-01-03 15:08:37 +00004599 rtl8169_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
4601 /* Let's wait a bit while any (async) irq lands on */
4602 rtl8169_schedule_work(dev, rtl8169_reset_task);
4603}
4604
4605static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07004606 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607{
4608 struct skb_shared_info *info = skb_shinfo(skb);
4609 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04004610 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004611 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
4613 entry = tp->cur_tx;
4614 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
4615 skb_frag_t *frag = info->frags + cur_frag;
4616 dma_addr_t mapping;
4617 u32 status, len;
4618 void *addr;
4619
4620 entry = (entry + 1) % NUM_TX_DESC;
4621
4622 txd = tp->TxDescArray + entry;
4623 len = frag->size;
4624 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004625 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004626 if (unlikely(dma_mapping_error(d, mapping))) {
4627 if (net_ratelimit())
4628 netif_err(tp, drv, tp->dev,
4629 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004630 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
Francois Romieucecb5fd2011-04-01 10:21:07 +02004633 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07004634 status = opts[0] | len |
4635 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636
4637 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07004638 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 txd->addr = cpu_to_le64(mapping);
4640
4641 tp->tx_skb[entry].len = len;
4642 }
4643
4644 if (cur_frag) {
4645 tp->tx_skb[entry].skb = skb;
4646 txd->opts1 |= cpu_to_le32(LastFrag);
4647 }
4648
4649 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004650
4651err_out:
4652 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
4653 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654}
4655
Francois Romieu2b7b4312011-04-18 22:53:24 -07004656static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
4657 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658{
Francois Romieu2b7b4312011-04-18 22:53:24 -07004659 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00004660 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07004661 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662
Francois Romieu2b7b4312011-04-18 22:53:24 -07004663 if (mss) {
4664 opts[0] |= TD_LSO;
4665 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
4666 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004667 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668
4669 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07004670 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07004672 opts[offset] |= info->checksum.udp;
4673 else
4674 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676}
4677
Stephen Hemminger613573252009-08-31 19:50:58 +00004678static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
4679 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680{
4681 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004682 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 struct TxDesc *txd = tp->TxDescArray + entry;
4684 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004685 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 dma_addr_t mapping;
4687 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07004688 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004689 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02004690
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004692 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004693 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 }
4695
4696 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004697 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004699 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004700 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004701 if (unlikely(dma_mapping_error(d, mapping))) {
4702 if (net_ratelimit())
4703 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004704 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
4707 tp->tx_skb[entry].len = len;
4708 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709
Francois Romieu2b7b4312011-04-18 22:53:24 -07004710 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
4711 opts[0] = DescOwn;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004712
Francois Romieu2b7b4312011-04-18 22:53:24 -07004713 rtl8169_tso_csum(tp, skb, opts);
4714
4715 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004716 if (frags < 0)
4717 goto err_dma_1;
4718 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07004719 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004720 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07004721 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004722 tp->tx_skb[entry].skb = skb;
4723 }
4724
Francois Romieu2b7b4312011-04-18 22:53:24 -07004725 txd->opts2 = cpu_to_le32(opts[1]);
4726
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 wmb();
4728
Francois Romieucecb5fd2011-04-01 10:21:07 +02004729 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07004730 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 txd->opts1 = cpu_to_le32(status);
4732
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 tp->cur_tx += frags + 1;
4734
David Dillow4c020a92010-03-03 16:33:10 +00004735 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736
Francois Romieucecb5fd2011-04-01 10:21:07 +02004737 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738
4739 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
4740 netif_stop_queue(dev);
4741 smp_rmb();
4742 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
4743 netif_wake_queue(dev);
4744 }
4745
Stephen Hemminger613573252009-08-31 19:50:58 +00004746 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004748err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004749 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004750err_dma_0:
4751 dev_kfree_skb(skb);
4752 dev->stats.tx_dropped++;
4753 return NETDEV_TX_OK;
4754
4755err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004757 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00004758 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759}
4760
4761static void rtl8169_pcierr_interrupt(struct net_device *dev)
4762{
4763 struct rtl8169_private *tp = netdev_priv(dev);
4764 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 u16 pci_status, pci_cmd;
4766
4767 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
4768 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
4769
Joe Perchesbf82c182010-02-09 11:49:50 +00004770 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4771 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
4773 /*
4774 * The recovery sequence below admits a very elaborated explanation:
4775 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01004776 * - I did not see what else could be done;
4777 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 *
4779 * Feel free to adjust to your needs.
4780 */
Francois Romieua27993f2006-12-18 00:04:19 +01004781 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01004782 pci_cmd &= ~PCI_COMMAND_PARITY;
4783 else
4784 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
4785
4786 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787
4788 pci_write_config_word(pdev, PCI_STATUS,
4789 pci_status & (PCI_STATUS_DETECTED_PARITY |
4790 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
4791 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
4792
4793 /* The infamous DAC f*ckup only happens at boot time */
4794 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00004795 void __iomem *ioaddr = tp->mmio_addr;
4796
Joe Perchesbf82c182010-02-09 11:49:50 +00004797 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 tp->cp_cmd &= ~PCIDAC;
4799 RTL_W16(CPlusCmd, tp->cp_cmd);
4800 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 }
4802
françois romieue6de30d2011-01-03 15:08:37 +00004803 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01004804
4805 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806}
4807
Francois Romieu07d3f512007-02-21 22:40:46 +01004808static void rtl8169_tx_interrupt(struct net_device *dev,
4809 struct rtl8169_private *tp,
4810 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811{
4812 unsigned int dirty_tx, tx_left;
4813
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 dirty_tx = tp->dirty_tx;
4815 smp_rmb();
4816 tx_left = tp->cur_tx - dirty_tx;
4817
4818 while (tx_left > 0) {
4819 unsigned int entry = dirty_tx % NUM_TX_DESC;
4820 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 u32 status;
4822
4823 rmb();
4824 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
4825 if (status & DescOwn)
4826 break;
4827
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004828 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
4829 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004831 dev->stats.tx_packets++;
4832 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00004833 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 tx_skb->skb = NULL;
4835 }
4836 dirty_tx++;
4837 tx_left--;
4838 }
4839
4840 if (tp->dirty_tx != dirty_tx) {
4841 tp->dirty_tx = dirty_tx;
4842 smp_wmb();
4843 if (netif_queue_stopped(dev) &&
4844 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
4845 netif_wake_queue(dev);
4846 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02004847 /*
4848 * 8168 hack: TxPoll requests are lost when the Tx packets are
4849 * too close. Let's kick an extra TxPoll request when a burst
4850 * of start_xmit activity is detected (if it is not detected,
4851 * it is slow enough). -- FR
4852 */
4853 smp_rmb();
4854 if (tp->cur_tx != dirty_tx)
4855 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 }
4857}
4858
Francois Romieu126fa4b2005-05-12 20:09:17 -04004859static inline int rtl8169_fragmented_frame(u32 status)
4860{
4861 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4862}
4863
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004864static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 u32 status = opts1 & RxProtoMask;
4867
4868 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00004869 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 skb->ip_summed = CHECKSUM_UNNECESSARY;
4871 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07004872 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873}
4874
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004875static struct sk_buff *rtl8169_try_rx_copy(void *data,
4876 struct rtl8169_private *tp,
4877 int pkt_size,
4878 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004880 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004881 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004883 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004884 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004885 prefetch(data);
4886 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
4887 if (skb)
4888 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004889 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
4890
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004891 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892}
4893
Francois Romieu07d3f512007-02-21 22:40:46 +01004894static int rtl8169_rx_interrupt(struct net_device *dev,
4895 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004896 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897{
4898 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004899 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 cur_rx = tp->cur_rx;
4902 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02004903 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004905 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004907 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 u32 status;
4909
4910 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04004911 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912
4913 if (status & DescOwn)
4914 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004915 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004916 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
4917 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004918 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02004920 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02004922 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004923 if (status & RxFOVF) {
4924 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004925 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004926 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004927 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004929 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004930 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932
Francois Romieu126fa4b2005-05-12 20:09:17 -04004933 /*
4934 * The driver does not support incoming fragmented
4935 * frames. They are seen as a symptom of over-mtu
4936 * sized frames.
4937 */
4938 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02004939 dev->stats.rx_dropped++;
4940 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004941 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004942 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004943 }
4944
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004945 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
4946 tp, pkt_size, addr);
4947 rtl8169_mark_to_asic(desc, rx_buf_sz);
4948 if (!skb) {
4949 dev->stats.rx_dropped++;
4950 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 }
4952
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004953 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 skb_put(skb, pkt_size);
4955 skb->protocol = eth_type_trans(skb, dev);
4956
Francois Romieu7a8fc772011-03-01 17:18:33 +01004957 rtl8169_rx_vlan_tag(desc, skb);
4958
Francois Romieu56de4142011-03-15 17:29:31 +01004959 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960
Francois Romieucebf8cc2007-10-18 12:06:54 +02004961 dev->stats.rx_bytes += pkt_size;
4962 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 }
Francois Romieu6dccd162007-02-13 23:38:05 +01004964
4965 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00004966 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01004967 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
4968 desc->opts2 = 0;
4969 cur_rx++;
4970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 }
4972
4973 count = cur_rx - tp->cur_rx;
4974 tp->cur_rx = cur_rx;
4975
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004976 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977
4978 return count;
4979}
4980
Francois Romieu07d3f512007-02-21 22:40:46 +01004981static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982{
Francois Romieu07d3f512007-02-21 22:40:46 +01004983 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02004987 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988
David Dillowf11a3772009-05-22 15:29:34 +00004989 /* loop handling interrupts until we have no new ones or
4990 * we hit a invalid/hotplug case.
4991 */
Francois Romieu865c6522008-05-11 14:51:00 +02004992 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00004993 while (status && status != 0xffff) {
4994 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
David Dillowf11a3772009-05-22 15:29:34 +00004996 /* Handle all of the error cases first. These will reset
4997 * the chip, so just exit the loop.
4998 */
4999 if (unlikely(!netif_running(dev))) {
5000 rtl8169_asic_down(ioaddr);
5001 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 }
David Dillowf11a3772009-05-22 15:29:34 +00005003
Francois Romieu1519e572011-02-03 12:02:36 +01005004 if (unlikely(status & RxFIFOOver)) {
5005 switch (tp->mac_version) {
5006 /* Work around for rx fifo overflow */
5007 case RTL_GIGA_MAC_VER_11:
5008 case RTL_GIGA_MAC_VER_22:
5009 case RTL_GIGA_MAC_VER_26:
5010 netif_stop_queue(dev);
5011 rtl8169_tx_timeout(dev);
5012 goto done;
Francois Romieuf60ac8e2011-02-03 17:27:52 +01005013 /* Testers needed. */
5014 case RTL_GIGA_MAC_VER_17:
5015 case RTL_GIGA_MAC_VER_19:
5016 case RTL_GIGA_MAC_VER_20:
5017 case RTL_GIGA_MAC_VER_21:
5018 case RTL_GIGA_MAC_VER_23:
5019 case RTL_GIGA_MAC_VER_24:
5020 case RTL_GIGA_MAC_VER_27:
5021 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00005022 case RTL_GIGA_MAC_VER_31:
Francois Romieu1519e572011-02-03 12:02:36 +01005023 /* Experimental science. Pktgen proof. */
5024 case RTL_GIGA_MAC_VER_12:
5025 case RTL_GIGA_MAC_VER_25:
5026 if (status == RxFIFOOver)
5027 goto done;
5028 break;
5029 default:
5030 break;
5031 }
David Dillowf11a3772009-05-22 15:29:34 +00005032 }
5033
5034 if (unlikely(status & SYSErr)) {
5035 rtl8169_pcierr_interrupt(dev);
5036 break;
5037 }
5038
5039 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005040 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00005041
5042 /* We need to see the lastest version of tp->intr_mask to
5043 * avoid ignoring an MSI interrupt and having to wait for
5044 * another event which may never come.
5045 */
5046 smp_rmb();
5047 if (status & tp->intr_mask & tp->napi_event) {
5048 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
5049 tp->intr_mask = ~tp->napi_event;
5050
5051 if (likely(napi_schedule_prep(&tp->napi)))
5052 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00005053 else
5054 netif_info(tp, intr, dev,
5055 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00005056 }
5057
5058 /* We only get a new MSI interrupt when all active irq
5059 * sources on the chip have been acknowledged. So, ack
5060 * everything we've seen and check if new sources have become
5061 * active to avoid blocking all interrupts from the chip.
5062 */
5063 RTL_W16(IntrStatus,
5064 (status & RxFIFOOver) ? (status | RxOverflow) : status);
5065 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066 }
Francois Romieu1519e572011-02-03 12:02:36 +01005067done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 return IRQ_RETVAL(handled);
5069}
5070
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005071static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005073 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
5074 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005076 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005078 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 rtl8169_tx_interrupt(dev, tp, ioaddr);
5080
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005081 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005082 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00005083
5084 /* We need for force the visibility of tp->intr_mask
5085 * for other CPUs, as we can loose an MSI interrupt
5086 * and potentially wait for a retransmit timeout if we don't.
5087 * The posted write to IntrMask is safe, as it will
5088 * eventually make it to the chip and we won't loose anything
5089 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090 */
David Dillowf11a3772009-05-22 15:29:34 +00005091 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00005092 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01005093 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094 }
5095
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005096 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098
Francois Romieu523a6092008-09-10 22:28:56 +02005099static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
5100{
5101 struct rtl8169_private *tp = netdev_priv(dev);
5102
5103 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
5104 return;
5105
5106 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
5107 RTL_W32(RxMissed, 0);
5108}
5109
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110static void rtl8169_down(struct net_device *dev)
5111{
5112 struct rtl8169_private *tp = netdev_priv(dev);
5113 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114
Francois Romieu4876cc12011-03-11 21:07:11 +01005115 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116
5117 netif_stop_queue(dev);
5118
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005119 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005120
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 spin_lock_irq(&tp->lock);
5122
5123 rtl8169_asic_down(ioaddr);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005124 /*
5125 * At this point device interrupts can not be enabled in any function,
5126 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
5127 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
5128 */
Francois Romieu523a6092008-09-10 22:28:56 +02005129 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130
5131 spin_unlock_irq(&tp->lock);
5132
5133 synchronize_irq(dev->irq);
5134
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005136 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 rtl8169_tx_clear(tp);
5139
5140 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00005141
5142 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143}
5144
5145static int rtl8169_close(struct net_device *dev)
5146{
5147 struct rtl8169_private *tp = netdev_priv(dev);
5148 struct pci_dev *pdev = tp->pci_dev;
5149
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005150 pm_runtime_get_sync(&pdev->dev);
5151
Francois Romieucecb5fd2011-04-01 10:21:07 +02005152 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08005153 rtl8169_update_counters(dev);
5154
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 rtl8169_down(dev);
5156
5157 free_irq(dev->irq, dev);
5158
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00005159 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
5160 tp->RxPhyAddr);
5161 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
5162 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 tp->TxDescArray = NULL;
5164 tp->RxDescArray = NULL;
5165
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005166 pm_runtime_put_sync(&pdev->dev);
5167
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 return 0;
5169}
5170
Francois Romieu07ce4062007-02-23 23:36:39 +01005171static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172{
5173 struct rtl8169_private *tp = netdev_priv(dev);
5174 void __iomem *ioaddr = tp->mmio_addr;
5175 unsigned long flags;
5176 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01005177 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 u32 tmp = 0;
5179
5180 if (dev->flags & IFF_PROMISC) {
5181 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00005182 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 rx_mode =
5184 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
5185 AcceptAllPhys;
5186 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00005187 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00005188 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189 /* Too many to filter perfectly -- accept all multicasts. */
5190 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
5191 mc_filter[1] = mc_filter[0] = 0xffffffff;
5192 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00005193 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01005194
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 rx_mode = AcceptBroadcast | AcceptMyPhys;
5196 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00005197 netdev_for_each_mc_addr(ha, dev) {
5198 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
5200 rx_mode |= AcceptMulticast;
5201 }
5202 }
5203
5204 spin_lock_irqsave(&tp->lock, flags);
5205
5206 tmp = rtl8169_rx_config | rx_mode |
Francois Romieu2b7b4312011-04-18 22:53:24 -07005207 (RTL_R32(RxConfig) & RTL_RX_CONFIG_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208
Francois Romieuf887cce2008-07-17 22:24:18 +02005209 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01005210 u32 data = mc_filter[0];
5211
5212 mc_filter[0] = swab32(mc_filter[1]);
5213 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02005214 }
5215
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07005217 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218
Francois Romieu57a9f232007-06-04 22:10:15 +02005219 RTL_W32(RxConfig, tmp);
5220
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 spin_unlock_irqrestore(&tp->lock, flags);
5222}
5223
5224/**
5225 * rtl8169_get_stats - Get rtl8169 read/write statistics
5226 * @dev: The Ethernet Device to get statistics for
5227 *
5228 * Get TX/RX statistics for rtl8169
5229 */
5230static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
5231{
5232 struct rtl8169_private *tp = netdev_priv(dev);
5233 void __iomem *ioaddr = tp->mmio_addr;
5234 unsigned long flags;
5235
5236 if (netif_running(dev)) {
5237 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02005238 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 spin_unlock_irqrestore(&tp->lock, flags);
5240 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02005241
Francois Romieucebf8cc2007-10-18 12:06:54 +02005242 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243}
5244
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005245static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01005246{
françois romieu065c27c2011-01-03 15:08:12 +00005247 struct rtl8169_private *tp = netdev_priv(dev);
5248
Francois Romieu5d06a992006-02-23 00:47:58 +01005249 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005250 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01005251
françois romieu065c27c2011-01-03 15:08:12 +00005252 rtl_pll_power_down(tp);
5253
Francois Romieu5d06a992006-02-23 00:47:58 +01005254 netif_device_detach(dev);
5255 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005256}
Francois Romieu5d06a992006-02-23 00:47:58 +01005257
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005258#ifdef CONFIG_PM
5259
5260static int rtl8169_suspend(struct device *device)
5261{
5262 struct pci_dev *pdev = to_pci_dev(device);
5263 struct net_device *dev = pci_get_drvdata(pdev);
5264
5265 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02005266
Francois Romieu5d06a992006-02-23 00:47:58 +01005267 return 0;
5268}
5269
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005270static void __rtl8169_resume(struct net_device *dev)
5271{
françois romieu065c27c2011-01-03 15:08:12 +00005272 struct rtl8169_private *tp = netdev_priv(dev);
5273
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005274 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00005275
5276 rtl_pll_power_up(tp);
5277
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005278 rtl8169_schedule_work(dev, rtl8169_reset_task);
5279}
5280
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005281static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01005282{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005283 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01005284 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005285 struct rtl8169_private *tp = netdev_priv(dev);
5286
5287 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01005288
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005289 if (netif_running(dev))
5290 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01005291
Francois Romieu5d06a992006-02-23 00:47:58 +01005292 return 0;
5293}
5294
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005295static int rtl8169_runtime_suspend(struct device *device)
5296{
5297 struct pci_dev *pdev = to_pci_dev(device);
5298 struct net_device *dev = pci_get_drvdata(pdev);
5299 struct rtl8169_private *tp = netdev_priv(dev);
5300
5301 if (!tp->TxDescArray)
5302 return 0;
5303
5304 spin_lock_irq(&tp->lock);
5305 tp->saved_wolopts = __rtl8169_get_wol(tp);
5306 __rtl8169_set_wol(tp, WAKE_ANY);
5307 spin_unlock_irq(&tp->lock);
5308
5309 rtl8169_net_suspend(dev);
5310
5311 return 0;
5312}
5313
5314static int rtl8169_runtime_resume(struct device *device)
5315{
5316 struct pci_dev *pdev = to_pci_dev(device);
5317 struct net_device *dev = pci_get_drvdata(pdev);
5318 struct rtl8169_private *tp = netdev_priv(dev);
5319
5320 if (!tp->TxDescArray)
5321 return 0;
5322
5323 spin_lock_irq(&tp->lock);
5324 __rtl8169_set_wol(tp, tp->saved_wolopts);
5325 tp->saved_wolopts = 0;
5326 spin_unlock_irq(&tp->lock);
5327
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005328 rtl8169_init_phy(dev, tp);
5329
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005330 __rtl8169_resume(dev);
5331
5332 return 0;
5333}
5334
5335static int rtl8169_runtime_idle(struct device *device)
5336{
5337 struct pci_dev *pdev = to_pci_dev(device);
5338 struct net_device *dev = pci_get_drvdata(pdev);
5339 struct rtl8169_private *tp = netdev_priv(dev);
5340
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005341 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005342}
5343
Alexey Dobriyan47145212009-12-14 18:00:08 -08005344static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02005345 .suspend = rtl8169_suspend,
5346 .resume = rtl8169_resume,
5347 .freeze = rtl8169_suspend,
5348 .thaw = rtl8169_resume,
5349 .poweroff = rtl8169_suspend,
5350 .restore = rtl8169_resume,
5351 .runtime_suspend = rtl8169_runtime_suspend,
5352 .runtime_resume = rtl8169_runtime_resume,
5353 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005354};
5355
5356#define RTL8169_PM_OPS (&rtl8169_pm_ops)
5357
5358#else /* !CONFIG_PM */
5359
5360#define RTL8169_PM_OPS NULL
5361
5362#endif /* !CONFIG_PM */
5363
Francois Romieu1765f952008-09-13 17:21:40 +02005364static void rtl_shutdown(struct pci_dev *pdev)
5365{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005366 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00005367 struct rtl8169_private *tp = netdev_priv(dev);
5368 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02005369
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005370 rtl8169_net_suspend(dev);
5371
Francois Romieucecb5fd2011-04-01 10:21:07 +02005372 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08005373 rtl_rar_set(tp, dev->perm_addr);
5374
françois romieu4bb3f522009-06-17 11:41:45 +00005375 spin_lock_irq(&tp->lock);
5376
5377 rtl8169_asic_down(ioaddr);
5378
5379 spin_unlock_irq(&tp->lock);
5380
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005381 if (system_state == SYSTEM_POWER_OFF) {
françois romieuca52efd2009-07-24 12:34:19 +00005382 /* WoL fails with some 8168 when the receiver is disabled. */
5383 if (tp->features & RTL_FEATURE_WOL) {
5384 pci_clear_master(pdev);
5385
5386 RTL_W8(ChipCmd, CmdRxEnb);
5387 /* PCI commit */
5388 RTL_R8(ChipCmd);
5389 }
5390
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005391 pci_wake_from_d3(pdev, true);
5392 pci_set_power_state(pdev, PCI_D3hot);
5393 }
5394}
Francois Romieu5d06a992006-02-23 00:47:58 +01005395
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396static struct pci_driver rtl8169_pci_driver = {
5397 .name = MODULENAME,
5398 .id_table = rtl8169_pci_tbl,
5399 .probe = rtl8169_init_one,
5400 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02005401 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005402 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403};
5404
Francois Romieu07d3f512007-02-21 22:40:46 +01005405static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406{
Jeff Garzik29917622006-08-19 17:48:59 -04005407 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408}
5409
Francois Romieu07d3f512007-02-21 22:40:46 +01005410static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411{
5412 pci_unregister_driver(&rtl8169_pci_driver);
5413}
5414
5415module_init(rtl8169_init_module);
5416module_exit(rtl8169_cleanup_module);