blob: 5eb6858ed0a7dbedbb49cab2007593ce3b3cf4fb [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>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000025#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/dma-mapping.h>
Rafael J. Wysockie1759442010-03-14 14:33:51 +000027#include <linux/pm_runtime.h>
françois romieubca03d52011-01-03 15:07:31 +000028#include <linux/firmware.h>
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +000029#include <linux/pci-aspm.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040030#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Francois Romieu99f252b2007-04-02 22:59:59 +020032#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/io.h>
34#include <asm/irq.h>
35
Francois Romieu865c6522008-05-11 14:51:00 +020036#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define MODULENAME "r8169"
38#define PFX MODULENAME ": "
39
françois romieubca03d52011-01-03 15:07:31 +000040#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
41#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
hayeswang01dc7fe2011-03-21 01:50:28 +000042#define FIRMWARE_8168E_1 "rtl_nic/rtl8168e-1.fw"
43#define FIRMWARE_8168E_2 "rtl_nic/rtl8168e-2.fw"
Hayes Wang70090422011-07-06 15:58:06 +080044#define FIRMWARE_8168E_3 "rtl_nic/rtl8168e-3.fw"
Hayes Wangc2218922011-09-06 16:55:18 +080045#define FIRMWARE_8168F_1 "rtl_nic/rtl8168f-1.fw"
46#define FIRMWARE_8168F_2 "rtl_nic/rtl8168f-2.fw"
Hayes Wang5a5e4442011-02-22 17:26:21 +080047#define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
françois romieubca03d52011-01-03 15:07:31 +000048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifdef RTL8169_DEBUG
50#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020051 if (!(expr)) { \
52 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070053 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020054 }
Joe Perches06fa7352007-10-18 21:15:00 +020055#define dprintk(fmt, args...) \
56 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#else
58#define assert(expr) do {} while (0)
59#define dprintk(fmt, args...) do {} while (0)
60#endif /* RTL8169_DEBUG */
61
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020062#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070063 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define TX_BUFFS_AVAIL(tp) \
66 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
69 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050070static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Francois Romieu9c14cea2008-07-05 00:21:15 +020072#define MAX_READ_REQUEST_SHIFT 12
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#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 {
Francois Romieu85bffe62011-04-27 08:22:39 +0200101 RTL_GIGA_MAC_VER_01 = 0,
102 RTL_GIGA_MAC_VER_02,
103 RTL_GIGA_MAC_VER_03,
104 RTL_GIGA_MAC_VER_04,
105 RTL_GIGA_MAC_VER_05,
106 RTL_GIGA_MAC_VER_06,
107 RTL_GIGA_MAC_VER_07,
108 RTL_GIGA_MAC_VER_08,
109 RTL_GIGA_MAC_VER_09,
110 RTL_GIGA_MAC_VER_10,
111 RTL_GIGA_MAC_VER_11,
112 RTL_GIGA_MAC_VER_12,
113 RTL_GIGA_MAC_VER_13,
114 RTL_GIGA_MAC_VER_14,
115 RTL_GIGA_MAC_VER_15,
116 RTL_GIGA_MAC_VER_16,
117 RTL_GIGA_MAC_VER_17,
118 RTL_GIGA_MAC_VER_18,
119 RTL_GIGA_MAC_VER_19,
120 RTL_GIGA_MAC_VER_20,
121 RTL_GIGA_MAC_VER_21,
122 RTL_GIGA_MAC_VER_22,
123 RTL_GIGA_MAC_VER_23,
124 RTL_GIGA_MAC_VER_24,
125 RTL_GIGA_MAC_VER_25,
126 RTL_GIGA_MAC_VER_26,
127 RTL_GIGA_MAC_VER_27,
128 RTL_GIGA_MAC_VER_28,
129 RTL_GIGA_MAC_VER_29,
130 RTL_GIGA_MAC_VER_30,
131 RTL_GIGA_MAC_VER_31,
132 RTL_GIGA_MAC_VER_32,
133 RTL_GIGA_MAC_VER_33,
Hayes Wang70090422011-07-06 15:58:06 +0800134 RTL_GIGA_MAC_VER_34,
Hayes Wangc2218922011-09-06 16:55:18 +0800135 RTL_GIGA_MAC_VER_35,
136 RTL_GIGA_MAC_VER_36,
Francois Romieu85bffe62011-04-27 08:22:39 +0200137 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139
Francois Romieu2b7b4312011-04-18 22:53:24 -0700140enum rtl_tx_desc_version {
141 RTL_TD_0 = 0,
142 RTL_TD_1 = 1,
143};
144
Francois Romieud58d46b2011-05-03 16:38:29 +0200145#define JUMBO_1K ETH_DATA_LEN
146#define JUMBO_4K (4*1024 - ETH_HLEN - 2)
147#define JUMBO_6K (6*1024 - ETH_HLEN - 2)
148#define JUMBO_7K (7*1024 - ETH_HLEN - 2)
149#define JUMBO_9K (9*1024 - ETH_HLEN - 2)
150
151#define _R(NAME,TD,FW,SZ,B) { \
152 .name = NAME, \
153 .txd_version = TD, \
154 .fw_name = FW, \
155 .jumbo_max = SZ, \
156 .jumbo_tx_csum = B \
157}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800159static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700161 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200162 const char *fw_name;
Francois Romieud58d46b2011-05-03 16:38:29 +0200163 u16 jumbo_max;
164 bool jumbo_tx_csum;
Francois Romieu85bffe62011-04-27 08:22:39 +0200165} rtl_chip_infos[] = {
166 /* PCI devices. */
167 [RTL_GIGA_MAC_VER_01] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200168 _R("RTL8169", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200169 [RTL_GIGA_MAC_VER_02] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200170 _R("RTL8169s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200171 [RTL_GIGA_MAC_VER_03] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200172 _R("RTL8110s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200173 [RTL_GIGA_MAC_VER_04] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200174 _R("RTL8169sb/8110sb", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200175 [RTL_GIGA_MAC_VER_05] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200176 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200177 [RTL_GIGA_MAC_VER_06] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200178 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200179 /* PCI-E devices. */
180 [RTL_GIGA_MAC_VER_07] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200181 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200182 [RTL_GIGA_MAC_VER_08] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200183 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200184 [RTL_GIGA_MAC_VER_09] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200185 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200186 [RTL_GIGA_MAC_VER_10] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200187 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200188 [RTL_GIGA_MAC_VER_11] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200189 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200190 [RTL_GIGA_MAC_VER_12] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200191 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200192 [RTL_GIGA_MAC_VER_13] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200193 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200194 [RTL_GIGA_MAC_VER_14] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200195 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200196 [RTL_GIGA_MAC_VER_15] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200197 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200198 [RTL_GIGA_MAC_VER_16] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200199 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200200 [RTL_GIGA_MAC_VER_17] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200201 _R("RTL8168b/8111b", RTL_TD_1, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200202 [RTL_GIGA_MAC_VER_18] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200203 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200204 [RTL_GIGA_MAC_VER_19] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200205 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200206 [RTL_GIGA_MAC_VER_20] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200207 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200208 [RTL_GIGA_MAC_VER_21] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200209 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200210 [RTL_GIGA_MAC_VER_22] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200211 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200212 [RTL_GIGA_MAC_VER_23] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200213 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200214 [RTL_GIGA_MAC_VER_24] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200215 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200216 [RTL_GIGA_MAC_VER_25] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200217 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1,
218 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200219 [RTL_GIGA_MAC_VER_26] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200220 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2,
221 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200222 [RTL_GIGA_MAC_VER_27] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200223 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200224 [RTL_GIGA_MAC_VER_28] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200225 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200226 [RTL_GIGA_MAC_VER_29] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200227 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
228 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200229 [RTL_GIGA_MAC_VER_30] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200230 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
231 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200232 [RTL_GIGA_MAC_VER_31] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200233 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200234 [RTL_GIGA_MAC_VER_32] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200235 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1,
236 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200237 [RTL_GIGA_MAC_VER_33] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200238 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2,
239 JUMBO_9K, false),
Hayes Wang70090422011-07-06 15:58:06 +0800240 [RTL_GIGA_MAC_VER_34] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200241 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3,
242 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800243 [RTL_GIGA_MAC_VER_35] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200244 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_1,
245 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800246 [RTL_GIGA_MAC_VER_36] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200247 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_2,
248 JUMBO_9K, false),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250#undef _R
251
Francois Romieubcf0bf92006-07-26 23:14:13 +0200252enum cfg_version {
253 RTL_CFG_0 = 0x00,
254 RTL_CFG_1,
255 RTL_CFG_2
256};
257
Francois Romieu07ce4062007-02-23 23:36:39 +0100258static void rtl_hw_start_8169(struct net_device *);
259static void rtl_hw_start_8168(struct net_device *);
260static void rtl_hw_start_8101(struct net_device *);
261
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000262static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200263 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200264 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200265 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100266 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200267 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
268 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000269 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200270 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200271 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
272 { PCI_VENDOR_ID_LINKSYS, 0x1032,
273 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100274 { 0x0001, 0x8168,
275 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 {0,},
277};
278
279MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
280
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000281static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700282static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200283static struct {
284 u32 msg_enable;
285} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Francois Romieu07d3f512007-02-21 22:40:46 +0100287enum rtl_registers {
288 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100289 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100290 MAR0 = 8, /* Multicast filter. */
291 CounterAddrLow = 0x10,
292 CounterAddrHigh = 0x14,
293 TxDescStartAddrLow = 0x20,
294 TxDescStartAddrHigh = 0x24,
295 TxHDescStartAddrLow = 0x28,
296 TxHDescStartAddrHigh = 0x2c,
297 FLASH = 0x30,
298 ERSR = 0x36,
299 ChipCmd = 0x37,
300 TxPoll = 0x38,
301 IntrMask = 0x3c,
302 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700303
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800304 TxConfig = 0x40,
305#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
306#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
307
308 RxConfig = 0x44,
309#define RX128_INT_EN (1 << 15) /* 8111c and later */
310#define RX_MULTI_EN (1 << 14) /* 8111c only */
311#define RXCFG_FIFO_SHIFT 13
312 /* No threshold before first PCI xfer */
313#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
314#define RXCFG_DMA_SHIFT 8
315 /* Unlimited maximum PCI burst. */
316#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700317
Francois Romieu07d3f512007-02-21 22:40:46 +0100318 RxMissed = 0x4c,
319 Cfg9346 = 0x50,
320 Config0 = 0x51,
321 Config1 = 0x52,
322 Config2 = 0x53,
323 Config3 = 0x54,
324 Config4 = 0x55,
325 Config5 = 0x56,
326 MultiIntr = 0x5c,
327 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100328 PHYstatus = 0x6c,
329 RxMaxSize = 0xda,
330 CPlusCmd = 0xe0,
331 IntrMitigate = 0xe2,
332 RxDescAddrLow = 0xe4,
333 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000334 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
335
336#define NoEarlyTx 0x3f /* Max value : no early transmit. */
337
338 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
339
340#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800341#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000342
Francois Romieu07d3f512007-02-21 22:40:46 +0100343 FuncEvent = 0xf0,
344 FuncEventMask = 0xf4,
345 FuncPresetState = 0xf8,
346 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347};
348
Francois Romieuf162a5d2008-06-01 22:37:49 +0200349enum rtl8110_registers {
350 TBICSR = 0x64,
351 TBI_ANAR = 0x68,
352 TBI_LPAR = 0x6a,
353};
354
355enum rtl8168_8101_registers {
356 CSIDR = 0x64,
357 CSIAR = 0x68,
358#define CSIAR_FLAG 0x80000000
359#define CSIAR_WRITE_CMD 0x80000000
360#define CSIAR_BYTE_ENABLE 0x0f
361#define CSIAR_BYTE_ENABLE_SHIFT 12
362#define CSIAR_ADDR_MASK 0x0fff
françois romieu065c27c2011-01-03 15:08:12 +0000363 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200364 EPHYAR = 0x80,
365#define EPHYAR_FLAG 0x80000000
366#define EPHYAR_WRITE_CMD 0x80000000
367#define EPHYAR_REG_MASK 0x1f
368#define EPHYAR_REG_SHIFT 16
369#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800370 DLLPR = 0xd0,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800371#define PFM_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200372 DBG_REG = 0xd1,
373#define FIX_NAK_1 (1 << 4)
374#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800375 TWSI = 0xd2,
376 MCU = 0xd3,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800377#define NOW_IS_OOB (1 << 7)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800378#define EN_NDP (1 << 3)
379#define EN_OOB_RESET (1 << 2)
françois romieudaf9df62009-10-07 12:44:20 +0000380 EFUSEAR = 0xdc,
381#define EFUSEAR_FLAG 0x80000000
382#define EFUSEAR_WRITE_CMD 0x80000000
383#define EFUSEAR_READ_CMD 0x00000000
384#define EFUSEAR_REG_MASK 0x03ff
385#define EFUSEAR_REG_SHIFT 8
386#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200387};
388
françois romieuc0e45c12011-01-03 15:08:04 +0000389enum rtl8168_registers {
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800390 LED_FREQ = 0x1a,
391 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000392 ERIDR = 0x70,
393 ERIAR = 0x74,
394#define ERIAR_FLAG 0x80000000
395#define ERIAR_WRITE_CMD 0x80000000
396#define ERIAR_READ_CMD 0x00000000
397#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000398#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800399#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
400#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
401#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
402#define ERIAR_MASK_SHIFT 12
403#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
404#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
405#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000406 EPHY_RXER_NUM = 0x7c,
407 OCPDR = 0xb0, /* OCP GPHY access */
408#define OCPDR_WRITE_CMD 0x80000000
409#define OCPDR_READ_CMD 0x00000000
410#define OCPDR_REG_MASK 0x7f
411#define OCPDR_GPHY_REG_SHIFT 16
412#define OCPDR_DATA_MASK 0xffff
413 OCPAR = 0xb4,
414#define OCPAR_FLAG 0x80000000
415#define OCPAR_GPHY_WRITE_CMD 0x8000f060
416#define OCPAR_GPHY_READ_CMD 0x0000f060
hayeswang01dc7fe2011-03-21 01:50:28 +0000417 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
418 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200419#define TXPLA_RST (1 << 29)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800420#define PWM_EN (1 << 22)
françois romieuc0e45c12011-01-03 15:08:04 +0000421};
422
Francois Romieu07d3f512007-02-21 22:40:46 +0100423enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100425 SYSErr = 0x8000,
426 PCSTimeout = 0x4000,
427 SWInt = 0x0100,
428 TxDescUnavail = 0x0080,
429 RxFIFOOver = 0x0040,
430 LinkChg = 0x0020,
431 RxOverflow = 0x0010,
432 TxErr = 0x0008,
433 TxOK = 0x0004,
434 RxErr = 0x0002,
435 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400438 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200439 RxFOVF = (1 << 23),
440 RxRWT = (1 << 22),
441 RxRES = (1 << 21),
442 RxRUNT = (1 << 20),
443 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 /* ChipCmdBits */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800446 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100447 CmdReset = 0x10,
448 CmdRxEnb = 0x08,
449 CmdTxEnb = 0x04,
450 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Francois Romieu275391a2007-02-23 23:50:28 +0100452 /* TXPoll register p.5 */
453 HPQ = 0x80, /* Poll cmd on the high prio queue */
454 NPQ = 0x40, /* Poll cmd on the low prio queue */
455 FSWInt = 0x01, /* Forced software interrupt */
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100458 Cfg9346_Lock = 0x00,
459 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100462 AcceptErr = 0x20,
463 AcceptRunt = 0x10,
464 AcceptBroadcast = 0x08,
465 AcceptMulticast = 0x04,
466 AcceptMyPhys = 0x02,
467 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200468#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /* TxConfigBits */
471 TxInterFrameGapShift = 24,
472 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
473
Francois Romieu5d06a992006-02-23 00:47:58 +0100474 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200475 LEDS1 = (1 << 7),
476 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200477 Speed_down = (1 << 4),
478 MEMMAP = (1 << 3),
479 IOMAP = (1 << 2),
480 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100481 PMEnable = (1 << 0), /* Power Management Enable */
482
Francois Romieu6dccd162007-02-13 23:38:05 +0100483 /* Config2 register p. 25 */
françois romieu2ca6cf02011-12-15 08:37:43 +0000484 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100485 PCI_Clock_66MHz = 0x01,
486 PCI_Clock_33MHz = 0x00,
487
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100488 /* Config3 register p.25 */
489 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
490 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200491 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200492 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100493
Francois Romieud58d46b2011-05-03 16:38:29 +0200494 /* Config4 register */
495 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
496
Francois Romieu5d06a992006-02-23 00:47:58 +0100497 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100498 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
499 MWF = (1 << 5), /* Accept Multicast wakeup frame */
500 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200501 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100502 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100503 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /* TBICSR p.28 */
506 TBIReset = 0x80000000,
507 TBILoopback = 0x40000000,
508 TBINwEnable = 0x20000000,
509 TBINwRestart = 0x10000000,
510 TBILinkOk = 0x02000000,
511 TBINwComplete = 0x01000000,
512
513 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200514 EnableBist = (1 << 15), // 8168 8101
515 Mac_dbgo_oe = (1 << 14), // 8168 8101
516 Normal_mode = (1 << 13), // unused
517 Force_half_dup = (1 << 12), // 8168 8101
518 Force_rxflow_en = (1 << 11), // 8168 8101
519 Force_txflow_en = (1 << 10), // 8168 8101
520 Cxpl_dbg_sel = (1 << 9), // 8168 8101
521 ASF = (1 << 8), // 8168 8101
522 PktCntrDisable = (1 << 7), // 8168 8101
523 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 RxVlan = (1 << 6),
525 RxChkSum = (1 << 5),
526 PCIDAC = (1 << 4),
527 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100528 INTT_0 = 0x0000, // 8168
529 INTT_1 = 0x0001, // 8168
530 INTT_2 = 0x0002, // 8168
531 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100534 TBI_Enable = 0x80,
535 TxFlowCtrl = 0x40,
536 RxFlowCtrl = 0x20,
537 _1000bpsF = 0x10,
538 _100bps = 0x08,
539 _10bps = 0x04,
540 LinkStatus = 0x02,
541 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100544 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200545
546 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100547 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548};
549
Francois Romieu2b7b4312011-04-18 22:53:24 -0700550enum rtl_desc_bit {
551 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
553 RingEnd = (1 << 30), /* End of descriptor ring */
554 FirstFrag = (1 << 29), /* First segment of a packet */
555 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700556};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Francois Romieu2b7b4312011-04-18 22:53:24 -0700558/* Generic case. */
559enum rtl_tx_desc_bit {
560 /* First doubleword. */
561 TD_LSO = (1 << 27), /* Large Send Offload */
562#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Francois Romieu2b7b4312011-04-18 22:53:24 -0700564 /* Second doubleword. */
565 TxVlanTag = (1 << 17), /* Add VLAN tag */
566};
567
568/* 8169, 8168b and 810x except 8102e. */
569enum rtl_tx_desc_bit_0 {
570 /* First doubleword. */
571#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
572 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
573 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
574 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
575};
576
577/* 8102e, 8168c and beyond. */
578enum rtl_tx_desc_bit_1 {
579 /* Second doubleword. */
580#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
581 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
582 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
583 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
584};
585
586static const struct rtl_tx_desc_info {
587 struct {
588 u32 udp;
589 u32 tcp;
590 } checksum;
591 u16 mss_shift;
592 u16 opts_offset;
593} tx_desc_info [] = {
594 [RTL_TD_0] = {
595 .checksum = {
596 .udp = TD0_IP_CS | TD0_UDP_CS,
597 .tcp = TD0_IP_CS | TD0_TCP_CS
598 },
599 .mss_shift = TD0_MSS_SHIFT,
600 .opts_offset = 0
601 },
602 [RTL_TD_1] = {
603 .checksum = {
604 .udp = TD1_IP_CS | TD1_UDP_CS,
605 .tcp = TD1_IP_CS | TD1_TCP_CS
606 },
607 .mss_shift = TD1_MSS_SHIFT,
608 .opts_offset = 1
609 }
610};
611
612enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /* Rx private */
614 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
615 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
616
617#define RxProtoUDP (PID1)
618#define RxProtoTCP (PID0)
619#define RxProtoIP (PID1 | PID0)
620#define RxProtoMask RxProtoIP
621
622 IPFail = (1 << 16), /* IP checksum failed */
623 UDPFail = (1 << 15), /* UDP/IP checksum failed */
624 TCPFail = (1 << 14), /* TCP/IP checksum failed */
625 RxVlanTag = (1 << 16), /* VLAN tag available */
626};
627
628#define RsvdMask 0x3fffc000
629
630struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200631 __le32 opts1;
632 __le32 opts2;
633 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634};
635
636struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200637 __le32 opts1;
638 __le32 opts2;
639 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640};
641
642struct ring_info {
643 struct sk_buff *skb;
644 u32 len;
645 u8 __pad[sizeof(void *) - sizeof(u32)];
646};
647
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200648enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200649 RTL_FEATURE_WOL = (1 << 0),
650 RTL_FEATURE_MSI = (1 << 1),
651 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200652};
653
Ivan Vecera355423d2009-02-06 21:49:57 -0800654struct rtl8169_counters {
655 __le64 tx_packets;
656 __le64 rx_packets;
657 __le64 tx_errors;
658 __le32 rx_errors;
659 __le16 rx_missed;
660 __le16 align_errors;
661 __le32 tx_one_collision;
662 __le32 tx_multi_collision;
663 __le64 rx_unicast;
664 __le64 rx_broadcast;
665 __le32 rx_multicast;
666 __le16 tx_aborted;
667 __le16 tx_underun;
668};
669
Francois Romieuda78dbf2012-01-26 14:18:23 +0100670enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100671 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100672 RTL_FLAG_TASK_SLOW_PENDING,
673 RTL_FLAG_TASK_RESET_PENDING,
674 RTL_FLAG_TASK_PHY_PENDING,
675 RTL_FLAG_MAX
676};
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678struct rtl8169_private {
679 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200680 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000681 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700682 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200683 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700684 u16 txd_version;
685 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
687 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
688 u32 dirty_rx;
689 u32 dirty_tx;
690 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
691 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
692 dma_addr_t TxPhyAddr;
693 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000694 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct timer_list timer;
697 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100698
699 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000700
701 struct mdio_ops {
702 void (*write)(void __iomem *, int, int);
703 int (*read)(void __iomem *, int);
704 } mdio_ops;
705
françois romieu065c27c2011-01-03 15:08:12 +0000706 struct pll_power_ops {
707 void (*down)(struct rtl8169_private *);
708 void (*up)(struct rtl8169_private *);
709 } pll_power_ops;
710
Francois Romieud58d46b2011-05-03 16:38:29 +0200711 struct jumbo_ops {
712 void (*enable)(struct rtl8169_private *);
713 void (*disable)(struct rtl8169_private *);
714 } jumbo_ops;
715
Oliver Neukum54405cd2011-01-06 21:55:13 +0100716 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200717 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000718 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100719 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000720 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800722 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100723
724 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100725 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
726 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100727 struct work_struct work;
728 } wk;
729
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200730 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200731
732 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800733 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000734 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400735 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000736
Francois Romieub6ffd972011-06-17 17:00:05 +0200737 struct rtl_fw {
738 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200739
740#define RTL_VER_SIZE 32
741
742 char version[RTL_VER_SIZE];
743
744 struct rtl_fw_phy_action {
745 __le32 *code;
746 size_t size;
747 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200748 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300749#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750};
751
Ralf Baechle979b6c12005-06-13 14:30:40 -0700752MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700755MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200756module_param_named(debug, debug.msg_enable, int, 0);
757MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758MODULE_LICENSE("GPL");
759MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000760MODULE_FIRMWARE(FIRMWARE_8168D_1);
761MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000762MODULE_FIRMWARE(FIRMWARE_8168E_1);
763MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400764MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800765MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800766MODULE_FIRMWARE(FIRMWARE_8168F_1);
767MODULE_FIRMWARE(FIRMWARE_8168F_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769static int rtl8169_open(struct net_device *dev);
Stephen Hemminger613573252009-08-31 19:50:58 +0000770static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
771 struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100772static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100774static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100776static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200778static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200779static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Francois Romieu99f252b2007-04-02 22:59:59 +0200780static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700781static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Francois Romieuda78dbf2012-01-26 14:18:23 +0100783static void rtl_lock_work(struct rtl8169_private *tp)
784{
785 mutex_lock(&tp->wk.mutex);
786}
787
788static void rtl_unlock_work(struct rtl8169_private *tp)
789{
790 mutex_unlock(&tp->wk.mutex);
791}
792
Francois Romieud58d46b2011-05-03 16:38:29 +0200793static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
794{
795 int cap = pci_pcie_cap(pdev);
796
797 if (cap) {
798 u16 ctl;
799
800 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
801 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
802 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
803 }
804}
805
françois romieub646d902011-01-03 15:08:21 +0000806static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
807{
808 void __iomem *ioaddr = tp->mmio_addr;
809 int i;
810
811 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
812 for (i = 0; i < 20; i++) {
813 udelay(100);
814 if (RTL_R32(OCPAR) & OCPAR_FLAG)
815 break;
816 }
817 return RTL_R32(OCPDR);
818}
819
820static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
821{
822 void __iomem *ioaddr = tp->mmio_addr;
823 int i;
824
825 RTL_W32(OCPDR, data);
826 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
827 for (i = 0; i < 20; i++) {
828 udelay(100);
829 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
830 break;
831 }
832}
833
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800834static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000835{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800836 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000837 int i;
838
839 RTL_W8(ERIDR, cmd);
840 RTL_W32(ERIAR, 0x800010e8);
841 msleep(2);
842 for (i = 0; i < 5; i++) {
843 udelay(100);
Francois Romieu1e4e82b2011-06-24 19:52:13 +0200844 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
françois romieub646d902011-01-03 15:08:21 +0000845 break;
846 }
847
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800848 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000849}
850
851#define OOB_CMD_RESET 0x00
852#define OOB_CMD_DRIVER_START 0x05
853#define OOB_CMD_DRIVER_STOP 0x06
854
Francois Romieucecb5fd2011-04-01 10:21:07 +0200855static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
856{
857 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
858}
859
françois romieub646d902011-01-03 15:08:21 +0000860static void rtl8168_driver_start(struct rtl8169_private *tp)
861{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200862 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000863 int i;
864
865 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
866
Francois Romieucecb5fd2011-04-01 10:21:07 +0200867 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000868
françois romieub646d902011-01-03 15:08:21 +0000869 for (i = 0; i < 10; i++) {
870 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000871 if (ocp_read(tp, 0x0f, reg) & 0x00000800)
françois romieub646d902011-01-03 15:08:21 +0000872 break;
873 }
874}
875
876static void rtl8168_driver_stop(struct rtl8169_private *tp)
877{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200878 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000879 int i;
880
881 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
882
Francois Romieucecb5fd2011-04-01 10:21:07 +0200883 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000884
françois romieub646d902011-01-03 15:08:21 +0000885 for (i = 0; i < 10; i++) {
886 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000887 if ((ocp_read(tp, 0x0f, reg) & 0x00000800) == 0)
françois romieub646d902011-01-03 15:08:21 +0000888 break;
889 }
890}
891
hayeswang4804b3b2011-03-21 01:50:29 +0000892static int r8168dp_check_dash(struct rtl8169_private *tp)
893{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200894 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000895
Francois Romieucecb5fd2011-04-01 10:21:07 +0200896 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +0000897}
françois romieub646d902011-01-03 15:08:21 +0000898
françois romieu4da19632011-01-03 15:07:55 +0000899static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 int i;
902
Francois Romieua6baf3a2007-11-08 23:23:21 +0100903 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Francois Romieu23714082006-01-29 00:49:09 +0100905 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100906 /*
907 * Check if the RTL8169 has completed writing to the specified
908 * MII register.
909 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200910 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 break;
Francois Romieu23714082006-01-29 00:49:09 +0100912 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700914 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700915 * According to hardware specs a 20us delay is required after write
916 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700917 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700918 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
françois romieu4da19632011-01-03 15:07:55 +0000921static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
923 int i, value = -1;
924
Francois Romieua6baf3a2007-11-08 23:23:21 +0100925 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Francois Romieu23714082006-01-29 00:49:09 +0100927 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100928 /*
929 * Check if the RTL8169 has completed retrieving data from
930 * the specified MII register.
931 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100933 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 break;
935 }
Francois Romieu23714082006-01-29 00:49:09 +0100936 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700938 /*
939 * According to hardware specs a 20us delay is required after read
940 * complete indication, but before sending next command.
941 */
942 udelay(20);
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 return value;
945}
946
françois romieuc0e45c12011-01-03 15:08:04 +0000947static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
948{
949 int i;
950
951 RTL_W32(OCPDR, data |
952 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
953 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
954 RTL_W32(EPHY_RXER_NUM, 0);
955
956 for (i = 0; i < 100; i++) {
957 mdelay(1);
958 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
959 break;
960 }
961}
962
963static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
964{
965 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
966 (value & OCPDR_DATA_MASK));
967}
968
969static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
970{
971 int i;
972
973 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
974
975 mdelay(1);
976 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
977 RTL_W32(EPHY_RXER_NUM, 0);
978
979 for (i = 0; i < 100; i++) {
980 mdelay(1);
981 if (RTL_R32(OCPAR) & OCPAR_FLAG)
982 break;
983 }
984
985 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
986}
987
françois romieue6de30d2011-01-03 15:08:37 +0000988#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
989
990static void r8168dp_2_mdio_start(void __iomem *ioaddr)
991{
992 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
993}
994
995static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
996{
997 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
998}
999
1000static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
1001{
1002 r8168dp_2_mdio_start(ioaddr);
1003
1004 r8169_mdio_write(ioaddr, reg_addr, value);
1005
1006 r8168dp_2_mdio_stop(ioaddr);
1007}
1008
1009static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
1010{
1011 int value;
1012
1013 r8168dp_2_mdio_start(ioaddr);
1014
1015 value = r8169_mdio_read(ioaddr, reg_addr);
1016
1017 r8168dp_2_mdio_stop(ioaddr);
1018
1019 return value;
1020}
1021
françois romieu4da19632011-01-03 15:07:55 +00001022static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001023{
françois romieuc0e45c12011-01-03 15:08:04 +00001024 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001025}
1026
françois romieu4da19632011-01-03 15:07:55 +00001027static int rtl_readphy(struct rtl8169_private *tp, int location)
1028{
françois romieuc0e45c12011-01-03 15:08:04 +00001029 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +00001030}
1031
1032static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1033{
1034 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1035}
1036
1037static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001038{
1039 int val;
1040
françois romieu4da19632011-01-03 15:07:55 +00001041 val = rtl_readphy(tp, reg_addr);
1042 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +00001043}
1044
Francois Romieuccdffb92008-07-26 14:26:06 +02001045static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1046 int val)
1047{
1048 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001049
françois romieu4da19632011-01-03 15:07:55 +00001050 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001051}
1052
1053static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1054{
1055 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001056
françois romieu4da19632011-01-03 15:07:55 +00001057 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001058}
1059
Francois Romieudacf8152008-08-02 20:44:13 +02001060static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
1061{
1062 unsigned int i;
1063
1064 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1065 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1066
1067 for (i = 0; i < 100; i++) {
1068 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
1069 break;
1070 udelay(10);
1071 }
1072}
1073
1074static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
1075{
1076 u16 value = 0xffff;
1077 unsigned int i;
1078
1079 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1080
1081 for (i = 0; i < 100; i++) {
1082 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
1083 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
1084 break;
1085 }
1086 udelay(10);
1087 }
1088
1089 return value;
1090}
1091
1092static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
1093{
1094 unsigned int i;
1095
1096 RTL_W32(CSIDR, value);
1097 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
1098 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
1099
1100 for (i = 0; i < 100; i++) {
1101 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
1102 break;
1103 udelay(10);
1104 }
1105}
1106
1107static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
1108{
1109 u32 value = ~0x00;
1110 unsigned int i;
1111
1112 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
1113 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
1114
1115 for (i = 0; i < 100; i++) {
1116 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
1117 value = RTL_R32(CSIDR);
1118 break;
1119 }
1120 udelay(10);
1121 }
1122
1123 return value;
1124}
1125
Hayes Wang133ac402011-07-06 15:58:05 +08001126static
1127void rtl_eri_write(void __iomem *ioaddr, int addr, u32 mask, u32 val, int type)
1128{
1129 unsigned int i;
1130
1131 BUG_ON((addr & 3) || (mask == 0));
1132 RTL_W32(ERIDR, val);
1133 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1134
1135 for (i = 0; i < 100; i++) {
1136 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
1137 break;
1138 udelay(100);
1139 }
1140}
1141
1142static u32 rtl_eri_read(void __iomem *ioaddr, int addr, int type)
1143{
1144 u32 value = ~0x00;
1145 unsigned int i;
1146
1147 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1148
1149 for (i = 0; i < 100; i++) {
1150 if (RTL_R32(ERIAR) & ERIAR_FLAG) {
1151 value = RTL_R32(ERIDR);
1152 break;
1153 }
1154 udelay(100);
1155 }
1156
1157 return value;
1158}
1159
1160static void
1161rtl_w1w0_eri(void __iomem *ioaddr, int addr, u32 mask, u32 p, u32 m, int type)
1162{
1163 u32 val;
1164
1165 val = rtl_eri_read(ioaddr, addr, type);
1166 rtl_eri_write(ioaddr, addr, mask, (val & ~m) | p, type);
1167}
1168
françois romieuc28aa382011-08-02 03:53:43 +00001169struct exgmac_reg {
1170 u16 addr;
1171 u16 mask;
1172 u32 val;
1173};
1174
1175static void rtl_write_exgmac_batch(void __iomem *ioaddr,
1176 const struct exgmac_reg *r, int len)
1177{
1178 while (len-- > 0) {
1179 rtl_eri_write(ioaddr, r->addr, r->mask, r->val, ERIAR_EXGMAC);
1180 r++;
1181 }
1182}
1183
françois romieudaf9df62009-10-07 12:44:20 +00001184static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
1185{
1186 u8 value = 0xff;
1187 unsigned int i;
1188
1189 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1190
1191 for (i = 0; i < 300; i++) {
1192 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
1193 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
1194 break;
1195 }
1196 udelay(100);
1197 }
1198
1199 return value;
1200}
1201
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001202static u16 rtl_get_events(struct rtl8169_private *tp)
1203{
1204 void __iomem *ioaddr = tp->mmio_addr;
1205
1206 return RTL_R16(IntrStatus);
1207}
1208
1209static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1210{
1211 void __iomem *ioaddr = tp->mmio_addr;
1212
1213 RTL_W16(IntrStatus, bits);
1214 mmiowb();
1215}
1216
1217static void rtl_irq_disable(struct rtl8169_private *tp)
1218{
1219 void __iomem *ioaddr = tp->mmio_addr;
1220
1221 RTL_W16(IntrMask, 0);
1222 mmiowb();
1223}
1224
Francois Romieu3e990ff2012-01-26 12:50:01 +01001225static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1226{
1227 void __iomem *ioaddr = tp->mmio_addr;
1228
1229 RTL_W16(IntrMask, bits);
1230}
1231
Francois Romieuda78dbf2012-01-26 14:18:23 +01001232#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1233#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1234#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1235
1236static void rtl_irq_enable_all(struct rtl8169_private *tp)
1237{
1238 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1239}
1240
françois romieu811fd302011-12-04 20:30:45 +00001241static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
françois romieu811fd302011-12-04 20:30:45 +00001243 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001245 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001246 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001247 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
françois romieu4da19632011-01-03 15:07:55 +00001250static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
françois romieu4da19632011-01-03 15:07:55 +00001252 void __iomem *ioaddr = tp->mmio_addr;
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return RTL_R32(TBICSR) & TBIReset;
1255}
1256
françois romieu4da19632011-01-03 15:07:55 +00001257static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
françois romieu4da19632011-01-03 15:07:55 +00001259 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
1262static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1263{
1264 return RTL_R32(TBICSR) & TBILinkOk;
1265}
1266
1267static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1268{
1269 return RTL_R8(PHYstatus) & LinkStatus;
1270}
1271
françois romieu4da19632011-01-03 15:07:55 +00001272static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
françois romieu4da19632011-01-03 15:07:55 +00001274 void __iomem *ioaddr = tp->mmio_addr;
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1277}
1278
françois romieu4da19632011-01-03 15:07:55 +00001279static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
1281 unsigned int val;
1282
françois romieu4da19632011-01-03 15:07:55 +00001283 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1284 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
1286
Hayes Wang70090422011-07-06 15:58:06 +08001287static void rtl_link_chg_patch(struct rtl8169_private *tp)
1288{
1289 void __iomem *ioaddr = tp->mmio_addr;
1290 struct net_device *dev = tp->dev;
1291
1292 if (!netif_running(dev))
1293 return;
1294
1295 if (tp->mac_version == RTL_GIGA_MAC_VER_34) {
1296 if (RTL_R8(PHYstatus) & _1000bpsF) {
1297 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1298 0x00000011, ERIAR_EXGMAC);
1299 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1300 0x00000005, ERIAR_EXGMAC);
1301 } else if (RTL_R8(PHYstatus) & _100bps) {
1302 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1303 0x0000001f, ERIAR_EXGMAC);
1304 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1305 0x00000005, ERIAR_EXGMAC);
1306 } else {
1307 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1308 0x0000001f, ERIAR_EXGMAC);
1309 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1310 0x0000003f, ERIAR_EXGMAC);
1311 }
1312 /* Reset packet filter */
1313 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
1314 ERIAR_EXGMAC);
1315 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
1316 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001317 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1318 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1319 if (RTL_R8(PHYstatus) & _1000bpsF) {
1320 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1321 0x00000011, ERIAR_EXGMAC);
1322 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1323 0x00000005, ERIAR_EXGMAC);
1324 } else {
1325 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1326 0x0000001f, ERIAR_EXGMAC);
1327 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1328 0x0000003f, ERIAR_EXGMAC);
1329 }
Hayes Wang70090422011-07-06 15:58:06 +08001330 }
1331}
1332
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001333static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001334 struct rtl8169_private *tp,
1335 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001338 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001339 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001340 if (pm)
1341 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001343 if (net_ratelimit())
1344 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001345 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001347 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001348 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001349 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001353static void rtl8169_check_link_status(struct net_device *dev,
1354 struct rtl8169_private *tp,
1355 void __iomem *ioaddr)
1356{
1357 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1358}
1359
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001360#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1361
1362static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1363{
1364 void __iomem *ioaddr = tp->mmio_addr;
1365 u8 options;
1366 u32 wolopts = 0;
1367
1368 options = RTL_R8(Config1);
1369 if (!(options & PMEnable))
1370 return 0;
1371
1372 options = RTL_R8(Config3);
1373 if (options & LinkUp)
1374 wolopts |= WAKE_PHY;
1375 if (options & MagicPacket)
1376 wolopts |= WAKE_MAGIC;
1377
1378 options = RTL_R8(Config5);
1379 if (options & UWF)
1380 wolopts |= WAKE_UCAST;
1381 if (options & BWF)
1382 wolopts |= WAKE_BCAST;
1383 if (options & MWF)
1384 wolopts |= WAKE_MCAST;
1385
1386 return wolopts;
1387}
1388
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001389static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1390{
1391 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001392
Francois Romieuda78dbf2012-01-26 14:18:23 +01001393 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001394
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001395 wol->supported = WAKE_ANY;
1396 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001397
Francois Romieuda78dbf2012-01-26 14:18:23 +01001398 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001399}
1400
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001401static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001402{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001403 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001404 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001405 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001406 u32 opt;
1407 u16 reg;
1408 u8 mask;
1409 } cfg[] = {
1410 { WAKE_ANY, Config1, PMEnable },
1411 { WAKE_PHY, Config3, LinkUp },
1412 { WAKE_MAGIC, Config3, MagicPacket },
1413 { WAKE_UCAST, Config5, UWF },
1414 { WAKE_BCAST, Config5, BWF },
1415 { WAKE_MCAST, Config5, MWF },
1416 { WAKE_ANY, Config5, LanWake }
1417 };
1418
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001419 RTL_W8(Cfg9346, Cfg9346_Unlock);
1420
1421 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1422 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001423 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001424 options |= cfg[i].mask;
1425 RTL_W8(cfg[i].reg, options);
1426 }
1427
1428 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001429}
1430
1431static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1432{
1433 struct rtl8169_private *tp = netdev_priv(dev);
1434
Francois Romieuda78dbf2012-01-26 14:18:23 +01001435 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001436
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001437 if (wol->wolopts)
1438 tp->features |= RTL_FEATURE_WOL;
1439 else
1440 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001441 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001442
1443 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001444
françois romieuea809072010-11-08 13:23:58 +00001445 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1446
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001447 return 0;
1448}
1449
Francois Romieu31bd2042011-04-26 18:58:59 +02001450static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1451{
Francois Romieu85bffe62011-04-27 08:22:39 +02001452 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001453}
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455static void rtl8169_get_drvinfo(struct net_device *dev,
1456 struct ethtool_drvinfo *info)
1457{
1458 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001459 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Rick Jones68aad782011-11-07 13:29:27 +00001461 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1462 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1463 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001464 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001465 if (!IS_ERR_OR_NULL(rtl_fw))
1466 strlcpy(info->fw_version, rtl_fw->version,
1467 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
1470static int rtl8169_get_regs_len(struct net_device *dev)
1471{
1472 return R8169_REGS_SIZE;
1473}
1474
1475static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001476 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 struct rtl8169_private *tp = netdev_priv(dev);
1479 void __iomem *ioaddr = tp->mmio_addr;
1480 int ret = 0;
1481 u32 reg;
1482
1483 reg = RTL_R32(TBICSR);
1484 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1485 (duplex == DUPLEX_FULL)) {
1486 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1487 } else if (autoneg == AUTONEG_ENABLE)
1488 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1489 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001490 netif_warn(tp, link, dev,
1491 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 ret = -EOPNOTSUPP;
1493 }
1494
1495 return ret;
1496}
1497
1498static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001499 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
1501 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001502 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001503 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Hayes Wang716b50a2011-02-22 17:26:18 +08001505 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001508 int auto_nego;
1509
françois romieu4da19632011-01-03 15:07:55 +00001510 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001511 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1512 ADVERTISE_100HALF | ADVERTISE_100FULL);
1513
1514 if (adv & ADVERTISED_10baseT_Half)
1515 auto_nego |= ADVERTISE_10HALF;
1516 if (adv & ADVERTISED_10baseT_Full)
1517 auto_nego |= ADVERTISE_10FULL;
1518 if (adv & ADVERTISED_100baseT_Half)
1519 auto_nego |= ADVERTISE_100HALF;
1520 if (adv & ADVERTISED_100baseT_Full)
1521 auto_nego |= ADVERTISE_100FULL;
1522
françois romieu3577aa12009-05-19 10:46:48 +00001523 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1524
françois romieu4da19632011-01-03 15:07:55 +00001525 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001526 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1527
1528 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001529 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001530 if (adv & ADVERTISED_1000baseT_Half)
1531 giga_ctrl |= ADVERTISE_1000HALF;
1532 if (adv & ADVERTISED_1000baseT_Full)
1533 giga_ctrl |= ADVERTISE_1000FULL;
1534 } else if (adv & (ADVERTISED_1000baseT_Half |
1535 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001536 netif_info(tp, link, dev,
1537 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001538 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
françois romieu3577aa12009-05-19 10:46:48 +00001541 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001542
françois romieu4da19632011-01-03 15:07:55 +00001543 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1544 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001545 } else {
1546 giga_ctrl = 0;
1547
1548 if (speed == SPEED_10)
1549 bmcr = 0;
1550 else if (speed == SPEED_100)
1551 bmcr = BMCR_SPEED100;
1552 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001553 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001554
1555 if (duplex == DUPLEX_FULL)
1556 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001557 }
1558
françois romieu4da19632011-01-03 15:07:55 +00001559 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001560
Francois Romieucecb5fd2011-04-01 10:21:07 +02001561 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1562 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001563 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001564 rtl_writephy(tp, 0x17, 0x2138);
1565 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001566 } else {
françois romieu4da19632011-01-03 15:07:55 +00001567 rtl_writephy(tp, 0x17, 0x2108);
1568 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001569 }
1570 }
1571
Oliver Neukum54405cd2011-01-06 21:55:13 +01001572 rc = 0;
1573out:
1574 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
1576
1577static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001578 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 struct rtl8169_private *tp = netdev_priv(dev);
1581 int ret;
1582
Oliver Neukum54405cd2011-01-06 21:55:13 +01001583 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001584 if (ret < 0)
1585 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Francois Romieu4876cc12011-03-11 21:07:11 +01001587 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1588 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001590 }
1591out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return ret;
1593}
1594
1595static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1596{
1597 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 int ret;
1599
Francois Romieu4876cc12011-03-11 21:07:11 +01001600 del_timer_sync(&tp->timer);
1601
Francois Romieuda78dbf2012-01-26 14:18:23 +01001602 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001603 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001604 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001605 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return ret;
1608}
1609
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001610static netdev_features_t rtl8169_fix_features(struct net_device *dev,
1611 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
Francois Romieud58d46b2011-05-03 16:38:29 +02001613 struct rtl8169_private *tp = netdev_priv(dev);
1614
Francois Romieu2b7b4312011-04-18 22:53:24 -07001615 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001616 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Francois Romieud58d46b2011-05-03 16:38:29 +02001618 if (dev->mtu > JUMBO_1K &&
1619 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
1620 features &= ~NETIF_F_IP_CSUM;
1621
Michał Mirosław350fb322011-04-08 06:35:56 +00001622 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623}
1624
Francois Romieuda78dbf2012-01-26 14:18:23 +01001625static void __rtl8169_set_features(struct net_device *dev,
1626 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
1628 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Francois Romieuda78dbf2012-01-26 14:18:23 +01001630 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Michał Mirosław350fb322011-04-08 06:35:56 +00001632 if (features & NETIF_F_RXCSUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 tp->cp_cmd |= RxChkSum;
1634 else
1635 tp->cp_cmd &= ~RxChkSum;
1636
Michał Mirosław350fb322011-04-08 06:35:56 +00001637 if (dev->features & NETIF_F_HW_VLAN_RX)
1638 tp->cp_cmd |= RxVlan;
1639 else
1640 tp->cp_cmd &= ~RxVlan;
1641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 RTL_W16(CPlusCmd, tp->cp_cmd);
1643 RTL_R16(CPlusCmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001644}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Francois Romieuda78dbf2012-01-26 14:18:23 +01001646static int rtl8169_set_features(struct net_device *dev,
1647 netdev_features_t features)
1648{
1649 struct rtl8169_private *tp = netdev_priv(dev);
1650
1651 rtl_lock_work(tp);
1652 __rtl8169_set_features(dev, features);
1653 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 return 0;
1656}
1657
Francois Romieuda78dbf2012-01-26 14:18:23 +01001658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1660 struct sk_buff *skb)
1661{
Jesse Grosseab6d182010-10-20 13:56:03 +00001662 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1664}
1665
Francois Romieu7a8fc772011-03-01 17:18:33 +01001666static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Francois Romieu7a8fc772011-03-01 17:18:33 +01001670 if (opts2 & RxVlanTag)
1671 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Eric Dumazet2edae082010-09-06 18:46:39 +00001672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 desc->opts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
Francois Romieuccdffb92008-07-26 14:26:06 +02001676static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
1678 struct rtl8169_private *tp = netdev_priv(dev);
1679 void __iomem *ioaddr = tp->mmio_addr;
1680 u32 status;
1681
1682 cmd->supported =
1683 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1684 cmd->port = PORT_FIBRE;
1685 cmd->transceiver = XCVR_INTERNAL;
1686
1687 status = RTL_R32(TBICSR);
1688 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1689 cmd->autoneg = !!(status & TBINwEnable);
1690
David Decotigny70739492011-04-27 18:32:40 +00001691 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001693
1694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
Francois Romieuccdffb92008-07-26 14:26:06 +02001697static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
1699 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Francois Romieuccdffb92008-07-26 14:26:06 +02001701 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
1703
1704static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1705{
1706 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001707 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Francois Romieuda78dbf2012-01-26 14:18:23 +01001709 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02001710 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001711 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Francois Romieuccdffb92008-07-26 14:26:06 +02001713 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
1715
1716static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1717 void *p)
1718{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001719 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Francois Romieu5b0384f2006-08-16 16:00:01 +02001721 if (regs->len > R8169_REGS_SIZE)
1722 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Francois Romieuda78dbf2012-01-26 14:18:23 +01001724 rtl_lock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001725 memcpy_fromio(p, tp->mmio_addr, regs->len);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001726 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727}
1728
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001729static u32 rtl8169_get_msglevel(struct net_device *dev)
1730{
1731 struct rtl8169_private *tp = netdev_priv(dev);
1732
1733 return tp->msg_enable;
1734}
1735
1736static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1737{
1738 struct rtl8169_private *tp = netdev_priv(dev);
1739
1740 tp->msg_enable = value;
1741}
1742
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001743static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1744 "tx_packets",
1745 "rx_packets",
1746 "tx_errors",
1747 "rx_errors",
1748 "rx_missed",
1749 "align_errors",
1750 "tx_single_collisions",
1751 "tx_multi_collisions",
1752 "unicast",
1753 "broadcast",
1754 "multicast",
1755 "tx_aborted",
1756 "tx_underrun",
1757};
1758
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001759static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001760{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001761 switch (sset) {
1762 case ETH_SS_STATS:
1763 return ARRAY_SIZE(rtl8169_gstrings);
1764 default:
1765 return -EOPNOTSUPP;
1766 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001767}
1768
Ivan Vecera355423d2009-02-06 21:49:57 -08001769static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001770{
1771 struct rtl8169_private *tp = netdev_priv(dev);
1772 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001773 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001774 struct rtl8169_counters *counters;
1775 dma_addr_t paddr;
1776 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001777 int wait = 1000;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001778
Ivan Vecera355423d2009-02-06 21:49:57 -08001779 /*
1780 * Some chips are unable to dump tally counters when the receiver
1781 * is disabled.
1782 */
1783 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1784 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001785
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001786 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001787 if (!counters)
1788 return;
1789
1790 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001791 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001792 RTL_W32(CounterAddrLow, cmd);
1793 RTL_W32(CounterAddrLow, cmd | CounterDump);
1794
Ivan Vecera355423d2009-02-06 21:49:57 -08001795 while (wait--) {
1796 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
Ivan Vecera355423d2009-02-06 21:49:57 -08001797 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001798 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001799 }
1800 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001801 }
1802
1803 RTL_W32(CounterAddrLow, 0);
1804 RTL_W32(CounterAddrHigh, 0);
1805
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001806 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001807}
1808
Ivan Vecera355423d2009-02-06 21:49:57 -08001809static void rtl8169_get_ethtool_stats(struct net_device *dev,
1810 struct ethtool_stats *stats, u64 *data)
1811{
1812 struct rtl8169_private *tp = netdev_priv(dev);
1813
1814 ASSERT_RTNL();
1815
1816 rtl8169_update_counters(dev);
1817
1818 data[0] = le64_to_cpu(tp->counters.tx_packets);
1819 data[1] = le64_to_cpu(tp->counters.rx_packets);
1820 data[2] = le64_to_cpu(tp->counters.tx_errors);
1821 data[3] = le32_to_cpu(tp->counters.rx_errors);
1822 data[4] = le16_to_cpu(tp->counters.rx_missed);
1823 data[5] = le16_to_cpu(tp->counters.align_errors);
1824 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1825 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1826 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1827 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1828 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1829 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1830 data[12] = le16_to_cpu(tp->counters.tx_underun);
1831}
1832
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001833static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1834{
1835 switch(stringset) {
1836 case ETH_SS_STATS:
1837 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1838 break;
1839 }
1840}
1841
Jeff Garzik7282d492006-09-13 14:30:00 -04001842static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 .get_drvinfo = rtl8169_get_drvinfo,
1844 .get_regs_len = rtl8169_get_regs_len,
1845 .get_link = ethtool_op_get_link,
1846 .get_settings = rtl8169_get_settings,
1847 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001848 .get_msglevel = rtl8169_get_msglevel,
1849 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001851 .get_wol = rtl8169_get_wol,
1852 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001853 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001854 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001855 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856};
1857
Francois Romieu07d3f512007-02-21 22:40:46 +01001858static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02001859 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Francois Romieu5d320a22011-05-08 17:47:36 +02001861 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01001862 /*
1863 * The driver currently handles the 8168Bf and the 8168Be identically
1864 * but they can be identified more specifically through the test below
1865 * if needed:
1866 *
1867 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001868 *
1869 * Same thing for the 8101Eb and the 8101Ec:
1870 *
1871 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001872 */
Francois Romieu37441002011-06-17 22:58:54 +02001873 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001875 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 int mac_version;
1877 } mac_info[] = {
Hayes Wangc2218922011-09-06 16:55:18 +08001878 /* 8168F family. */
1879 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
1880 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
1881
hayeswang01dc7fe2011-03-21 01:50:28 +00001882 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08001883 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00001884 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
1885 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
1886 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
1887
Francois Romieu5b538df2008-07-20 16:22:45 +02001888 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001889 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1890 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001891 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001892
françois romieue6de30d2011-01-03 15:08:37 +00001893 /* 8168DP family. */
1894 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1895 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00001896 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00001897
Francois Romieuef808d52008-06-29 13:10:54 +02001898 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001899 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001900 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001901 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001902 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001903 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1904 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001905 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001906 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001907 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001908
1909 /* 8168B family. */
1910 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1911 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1912 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1913 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1914
1915 /* 8101 family. */
hayeswang36a0e6c2011-03-21 01:50:30 +00001916 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08001917 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
1918 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
1919 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001920 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1921 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1922 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1923 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1924 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1925 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001926 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001927 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001928 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001929 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1930 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001931 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1932 /* FIXME: where did these entries come from ? -- FR */
1933 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1934 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1935
1936 /* 8110 family. */
1937 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1938 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1939 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1940 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1941 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1942 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1943
Jean Delvaref21b75e2009-05-26 20:54:48 -07001944 /* Catch-all */
1945 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02001946 };
1947 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 u32 reg;
1949
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001950 reg = RTL_R32(TxConfig);
1951 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 p++;
1953 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02001954
1955 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
1956 netif_notice(tp, probe, dev,
1957 "unknown MAC, using family default\n");
1958 tp->mac_version = default_version;
1959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961
1962static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1963{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001964 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
Francois Romieu867763c2007-08-17 18:21:58 +02001967struct phy_reg {
1968 u16 reg;
1969 u16 val;
1970};
1971
françois romieu4da19632011-01-03 15:07:55 +00001972static void rtl_writephy_batch(struct rtl8169_private *tp,
1973 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001974{
1975 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001976 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001977 regs++;
1978 }
1979}
1980
françois romieubca03d52011-01-03 15:07:31 +00001981#define PHY_READ 0x00000000
1982#define PHY_DATA_OR 0x10000000
1983#define PHY_DATA_AND 0x20000000
1984#define PHY_BJMPN 0x30000000
1985#define PHY_READ_EFUSE 0x40000000
1986#define PHY_READ_MAC_BYTE 0x50000000
1987#define PHY_WRITE_MAC_BYTE 0x60000000
1988#define PHY_CLEAR_READCOUNT 0x70000000
1989#define PHY_WRITE 0x80000000
1990#define PHY_READCOUNT_EQ_SKIP 0x90000000
1991#define PHY_COMP_EQ_SKIPN 0xa0000000
1992#define PHY_COMP_NEQ_SKIPN 0xb0000000
1993#define PHY_WRITE_PREVIOUS 0xc0000000
1994#define PHY_SKIPN 0xd0000000
1995#define PHY_DELAY_MS 0xe0000000
1996#define PHY_WRITE_ERI_WORD 0xf0000000
1997
Hayes Wang960aee62011-06-18 11:37:48 +02001998struct fw_info {
1999 u32 magic;
2000 char version[RTL_VER_SIZE];
2001 __le32 fw_start;
2002 __le32 fw_len;
2003 u8 chksum;
2004} __packed;
2005
Francois Romieu1c361ef2011-06-17 17:16:24 +02002006#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2007
2008static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002009{
Francois Romieub6ffd972011-06-17 17:00:05 +02002010 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002011 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002012 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2013 char *version = rtl_fw->version;
2014 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002015
Francois Romieu1c361ef2011-06-17 17:16:24 +02002016 if (fw->size < FW_OPCODE_SIZE)
2017 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002018
2019 if (!fw_info->magic) {
2020 size_t i, size, start;
2021 u8 checksum = 0;
2022
2023 if (fw->size < sizeof(*fw_info))
2024 goto out;
2025
2026 for (i = 0; i < fw->size; i++)
2027 checksum += fw->data[i];
2028 if (checksum != 0)
2029 goto out;
2030
2031 start = le32_to_cpu(fw_info->fw_start);
2032 if (start > fw->size)
2033 goto out;
2034
2035 size = le32_to_cpu(fw_info->fw_len);
2036 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2037 goto out;
2038
2039 memcpy(version, fw_info->version, RTL_VER_SIZE);
2040
2041 pa->code = (__le32 *)(fw->data + start);
2042 pa->size = size;
2043 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002044 if (fw->size % FW_OPCODE_SIZE)
2045 goto out;
2046
2047 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2048
2049 pa->code = (__le32 *)fw->data;
2050 pa->size = fw->size / FW_OPCODE_SIZE;
2051 }
2052 version[RTL_VER_SIZE - 1] = 0;
2053
2054 rc = true;
2055out:
2056 return rc;
2057}
2058
Francois Romieufd112f22011-06-18 00:10:29 +02002059static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2060 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002061{
Francois Romieufd112f22011-06-18 00:10:29 +02002062 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002063 size_t index;
2064
Francois Romieu1c361ef2011-06-17 17:16:24 +02002065 for (index = 0; index < pa->size; index++) {
2066 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002067 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002068
hayeswang42b82dc2011-01-10 02:07:25 +00002069 switch(action & 0xf0000000) {
2070 case PHY_READ:
2071 case PHY_DATA_OR:
2072 case PHY_DATA_AND:
2073 case PHY_READ_EFUSE:
2074 case PHY_CLEAR_READCOUNT:
2075 case PHY_WRITE:
2076 case PHY_WRITE_PREVIOUS:
2077 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002078 break;
2079
hayeswang42b82dc2011-01-10 02:07:25 +00002080 case PHY_BJMPN:
2081 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002082 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002083 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002084 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002085 }
2086 break;
2087 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002088 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002089 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002090 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002091 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002092 }
2093 break;
2094 case PHY_COMP_EQ_SKIPN:
2095 case PHY_COMP_NEQ_SKIPN:
2096 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002097 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002098 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002099 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002100 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002101 }
2102 break;
2103
2104 case PHY_READ_MAC_BYTE:
2105 case PHY_WRITE_MAC_BYTE:
2106 case PHY_WRITE_ERI_WORD:
2107 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002108 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002109 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002110 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002111 }
2112 }
Francois Romieufd112f22011-06-18 00:10:29 +02002113 rc = true;
2114out:
2115 return rc;
2116}
françois romieubca03d52011-01-03 15:07:31 +00002117
Francois Romieufd112f22011-06-18 00:10:29 +02002118static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2119{
2120 struct net_device *dev = tp->dev;
2121 int rc = -EINVAL;
2122
2123 if (!rtl_fw_format_ok(tp, rtl_fw)) {
2124 netif_err(tp, ifup, dev, "invalid firwmare\n");
2125 goto out;
2126 }
2127
2128 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2129 rc = 0;
2130out:
2131 return rc;
2132}
2133
2134static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2135{
2136 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2137 u32 predata, count;
2138 size_t index;
2139
2140 predata = count = 0;
hayeswang42b82dc2011-01-10 02:07:25 +00002141
Francois Romieu1c361ef2011-06-17 17:16:24 +02002142 for (index = 0; index < pa->size; ) {
2143 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002144 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002145 u32 regno = (action & 0x0fff0000) >> 16;
2146
2147 if (!action)
2148 break;
françois romieubca03d52011-01-03 15:07:31 +00002149
2150 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002151 case PHY_READ:
2152 predata = rtl_readphy(tp, regno);
2153 count++;
2154 index++;
françois romieubca03d52011-01-03 15:07:31 +00002155 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002156 case PHY_DATA_OR:
2157 predata |= data;
2158 index++;
2159 break;
2160 case PHY_DATA_AND:
2161 predata &= data;
2162 index++;
2163 break;
2164 case PHY_BJMPN:
2165 index -= regno;
2166 break;
2167 case PHY_READ_EFUSE:
2168 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
2169 index++;
2170 break;
2171 case PHY_CLEAR_READCOUNT:
2172 count = 0;
2173 index++;
2174 break;
2175 case PHY_WRITE:
2176 rtl_writephy(tp, regno, data);
2177 index++;
2178 break;
2179 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002180 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002181 break;
2182 case PHY_COMP_EQ_SKIPN:
2183 if (predata == data)
2184 index += regno;
2185 index++;
2186 break;
2187 case PHY_COMP_NEQ_SKIPN:
2188 if (predata != data)
2189 index += regno;
2190 index++;
2191 break;
2192 case PHY_WRITE_PREVIOUS:
2193 rtl_writephy(tp, regno, predata);
2194 index++;
2195 break;
2196 case PHY_SKIPN:
2197 index += regno + 1;
2198 break;
2199 case PHY_DELAY_MS:
2200 mdelay(data);
2201 index++;
2202 break;
2203
2204 case PHY_READ_MAC_BYTE:
2205 case PHY_WRITE_MAC_BYTE:
2206 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00002207 default:
2208 BUG();
2209 }
2210 }
2211}
2212
françois romieuf1e02ed2011-01-13 13:07:53 +00002213static void rtl_release_firmware(struct rtl8169_private *tp)
2214{
Francois Romieub6ffd972011-06-17 17:00:05 +02002215 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2216 release_firmware(tp->rtl_fw->fw);
2217 kfree(tp->rtl_fw);
2218 }
2219 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002220}
2221
François Romieu953a12c2011-04-24 17:38:48 +02002222static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002223{
Francois Romieub6ffd972011-06-17 17:00:05 +02002224 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002225
2226 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieub6ffd972011-06-17 17:00:05 +02002227 if (!IS_ERR_OR_NULL(rtl_fw))
2228 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002229}
2230
2231static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2232{
2233 if (rtl_readphy(tp, reg) != val)
2234 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2235 else
2236 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002237}
2238
françois romieu4da19632011-01-03 15:07:55 +00002239static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002241 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002242 { 0x1f, 0x0001 },
2243 { 0x06, 0x006e },
2244 { 0x08, 0x0708 },
2245 { 0x15, 0x4000 },
2246 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
françois romieu0b9b5712009-08-10 19:44:56 +00002248 { 0x1f, 0x0001 },
2249 { 0x03, 0x00a1 },
2250 { 0x02, 0x0008 },
2251 { 0x01, 0x0120 },
2252 { 0x00, 0x1000 },
2253 { 0x04, 0x0800 },
2254 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
françois romieu0b9b5712009-08-10 19:44:56 +00002256 { 0x03, 0xff41 },
2257 { 0x02, 0xdf60 },
2258 { 0x01, 0x0140 },
2259 { 0x00, 0x0077 },
2260 { 0x04, 0x7800 },
2261 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
françois romieu0b9b5712009-08-10 19:44:56 +00002263 { 0x03, 0x802f },
2264 { 0x02, 0x4f02 },
2265 { 0x01, 0x0409 },
2266 { 0x00, 0xf0f9 },
2267 { 0x04, 0x9800 },
2268 { 0x04, 0x9000 },
2269
2270 { 0x03, 0xdf01 },
2271 { 0x02, 0xdf20 },
2272 { 0x01, 0xff95 },
2273 { 0x00, 0xba00 },
2274 { 0x04, 0xa800 },
2275 { 0x04, 0xa000 },
2276
2277 { 0x03, 0xff41 },
2278 { 0x02, 0xdf20 },
2279 { 0x01, 0x0140 },
2280 { 0x00, 0x00bb },
2281 { 0x04, 0xb800 },
2282 { 0x04, 0xb000 },
2283
2284 { 0x03, 0xdf41 },
2285 { 0x02, 0xdc60 },
2286 { 0x01, 0x6340 },
2287 { 0x00, 0x007d },
2288 { 0x04, 0xd800 },
2289 { 0x04, 0xd000 },
2290
2291 { 0x03, 0xdf01 },
2292 { 0x02, 0xdf20 },
2293 { 0x01, 0x100a },
2294 { 0x00, 0xa0ff },
2295 { 0x04, 0xf800 },
2296 { 0x04, 0xf000 },
2297
2298 { 0x1f, 0x0000 },
2299 { 0x0b, 0x0000 },
2300 { 0x00, 0x9200 }
2301 };
2302
françois romieu4da19632011-01-03 15:07:55 +00002303 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
2305
françois romieu4da19632011-01-03 15:07:55 +00002306static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002307{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002308 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002309 { 0x1f, 0x0002 },
2310 { 0x01, 0x90d0 },
2311 { 0x1f, 0x0000 }
2312 };
2313
françois romieu4da19632011-01-03 15:07:55 +00002314 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002315}
2316
françois romieu4da19632011-01-03 15:07:55 +00002317static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002318{
2319 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002320
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002321 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2322 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002323 return;
2324
françois romieu4da19632011-01-03 15:07:55 +00002325 rtl_writephy(tp, 0x1f, 0x0001);
2326 rtl_writephy(tp, 0x10, 0xf01b);
2327 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002328}
2329
françois romieu4da19632011-01-03 15:07:55 +00002330static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002331{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002332 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002333 { 0x1f, 0x0001 },
2334 { 0x04, 0x0000 },
2335 { 0x03, 0x00a1 },
2336 { 0x02, 0x0008 },
2337 { 0x01, 0x0120 },
2338 { 0x00, 0x1000 },
2339 { 0x04, 0x0800 },
2340 { 0x04, 0x9000 },
2341 { 0x03, 0x802f },
2342 { 0x02, 0x4f02 },
2343 { 0x01, 0x0409 },
2344 { 0x00, 0xf099 },
2345 { 0x04, 0x9800 },
2346 { 0x04, 0xa000 },
2347 { 0x03, 0xdf01 },
2348 { 0x02, 0xdf20 },
2349 { 0x01, 0xff95 },
2350 { 0x00, 0xba00 },
2351 { 0x04, 0xa800 },
2352 { 0x04, 0xf000 },
2353 { 0x03, 0xdf01 },
2354 { 0x02, 0xdf20 },
2355 { 0x01, 0x101a },
2356 { 0x00, 0xa0ff },
2357 { 0x04, 0xf800 },
2358 { 0x04, 0x0000 },
2359 { 0x1f, 0x0000 },
2360
2361 { 0x1f, 0x0001 },
2362 { 0x10, 0xf41b },
2363 { 0x14, 0xfb54 },
2364 { 0x18, 0xf5c7 },
2365 { 0x1f, 0x0000 },
2366
2367 { 0x1f, 0x0001 },
2368 { 0x17, 0x0cc0 },
2369 { 0x1f, 0x0000 }
2370 };
2371
françois romieu4da19632011-01-03 15:07:55 +00002372 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002373
françois romieu4da19632011-01-03 15:07:55 +00002374 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002375}
2376
françois romieu4da19632011-01-03 15:07:55 +00002377static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002378{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002379 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002380 { 0x1f, 0x0001 },
2381 { 0x04, 0x0000 },
2382 { 0x03, 0x00a1 },
2383 { 0x02, 0x0008 },
2384 { 0x01, 0x0120 },
2385 { 0x00, 0x1000 },
2386 { 0x04, 0x0800 },
2387 { 0x04, 0x9000 },
2388 { 0x03, 0x802f },
2389 { 0x02, 0x4f02 },
2390 { 0x01, 0x0409 },
2391 { 0x00, 0xf099 },
2392 { 0x04, 0x9800 },
2393 { 0x04, 0xa000 },
2394 { 0x03, 0xdf01 },
2395 { 0x02, 0xdf20 },
2396 { 0x01, 0xff95 },
2397 { 0x00, 0xba00 },
2398 { 0x04, 0xa800 },
2399 { 0x04, 0xf000 },
2400 { 0x03, 0xdf01 },
2401 { 0x02, 0xdf20 },
2402 { 0x01, 0x101a },
2403 { 0x00, 0xa0ff },
2404 { 0x04, 0xf800 },
2405 { 0x04, 0x0000 },
2406 { 0x1f, 0x0000 },
2407
2408 { 0x1f, 0x0001 },
2409 { 0x0b, 0x8480 },
2410 { 0x1f, 0x0000 },
2411
2412 { 0x1f, 0x0001 },
2413 { 0x18, 0x67c7 },
2414 { 0x04, 0x2000 },
2415 { 0x03, 0x002f },
2416 { 0x02, 0x4360 },
2417 { 0x01, 0x0109 },
2418 { 0x00, 0x3022 },
2419 { 0x04, 0x2800 },
2420 { 0x1f, 0x0000 },
2421
2422 { 0x1f, 0x0001 },
2423 { 0x17, 0x0cc0 },
2424 { 0x1f, 0x0000 }
2425 };
2426
françois romieu4da19632011-01-03 15:07:55 +00002427 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002428}
2429
françois romieu4da19632011-01-03 15:07:55 +00002430static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002431{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002432 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002433 { 0x10, 0xf41b },
2434 { 0x1f, 0x0000 }
2435 };
2436
françois romieu4da19632011-01-03 15:07:55 +00002437 rtl_writephy(tp, 0x1f, 0x0001);
2438 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002439
françois romieu4da19632011-01-03 15:07:55 +00002440 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002441}
2442
françois romieu4da19632011-01-03 15:07:55 +00002443static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002444{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002445 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002446 { 0x1f, 0x0001 },
2447 { 0x10, 0xf41b },
2448 { 0x1f, 0x0000 }
2449 };
2450
françois romieu4da19632011-01-03 15:07:55 +00002451 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002452}
2453
françois romieu4da19632011-01-03 15:07:55 +00002454static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002455{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002456 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002457 { 0x1f, 0x0000 },
2458 { 0x1d, 0x0f00 },
2459 { 0x1f, 0x0002 },
2460 { 0x0c, 0x1ec8 },
2461 { 0x1f, 0x0000 }
2462 };
2463
françois romieu4da19632011-01-03 15:07:55 +00002464 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002465}
2466
françois romieu4da19632011-01-03 15:07:55 +00002467static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002468{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002469 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002470 { 0x1f, 0x0001 },
2471 { 0x1d, 0x3d98 },
2472 { 0x1f, 0x0000 }
2473 };
2474
françois romieu4da19632011-01-03 15:07:55 +00002475 rtl_writephy(tp, 0x1f, 0x0000);
2476 rtl_patchphy(tp, 0x14, 1 << 5);
2477 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002478
françois romieu4da19632011-01-03 15:07:55 +00002479 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002480}
2481
françois romieu4da19632011-01-03 15:07:55 +00002482static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002483{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002484 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002485 { 0x1f, 0x0001 },
2486 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002487 { 0x1f, 0x0002 },
2488 { 0x00, 0x88d4 },
2489 { 0x01, 0x82b1 },
2490 { 0x03, 0x7002 },
2491 { 0x08, 0x9e30 },
2492 { 0x09, 0x01f0 },
2493 { 0x0a, 0x5500 },
2494 { 0x0c, 0x00c8 },
2495 { 0x1f, 0x0003 },
2496 { 0x12, 0xc096 },
2497 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002498 { 0x1f, 0x0000 },
2499 { 0x1f, 0x0000 },
2500 { 0x09, 0x2000 },
2501 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002502 };
2503
françois romieu4da19632011-01-03 15:07:55 +00002504 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002505
françois romieu4da19632011-01-03 15:07:55 +00002506 rtl_patchphy(tp, 0x14, 1 << 5);
2507 rtl_patchphy(tp, 0x0d, 1 << 5);
2508 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002509}
2510
françois romieu4da19632011-01-03 15:07:55 +00002511static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002512{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002513 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002514 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002515 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002516 { 0x03, 0x802f },
2517 { 0x02, 0x4f02 },
2518 { 0x01, 0x0409 },
2519 { 0x00, 0xf099 },
2520 { 0x04, 0x9800 },
2521 { 0x04, 0x9000 },
2522 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002523 { 0x1f, 0x0002 },
2524 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002525 { 0x06, 0x0761 },
2526 { 0x1f, 0x0003 },
2527 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002528 { 0x1f, 0x0000 }
2529 };
2530
françois romieu4da19632011-01-03 15:07:55 +00002531 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002532
françois romieu4da19632011-01-03 15:07:55 +00002533 rtl_patchphy(tp, 0x16, 1 << 0);
2534 rtl_patchphy(tp, 0x14, 1 << 5);
2535 rtl_patchphy(tp, 0x0d, 1 << 5);
2536 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002537}
2538
françois romieu4da19632011-01-03 15:07:55 +00002539static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002540{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002541 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002542 { 0x1f, 0x0001 },
2543 { 0x12, 0x2300 },
2544 { 0x1d, 0x3d98 },
2545 { 0x1f, 0x0002 },
2546 { 0x0c, 0x7eb8 },
2547 { 0x06, 0x5461 },
2548 { 0x1f, 0x0003 },
2549 { 0x16, 0x0f0a },
2550 { 0x1f, 0x0000 }
2551 };
2552
françois romieu4da19632011-01-03 15:07:55 +00002553 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002554
françois romieu4da19632011-01-03 15:07:55 +00002555 rtl_patchphy(tp, 0x16, 1 << 0);
2556 rtl_patchphy(tp, 0x14, 1 << 5);
2557 rtl_patchphy(tp, 0x0d, 1 << 5);
2558 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002559}
2560
françois romieu4da19632011-01-03 15:07:55 +00002561static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002562{
françois romieu4da19632011-01-03 15:07:55 +00002563 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002564}
2565
françois romieubca03d52011-01-03 15:07:31 +00002566static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002567{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002568 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002569 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002570 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002571 { 0x06, 0x4064 },
2572 { 0x07, 0x2863 },
2573 { 0x08, 0x059c },
2574 { 0x09, 0x26b4 },
2575 { 0x0a, 0x6a19 },
2576 { 0x0b, 0xdcc8 },
2577 { 0x10, 0xf06d },
2578 { 0x14, 0x7f68 },
2579 { 0x18, 0x7fd9 },
2580 { 0x1c, 0xf0ff },
2581 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002582 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002583 { 0x12, 0xf49f },
2584 { 0x13, 0x070b },
2585 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002586 { 0x14, 0x94c0 },
2587
2588 /*
2589 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002590 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002591 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002592 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002593 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002594 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002595 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002596 { 0x06, 0x5561 },
2597
2598 /*
2599 * Can not link to 1Gbps with bad cable
2600 * Decrease SNR threshold form 21.07dB to 19.04dB
2601 */
2602 { 0x1f, 0x0001 },
2603 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002604
2605 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002606 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002607 };
françois romieubca03d52011-01-03 15:07:31 +00002608 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002609
françois romieu4da19632011-01-03 15:07:55 +00002610 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002611
françois romieubca03d52011-01-03 15:07:31 +00002612 /*
2613 * Rx Error Issue
2614 * Fine Tune Switching regulator parameter
2615 */
françois romieu4da19632011-01-03 15:07:55 +00002616 rtl_writephy(tp, 0x1f, 0x0002);
2617 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2618 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002619
françois romieudaf9df62009-10-07 12:44:20 +00002620 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002621 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002622 { 0x1f, 0x0002 },
2623 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002624 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002625 { 0x05, 0x8330 },
2626 { 0x06, 0x669a },
2627 { 0x1f, 0x0002 }
2628 };
2629 int val;
2630
françois romieu4da19632011-01-03 15:07:55 +00002631 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002632
françois romieu4da19632011-01-03 15:07:55 +00002633 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002634
2635 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002636 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002637 0x0065, 0x0066, 0x0067, 0x0068,
2638 0x0069, 0x006a, 0x006b, 0x006c
2639 };
2640 int i;
2641
françois romieu4da19632011-01-03 15:07:55 +00002642 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002643
2644 val &= 0xff00;
2645 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002646 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002647 }
2648 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002649 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002650 { 0x1f, 0x0002 },
2651 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002652 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002653 { 0x05, 0x8330 },
2654 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002655 };
2656
françois romieu4da19632011-01-03 15:07:55 +00002657 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002658 }
2659
françois romieubca03d52011-01-03 15:07:31 +00002660 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002661 rtl_writephy(tp, 0x1f, 0x0002);
2662 rtl_patchphy(tp, 0x0d, 0x0300);
2663 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002664
françois romieubca03d52011-01-03 15:07:31 +00002665 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002666 rtl_writephy(tp, 0x1f, 0x0002);
2667 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2668 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002669
françois romieu4da19632011-01-03 15:07:55 +00002670 rtl_writephy(tp, 0x1f, 0x0005);
2671 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002672
2673 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002674
françois romieu4da19632011-01-03 15:07:55 +00002675 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002676}
2677
françois romieubca03d52011-01-03 15:07:31 +00002678static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002679{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002680 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002681 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002682 { 0x1f, 0x0001 },
2683 { 0x06, 0x4064 },
2684 { 0x07, 0x2863 },
2685 { 0x08, 0x059c },
2686 { 0x09, 0x26b4 },
2687 { 0x0a, 0x6a19 },
2688 { 0x0b, 0xdcc8 },
2689 { 0x10, 0xf06d },
2690 { 0x14, 0x7f68 },
2691 { 0x18, 0x7fd9 },
2692 { 0x1c, 0xf0ff },
2693 { 0x1d, 0x3d9c },
2694 { 0x1f, 0x0003 },
2695 { 0x12, 0xf49f },
2696 { 0x13, 0x070b },
2697 { 0x1a, 0x05ad },
2698 { 0x14, 0x94c0 },
2699
françois romieubca03d52011-01-03 15:07:31 +00002700 /*
2701 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002702 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002703 */
françois romieudaf9df62009-10-07 12:44:20 +00002704 { 0x1f, 0x0002 },
2705 { 0x06, 0x5561 },
2706 { 0x1f, 0x0005 },
2707 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002708 { 0x06, 0x5561 },
2709
2710 /*
2711 * Can not link to 1Gbps with bad cable
2712 * Decrease SNR threshold form 21.07dB to 19.04dB
2713 */
2714 { 0x1f, 0x0001 },
2715 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002716
2717 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002718 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002719 };
françois romieubca03d52011-01-03 15:07:31 +00002720 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002721
françois romieu4da19632011-01-03 15:07:55 +00002722 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002723
2724 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002725 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002726 { 0x1f, 0x0002 },
2727 { 0x05, 0x669a },
2728 { 0x1f, 0x0005 },
2729 { 0x05, 0x8330 },
2730 { 0x06, 0x669a },
2731
2732 { 0x1f, 0x0002 }
2733 };
2734 int val;
2735
françois romieu4da19632011-01-03 15:07:55 +00002736 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002737
françois romieu4da19632011-01-03 15:07:55 +00002738 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002739 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002740 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002741 0x0065, 0x0066, 0x0067, 0x0068,
2742 0x0069, 0x006a, 0x006b, 0x006c
2743 };
2744 int i;
2745
françois romieu4da19632011-01-03 15:07:55 +00002746 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002747
2748 val &= 0xff00;
2749 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002750 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002751 }
2752 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002753 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002754 { 0x1f, 0x0002 },
2755 { 0x05, 0x2642 },
2756 { 0x1f, 0x0005 },
2757 { 0x05, 0x8330 },
2758 { 0x06, 0x2642 }
2759 };
2760
françois romieu4da19632011-01-03 15:07:55 +00002761 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002762 }
2763
françois romieubca03d52011-01-03 15:07:31 +00002764 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002765 rtl_writephy(tp, 0x1f, 0x0002);
2766 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2767 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002768
françois romieubca03d52011-01-03 15:07:31 +00002769 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002770 rtl_writephy(tp, 0x1f, 0x0002);
2771 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002772
françois romieu4da19632011-01-03 15:07:55 +00002773 rtl_writephy(tp, 0x1f, 0x0005);
2774 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002775
2776 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002777
françois romieu4da19632011-01-03 15:07:55 +00002778 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002779}
2780
françois romieu4da19632011-01-03 15:07:55 +00002781static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002782{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002783 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002784 { 0x1f, 0x0002 },
2785 { 0x10, 0x0008 },
2786 { 0x0d, 0x006c },
2787
2788 { 0x1f, 0x0000 },
2789 { 0x0d, 0xf880 },
2790
2791 { 0x1f, 0x0001 },
2792 { 0x17, 0x0cc0 },
2793
2794 { 0x1f, 0x0001 },
2795 { 0x0b, 0xa4d8 },
2796 { 0x09, 0x281c },
2797 { 0x07, 0x2883 },
2798 { 0x0a, 0x6b35 },
2799 { 0x1d, 0x3da4 },
2800 { 0x1c, 0xeffd },
2801 { 0x14, 0x7f52 },
2802 { 0x18, 0x7fc6 },
2803 { 0x08, 0x0601 },
2804 { 0x06, 0x4063 },
2805 { 0x10, 0xf074 },
2806 { 0x1f, 0x0003 },
2807 { 0x13, 0x0789 },
2808 { 0x12, 0xf4bd },
2809 { 0x1a, 0x04fd },
2810 { 0x14, 0x84b0 },
2811 { 0x1f, 0x0000 },
2812 { 0x00, 0x9200 },
2813
2814 { 0x1f, 0x0005 },
2815 { 0x01, 0x0340 },
2816 { 0x1f, 0x0001 },
2817 { 0x04, 0x4000 },
2818 { 0x03, 0x1d21 },
2819 { 0x02, 0x0c32 },
2820 { 0x01, 0x0200 },
2821 { 0x00, 0x5554 },
2822 { 0x04, 0x4800 },
2823 { 0x04, 0x4000 },
2824 { 0x04, 0xf000 },
2825 { 0x03, 0xdf01 },
2826 { 0x02, 0xdf20 },
2827 { 0x01, 0x101a },
2828 { 0x00, 0xa0ff },
2829 { 0x04, 0xf800 },
2830 { 0x04, 0xf000 },
2831 { 0x1f, 0x0000 },
2832
2833 { 0x1f, 0x0007 },
2834 { 0x1e, 0x0023 },
2835 { 0x16, 0x0000 },
2836 { 0x1f, 0x0000 }
2837 };
2838
françois romieu4da19632011-01-03 15:07:55 +00002839 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002840}
2841
françois romieue6de30d2011-01-03 15:08:37 +00002842static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2843{
2844 static const struct phy_reg phy_reg_init[] = {
2845 { 0x1f, 0x0001 },
2846 { 0x17, 0x0cc0 },
2847
2848 { 0x1f, 0x0007 },
2849 { 0x1e, 0x002d },
2850 { 0x18, 0x0040 },
2851 { 0x1f, 0x0000 }
2852 };
2853
2854 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2855 rtl_patchphy(tp, 0x0d, 1 << 5);
2856}
2857
Hayes Wang70090422011-07-06 15:58:06 +08002858static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00002859{
2860 static const struct phy_reg phy_reg_init[] = {
2861 /* Enable Delay cap */
2862 { 0x1f, 0x0005 },
2863 { 0x05, 0x8b80 },
2864 { 0x06, 0xc896 },
2865 { 0x1f, 0x0000 },
2866
2867 /* Channel estimation fine tune */
2868 { 0x1f, 0x0001 },
2869 { 0x0b, 0x6c20 },
2870 { 0x07, 0x2872 },
2871 { 0x1c, 0xefff },
2872 { 0x1f, 0x0003 },
2873 { 0x14, 0x6420 },
2874 { 0x1f, 0x0000 },
2875
2876 /* Update PFM & 10M TX idle timer */
2877 { 0x1f, 0x0007 },
2878 { 0x1e, 0x002f },
2879 { 0x15, 0x1919 },
2880 { 0x1f, 0x0000 },
2881
2882 { 0x1f, 0x0007 },
2883 { 0x1e, 0x00ac },
2884 { 0x18, 0x0006 },
2885 { 0x1f, 0x0000 }
2886 };
2887
Francois Romieu15ecd032011-04-27 13:52:22 -07002888 rtl_apply_firmware(tp);
2889
hayeswang01dc7fe2011-03-21 01:50:28 +00002890 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2891
2892 /* DCO enable for 10M IDLE Power */
2893 rtl_writephy(tp, 0x1f, 0x0007);
2894 rtl_writephy(tp, 0x1e, 0x0023);
2895 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2896 rtl_writephy(tp, 0x1f, 0x0000);
2897
2898 /* For impedance matching */
2899 rtl_writephy(tp, 0x1f, 0x0002);
2900 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002901 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00002902
2903 /* PHY auto speed down */
2904 rtl_writephy(tp, 0x1f, 0x0007);
2905 rtl_writephy(tp, 0x1e, 0x002d);
2906 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
2907 rtl_writephy(tp, 0x1f, 0x0000);
2908 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2909
2910 rtl_writephy(tp, 0x1f, 0x0005);
2911 rtl_writephy(tp, 0x05, 0x8b86);
2912 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2913 rtl_writephy(tp, 0x1f, 0x0000);
2914
2915 rtl_writephy(tp, 0x1f, 0x0005);
2916 rtl_writephy(tp, 0x05, 0x8b85);
2917 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2918 rtl_writephy(tp, 0x1f, 0x0007);
2919 rtl_writephy(tp, 0x1e, 0x0020);
2920 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
2921 rtl_writephy(tp, 0x1f, 0x0006);
2922 rtl_writephy(tp, 0x00, 0x5a00);
2923 rtl_writephy(tp, 0x1f, 0x0000);
2924 rtl_writephy(tp, 0x0d, 0x0007);
2925 rtl_writephy(tp, 0x0e, 0x003c);
2926 rtl_writephy(tp, 0x0d, 0x4007);
2927 rtl_writephy(tp, 0x0e, 0x0000);
2928 rtl_writephy(tp, 0x0d, 0x0000);
2929}
2930
Hayes Wang70090422011-07-06 15:58:06 +08002931static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
2932{
2933 static const struct phy_reg phy_reg_init[] = {
2934 /* Enable Delay cap */
2935 { 0x1f, 0x0004 },
2936 { 0x1f, 0x0007 },
2937 { 0x1e, 0x00ac },
2938 { 0x18, 0x0006 },
2939 { 0x1f, 0x0002 },
2940 { 0x1f, 0x0000 },
2941 { 0x1f, 0x0000 },
2942
2943 /* Channel estimation fine tune */
2944 { 0x1f, 0x0003 },
2945 { 0x09, 0xa20f },
2946 { 0x1f, 0x0000 },
2947 { 0x1f, 0x0000 },
2948
2949 /* Green Setting */
2950 { 0x1f, 0x0005 },
2951 { 0x05, 0x8b5b },
2952 { 0x06, 0x9222 },
2953 { 0x05, 0x8b6d },
2954 { 0x06, 0x8000 },
2955 { 0x05, 0x8b76 },
2956 { 0x06, 0x8000 },
2957 { 0x1f, 0x0000 }
2958 };
2959
2960 rtl_apply_firmware(tp);
2961
2962 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2963
2964 /* For 4-corner performance improve */
2965 rtl_writephy(tp, 0x1f, 0x0005);
2966 rtl_writephy(tp, 0x05, 0x8b80);
2967 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2968 rtl_writephy(tp, 0x1f, 0x0000);
2969
2970 /* PHY auto speed down */
2971 rtl_writephy(tp, 0x1f, 0x0004);
2972 rtl_writephy(tp, 0x1f, 0x0007);
2973 rtl_writephy(tp, 0x1e, 0x002d);
2974 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
2975 rtl_writephy(tp, 0x1f, 0x0002);
2976 rtl_writephy(tp, 0x1f, 0x0000);
2977 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2978
2979 /* improve 10M EEE waveform */
2980 rtl_writephy(tp, 0x1f, 0x0005);
2981 rtl_writephy(tp, 0x05, 0x8b86);
2982 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2983 rtl_writephy(tp, 0x1f, 0x0000);
2984
2985 /* Improve 2-pair detection performance */
2986 rtl_writephy(tp, 0x1f, 0x0005);
2987 rtl_writephy(tp, 0x05, 0x8b85);
2988 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
2989 rtl_writephy(tp, 0x1f, 0x0000);
2990
2991 /* EEE setting */
2992 rtl_w1w0_eri(tp->mmio_addr, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003,
2993 ERIAR_EXGMAC);
2994 rtl_writephy(tp, 0x1f, 0x0005);
2995 rtl_writephy(tp, 0x05, 0x8b85);
2996 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2997 rtl_writephy(tp, 0x1f, 0x0004);
2998 rtl_writephy(tp, 0x1f, 0x0007);
2999 rtl_writephy(tp, 0x1e, 0x0020);
David S. Miller1805b2f2011-10-24 18:18:09 -04003000 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003001 rtl_writephy(tp, 0x1f, 0x0002);
3002 rtl_writephy(tp, 0x1f, 0x0000);
3003 rtl_writephy(tp, 0x0d, 0x0007);
3004 rtl_writephy(tp, 0x0e, 0x003c);
3005 rtl_writephy(tp, 0x0d, 0x4007);
3006 rtl_writephy(tp, 0x0e, 0x0000);
3007 rtl_writephy(tp, 0x0d, 0x0000);
3008
3009 /* Green feature */
3010 rtl_writephy(tp, 0x1f, 0x0003);
3011 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3012 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3013 rtl_writephy(tp, 0x1f, 0x0000);
3014}
3015
Hayes Wangc2218922011-09-06 16:55:18 +08003016static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3017{
3018 static const struct phy_reg phy_reg_init[] = {
3019 /* Channel estimation fine tune */
3020 { 0x1f, 0x0003 },
3021 { 0x09, 0xa20f },
3022 { 0x1f, 0x0000 },
3023
3024 /* Modify green table for giga & fnet */
3025 { 0x1f, 0x0005 },
3026 { 0x05, 0x8b55 },
3027 { 0x06, 0x0000 },
3028 { 0x05, 0x8b5e },
3029 { 0x06, 0x0000 },
3030 { 0x05, 0x8b67 },
3031 { 0x06, 0x0000 },
3032 { 0x05, 0x8b70 },
3033 { 0x06, 0x0000 },
3034 { 0x1f, 0x0000 },
3035 { 0x1f, 0x0007 },
3036 { 0x1e, 0x0078 },
3037 { 0x17, 0x0000 },
3038 { 0x19, 0x00fb },
3039 { 0x1f, 0x0000 },
3040
3041 /* Modify green table for 10M */
3042 { 0x1f, 0x0005 },
3043 { 0x05, 0x8b79 },
3044 { 0x06, 0xaa00 },
3045 { 0x1f, 0x0000 },
3046
3047 /* Disable hiimpedance detection (RTCT) */
3048 { 0x1f, 0x0003 },
3049 { 0x01, 0x328a },
3050 { 0x1f, 0x0000 }
3051 };
3052
3053 rtl_apply_firmware(tp);
3054
3055 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3056
3057 /* For 4-corner performance improve */
3058 rtl_writephy(tp, 0x1f, 0x0005);
3059 rtl_writephy(tp, 0x05, 0x8b80);
3060 rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3061 rtl_writephy(tp, 0x1f, 0x0000);
3062
3063 /* PHY auto speed down */
3064 rtl_writephy(tp, 0x1f, 0x0007);
3065 rtl_writephy(tp, 0x1e, 0x002d);
3066 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3067 rtl_writephy(tp, 0x1f, 0x0000);
3068 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3069
3070 /* Improve 10M EEE waveform */
3071 rtl_writephy(tp, 0x1f, 0x0005);
3072 rtl_writephy(tp, 0x05, 0x8b86);
3073 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3074 rtl_writephy(tp, 0x1f, 0x0000);
3075
3076 /* Improve 2-pair detection performance */
3077 rtl_writephy(tp, 0x1f, 0x0005);
3078 rtl_writephy(tp, 0x05, 0x8b85);
3079 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3080 rtl_writephy(tp, 0x1f, 0x0000);
3081}
3082
3083static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3084{
3085 rtl_apply_firmware(tp);
3086
3087 /* For 4-corner performance improve */
3088 rtl_writephy(tp, 0x1f, 0x0005);
3089 rtl_writephy(tp, 0x05, 0x8b80);
3090 rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3091 rtl_writephy(tp, 0x1f, 0x0000);
3092
3093 /* PHY auto speed down */
3094 rtl_writephy(tp, 0x1f, 0x0007);
3095 rtl_writephy(tp, 0x1e, 0x002d);
3096 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3097 rtl_writephy(tp, 0x1f, 0x0000);
3098 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3099
3100 /* Improve 10M EEE waveform */
3101 rtl_writephy(tp, 0x1f, 0x0005);
3102 rtl_writephy(tp, 0x05, 0x8b86);
3103 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3104 rtl_writephy(tp, 0x1f, 0x0000);
3105}
3106
françois romieu4da19632011-01-03 15:07:55 +00003107static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02003108{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003109 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003110 { 0x1f, 0x0003 },
3111 { 0x08, 0x441d },
3112 { 0x01, 0x9100 },
3113 { 0x1f, 0x0000 }
3114 };
3115
françois romieu4da19632011-01-03 15:07:55 +00003116 rtl_writephy(tp, 0x1f, 0x0000);
3117 rtl_patchphy(tp, 0x11, 1 << 12);
3118 rtl_patchphy(tp, 0x19, 1 << 13);
3119 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003120
françois romieu4da19632011-01-03 15:07:55 +00003121 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02003122}
3123
Hayes Wang5a5e4442011-02-22 17:26:21 +08003124static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
3125{
3126 static const struct phy_reg phy_reg_init[] = {
3127 { 0x1f, 0x0005 },
3128 { 0x1a, 0x0000 },
3129 { 0x1f, 0x0000 },
3130
3131 { 0x1f, 0x0004 },
3132 { 0x1c, 0x0000 },
3133 { 0x1f, 0x0000 },
3134
3135 { 0x1f, 0x0001 },
3136 { 0x15, 0x7701 },
3137 { 0x1f, 0x0000 }
3138 };
3139
3140 /* Disable ALDPS before ram code */
3141 rtl_writephy(tp, 0x1f, 0x0000);
3142 rtl_writephy(tp, 0x18, 0x0310);
3143 msleep(100);
3144
François Romieu953a12c2011-04-24 17:38:48 +02003145 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003146
3147 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3148}
3149
Francois Romieu5615d9f2007-08-17 17:50:46 +02003150static void rtl_hw_phy_config(struct net_device *dev)
3151{
3152 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003153
3154 rtl8169_print_mac_version(tp);
3155
3156 switch (tp->mac_version) {
3157 case RTL_GIGA_MAC_VER_01:
3158 break;
3159 case RTL_GIGA_MAC_VER_02:
3160 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00003161 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003162 break;
3163 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00003164 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003165 break;
françois romieu2e9558562009-08-10 19:44:19 +00003166 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00003167 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00003168 break;
françois romieu8c7006a2009-08-10 19:43:29 +00003169 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00003170 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00003171 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02003172 case RTL_GIGA_MAC_VER_07:
3173 case RTL_GIGA_MAC_VER_08:
3174 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00003175 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003176 break;
Francois Romieu236b8082008-05-30 16:11:48 +02003177 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00003178 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003179 break;
3180 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00003181 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003182 break;
3183 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00003184 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003185 break;
Francois Romieu867763c2007-08-17 18:21:58 +02003186 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00003187 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003188 break;
3189 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00003190 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003191 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02003192 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00003193 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003194 break;
Francois Romieu197ff762008-06-28 13:16:02 +02003195 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00003196 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02003197 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02003198 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00003199 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003200 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003201 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003202 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00003203 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02003204 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02003205 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00003206 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003207 break;
3208 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00003209 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003210 break;
3211 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00003212 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02003213 break;
françois romieue6de30d2011-01-03 15:08:37 +00003214 case RTL_GIGA_MAC_VER_28:
3215 rtl8168d_4_hw_phy_config(tp);
3216 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08003217 case RTL_GIGA_MAC_VER_29:
3218 case RTL_GIGA_MAC_VER_30:
3219 rtl8105e_hw_phy_config(tp);
3220 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02003221 case RTL_GIGA_MAC_VER_31:
3222 /* None. */
3223 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00003224 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00003225 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003226 rtl8168e_1_hw_phy_config(tp);
3227 break;
3228 case RTL_GIGA_MAC_VER_34:
3229 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00003230 break;
Hayes Wangc2218922011-09-06 16:55:18 +08003231 case RTL_GIGA_MAC_VER_35:
3232 rtl8168f_1_hw_phy_config(tp);
3233 break;
3234 case RTL_GIGA_MAC_VER_36:
3235 rtl8168f_2_hw_phy_config(tp);
3236 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003237
Francois Romieu5615d9f2007-08-17 17:50:46 +02003238 default:
3239 break;
3240 }
3241}
3242
Francois Romieuda78dbf2012-01-26 14:18:23 +01003243static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 struct timer_list *timer = &tp->timer;
3246 void __iomem *ioaddr = tp->mmio_addr;
3247 unsigned long timeout = RTL8169_PHY_TIMEOUT;
3248
Francois Romieubcf0bf92006-07-26 23:14:13 +02003249 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
françois romieu4da19632011-01-03 15:07:55 +00003251 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02003252 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 * A busy loop could burn quite a few cycles on nowadays CPU.
3254 * Let's delay the execution of the timer for a few ticks.
3255 */
3256 timeout = HZ/10;
3257 goto out_mod_timer;
3258 }
3259
3260 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01003261 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Francois Romieuda78dbf2012-01-26 14:18:23 +01003263 netif_warn(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
françois romieu4da19632011-01-03 15:07:55 +00003265 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
3267out_mod_timer:
3268 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003269}
3270
3271static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
3272{
Francois Romieuda78dbf2012-01-26 14:18:23 +01003273 if (!test_and_set_bit(flag, tp->wk.flags))
3274 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003275}
3276
3277static void rtl8169_phy_timer(unsigned long __opaque)
3278{
3279 struct net_device *dev = (struct net_device *)__opaque;
3280 struct rtl8169_private *tp = netdev_priv(dev);
3281
Francois Romieu98ddf982012-01-31 10:47:34 +01003282 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283}
3284
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285#ifdef CONFIG_NET_POLL_CONTROLLER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286static void rtl8169_netpoll(struct net_device *dev)
3287{
3288 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Francois Romieuda78dbf2012-01-26 14:18:23 +01003290 rtl8169_interrupt(tp->pci_dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291}
3292#endif
3293
3294static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
3295 void __iomem *ioaddr)
3296{
3297 iounmap(ioaddr);
3298 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003299 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 pci_disable_device(pdev);
3301 free_netdev(dev);
3302}
3303
Francois Romieubf793292006-11-01 00:53:05 +01003304static void rtl8169_phy_reset(struct net_device *dev,
3305 struct rtl8169_private *tp)
3306{
Francois Romieu07d3f512007-02-21 22:40:46 +01003307 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01003308
françois romieu4da19632011-01-03 15:07:55 +00003309 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01003310 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00003311 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01003312 return;
3313 msleep(1);
3314 }
Joe Perchesbf82c182010-02-09 11:49:50 +00003315 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01003316}
3317
David S. Miller8decf862011-09-22 03:23:13 -04003318static bool rtl_tbi_enabled(struct rtl8169_private *tp)
3319{
3320 void __iomem *ioaddr = tp->mmio_addr;
3321
3322 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
3323 (RTL_R8(PHYstatus) & TBI_Enable);
3324}
3325
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003326static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003328 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003329
Francois Romieu5615d9f2007-08-17 17:50:46 +02003330 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003331
Marcus Sundberg773328942008-07-10 21:28:08 +02003332 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
3333 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3334 RTL_W8(0x82, 0x01);
3335 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003336
Francois Romieu6dccd162007-02-13 23:38:05 +01003337 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
3338
3339 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3340 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003341
Francois Romieubcf0bf92006-07-26 23:14:13 +02003342 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003343 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3344 RTL_W8(0x82, 0x01);
3345 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00003346 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003347 }
3348
Francois Romieubf793292006-11-01 00:53:05 +01003349 rtl8169_phy_reset(dev, tp);
3350
Oliver Neukum54405cd2011-01-06 21:55:13 +01003351 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02003352 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3353 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3354 (tp->mii.supports_gmii ?
3355 ADVERTISED_1000baseT_Half |
3356 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003357
David S. Miller8decf862011-09-22 03:23:13 -04003358 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00003359 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003360}
3361
Francois Romieu773d2022007-01-31 23:47:43 +01003362static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
3363{
3364 void __iomem *ioaddr = tp->mmio_addr;
3365 u32 high;
3366 u32 low;
3367
3368 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
3369 high = addr[4] | (addr[5] << 8);
3370
Francois Romieuda78dbf2012-01-26 14:18:23 +01003371 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003372
3373 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00003374
Francois Romieu773d2022007-01-31 23:47:43 +01003375 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00003376 RTL_R32(MAC4);
3377
Francois Romieu78f1cd02010-03-27 19:35:46 -07003378 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00003379 RTL_R32(MAC0);
3380
françois romieuc28aa382011-08-02 03:53:43 +00003381 if (tp->mac_version == RTL_GIGA_MAC_VER_34) {
3382 const struct exgmac_reg e[] = {
3383 { .addr = 0xe0, ERIAR_MASK_1111, .val = low },
3384 { .addr = 0xe4, ERIAR_MASK_1111, .val = high },
3385 { .addr = 0xf0, ERIAR_MASK_1111, .val = low << 16 },
3386 { .addr = 0xf4, ERIAR_MASK_1111, .val = high << 16 |
3387 low >> 16 },
3388 };
3389
3390 rtl_write_exgmac_batch(ioaddr, e, ARRAY_SIZE(e));
3391 }
3392
Francois Romieu773d2022007-01-31 23:47:43 +01003393 RTL_W8(Cfg9346, Cfg9346_Lock);
3394
Francois Romieuda78dbf2012-01-26 14:18:23 +01003395 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003396}
3397
3398static int rtl_set_mac_address(struct net_device *dev, void *p)
3399{
3400 struct rtl8169_private *tp = netdev_priv(dev);
3401 struct sockaddr *addr = p;
3402
3403 if (!is_valid_ether_addr(addr->sa_data))
3404 return -EADDRNOTAVAIL;
3405
3406 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3407
3408 rtl_rar_set(tp, dev->dev_addr);
3409
3410 return 0;
3411}
3412
Francois Romieu5f787a12006-08-17 13:02:36 +02003413static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3414{
3415 struct rtl8169_private *tp = netdev_priv(dev);
3416 struct mii_ioctl_data *data = if_mii(ifr);
3417
Francois Romieu8b4ab282008-11-19 22:05:25 -08003418 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
3419}
Francois Romieu5f787a12006-08-17 13:02:36 +02003420
Francois Romieucecb5fd2011-04-01 10:21:07 +02003421static int rtl_xmii_ioctl(struct rtl8169_private *tp,
3422 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08003423{
Francois Romieu5f787a12006-08-17 13:02:36 +02003424 switch (cmd) {
3425 case SIOCGMIIPHY:
3426 data->phy_id = 32; /* Internal PHY */
3427 return 0;
3428
3429 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003430 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02003431 return 0;
3432
3433 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003434 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02003435 return 0;
3436 }
3437 return -EOPNOTSUPP;
3438}
3439
Francois Romieu8b4ab282008-11-19 22:05:25 -08003440static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3441{
3442 return -EOPNOTSUPP;
3443}
3444
Francois Romieu0e485152007-02-20 00:00:26 +01003445static const struct rtl_cfg_info {
3446 void (*hw_start)(struct net_device *);
3447 unsigned int region;
3448 unsigned int align;
Francois Romieuda78dbf2012-01-26 14:18:23 +01003449 u16 event_slow;
Francois Romieuccdffb92008-07-26 14:26:06 +02003450 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07003451 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01003452} rtl_cfg_infos [] = {
3453 [RTL_CFG_0] = {
3454 .hw_start = rtl_hw_start_8169,
3455 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01003456 .align = 0,
Francois Romieuda78dbf2012-01-26 14:18:23 +01003457 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
Jean Delvaref21b75e2009-05-26 20:54:48 -07003458 .features = RTL_FEATURE_GMII,
3459 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01003460 },
3461 [RTL_CFG_1] = {
3462 .hw_start = rtl_hw_start_8168,
3463 .region = 2,
3464 .align = 8,
Francois Romieuda78dbf2012-01-26 14:18:23 +01003465 .event_slow = SYSErr | LinkChg | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07003466 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
3467 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01003468 },
3469 [RTL_CFG_2] = {
3470 .hw_start = rtl_hw_start_8101,
3471 .region = 2,
3472 .align = 8,
Francois Romieuda78dbf2012-01-26 14:18:23 +01003473 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
3474 PCSTimeout,
Jean Delvaref21b75e2009-05-26 20:54:48 -07003475 .features = RTL_FEATURE_MSI,
3476 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01003477 }
3478};
3479
Francois Romieufbac58f2007-10-04 22:51:38 +02003480/* Cfg9346_Unlock assumed. */
françois romieu2ca6cf02011-12-15 08:37:43 +00003481static unsigned rtl_try_msi(struct rtl8169_private *tp,
Francois Romieufbac58f2007-10-04 22:51:38 +02003482 const struct rtl_cfg_info *cfg)
3483{
françois romieu2ca6cf02011-12-15 08:37:43 +00003484 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieufbac58f2007-10-04 22:51:38 +02003485 unsigned msi = 0;
3486 u8 cfg2;
3487
3488 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02003489 if (cfg->features & RTL_FEATURE_MSI) {
françois romieu2ca6cf02011-12-15 08:37:43 +00003490 if (pci_enable_msi(tp->pci_dev)) {
3491 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
Francois Romieufbac58f2007-10-04 22:51:38 +02003492 } else {
3493 cfg2 |= MSIEnable;
3494 msi = RTL_FEATURE_MSI;
3495 }
3496 }
françois romieu2ca6cf02011-12-15 08:37:43 +00003497 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3498 RTL_W8(Config2, cfg2);
Francois Romieufbac58f2007-10-04 22:51:38 +02003499 return msi;
3500}
3501
3502static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3503{
3504 if (tp->features & RTL_FEATURE_MSI) {
3505 pci_disable_msi(pdev);
3506 tp->features &= ~RTL_FEATURE_MSI;
3507 }
3508}
3509
Francois Romieu8b4ab282008-11-19 22:05:25 -08003510static const struct net_device_ops rtl8169_netdev_ops = {
3511 .ndo_open = rtl8169_open,
3512 .ndo_stop = rtl8169_close,
3513 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08003514 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08003515 .ndo_tx_timeout = rtl8169_tx_timeout,
3516 .ndo_validate_addr = eth_validate_addr,
3517 .ndo_change_mtu = rtl8169_change_mtu,
Michał Mirosław350fb322011-04-08 06:35:56 +00003518 .ndo_fix_features = rtl8169_fix_features,
3519 .ndo_set_features = rtl8169_set_features,
Francois Romieu8b4ab282008-11-19 22:05:25 -08003520 .ndo_set_mac_address = rtl_set_mac_address,
3521 .ndo_do_ioctl = rtl8169_ioctl,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00003522 .ndo_set_rx_mode = rtl_set_rx_mode,
Francois Romieu8b4ab282008-11-19 22:05:25 -08003523#ifdef CONFIG_NET_POLL_CONTROLLER
3524 .ndo_poll_controller = rtl8169_netpoll,
3525#endif
3526
3527};
3528
françois romieuc0e45c12011-01-03 15:08:04 +00003529static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
3530{
3531 struct mdio_ops *ops = &tp->mdio_ops;
3532
3533 switch (tp->mac_version) {
3534 case RTL_GIGA_MAC_VER_27:
3535 ops->write = r8168dp_1_mdio_write;
3536 ops->read = r8168dp_1_mdio_read;
3537 break;
françois romieue6de30d2011-01-03 15:08:37 +00003538 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003539 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003540 ops->write = r8168dp_2_mdio_write;
3541 ops->read = r8168dp_2_mdio_read;
3542 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003543 default:
3544 ops->write = r8169_mdio_write;
3545 ops->read = r8169_mdio_read;
3546 break;
3547 }
3548}
3549
David S. Miller1805b2f2011-10-24 18:18:09 -04003550static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
3551{
3552 void __iomem *ioaddr = tp->mmio_addr;
3553
3554 switch (tp->mac_version) {
3555 case RTL_GIGA_MAC_VER_29:
3556 case RTL_GIGA_MAC_VER_30:
3557 case RTL_GIGA_MAC_VER_32:
3558 case RTL_GIGA_MAC_VER_33:
3559 case RTL_GIGA_MAC_VER_34:
3560 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3561 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3562 break;
3563 default:
3564 break;
3565 }
3566}
3567
3568static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
3569{
3570 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
3571 return false;
3572
3573 rtl_writephy(tp, 0x1f, 0x0000);
3574 rtl_writephy(tp, MII_BMCR, 0x0000);
3575
3576 rtl_wol_suspend_quirk(tp);
3577
3578 return true;
3579}
3580
françois romieu065c27c2011-01-03 15:08:12 +00003581static void r810x_phy_power_down(struct rtl8169_private *tp)
3582{
3583 rtl_writephy(tp, 0x1f, 0x0000);
3584 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3585}
3586
3587static void r810x_phy_power_up(struct rtl8169_private *tp)
3588{
3589 rtl_writephy(tp, 0x1f, 0x0000);
3590 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3591}
3592
3593static void r810x_pll_power_down(struct rtl8169_private *tp)
3594{
David S. Miller1805b2f2011-10-24 18:18:09 -04003595 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003596 return;
françois romieu065c27c2011-01-03 15:08:12 +00003597
3598 r810x_phy_power_down(tp);
3599}
3600
3601static void r810x_pll_power_up(struct rtl8169_private *tp)
3602{
3603 r810x_phy_power_up(tp);
3604}
3605
3606static void r8168_phy_power_up(struct rtl8169_private *tp)
3607{
3608 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003609 switch (tp->mac_version) {
3610 case RTL_GIGA_MAC_VER_11:
3611 case RTL_GIGA_MAC_VER_12:
3612 case RTL_GIGA_MAC_VER_17:
3613 case RTL_GIGA_MAC_VER_18:
3614 case RTL_GIGA_MAC_VER_19:
3615 case RTL_GIGA_MAC_VER_20:
3616 case RTL_GIGA_MAC_VER_21:
3617 case RTL_GIGA_MAC_VER_22:
3618 case RTL_GIGA_MAC_VER_23:
3619 case RTL_GIGA_MAC_VER_24:
3620 case RTL_GIGA_MAC_VER_25:
3621 case RTL_GIGA_MAC_VER_26:
3622 case RTL_GIGA_MAC_VER_27:
3623 case RTL_GIGA_MAC_VER_28:
3624 case RTL_GIGA_MAC_VER_31:
3625 rtl_writephy(tp, 0x0e, 0x0000);
3626 break;
3627 default:
3628 break;
3629 }
françois romieu065c27c2011-01-03 15:08:12 +00003630 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3631}
3632
3633static void r8168_phy_power_down(struct rtl8169_private *tp)
3634{
3635 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003636 switch (tp->mac_version) {
3637 case RTL_GIGA_MAC_VER_32:
3638 case RTL_GIGA_MAC_VER_33:
3639 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3640 break;
3641
3642 case RTL_GIGA_MAC_VER_11:
3643 case RTL_GIGA_MAC_VER_12:
3644 case RTL_GIGA_MAC_VER_17:
3645 case RTL_GIGA_MAC_VER_18:
3646 case RTL_GIGA_MAC_VER_19:
3647 case RTL_GIGA_MAC_VER_20:
3648 case RTL_GIGA_MAC_VER_21:
3649 case RTL_GIGA_MAC_VER_22:
3650 case RTL_GIGA_MAC_VER_23:
3651 case RTL_GIGA_MAC_VER_24:
3652 case RTL_GIGA_MAC_VER_25:
3653 case RTL_GIGA_MAC_VER_26:
3654 case RTL_GIGA_MAC_VER_27:
3655 case RTL_GIGA_MAC_VER_28:
3656 case RTL_GIGA_MAC_VER_31:
3657 rtl_writephy(tp, 0x0e, 0x0200);
3658 default:
3659 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3660 break;
3661 }
françois romieu065c27c2011-01-03 15:08:12 +00003662}
3663
3664static void r8168_pll_power_down(struct rtl8169_private *tp)
3665{
3666 void __iomem *ioaddr = tp->mmio_addr;
3667
Francois Romieucecb5fd2011-04-01 10:21:07 +02003668 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3669 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3670 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003671 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003672 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003673 }
françois romieu065c27c2011-01-03 15:08:12 +00003674
Francois Romieucecb5fd2011-04-01 10:21:07 +02003675 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
3676 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00003677 (RTL_R16(CPlusCmd) & ASF)) {
3678 return;
3679 }
3680
hayeswang01dc7fe2011-03-21 01:50:28 +00003681 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3682 tp->mac_version == RTL_GIGA_MAC_VER_33)
3683 rtl_ephy_write(ioaddr, 0x19, 0xff64);
3684
David S. Miller1805b2f2011-10-24 18:18:09 -04003685 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003686 return;
françois romieu065c27c2011-01-03 15:08:12 +00003687
3688 r8168_phy_power_down(tp);
3689
3690 switch (tp->mac_version) {
3691 case RTL_GIGA_MAC_VER_25:
3692 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003693 case RTL_GIGA_MAC_VER_27:
3694 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003695 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003696 case RTL_GIGA_MAC_VER_32:
3697 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003698 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3699 break;
3700 }
3701}
3702
3703static void r8168_pll_power_up(struct rtl8169_private *tp)
3704{
3705 void __iomem *ioaddr = tp->mmio_addr;
3706
Francois Romieucecb5fd2011-04-01 10:21:07 +02003707 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3708 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3709 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003710 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003711 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003712 }
françois romieu065c27c2011-01-03 15:08:12 +00003713
3714 switch (tp->mac_version) {
3715 case RTL_GIGA_MAC_VER_25:
3716 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003717 case RTL_GIGA_MAC_VER_27:
3718 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003719 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003720 case RTL_GIGA_MAC_VER_32:
3721 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003722 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3723 break;
3724 }
3725
3726 r8168_phy_power_up(tp);
3727}
3728
Francois Romieud58d46b2011-05-03 16:38:29 +02003729static void rtl_generic_op(struct rtl8169_private *tp,
3730 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00003731{
3732 if (op)
3733 op(tp);
3734}
3735
3736static void rtl_pll_power_down(struct rtl8169_private *tp)
3737{
Francois Romieud58d46b2011-05-03 16:38:29 +02003738 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00003739}
3740
3741static void rtl_pll_power_up(struct rtl8169_private *tp)
3742{
Francois Romieud58d46b2011-05-03 16:38:29 +02003743 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00003744}
3745
3746static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
3747{
3748 struct pll_power_ops *ops = &tp->pll_power_ops;
3749
3750 switch (tp->mac_version) {
3751 case RTL_GIGA_MAC_VER_07:
3752 case RTL_GIGA_MAC_VER_08:
3753 case RTL_GIGA_MAC_VER_09:
3754 case RTL_GIGA_MAC_VER_10:
3755 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08003756 case RTL_GIGA_MAC_VER_29:
3757 case RTL_GIGA_MAC_VER_30:
françois romieu065c27c2011-01-03 15:08:12 +00003758 ops->down = r810x_pll_power_down;
3759 ops->up = r810x_pll_power_up;
3760 break;
3761
3762 case RTL_GIGA_MAC_VER_11:
3763 case RTL_GIGA_MAC_VER_12:
3764 case RTL_GIGA_MAC_VER_17:
3765 case RTL_GIGA_MAC_VER_18:
3766 case RTL_GIGA_MAC_VER_19:
3767 case RTL_GIGA_MAC_VER_20:
3768 case RTL_GIGA_MAC_VER_21:
3769 case RTL_GIGA_MAC_VER_22:
3770 case RTL_GIGA_MAC_VER_23:
3771 case RTL_GIGA_MAC_VER_24:
3772 case RTL_GIGA_MAC_VER_25:
3773 case RTL_GIGA_MAC_VER_26:
3774 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00003775 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003776 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003777 case RTL_GIGA_MAC_VER_32:
3778 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003779 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08003780 case RTL_GIGA_MAC_VER_35:
3781 case RTL_GIGA_MAC_VER_36:
françois romieu065c27c2011-01-03 15:08:12 +00003782 ops->down = r8168_pll_power_down;
3783 ops->up = r8168_pll_power_up;
3784 break;
3785
3786 default:
3787 ops->down = NULL;
3788 ops->up = NULL;
3789 break;
3790 }
3791}
3792
Hayes Wange542a222011-07-06 15:58:04 +08003793static void rtl_init_rxcfg(struct rtl8169_private *tp)
3794{
3795 void __iomem *ioaddr = tp->mmio_addr;
3796
3797 switch (tp->mac_version) {
3798 case RTL_GIGA_MAC_VER_01:
3799 case RTL_GIGA_MAC_VER_02:
3800 case RTL_GIGA_MAC_VER_03:
3801 case RTL_GIGA_MAC_VER_04:
3802 case RTL_GIGA_MAC_VER_05:
3803 case RTL_GIGA_MAC_VER_06:
3804 case RTL_GIGA_MAC_VER_10:
3805 case RTL_GIGA_MAC_VER_11:
3806 case RTL_GIGA_MAC_VER_12:
3807 case RTL_GIGA_MAC_VER_13:
3808 case RTL_GIGA_MAC_VER_14:
3809 case RTL_GIGA_MAC_VER_15:
3810 case RTL_GIGA_MAC_VER_16:
3811 case RTL_GIGA_MAC_VER_17:
3812 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
3813 break;
3814 case RTL_GIGA_MAC_VER_18:
3815 case RTL_GIGA_MAC_VER_19:
3816 case RTL_GIGA_MAC_VER_20:
3817 case RTL_GIGA_MAC_VER_21:
3818 case RTL_GIGA_MAC_VER_22:
3819 case RTL_GIGA_MAC_VER_23:
3820 case RTL_GIGA_MAC_VER_24:
3821 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
3822 break;
3823 default:
3824 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
3825 break;
3826 }
3827}
3828
Hayes Wang92fc43b2011-07-06 15:58:03 +08003829static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
3830{
3831 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
3832}
3833
Francois Romieud58d46b2011-05-03 16:38:29 +02003834static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
3835{
3836 rtl_generic_op(tp, tp->jumbo_ops.enable);
3837}
3838
3839static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
3840{
3841 rtl_generic_op(tp, tp->jumbo_ops.disable);
3842}
3843
3844static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
3845{
3846 void __iomem *ioaddr = tp->mmio_addr;
3847
3848 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3849 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
3850 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
3851}
3852
3853static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
3854{
3855 void __iomem *ioaddr = tp->mmio_addr;
3856
3857 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3858 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
3859 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
3860}
3861
3862static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
3863{
3864 void __iomem *ioaddr = tp->mmio_addr;
3865
3866 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3867}
3868
3869static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
3870{
3871 void __iomem *ioaddr = tp->mmio_addr;
3872
3873 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3874}
3875
3876static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
3877{
3878 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02003879
3880 RTL_W8(MaxTxPacketSize, 0x3f);
3881 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3882 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01003883 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02003884}
3885
3886static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
3887{
3888 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02003889
3890 RTL_W8(MaxTxPacketSize, 0x0c);
3891 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3892 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01003893 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02003894}
3895
3896static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
3897{
3898 rtl_tx_performance_tweak(tp->pci_dev,
3899 (0x2 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
3900}
3901
3902static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
3903{
3904 rtl_tx_performance_tweak(tp->pci_dev,
3905 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
3906}
3907
3908static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
3909{
3910 void __iomem *ioaddr = tp->mmio_addr;
3911
3912 r8168b_0_hw_jumbo_enable(tp);
3913
3914 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
3915}
3916
3917static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
3918{
3919 void __iomem *ioaddr = tp->mmio_addr;
3920
3921 r8168b_0_hw_jumbo_disable(tp);
3922
3923 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
3924}
3925
3926static void __devinit rtl_init_jumbo_ops(struct rtl8169_private *tp)
3927{
3928 struct jumbo_ops *ops = &tp->jumbo_ops;
3929
3930 switch (tp->mac_version) {
3931 case RTL_GIGA_MAC_VER_11:
3932 ops->disable = r8168b_0_hw_jumbo_disable;
3933 ops->enable = r8168b_0_hw_jumbo_enable;
3934 break;
3935 case RTL_GIGA_MAC_VER_12:
3936 case RTL_GIGA_MAC_VER_17:
3937 ops->disable = r8168b_1_hw_jumbo_disable;
3938 ops->enable = r8168b_1_hw_jumbo_enable;
3939 break;
3940 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
3941 case RTL_GIGA_MAC_VER_19:
3942 case RTL_GIGA_MAC_VER_20:
3943 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
3944 case RTL_GIGA_MAC_VER_22:
3945 case RTL_GIGA_MAC_VER_23:
3946 case RTL_GIGA_MAC_VER_24:
3947 case RTL_GIGA_MAC_VER_25:
3948 case RTL_GIGA_MAC_VER_26:
3949 ops->disable = r8168c_hw_jumbo_disable;
3950 ops->enable = r8168c_hw_jumbo_enable;
3951 break;
3952 case RTL_GIGA_MAC_VER_27:
3953 case RTL_GIGA_MAC_VER_28:
3954 ops->disable = r8168dp_hw_jumbo_disable;
3955 ops->enable = r8168dp_hw_jumbo_enable;
3956 break;
3957 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
3958 case RTL_GIGA_MAC_VER_32:
3959 case RTL_GIGA_MAC_VER_33:
3960 case RTL_GIGA_MAC_VER_34:
3961 ops->disable = r8168e_hw_jumbo_disable;
3962 ops->enable = r8168e_hw_jumbo_enable;
3963 break;
3964
3965 /*
3966 * No action needed for jumbo frames with 8169.
3967 * No jumbo for 810x at all.
3968 */
3969 default:
3970 ops->disable = NULL;
3971 ops->enable = NULL;
3972 break;
3973 }
3974}
3975
Francois Romieu6f43adc2011-04-29 15:05:51 +02003976static void rtl_hw_reset(struct rtl8169_private *tp)
3977{
3978 void __iomem *ioaddr = tp->mmio_addr;
3979 int i;
3980
3981 /* Soft reset the chip. */
3982 RTL_W8(ChipCmd, CmdReset);
3983
3984 /* Check that the chip has finished the reset. */
3985 for (i = 0; i < 100; i++) {
3986 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3987 break;
Hayes Wang92fc43b2011-07-06 15:58:03 +08003988 udelay(100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02003989 }
3990}
3991
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003992static int __devinit
3993rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
3994{
Francois Romieu0e485152007-02-20 00:00:26 +01003995 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
3996 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02003998 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003999 struct net_device *dev;
4000 void __iomem *ioaddr;
Francois Romieu2b7b4312011-04-18 22:53:24 -07004001 int chipset, i;
Francois Romieu07d3f512007-02-21 22:40:46 +01004002 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004004 if (netif_msg_drv(&debug)) {
4005 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
4006 MODULENAME, RTL8169_VERSION);
4007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004010 if (!dev) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004011 rc = -ENOMEM;
4012 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 }
4014
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08004016 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00004018 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02004019 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02004020 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021
Francois Romieuccdffb92008-07-26 14:26:06 +02004022 mii = &tp->mii;
4023 mii->dev = dev;
4024 mii->mdio_read = rtl_mdio_read;
4025 mii->mdio_write = rtl_mdio_write;
4026 mii->phy_id_mask = 0x1f;
4027 mii->reg_num_mask = 0x1f;
4028 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
4029
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +00004030 /* disable ASPM completely as that cause random device stop working
4031 * problems as well as full system hangs for some PCIe devices users */
4032 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
4033 PCIE_LINK_STATE_CLKPM);
4034
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 /* enable device (incl. PCI PM wakeup and hotplug setup) */
4036 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02004037 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004038 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004039 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 }
4041
françois romieu87aeec72010-04-26 11:42:06 +00004042 if (pci_set_mwi(pdev) < 0)
4043 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02004046 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004047 netif_err(tp, probe, dev,
4048 "region #%d not an MMIO resource, aborting\n",
4049 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00004051 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004053
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02004055 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004056 netif_err(tp, probe, dev,
4057 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00004059 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 }
4061
4062 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02004063 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004064 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00004065 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 }
4067
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004068 tp->cp_cmd = RxChkSum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
4070 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07004071 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 tp->cp_cmd |= PCIDAC;
4073 dev->features |= NETIF_F_HIGHDMA;
4074 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07004075 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004077 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00004078 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 }
4080 }
4081
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02004083 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004084 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004085 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00004087 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 }
Francois Romieu6f43adc2011-04-29 15:05:51 +02004089 tp->mmio_addr = ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
Jon Masone44daad2011-06-27 07:46:31 +00004091 if (!pci_is_pcie(pdev))
4092 netif_info(tp, probe, dev, "not PCI Express\n");
David S. Miller4300e8c2010-03-26 10:23:30 -07004093
Hayes Wange542a222011-07-06 15:58:04 +08004094 /* Identify chip attached to board */
4095 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
4096
4097 rtl_init_rxcfg(tp);
4098
Francois Romieu9085cdfa2012-01-26 12:59:08 +01004099 rtl_irq_disable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
Francois Romieu6f43adc2011-04-29 15:05:51 +02004101 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
Francois Romieu9085cdfa2012-01-26 12:59:08 +01004103 rtl_ack_events(tp, 0xffff);
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07004104
françois romieuca52efd2009-07-24 12:34:19 +00004105 pci_set_master(pdev);
4106
Francois Romieu7a8fc772011-03-01 17:18:33 +01004107 /*
4108 * Pretend we are using VLANs; This bypasses a nasty bug where
4109 * Interrupts stop flowing on high load on 8110SCd controllers.
4110 */
4111 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
4112 tp->cp_cmd |= RxVlan;
4113
françois romieuc0e45c12011-01-03 15:08:04 +00004114 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00004115 rtl_init_pll_power_ops(tp);
Francois Romieud58d46b2011-05-03 16:38:29 +02004116 rtl_init_jumbo_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00004117
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Francois Romieu85bffe62011-04-27 08:22:39 +02004120 chipset = tp->mac_version;
4121 tp->txd_version = rtl_chip_infos[chipset].txd_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
Francois Romieu5d06a992006-02-23 00:47:58 +01004123 RTL_W8(Cfg9346, Cfg9346_Unlock);
4124 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
4125 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07004126 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
4127 tp->features |= RTL_FEATURE_WOL;
4128 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
4129 tp->features |= RTL_FEATURE_WOL;
françois romieu2ca6cf02011-12-15 08:37:43 +00004130 tp->features |= rtl_try_msi(tp, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01004131 RTL_W8(Cfg9346, Cfg9346_Lock);
4132
David S. Miller8decf862011-09-22 03:23:13 -04004133 if (rtl_tbi_enabled(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 tp->set_speed = rtl8169_set_speed_tbi;
4135 tp->get_settings = rtl8169_gset_tbi;
4136 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
4137 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
4138 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08004139 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 } else {
4141 tp->set_speed = rtl8169_set_speed_xmii;
4142 tp->get_settings = rtl8169_gset_xmii;
4143 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
4144 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
4145 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08004146 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 }
4148
Francois Romieuda78dbf2012-01-26 14:18:23 +01004149 mutex_init(&tp->wk.mutex);
Francois Romieudf58ef512008-10-09 14:35:58 -07004150
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00004151 /* Get MAC address */
Joe Perches6a3c910c2011-11-16 09:38:02 +00004152 for (i = 0; i < ETH_ALEN; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04004154 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
4158 dev->irq = pdev->irq;
4159 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004161 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
Michał Mirosław350fb322011-04-08 06:35:56 +00004163 /* don't enable SG, IP_CSUM and TSO by default - it might not work
4164 * properly for all devices */
4165 dev->features |= NETIF_F_RXCSUM |
4166 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
4167
4168 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
4169 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
4170 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
4171 NETIF_F_HIGHDMA;
4172
4173 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
4174 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
4175 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
Francois Romieu0e485152007-02-20 00:00:26 +01004177 tp->hw_start = cfg->hw_start;
Francois Romieuda78dbf2012-01-26 14:18:23 +01004178 tp->event_slow = cfg->event_slow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
David S. Miller8decf862011-09-22 03:23:13 -04004180 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
4181 ~(RxBOVF | RxFOVF) : ~0;
4182
Francois Romieu2efa53f2007-03-09 00:00:05 +01004183 init_timer(&tp->timer);
4184 tp->timer.data = (unsigned long) dev;
4185 tp->timer.function = rtl8169_phy_timer;
4186
Francois Romieub6ffd972011-06-17 17:00:05 +02004187 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
François Romieu953a12c2011-04-24 17:38:48 +02004188
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004190 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00004191 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192
4193 pci_set_drvdata(pdev, dev);
4194
Joe Perchesbf82c182010-02-09 11:49:50 +00004195 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
Francois Romieu85bffe62011-04-27 08:22:39 +02004196 rtl_chip_infos[chipset].name, dev->base_addr, dev->dev_addr,
Joe Perchesbf82c182010-02-09 11:49:50 +00004197 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Francois Romieud58d46b2011-05-03 16:38:29 +02004198 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
4199 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
4200 "tx checksumming: %s]\n",
4201 rtl_chip_infos[chipset].jumbo_max,
4202 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
4203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Francois Romieucecb5fd2011-04-01 10:21:07 +02004205 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4206 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4207 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieub646d902011-01-03 15:08:21 +00004208 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00004209 }
françois romieub646d902011-01-03 15:08:21 +00004210
Bruno Prémont8b76ab32008-10-08 17:06:25 -07004211 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Alan Sternf3ec4f82010-06-08 15:23:51 -04004213 if (pci_dev_run_wake(pdev))
4214 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004215
Ivan Vecera0d672e92011-02-15 02:08:39 +00004216 netif_carrier_off(dev);
4217
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004218out:
4219 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220
françois romieu87aeec72010-04-26 11:42:06 +00004221err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02004222 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004223 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00004224err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004225 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00004226err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004227 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004228 pci_disable_device(pdev);
4229err_out_free_dev_1:
4230 free_netdev(dev);
4231 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232}
4233
Francois Romieu07d3f512007-02-21 22:40:46 +01004234static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235{
4236 struct net_device *dev = pci_get_drvdata(pdev);
4237 struct rtl8169_private *tp = netdev_priv(dev);
4238
Francois Romieucecb5fd2011-04-01 10:21:07 +02004239 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4240 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4241 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieub646d902011-01-03 15:08:21 +00004242 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00004243 }
françois romieub646d902011-01-03 15:08:21 +00004244
Francois Romieu4422bcd2012-01-26 11:23:32 +01004245 cancel_work_sync(&tp->wk.work);
Francois Romieueb2a0212007-02-15 23:37:21 +01004246
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08004248
François Romieu953a12c2011-04-24 17:38:48 +02004249 rtl_release_firmware(tp);
4250
Alan Sternf3ec4f82010-06-08 15:23:51 -04004251 if (pci_dev_run_wake(pdev))
4252 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004253
Ivan Veceracc098dc2009-11-29 23:12:52 -08004254 /* restore original MAC address */
4255 rtl_rar_set(tp, dev->perm_addr);
4256
Francois Romieufbac58f2007-10-04 22:51:38 +02004257 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 rtl8169_release_board(pdev, dev, tp->mmio_addr);
4259 pci_set_drvdata(pdev, NULL);
4260}
4261
Francois Romieub6ffd972011-06-17 17:00:05 +02004262static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
4263{
4264 struct rtl_fw *rtl_fw;
4265 const char *name;
4266 int rc = -ENOMEM;
4267
4268 name = rtl_lookup_firmware_name(tp);
4269 if (!name)
4270 goto out_no_firmware;
4271
4272 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
4273 if (!rtl_fw)
4274 goto err_warn;
4275
4276 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
4277 if (rc < 0)
4278 goto err_free;
4279
Francois Romieufd112f22011-06-18 00:10:29 +02004280 rc = rtl_check_firmware(tp, rtl_fw);
4281 if (rc < 0)
4282 goto err_release_firmware;
4283
Francois Romieub6ffd972011-06-17 17:00:05 +02004284 tp->rtl_fw = rtl_fw;
4285out:
4286 return;
4287
Francois Romieufd112f22011-06-18 00:10:29 +02004288err_release_firmware:
4289 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02004290err_free:
4291 kfree(rtl_fw);
4292err_warn:
4293 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
4294 name, rc);
4295out_no_firmware:
4296 tp->rtl_fw = NULL;
4297 goto out;
4298}
4299
François Romieu953a12c2011-04-24 17:38:48 +02004300static void rtl_request_firmware(struct rtl8169_private *tp)
4301{
Francois Romieub6ffd972011-06-17 17:00:05 +02004302 if (IS_ERR(tp->rtl_fw))
4303 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02004304}
4305
Francois Romieu4422bcd2012-01-26 11:23:32 +01004306static void rtl_task(struct work_struct *);
4307
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308static int rtl8169_open(struct net_device *dev)
4309{
4310 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00004311 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02004313 int retval = -ENOMEM;
4314
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004315 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316
Neil Hormanc0cd8842010-03-29 13:16:02 -07004317 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004319 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004321 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
4322 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004324 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004326 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
4327 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02004329 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
4331 retval = rtl8169_init_ring(dev);
4332 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02004333 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
Francois Romieu4422bcd2012-01-26 11:23:32 +01004335 INIT_WORK(&tp->wk.work, rtl_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336
Francois Romieu99f252b2007-04-02 22:59:59 +02004337 smp_mb();
4338
François Romieu953a12c2011-04-24 17:38:48 +02004339 rtl_request_firmware(tp);
4340
Francois Romieufbac58f2007-10-04 22:51:38 +02004341 retval = request_irq(dev->irq, rtl8169_interrupt,
4342 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02004343 dev->name, dev);
4344 if (retval < 0)
François Romieu953a12c2011-04-24 17:38:48 +02004345 goto err_release_fw_2;
Francois Romieu99f252b2007-04-02 22:59:59 +02004346
Francois Romieuda78dbf2012-01-26 14:18:23 +01004347 rtl_lock_work(tp);
4348
Francois Romieu6c4a70c2012-01-31 10:56:44 +01004349 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004350
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004351 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004352
françois romieueee3a962011-01-08 02:17:26 +00004353 rtl8169_init_phy(dev, tp);
4354
Francois Romieuda78dbf2012-01-26 14:18:23 +01004355 __rtl8169_set_features(dev, dev->features);
françois romieueee3a962011-01-08 02:17:26 +00004356
françois romieu065c27c2011-01-03 15:08:12 +00004357 rtl_pll_power_up(tp);
4358
Francois Romieu07ce4062007-02-23 23:36:39 +01004359 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Francois Romieuda78dbf2012-01-26 14:18:23 +01004361 netif_start_queue(dev);
4362
4363 rtl_unlock_work(tp);
4364
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004365 tp->saved_wolopts = 0;
4366 pm_runtime_put_noidle(&pdev->dev);
4367
françois romieueee3a962011-01-08 02:17:26 +00004368 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369out:
4370 return retval;
4371
François Romieu953a12c2011-04-24 17:38:48 +02004372err_release_fw_2:
4373 rtl_release_firmware(tp);
Francois Romieu99f252b2007-04-02 22:59:59 +02004374 rtl8169_rx_clear(tp);
4375err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004376 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
4377 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004378 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02004379err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004380 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
4381 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004382 tp->TxDescArray = NULL;
4383err_pm_runtime_put:
4384 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 goto out;
4386}
4387
Hayes Wang92fc43b2011-07-06 15:58:03 +08004388static void rtl_rx_close(struct rtl8169_private *tp)
4389{
4390 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004391
Francois Romieu1687b562011-07-19 17:21:29 +02004392 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004393}
4394
françois romieue6de30d2011-01-03 15:08:37 +00004395static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396{
françois romieue6de30d2011-01-03 15:08:37 +00004397 void __iomem *ioaddr = tp->mmio_addr;
4398
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00004400 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Hayes Wang92fc43b2011-07-06 15:58:03 +08004402 rtl_rx_close(tp);
4403
Hayes Wang5d2e1952011-02-22 17:26:22 +08004404 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00004405 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4406 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieue6de30d2011-01-03 15:08:37 +00004407 while (RTL_R8(TxPoll) & NPQ)
4408 udelay(20);
Hayes Wangc2218922011-09-06 16:55:18 +08004409 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
4410 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
4411 tp->mac_version == RTL_GIGA_MAC_VER_36) {
David S. Miller8decf862011-09-22 03:23:13 -04004412 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Hayes Wang70090422011-07-06 15:58:06 +08004413 while (!(RTL_R32(TxConfig) & TXCFG_EMPTY))
4414 udelay(100);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004415 } else {
4416 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
4417 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00004418 }
4419
Hayes Wang92fc43b2011-07-06 15:58:03 +08004420 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421}
4422
Francois Romieu7f796d832007-06-11 23:04:41 +02004423static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004424{
4425 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01004426
4427 /* Set DMA burst size and Interframe Gap Time */
4428 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4429 (InterFrameGap << TxInterFrameGapShift));
4430}
4431
Francois Romieu07ce4062007-02-23 23:36:39 +01004432static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433{
4434 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
Francois Romieu07ce4062007-02-23 23:36:39 +01004436 tp->hw_start(dev);
4437
Francois Romieuda78dbf2012-01-26 14:18:23 +01004438 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004439}
4440
Francois Romieu7f796d832007-06-11 23:04:41 +02004441static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
4442 void __iomem *ioaddr)
4443{
4444 /*
4445 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
4446 * register to be written before TxDescAddrLow to work.
4447 * Switching from MMIO to I/O access fixes the issue as well.
4448 */
4449 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004450 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004451 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004452 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004453}
4454
4455static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
4456{
4457 u16 cmd;
4458
4459 cmd = RTL_R16(CPlusCmd);
4460 RTL_W16(CPlusCmd, cmd);
4461 return cmd;
4462}
4463
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07004464static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02004465{
4466 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00004467 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02004468}
4469
Francois Romieu6dccd162007-02-13 23:38:05 +01004470static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
4471{
Francois Romieu37441002011-06-17 22:58:54 +02004472 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01004473 u32 mac_version;
4474 u32 clk;
4475 u32 val;
4476 } cfg2_info [] = {
4477 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
4478 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
4479 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
4480 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02004481 };
4482 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01004483 unsigned int i;
4484 u32 clk;
4485
4486 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01004487 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01004488 if ((p->mac_version == mac_version) && (p->clk == clk)) {
4489 RTL_W32(0x7c, p->val);
4490 break;
4491 }
4492 }
4493}
4494
Francois Romieu07ce4062007-02-23 23:36:39 +01004495static void rtl_hw_start_8169(struct net_device *dev)
4496{
4497 struct rtl8169_private *tp = netdev_priv(dev);
4498 void __iomem *ioaddr = tp->mmio_addr;
4499 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01004500
Francois Romieu9cb427b2006-11-02 00:10:16 +01004501 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
4502 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
4503 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4504 }
4505
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02004507 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4508 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4509 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4510 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004511 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4512
Hayes Wange542a222011-07-06 15:58:04 +08004513 rtl_init_rxcfg(tp);
4514
françois romieuf0298f82011-01-03 15:07:42 +00004515 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004517 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
Francois Romieucecb5fd2011-04-01 10:21:07 +02004519 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4520 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4521 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4522 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02004523 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
Francois Romieu7f796d832007-06-11 23:04:41 +02004525 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004526
Francois Romieucecb5fd2011-04-01 10:21:07 +02004527 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4528 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02004529 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02004531 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 }
4533
Francois Romieubcf0bf92006-07-26 23:14:13 +02004534 RTL_W16(CPlusCmd, tp->cp_cmd);
4535
Francois Romieu6dccd162007-02-13 23:38:05 +01004536 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
4537
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 /*
4539 * Undocumented corner. Supposedly:
4540 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4541 */
4542 RTL_W16(IntrMitigate, 0x0000);
4543
Francois Romieu7f796d832007-06-11 23:04:41 +02004544 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01004545
Francois Romieucecb5fd2011-04-01 10:21:07 +02004546 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
4547 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
4548 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
4549 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02004550 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4551 rtl_set_rx_tx_config_registers(tp);
4552 }
4553
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02004555
4556 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4557 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
4559 RTL_W32(RxMissed, 0);
4560
Francois Romieu07ce4062007-02-23 23:36:39 +01004561 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
4563 /* no early-rx interrupts */
4564 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01004565}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
françois romieu650e8d52011-01-03 15:08:29 +00004567static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02004568{
4569 u32 csi;
4570
4571 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00004572 rtl_csi_write(ioaddr, 0x070c, csi | bits);
4573}
4574
françois romieue6de30d2011-01-03 15:08:37 +00004575static void rtl_csi_access_enable_1(void __iomem *ioaddr)
4576{
4577 rtl_csi_access_enable(ioaddr, 0x17000000);
4578}
4579
françois romieu650e8d52011-01-03 15:08:29 +00004580static void rtl_csi_access_enable_2(void __iomem *ioaddr)
4581{
4582 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02004583}
4584
4585struct ephy_info {
4586 unsigned int offset;
4587 u16 mask;
4588 u16 bits;
4589};
4590
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004591static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02004592{
4593 u16 w;
4594
4595 while (len-- > 0) {
4596 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
4597 rtl_ephy_write(ioaddr, e->offset, w);
4598 e++;
4599 }
4600}
4601
Francois Romieub726e492008-06-28 12:22:59 +02004602static void rtl_disable_clock_request(struct pci_dev *pdev)
4603{
Jon Masone44daad2011-06-27 07:46:31 +00004604 int cap = pci_pcie_cap(pdev);
Francois Romieub726e492008-06-28 12:22:59 +02004605
4606 if (cap) {
4607 u16 ctl;
4608
4609 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4610 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
4611 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4612 }
4613}
4614
françois romieue6de30d2011-01-03 15:08:37 +00004615static void rtl_enable_clock_request(struct pci_dev *pdev)
4616{
Jon Masone44daad2011-06-27 07:46:31 +00004617 int cap = pci_pcie_cap(pdev);
françois romieue6de30d2011-01-03 15:08:37 +00004618
4619 if (cap) {
4620 u16 ctl;
4621
4622 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4623 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
4624 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4625 }
4626}
4627
Francois Romieub726e492008-06-28 12:22:59 +02004628#define R8168_CPCMD_QUIRK_MASK (\
4629 EnableBist | \
4630 Mac_dbgo_oe | \
4631 Force_half_dup | \
4632 Force_rxflow_en | \
4633 Force_txflow_en | \
4634 Cxpl_dbg_sel | \
4635 ASF | \
4636 PktCntrDisable | \
4637 Mac_dbgo_sel)
4638
Francois Romieu219a1e92008-06-28 11:58:39 +02004639static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
4640{
Francois Romieub726e492008-06-28 12:22:59 +02004641 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4642
4643 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4644
Francois Romieu2e68ae42008-06-28 12:00:55 +02004645 rtl_tx_performance_tweak(pdev,
4646 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02004647}
4648
4649static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
4650{
4651 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02004652
françois romieuf0298f82011-01-03 15:07:42 +00004653 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02004654
4655 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02004656}
4657
4658static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
4659{
Francois Romieub726e492008-06-28 12:22:59 +02004660 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4661
4662 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4663
Francois Romieu219a1e92008-06-28 11:58:39 +02004664 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02004665
4666 rtl_disable_clock_request(pdev);
4667
4668 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02004669}
4670
Francois Romieuef3386f2008-06-29 12:24:30 +02004671static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02004672{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004673 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004674 { 0x01, 0, 0x0001 },
4675 { 0x02, 0x0800, 0x1000 },
4676 { 0x03, 0, 0x0042 },
4677 { 0x06, 0x0080, 0x0000 },
4678 { 0x07, 0, 0x2000 }
4679 };
4680
françois romieu650e8d52011-01-03 15:08:29 +00004681 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004682
4683 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
4684
Francois Romieu219a1e92008-06-28 11:58:39 +02004685 __rtl_hw_start_8168cp(ioaddr, pdev);
4686}
4687
Francois Romieuef3386f2008-06-29 12:24:30 +02004688static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
4689{
françois romieu650e8d52011-01-03 15:08:29 +00004690 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02004691
4692 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4693
4694 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4695
4696 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4697}
4698
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004699static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
4700{
françois romieu650e8d52011-01-03 15:08:29 +00004701 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004702
4703 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4704
4705 /* Magic. */
4706 RTL_W8(DBG_REG, 0x20);
4707
françois romieuf0298f82011-01-03 15:07:42 +00004708 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004709
4710 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4711
4712 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4713}
4714
Francois Romieu219a1e92008-06-28 11:58:39 +02004715static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
4716{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004717 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004718 { 0x02, 0x0800, 0x1000 },
4719 { 0x03, 0, 0x0002 },
4720 { 0x06, 0x0080, 0x0000 }
4721 };
4722
françois romieu650e8d52011-01-03 15:08:29 +00004723 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004724
4725 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
4726
4727 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
4728
Francois Romieu219a1e92008-06-28 11:58:39 +02004729 __rtl_hw_start_8168cp(ioaddr, pdev);
4730}
4731
4732static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
4733{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004734 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004735 { 0x01, 0, 0x0001 },
4736 { 0x03, 0x0400, 0x0220 }
4737 };
4738
françois romieu650e8d52011-01-03 15:08:29 +00004739 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004740
4741 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
4742
Francois Romieu219a1e92008-06-28 11:58:39 +02004743 __rtl_hw_start_8168cp(ioaddr, pdev);
4744}
4745
Francois Romieu197ff762008-06-28 13:16:02 +02004746static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
4747{
4748 rtl_hw_start_8168c_2(ioaddr, pdev);
4749}
4750
Francois Romieu6fb07052008-06-29 11:54:28 +02004751static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
4752{
françois romieu650e8d52011-01-03 15:08:29 +00004753 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02004754
4755 __rtl_hw_start_8168cp(ioaddr, pdev);
4756}
4757
Francois Romieu5b538df2008-07-20 16:22:45 +02004758static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
4759{
françois romieu650e8d52011-01-03 15:08:29 +00004760 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02004761
4762 rtl_disable_clock_request(pdev);
4763
françois romieuf0298f82011-01-03 15:07:42 +00004764 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02004765
4766 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4767
4768 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4769}
4770
hayeswang4804b3b2011-03-21 01:50:29 +00004771static void rtl_hw_start_8168dp(void __iomem *ioaddr, struct pci_dev *pdev)
4772{
4773 rtl_csi_access_enable_1(ioaddr);
4774
4775 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4776
4777 RTL_W8(MaxTxPacketSize, TxPacketMax);
4778
4779 rtl_disable_clock_request(pdev);
4780}
4781
françois romieue6de30d2011-01-03 15:08:37 +00004782static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
4783{
4784 static const struct ephy_info e_info_8168d_4[] = {
4785 { 0x0b, ~0, 0x48 },
4786 { 0x19, 0x20, 0x50 },
4787 { 0x0c, ~0, 0x20 }
4788 };
4789 int i;
4790
4791 rtl_csi_access_enable_1(ioaddr);
4792
4793 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4794
4795 RTL_W8(MaxTxPacketSize, TxPacketMax);
4796
4797 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
4798 const struct ephy_info *e = e_info_8168d_4 + i;
4799 u16 w;
4800
4801 w = rtl_ephy_read(ioaddr, e->offset);
4802 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
4803 }
4804
4805 rtl_enable_clock_request(pdev);
4806}
4807
Hayes Wang70090422011-07-06 15:58:06 +08004808static void rtl_hw_start_8168e_1(void __iomem *ioaddr, struct pci_dev *pdev)
hayeswang01dc7fe2011-03-21 01:50:28 +00004809{
Hayes Wang70090422011-07-06 15:58:06 +08004810 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00004811 { 0x00, 0x0200, 0x0100 },
4812 { 0x00, 0x0000, 0x0004 },
4813 { 0x06, 0x0002, 0x0001 },
4814 { 0x06, 0x0000, 0x0030 },
4815 { 0x07, 0x0000, 0x2000 },
4816 { 0x00, 0x0000, 0x0020 },
4817 { 0x03, 0x5800, 0x2000 },
4818 { 0x03, 0x0000, 0x0001 },
4819 { 0x01, 0x0800, 0x1000 },
4820 { 0x07, 0x0000, 0x4000 },
4821 { 0x1e, 0x0000, 0x2000 },
4822 { 0x19, 0xffff, 0xfe6c },
4823 { 0x0a, 0x0000, 0x0040 }
4824 };
4825
4826 rtl_csi_access_enable_2(ioaddr);
4827
Hayes Wang70090422011-07-06 15:58:06 +08004828 rtl_ephy_init(ioaddr, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00004829
4830 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4831
4832 RTL_W8(MaxTxPacketSize, TxPacketMax);
4833
4834 rtl_disable_clock_request(pdev);
4835
4836 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02004837 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
4838 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00004839
Francois Romieucecb5fd2011-04-01 10:21:07 +02004840 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00004841}
4842
Hayes Wang70090422011-07-06 15:58:06 +08004843static void rtl_hw_start_8168e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4844{
4845 static const struct ephy_info e_info_8168e_2[] = {
4846 { 0x09, 0x0000, 0x0080 },
4847 { 0x19, 0x0000, 0x0224 }
4848 };
4849
4850 rtl_csi_access_enable_1(ioaddr);
4851
4852 rtl_ephy_init(ioaddr, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
4853
4854 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4855
4856 rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4857 rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4858 rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
4859 rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
4860 rtl_eri_write(ioaddr, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
4861 rtl_eri_write(ioaddr, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
4862 rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4863 rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
4864 ERIAR_EXGMAC);
4865
Hayes Wang3090bd92011-09-06 16:55:15 +08004866 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08004867
4868 rtl_disable_clock_request(pdev);
4869
4870 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
4871 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
4872
4873 /* Adjust EEE LED frequency */
4874 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
4875
4876 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
4877 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
4878 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4879}
4880
Hayes Wangc2218922011-09-06 16:55:18 +08004881static void rtl_hw_start_8168f_1(void __iomem *ioaddr, struct pci_dev *pdev)
4882{
4883 static const struct ephy_info e_info_8168f_1[] = {
4884 { 0x06, 0x00c0, 0x0020 },
4885 { 0x08, 0x0001, 0x0002 },
4886 { 0x09, 0x0000, 0x0080 },
4887 { 0x19, 0x0000, 0x0224 }
4888 };
4889
4890 rtl_csi_access_enable_1(ioaddr);
4891
4892 rtl_ephy_init(ioaddr, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
4893
4894 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4895
4896 rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4897 rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4898 rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
4899 rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
4900 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
4901 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
4902 rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4903 rtl_w1w0_eri(ioaddr, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4904 rtl_eri_write(ioaddr, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
4905 rtl_eri_write(ioaddr, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
4906 rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
4907 ERIAR_EXGMAC);
4908
4909 RTL_W8(MaxTxPacketSize, EarlySize);
4910
4911 rtl_disable_clock_request(pdev);
4912
4913 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
4914 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
4915
4916 /* Adjust EEE LED frequency */
4917 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
4918
4919 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
4920 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
4921 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4922}
4923
Francois Romieu07ce4062007-02-23 23:36:39 +01004924static void rtl_hw_start_8168(struct net_device *dev)
4925{
Francois Romieu2dd99532007-06-11 23:22:52 +02004926 struct rtl8169_private *tp = netdev_priv(dev);
4927 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01004928 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02004929
4930 RTL_W8(Cfg9346, Cfg9346_Unlock);
4931
françois romieuf0298f82011-01-03 15:07:42 +00004932 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02004933
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004934 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02004935
Francois Romieu0e485152007-02-20 00:00:26 +01004936 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02004937
4938 RTL_W16(CPlusCmd, tp->cp_cmd);
4939
Francois Romieu0e485152007-02-20 00:00:26 +01004940 RTL_W16(IntrMitigate, 0x5151);
4941
4942 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00004943 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01004944 tp->event_slow |= RxFIFOOver | PCSTimeout;
4945 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01004946 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004947
4948 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4949
Francois Romieub8363902008-06-01 12:31:57 +02004950 rtl_set_rx_mode(dev);
4951
4952 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4953 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02004954
4955 RTL_R8(IntrMask);
4956
Francois Romieu219a1e92008-06-28 11:58:39 +02004957 switch (tp->mac_version) {
4958 case RTL_GIGA_MAC_VER_11:
4959 rtl_hw_start_8168bb(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004960 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004961
4962 case RTL_GIGA_MAC_VER_12:
4963 case RTL_GIGA_MAC_VER_17:
4964 rtl_hw_start_8168bef(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004965 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004966
4967 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02004968 rtl_hw_start_8168cp_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004969 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004970
4971 case RTL_GIGA_MAC_VER_19:
4972 rtl_hw_start_8168c_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004973 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004974
4975 case RTL_GIGA_MAC_VER_20:
4976 rtl_hw_start_8168c_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004977 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004978
Francois Romieu197ff762008-06-28 13:16:02 +02004979 case RTL_GIGA_MAC_VER_21:
4980 rtl_hw_start_8168c_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004981 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004982
Francois Romieu6fb07052008-06-29 11:54:28 +02004983 case RTL_GIGA_MAC_VER_22:
4984 rtl_hw_start_8168c_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004985 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004986
Francois Romieuef3386f2008-06-29 12:24:30 +02004987 case RTL_GIGA_MAC_VER_23:
4988 rtl_hw_start_8168cp_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004989 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004990
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004991 case RTL_GIGA_MAC_VER_24:
4992 rtl_hw_start_8168cp_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004993 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004994
Francois Romieu5b538df2008-07-20 16:22:45 +02004995 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00004996 case RTL_GIGA_MAC_VER_26:
4997 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02004998 rtl_hw_start_8168d(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004999 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02005000
françois romieue6de30d2011-01-03 15:08:37 +00005001 case RTL_GIGA_MAC_VER_28:
5002 rtl_hw_start_8168d_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00005003 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02005004
hayeswang4804b3b2011-03-21 01:50:29 +00005005 case RTL_GIGA_MAC_VER_31:
5006 rtl_hw_start_8168dp(ioaddr, pdev);
5007 break;
5008
hayeswang01dc7fe2011-03-21 01:50:28 +00005009 case RTL_GIGA_MAC_VER_32:
5010 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08005011 rtl_hw_start_8168e_1(ioaddr, pdev);
5012 break;
5013 case RTL_GIGA_MAC_VER_34:
5014 rtl_hw_start_8168e_2(ioaddr, pdev);
hayeswang01dc7fe2011-03-21 01:50:28 +00005015 break;
françois romieue6de30d2011-01-03 15:08:37 +00005016
Hayes Wangc2218922011-09-06 16:55:18 +08005017 case RTL_GIGA_MAC_VER_35:
5018 case RTL_GIGA_MAC_VER_36:
5019 rtl_hw_start_8168f_1(ioaddr, pdev);
5020 break;
5021
Francois Romieu219a1e92008-06-28 11:58:39 +02005022 default:
5023 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
5024 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00005025 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005026 }
Francois Romieu2dd99532007-06-11 23:22:52 +02005027
Francois Romieu0e485152007-02-20 00:00:26 +01005028 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5029
Francois Romieub8363902008-06-01 12:31:57 +02005030 RTL_W8(Cfg9346, Cfg9346_Lock);
5031
Francois Romieu2dd99532007-06-11 23:22:52 +02005032 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005033}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034
Francois Romieu2857ffb2008-08-02 21:08:49 +02005035#define R810X_CPCMD_QUIRK_MASK (\
5036 EnableBist | \
5037 Mac_dbgo_oe | \
5038 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00005039 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02005040 Force_txflow_en | \
5041 Cxpl_dbg_sel | \
5042 ASF | \
5043 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005044 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005045
5046static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
5047{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005048 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02005049 { 0x01, 0, 0x6e65 },
5050 { 0x02, 0, 0x091f },
5051 { 0x03, 0, 0xc2f9 },
5052 { 0x06, 0, 0xafb5 },
5053 { 0x07, 0, 0x0e00 },
5054 { 0x19, 0, 0xec80 },
5055 { 0x01, 0, 0x2e65 },
5056 { 0x01, 0, 0x6e65 }
5057 };
5058 u8 cfg1;
5059
françois romieu650e8d52011-01-03 15:08:29 +00005060 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005061
5062 RTL_W8(DBG_REG, FIX_NAK_1);
5063
5064 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5065
5066 RTL_W8(Config1,
5067 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
5068 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5069
5070 cfg1 = RTL_R8(Config1);
5071 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
5072 RTL_W8(Config1, cfg1 & ~LEDS0);
5073
Francois Romieu2857ffb2008-08-02 21:08:49 +02005074 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
5075}
5076
5077static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
5078{
françois romieu650e8d52011-01-03 15:08:29 +00005079 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005080
5081 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5082
5083 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
5084 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005085}
5086
5087static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
5088{
5089 rtl_hw_start_8102e_2(ioaddr, pdev);
5090
5091 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
5092}
5093
Hayes Wang5a5e4442011-02-22 17:26:21 +08005094static void rtl_hw_start_8105e_1(void __iomem *ioaddr, struct pci_dev *pdev)
5095{
5096 static const struct ephy_info e_info_8105e_1[] = {
5097 { 0x07, 0, 0x4000 },
5098 { 0x19, 0, 0x0200 },
5099 { 0x19, 0, 0x0020 },
5100 { 0x1e, 0, 0x2000 },
5101 { 0x03, 0, 0x0001 },
5102 { 0x19, 0, 0x0100 },
5103 { 0x19, 0, 0x0004 },
5104 { 0x0a, 0, 0x0020 }
5105 };
5106
Francois Romieucecb5fd2011-04-01 10:21:07 +02005107 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005108 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5109
Francois Romieucecb5fd2011-04-01 10:21:07 +02005110 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005111 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
5112
5113 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08005114 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005115
5116 rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
5117}
5118
5119static void rtl_hw_start_8105e_2(void __iomem *ioaddr, struct pci_dev *pdev)
5120{
5121 rtl_hw_start_8105e_1(ioaddr, pdev);
5122 rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
5123}
5124
Francois Romieu07ce4062007-02-23 23:36:39 +01005125static void rtl_hw_start_8101(struct net_device *dev)
5126{
Francois Romieucdf1a602007-06-11 23:29:50 +02005127 struct rtl8169_private *tp = netdev_priv(dev);
5128 void __iomem *ioaddr = tp->mmio_addr;
5129 struct pci_dev *pdev = tp->pci_dev;
5130
Francois Romieuda78dbf2012-01-26 14:18:23 +01005131 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
5132 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00005133
Francois Romieucecb5fd2011-04-01 10:21:07 +02005134 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
5135 tp->mac_version == RTL_GIGA_MAC_VER_16) {
Jon Masone44daad2011-06-27 07:46:31 +00005136 int cap = pci_pcie_cap(pdev);
Francois Romieu9c14cea2008-07-05 00:21:15 +02005137
5138 if (cap) {
5139 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
5140 PCI_EXP_DEVCTL_NOSNOOP_EN);
5141 }
Francois Romieucdf1a602007-06-11 23:29:50 +02005142 }
5143
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005144 RTL_W8(Cfg9346, Cfg9346_Unlock);
5145
Francois Romieu2857ffb2008-08-02 21:08:49 +02005146 switch (tp->mac_version) {
5147 case RTL_GIGA_MAC_VER_07:
5148 rtl_hw_start_8102e_1(ioaddr, pdev);
5149 break;
5150
5151 case RTL_GIGA_MAC_VER_08:
5152 rtl_hw_start_8102e_3(ioaddr, pdev);
5153 break;
5154
5155 case RTL_GIGA_MAC_VER_09:
5156 rtl_hw_start_8102e_2(ioaddr, pdev);
5157 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005158
5159 case RTL_GIGA_MAC_VER_29:
5160 rtl_hw_start_8105e_1(ioaddr, pdev);
5161 break;
5162 case RTL_GIGA_MAC_VER_30:
5163 rtl_hw_start_8105e_2(ioaddr, pdev);
5164 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02005165 }
5166
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005167 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02005168
françois romieuf0298f82011-01-03 15:07:42 +00005169 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02005170
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005171 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02005172
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005173 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02005174 RTL_W16(CPlusCmd, tp->cp_cmd);
5175
5176 RTL_W16(IntrMitigate, 0x0000);
5177
5178 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5179
5180 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5181 rtl_set_rx_tx_config_registers(tp);
5182
Francois Romieucdf1a602007-06-11 23:29:50 +02005183 RTL_R8(IntrMask);
5184
Francois Romieucdf1a602007-06-11 23:29:50 +02005185 rtl_set_rx_mode(dev);
5186
5187 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188}
5189
5190static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
5191{
Francois Romieud58d46b2011-05-03 16:38:29 +02005192 struct rtl8169_private *tp = netdev_priv(dev);
5193
5194 if (new_mtu < ETH_ZLEN ||
5195 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196 return -EINVAL;
5197
Francois Romieud58d46b2011-05-03 16:38:29 +02005198 if (new_mtu > ETH_DATA_LEN)
5199 rtl_hw_jumbo_enable(tp);
5200 else
5201 rtl_hw_jumbo_disable(tp);
5202
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00005204 netdev_update_features(dev);
5205
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207}
5208
5209static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
5210{
Al Viro95e09182007-12-22 18:55:39 +00005211 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
5213}
5214
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005215static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
5216 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005218 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005219 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005220
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005221 kfree(*data_buff);
5222 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 rtl8169_make_unusable_by_asic(desc);
5224}
5225
5226static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
5227{
5228 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
5229
5230 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
5231}
5232
5233static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
5234 u32 rx_buf_sz)
5235{
5236 desc->addr = cpu_to_le64(mapping);
5237 wmb();
5238 rtl8169_mark_to_asic(desc, rx_buf_sz);
5239}
5240
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005241static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005243 return (void *)ALIGN((long)data, 16);
5244}
5245
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005246static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
5247 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005248{
5249 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005251 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005252 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005253 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005255 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
5256 if (!data)
5257 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01005258
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005259 if (rtl8169_align(data) != data) {
5260 kfree(data);
5261 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
5262 if (!data)
5263 return NULL;
5264 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005265
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005266 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005267 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005268 if (unlikely(dma_mapping_error(d, mapping))) {
5269 if (net_ratelimit())
5270 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005271 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273
5274 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005275 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005276
5277err_out:
5278 kfree(data);
5279 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280}
5281
5282static void rtl8169_rx_clear(struct rtl8169_private *tp)
5283{
Francois Romieu07d3f512007-02-21 22:40:46 +01005284 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
5286 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005287 if (tp->Rx_databuff[i]) {
5288 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 tp->RxDescArray + i);
5290 }
5291 }
5292}
5293
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005294static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005296 desc->opts1 |= cpu_to_le32(RingEnd);
5297}
Francois Romieu5b0384f2006-08-16 16:00:01 +02005298
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005299static int rtl8169_rx_fill(struct rtl8169_private *tp)
5300{
5301 unsigned int i;
5302
5303 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005304 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02005305
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005306 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005308
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005309 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005310 if (!data) {
5311 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005312 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005313 }
5314 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005317 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
5318 return 0;
5319
5320err_out:
5321 rtl8169_rx_clear(tp);
5322 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323}
5324
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325static int rtl8169_init_ring(struct net_device *dev)
5326{
5327 struct rtl8169_private *tp = netdev_priv(dev);
5328
5329 rtl8169_init_ring_indexes(tp);
5330
5331 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005332 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005334 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335}
5336
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005337static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 struct TxDesc *desc)
5339{
5340 unsigned int len = tx_skb->len;
5341
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005342 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
5343
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 desc->opts1 = 0x00;
5345 desc->opts2 = 0x00;
5346 desc->addr = 0x00;
5347 tx_skb->len = 0;
5348}
5349
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005350static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
5351 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352{
5353 unsigned int i;
5354
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005355 for (i = 0; i < n; i++) {
5356 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 struct ring_info *tx_skb = tp->tx_skb + entry;
5358 unsigned int len = tx_skb->len;
5359
5360 if (len) {
5361 struct sk_buff *skb = tx_skb->skb;
5362
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005363 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 tp->TxDescArray + entry);
5365 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00005366 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 dev_kfree_skb(skb);
5368 tx_skb->skb = NULL;
5369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370 }
5371 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005372}
5373
5374static void rtl8169_tx_clear(struct rtl8169_private *tp)
5375{
5376 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 tp->cur_tx = tp->dirty_tx = 0;
5378}
5379
Francois Romieu4422bcd2012-01-26 11:23:32 +01005380static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381{
David Howellsc4028952006-11-22 14:57:56 +00005382 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01005383 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384
Francois Romieuda78dbf2012-01-26 14:18:23 +01005385 napi_disable(&tp->napi);
5386 netif_stop_queue(dev);
5387 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388
françois romieuc7c2c392011-12-04 20:30:52 +00005389 rtl8169_hw_reset(tp);
5390
Francois Romieu56de4142011-03-15 17:29:31 +01005391 for (i = 0; i < NUM_RX_DESC; i++)
5392 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
5393
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00005395 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396
Francois Romieuda78dbf2012-01-26 14:18:23 +01005397 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01005398 rtl_hw_start(dev);
5399 netif_wake_queue(dev);
5400 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401}
5402
5403static void rtl8169_tx_timeout(struct net_device *dev)
5404{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005405 struct rtl8169_private *tp = netdev_priv(dev);
5406
5407 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408}
5409
5410static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07005411 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412{
5413 struct skb_shared_info *info = skb_shinfo(skb);
5414 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04005415 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005416 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417
5418 entry = tp->cur_tx;
5419 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00005420 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 dma_addr_t mapping;
5422 u32 status, len;
5423 void *addr;
5424
5425 entry = (entry + 1) % NUM_TX_DESC;
5426
5427 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00005428 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00005429 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005430 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005431 if (unlikely(dma_mapping_error(d, mapping))) {
5432 if (net_ratelimit())
5433 netif_err(tp, drv, tp->dev,
5434 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005435 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437
Francois Romieucecb5fd2011-04-01 10:21:07 +02005438 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005439 status = opts[0] | len |
5440 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441
5442 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07005443 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 txd->addr = cpu_to_le64(mapping);
5445
5446 tp->tx_skb[entry].len = len;
5447 }
5448
5449 if (cur_frag) {
5450 tp->tx_skb[entry].skb = skb;
5451 txd->opts1 |= cpu_to_le32(LastFrag);
5452 }
5453
5454 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005455
5456err_out:
5457 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
5458 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459}
5460
Francois Romieu2b7b4312011-04-18 22:53:24 -07005461static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
5462 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463{
Francois Romieu2b7b4312011-04-18 22:53:24 -07005464 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00005465 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005466 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467
Francois Romieu2b7b4312011-04-18 22:53:24 -07005468 if (mss) {
5469 opts[0] |= TD_LSO;
5470 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
5471 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005472 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473
5474 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005475 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005477 opts[offset] |= info->checksum.udp;
5478 else
5479 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481}
5482
Stephen Hemminger613573252009-08-31 19:50:58 +00005483static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
5484 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485{
5486 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005487 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 struct TxDesc *txd = tp->TxDescArray + entry;
5489 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005490 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491 dma_addr_t mapping;
5492 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005493 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005494 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02005495
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005497 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005498 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 }
5500
5501 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005502 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005504 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005505 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005506 if (unlikely(dma_mapping_error(d, mapping))) {
5507 if (net_ratelimit())
5508 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005509 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
5512 tp->tx_skb[entry].len = len;
5513 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514
Francois Romieu2b7b4312011-04-18 22:53:24 -07005515 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
5516 opts[0] = DescOwn;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005517
Francois Romieu2b7b4312011-04-18 22:53:24 -07005518 rtl8169_tso_csum(tp, skb, opts);
5519
5520 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005521 if (frags < 0)
5522 goto err_dma_1;
5523 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005524 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005525 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07005526 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005527 tp->tx_skb[entry].skb = skb;
5528 }
5529
Francois Romieu2b7b4312011-04-18 22:53:24 -07005530 txd->opts2 = cpu_to_le32(opts[1]);
5531
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 wmb();
5533
Francois Romieucecb5fd2011-04-01 10:21:07 +02005534 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005535 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536 txd->opts1 = cpu_to_le32(status);
5537
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538 tp->cur_tx += frags + 1;
5539
David Dillow4c020a92010-03-03 16:33:10 +00005540 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541
Francois Romieucecb5fd2011-04-01 10:21:07 +02005542 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543
Francois Romieuda78dbf2012-01-26 14:18:23 +01005544 mmiowb();
5545
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01005547 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
5548 * not miss a ring update when it notices a stopped queue.
5549 */
5550 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01005552 /* Sync with rtl_tx:
5553 * - publish queue status and cur_tx ring index (write barrier)
5554 * - refresh dirty_tx ring index (read barrier).
5555 * May the current thread have a pessimistic view of the ring
5556 * status and forget to wake up queue, a racing rtl_tx thread
5557 * can't.
5558 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005559 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
5561 netif_wake_queue(dev);
5562 }
5563
Stephen Hemminger613573252009-08-31 19:50:58 +00005564 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005566err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005567 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005568err_dma_0:
5569 dev_kfree_skb(skb);
5570 dev->stats.tx_dropped++;
5571 return NETDEV_TX_OK;
5572
5573err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005575 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00005576 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577}
5578
5579static void rtl8169_pcierr_interrupt(struct net_device *dev)
5580{
5581 struct rtl8169_private *tp = netdev_priv(dev);
5582 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583 u16 pci_status, pci_cmd;
5584
5585 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
5586 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
5587
Joe Perchesbf82c182010-02-09 11:49:50 +00005588 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
5589 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590
5591 /*
5592 * The recovery sequence below admits a very elaborated explanation:
5593 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01005594 * - I did not see what else could be done;
5595 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596 *
5597 * Feel free to adjust to your needs.
5598 */
Francois Romieua27993f2006-12-18 00:04:19 +01005599 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01005600 pci_cmd &= ~PCI_COMMAND_PARITY;
5601 else
5602 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
5603
5604 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
5606 pci_write_config_word(pdev, PCI_STATUS,
5607 pci_status & (PCI_STATUS_DETECTED_PARITY |
5608 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
5609 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
5610
5611 /* The infamous DAC f*ckup only happens at boot time */
5612 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00005613 void __iomem *ioaddr = tp->mmio_addr;
5614
Joe Perchesbf82c182010-02-09 11:49:50 +00005615 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616 tp->cp_cmd &= ~PCIDAC;
5617 RTL_W16(CPlusCmd, tp->cp_cmd);
5618 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619 }
5620
françois romieue6de30d2011-01-03 15:08:37 +00005621 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01005622
Francois Romieu98ddf982012-01-31 10:47:34 +01005623 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624}
5625
Francois Romieuda78dbf2012-01-26 14:18:23 +01005626static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627{
5628 unsigned int dirty_tx, tx_left;
5629
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630 dirty_tx = tp->dirty_tx;
5631 smp_rmb();
5632 tx_left = tp->cur_tx - dirty_tx;
5633
5634 while (tx_left > 0) {
5635 unsigned int entry = dirty_tx % NUM_TX_DESC;
5636 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637 u32 status;
5638
5639 rmb();
5640 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
5641 if (status & DescOwn)
5642 break;
5643
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005644 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
5645 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00005647 dev->stats.tx_packets++;
5648 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00005649 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650 tx_skb->skb = NULL;
5651 }
5652 dirty_tx++;
5653 tx_left--;
5654 }
5655
5656 if (tp->dirty_tx != dirty_tx) {
5657 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01005658 /* Sync with rtl8169_start_xmit:
5659 * - publish dirty_tx ring index (write barrier)
5660 * - refresh cur_tx ring index and queue status (read barrier)
5661 * May the current thread miss the stopped queue condition,
5662 * a racing xmit thread can only have a right view of the
5663 * ring status.
5664 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005665 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666 if (netif_queue_stopped(dev) &&
5667 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
5668 netif_wake_queue(dev);
5669 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02005670 /*
5671 * 8168 hack: TxPoll requests are lost when the Tx packets are
5672 * too close. Let's kick an extra TxPoll request when a burst
5673 * of start_xmit activity is detected (if it is not detected,
5674 * it is slow enough). -- FR
5675 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005676 if (tp->cur_tx != dirty_tx) {
5677 void __iomem *ioaddr = tp->mmio_addr;
5678
Francois Romieud78ae2d2007-08-26 20:08:19 +02005679 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681 }
5682}
5683
Francois Romieu126fa4b2005-05-12 20:09:17 -04005684static inline int rtl8169_fragmented_frame(u32 status)
5685{
5686 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
5687}
5688
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005689static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691 u32 status = opts1 & RxProtoMask;
5692
5693 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00005694 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695 skb->ip_summed = CHECKSUM_UNNECESSARY;
5696 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005697 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698}
5699
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005700static struct sk_buff *rtl8169_try_rx_copy(void *data,
5701 struct rtl8169_private *tp,
5702 int pkt_size,
5703 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02005705 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005706 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005708 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005709 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005710 prefetch(data);
5711 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
5712 if (skb)
5713 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005714 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
5715
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005716 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717}
5718
Francois Romieuda78dbf2012-01-26 14:18:23 +01005719static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720{
5721 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005722 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724 cur_rx = tp->cur_rx;
5725 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02005726 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005728 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005730 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731 u32 status;
5732
5733 rmb();
David S. Miller8decf862011-09-22 03:23:13 -04005734 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735
5736 if (status & DescOwn)
5737 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005738 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005739 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
5740 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005741 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02005743 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02005745 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005746 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01005747 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005748 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005749 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005750 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005752 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02005753 dma_addr_t addr = le64_to_cpu(desc->addr);
Francois Romieudeb9d932011-07-12 08:24:28 +02005754 int pkt_size = (status & 0x00003fff) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755
Francois Romieu126fa4b2005-05-12 20:09:17 -04005756 /*
5757 * The driver does not support incoming fragmented
5758 * frames. They are seen as a symptom of over-mtu
5759 * sized frames.
5760 */
5761 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02005762 dev->stats.rx_dropped++;
5763 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005764 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005765 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005766 }
5767
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005768 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
5769 tp, pkt_size, addr);
5770 rtl8169_mark_to_asic(desc, rx_buf_sz);
5771 if (!skb) {
5772 dev->stats.rx_dropped++;
5773 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774 }
5775
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005776 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 skb_put(skb, pkt_size);
5778 skb->protocol = eth_type_trans(skb, dev);
5779
Francois Romieu7a8fc772011-03-01 17:18:33 +01005780 rtl8169_rx_vlan_tag(desc, skb);
5781
Francois Romieu56de4142011-03-15 17:29:31 +01005782 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783
Francois Romieucebf8cc2007-10-18 12:06:54 +02005784 dev->stats.rx_bytes += pkt_size;
5785 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786 }
Francois Romieu6dccd162007-02-13 23:38:05 +01005787
5788 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00005789 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01005790 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
5791 desc->opts2 = 0;
5792 cur_rx++;
5793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794 }
5795
5796 count = cur_rx - tp->cur_rx;
5797 tp->cur_rx = cur_rx;
5798
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005799 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
5801 return count;
5802}
5803
Francois Romieu07d3f512007-02-21 22:40:46 +01005804static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805{
Francois Romieu07d3f512007-02-21 22:40:46 +01005806 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01005809 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810
Francois Romieu9085cdfa2012-01-26 12:59:08 +01005811 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005812 if (status && status != 0xffff) {
5813 status &= RTL_EVENT_NAPI | tp->event_slow;
5814 if (status) {
5815 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00005816
Francois Romieuda78dbf2012-01-26 14:18:23 +01005817 rtl_irq_disable(tp);
5818 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821 return IRQ_RETVAL(handled);
5822}
5823
Francois Romieuda78dbf2012-01-26 14:18:23 +01005824/*
5825 * Workqueue context.
5826 */
5827static void rtl_slow_event_work(struct rtl8169_private *tp)
5828{
5829 struct net_device *dev = tp->dev;
5830 u16 status;
5831
5832 status = rtl_get_events(tp) & tp->event_slow;
5833 rtl_ack_events(tp, status);
5834
5835 if (unlikely(status & RxFIFOOver)) {
5836 switch (tp->mac_version) {
5837 /* Work around for rx fifo overflow */
5838 case RTL_GIGA_MAC_VER_11:
5839 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01005840 /* XXX - Hack alert. See rtl_task(). */
5841 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005842 default:
5843 break;
5844 }
5845 }
5846
5847 if (unlikely(status & SYSErr))
5848 rtl8169_pcierr_interrupt(dev);
5849
5850 if (status & LinkChg)
5851 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
5852
5853 napi_disable(&tp->napi);
5854 rtl_irq_disable(tp);
5855
5856 napi_enable(&tp->napi);
5857 napi_schedule(&tp->napi);
5858}
5859
Francois Romieu4422bcd2012-01-26 11:23:32 +01005860static void rtl_task(struct work_struct *work)
5861{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005862 static const struct {
5863 int bitnr;
5864 void (*action)(struct rtl8169_private *);
5865 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01005866 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005867 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
5868 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
5869 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
5870 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01005871 struct rtl8169_private *tp =
5872 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005873 struct net_device *dev = tp->dev;
5874 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01005875
Francois Romieuda78dbf2012-01-26 14:18:23 +01005876 rtl_lock_work(tp);
5877
Francois Romieu6c4a70c2012-01-31 10:56:44 +01005878 if (!netif_running(dev) ||
5879 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01005880 goto out_unlock;
5881
5882 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
5883 bool pending;
5884
Francois Romieuda78dbf2012-01-26 14:18:23 +01005885 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005886 if (pending)
5887 rtl_work[i].action(tp);
5888 }
5889
5890out_unlock:
5891 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01005892}
5893
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005894static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005896 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
5897 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01005898 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
5899 int work_done= 0;
5900 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901
Francois Romieuda78dbf2012-01-26 14:18:23 +01005902 status = rtl_get_events(tp);
5903 rtl_ack_events(tp, status & ~tp->event_slow);
5904
5905 if (status & RTL_EVENT_NAPI_RX)
5906 work_done = rtl_rx(dev, tp, (u32) budget);
5907
5908 if (status & RTL_EVENT_NAPI_TX)
5909 rtl_tx(dev, tp);
5910
5911 if (status & tp->event_slow) {
5912 enable_mask &= ~tp->event_slow;
5913
5914 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
5915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005917 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005918 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00005919
Francois Romieuda78dbf2012-01-26 14:18:23 +01005920 rtl_irq_enable(tp, enable_mask);
5921 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922 }
5923
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005924 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926
Francois Romieu523a6092008-09-10 22:28:56 +02005927static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
5928{
5929 struct rtl8169_private *tp = netdev_priv(dev);
5930
5931 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
5932 return;
5933
5934 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
5935 RTL_W32(RxMissed, 0);
5936}
5937
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938static void rtl8169_down(struct net_device *dev)
5939{
5940 struct rtl8169_private *tp = netdev_priv(dev);
5941 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942
Francois Romieu4876cc12011-03-11 21:07:11 +01005943 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005945 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005946 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947
Hayes Wang92fc43b2011-07-06 15:58:03 +08005948 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005949 /*
5950 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01005951 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
5952 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005953 */
Francois Romieu523a6092008-09-10 22:28:56 +02005954 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005957 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959 rtl8169_tx_clear(tp);
5960
5961 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00005962
5963 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964}
5965
5966static int rtl8169_close(struct net_device *dev)
5967{
5968 struct rtl8169_private *tp = netdev_priv(dev);
5969 struct pci_dev *pdev = tp->pci_dev;
5970
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005971 pm_runtime_get_sync(&pdev->dev);
5972
Francois Romieucecb5fd2011-04-01 10:21:07 +02005973 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08005974 rtl8169_update_counters(dev);
5975
Francois Romieuda78dbf2012-01-26 14:18:23 +01005976 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01005977 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005978
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005980 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
5982 free_irq(dev->irq, dev);
5983
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00005984 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
5985 tp->RxPhyAddr);
5986 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
5987 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988 tp->TxDescArray = NULL;
5989 tp->RxDescArray = NULL;
5990
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005991 pm_runtime_put_sync(&pdev->dev);
5992
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993 return 0;
5994}
5995
Francois Romieu07ce4062007-02-23 23:36:39 +01005996static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997{
5998 struct rtl8169_private *tp = netdev_priv(dev);
5999 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01006001 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002 u32 tmp = 0;
6003
6004 if (dev->flags & IFF_PROMISC) {
6005 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00006006 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 rx_mode =
6008 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
6009 AcceptAllPhys;
6010 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00006011 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00006012 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013 /* Too many to filter perfectly -- accept all multicasts. */
6014 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
6015 mc_filter[1] = mc_filter[0] = 0xffffffff;
6016 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00006017 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01006018
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019 rx_mode = AcceptBroadcast | AcceptMyPhys;
6020 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00006021 netdev_for_each_mc_addr(ha, dev) {
6022 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
6024 rx_mode |= AcceptMulticast;
6025 }
6026 }
6027
Francois Romieu1687b562011-07-19 17:21:29 +02006028 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029
Francois Romieuf887cce2008-07-17 22:24:18 +02006030 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01006031 u32 data = mc_filter[0];
6032
6033 mc_filter[0] = swab32(mc_filter[1]);
6034 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02006035 }
6036
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07006038 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039
Francois Romieu57a9f232007-06-04 22:10:15 +02006040 RTL_W32(RxConfig, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041}
6042
6043/**
6044 * rtl8169_get_stats - Get rtl8169 read/write statistics
6045 * @dev: The Ethernet Device to get statistics for
6046 *
6047 * Get TX/RX statistics for rtl8169
6048 */
6049static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
6050{
6051 struct rtl8169_private *tp = netdev_priv(dev);
6052 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053
Francois Romieuda78dbf2012-01-26 14:18:23 +01006054 if (netif_running(dev))
Francois Romieu523a6092008-09-10 22:28:56 +02006055 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02006056
Francois Romieucebf8cc2007-10-18 12:06:54 +02006057 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058}
6059
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006060static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01006061{
françois romieu065c27c2011-01-03 15:08:12 +00006062 struct rtl8169_private *tp = netdev_priv(dev);
6063
Francois Romieu5d06a992006-02-23 00:47:58 +01006064 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006065 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01006066
6067 netif_device_detach(dev);
6068 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006069
6070 rtl_lock_work(tp);
6071 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006072 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006073 rtl_unlock_work(tp);
6074
6075 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006076}
Francois Romieu5d06a992006-02-23 00:47:58 +01006077
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006078#ifdef CONFIG_PM
6079
6080static int rtl8169_suspend(struct device *device)
6081{
6082 struct pci_dev *pdev = to_pci_dev(device);
6083 struct net_device *dev = pci_get_drvdata(pdev);
6084
6085 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02006086
Francois Romieu5d06a992006-02-23 00:47:58 +01006087 return 0;
6088}
6089
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006090static void __rtl8169_resume(struct net_device *dev)
6091{
françois romieu065c27c2011-01-03 15:08:12 +00006092 struct rtl8169_private *tp = netdev_priv(dev);
6093
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006094 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00006095
6096 rtl_pll_power_up(tp);
6097
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006098 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006099
Francois Romieu98ddf982012-01-31 10:47:34 +01006100 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006101}
6102
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006103static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01006104{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006105 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01006106 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006107 struct rtl8169_private *tp = netdev_priv(dev);
6108
6109 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01006110
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006111 if (netif_running(dev))
6112 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01006113
Francois Romieu5d06a992006-02-23 00:47:58 +01006114 return 0;
6115}
6116
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006117static int rtl8169_runtime_suspend(struct device *device)
6118{
6119 struct pci_dev *pdev = to_pci_dev(device);
6120 struct net_device *dev = pci_get_drvdata(pdev);
6121 struct rtl8169_private *tp = netdev_priv(dev);
6122
6123 if (!tp->TxDescArray)
6124 return 0;
6125
Francois Romieuda78dbf2012-01-26 14:18:23 +01006126 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006127 tp->saved_wolopts = __rtl8169_get_wol(tp);
6128 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006129 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006130
6131 rtl8169_net_suspend(dev);
6132
6133 return 0;
6134}
6135
6136static int rtl8169_runtime_resume(struct device *device)
6137{
6138 struct pci_dev *pdev = to_pci_dev(device);
6139 struct net_device *dev = pci_get_drvdata(pdev);
6140 struct rtl8169_private *tp = netdev_priv(dev);
6141
6142 if (!tp->TxDescArray)
6143 return 0;
6144
Francois Romieuda78dbf2012-01-26 14:18:23 +01006145 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006146 __rtl8169_set_wol(tp, tp->saved_wolopts);
6147 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006148 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006149
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006150 rtl8169_init_phy(dev, tp);
6151
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006152 __rtl8169_resume(dev);
6153
6154 return 0;
6155}
6156
6157static int rtl8169_runtime_idle(struct device *device)
6158{
6159 struct pci_dev *pdev = to_pci_dev(device);
6160 struct net_device *dev = pci_get_drvdata(pdev);
6161 struct rtl8169_private *tp = netdev_priv(dev);
6162
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00006163 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006164}
6165
Alexey Dobriyan47145212009-12-14 18:00:08 -08006166static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02006167 .suspend = rtl8169_suspend,
6168 .resume = rtl8169_resume,
6169 .freeze = rtl8169_suspend,
6170 .thaw = rtl8169_resume,
6171 .poweroff = rtl8169_suspend,
6172 .restore = rtl8169_resume,
6173 .runtime_suspend = rtl8169_runtime_suspend,
6174 .runtime_resume = rtl8169_runtime_resume,
6175 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006176};
6177
6178#define RTL8169_PM_OPS (&rtl8169_pm_ops)
6179
6180#else /* !CONFIG_PM */
6181
6182#define RTL8169_PM_OPS NULL
6183
6184#endif /* !CONFIG_PM */
6185
David S. Miller1805b2f2011-10-24 18:18:09 -04006186static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
6187{
6188 void __iomem *ioaddr = tp->mmio_addr;
6189
6190 /* WoL fails with 8168b when the receiver is disabled. */
6191 switch (tp->mac_version) {
6192 case RTL_GIGA_MAC_VER_11:
6193 case RTL_GIGA_MAC_VER_12:
6194 case RTL_GIGA_MAC_VER_17:
6195 pci_clear_master(tp->pci_dev);
6196
6197 RTL_W8(ChipCmd, CmdRxEnb);
6198 /* PCI commit */
6199 RTL_R8(ChipCmd);
6200 break;
6201 default:
6202 break;
6203 }
6204}
6205
Francois Romieu1765f952008-09-13 17:21:40 +02006206static void rtl_shutdown(struct pci_dev *pdev)
6207{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006208 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00006209 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu1765f952008-09-13 17:21:40 +02006210
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006211 rtl8169_net_suspend(dev);
6212
Francois Romieucecb5fd2011-04-01 10:21:07 +02006213 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08006214 rtl_rar_set(tp, dev->perm_addr);
6215
Hayes Wang92fc43b2011-07-06 15:58:03 +08006216 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00006217
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006218 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04006219 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
6220 rtl_wol_suspend_quirk(tp);
6221 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00006222 }
6223
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006224 pci_wake_from_d3(pdev, true);
6225 pci_set_power_state(pdev, PCI_D3hot);
6226 }
6227}
Francois Romieu5d06a992006-02-23 00:47:58 +01006228
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229static struct pci_driver rtl8169_pci_driver = {
6230 .name = MODULENAME,
6231 .id_table = rtl8169_pci_tbl,
6232 .probe = rtl8169_init_one,
6233 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02006234 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006235 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236};
6237
Francois Romieu07d3f512007-02-21 22:40:46 +01006238static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239{
Jeff Garzik29917622006-08-19 17:48:59 -04006240 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241}
6242
Francois Romieu07d3f512007-02-21 22:40:46 +01006243static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244{
6245 pci_unregister_driver(&rtl8169_pci_driver);
6246}
6247
6248module_init(rtl8169_init_module);
6249module_exit(rtl8169_cleanup_module);