blob: 0dc70c21767e146eee5fe174935dcb0a6ea61e5d [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
32#include <asm/io.h>
33#include <asm/irq.h>
34
Francois Romieu865c6522008-05-11 14:51:00 +020035#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define MODULENAME "r8169"
37#define PFX MODULENAME ": "
38
françois romieubca03d52011-01-03 15:07:31 +000039#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
40#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
hayeswang01dc7fe2011-03-21 01:50:28 +000041#define FIRMWARE_8168E_1 "rtl_nic/rtl8168e-1.fw"
42#define FIRMWARE_8168E_2 "rtl_nic/rtl8168e-2.fw"
Hayes Wang70090422011-07-06 15:58:06 +080043#define FIRMWARE_8168E_3 "rtl_nic/rtl8168e-3.fw"
Hayes Wangc2218922011-09-06 16:55:18 +080044#define FIRMWARE_8168F_1 "rtl_nic/rtl8168f-1.fw"
45#define FIRMWARE_8168F_2 "rtl_nic/rtl8168f-2.fw"
Hayes Wang5a5e4442011-02-22 17:26:21 +080046#define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
françois romieubca03d52011-01-03 15:07:31 +000047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#ifdef RTL8169_DEBUG
49#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020050 if (!(expr)) { \
51 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070052 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020053 }
Joe Perches06fa7352007-10-18 21:15:00 +020054#define dprintk(fmt, args...) \
55 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#else
57#define assert(expr) do {} while (0)
58#define dprintk(fmt, args...) do {} while (0)
59#endif /* RTL8169_DEBUG */
60
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020061#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070062 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020063
Julien Ducourthial477206a2012-05-09 00:00:06 +020064#define TX_SLOTS_AVAIL(tp) \
65 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
66
67/* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
68#define TX_FRAGS_READY_FOR(tp,nr_frags) \
69 (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
72 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050073static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Francois Romieu9c14cea2008-07-05 00:21:15 +020075#define MAX_READ_REQUEST_SHIFT 12
Michal Schmidt56cb8f72012-09-09 13:55:26 +000076#define TX_DMA_BURST 7 /* Maximum PCI burst, '7' is unlimited */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
78#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
79
80#define R8169_REGS_SIZE 256
81#define R8169_NAPI_WEIGHT 64
82#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
83#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
84#define RX_BUF_SIZE 1536 /* Rx Buffer size */
85#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
86#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
87
88#define RTL8169_TX_TIMEOUT (6*HZ)
89#define RTL8169_PHY_TIMEOUT (10*HZ)
90
françois romieuea8dbdd2009-03-15 01:10:50 +000091#define RTL_EEPROM_SIG cpu_to_le32(0x8129)
92#define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
Francois Romieue1564ec2008-10-16 22:46:13 +020093#define RTL_EEPROM_SIG_ADDR 0x0000
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095/* write/read MMIO register */
96#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
97#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
98#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
99#define RTL_R8(reg) readb (ioaddr + (reg))
100#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +0000101#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103enum mac_version {
Francois Romieu85bffe62011-04-27 08:22:39 +0200104 RTL_GIGA_MAC_VER_01 = 0,
105 RTL_GIGA_MAC_VER_02,
106 RTL_GIGA_MAC_VER_03,
107 RTL_GIGA_MAC_VER_04,
108 RTL_GIGA_MAC_VER_05,
109 RTL_GIGA_MAC_VER_06,
110 RTL_GIGA_MAC_VER_07,
111 RTL_GIGA_MAC_VER_08,
112 RTL_GIGA_MAC_VER_09,
113 RTL_GIGA_MAC_VER_10,
114 RTL_GIGA_MAC_VER_11,
115 RTL_GIGA_MAC_VER_12,
116 RTL_GIGA_MAC_VER_13,
117 RTL_GIGA_MAC_VER_14,
118 RTL_GIGA_MAC_VER_15,
119 RTL_GIGA_MAC_VER_16,
120 RTL_GIGA_MAC_VER_17,
121 RTL_GIGA_MAC_VER_18,
122 RTL_GIGA_MAC_VER_19,
123 RTL_GIGA_MAC_VER_20,
124 RTL_GIGA_MAC_VER_21,
125 RTL_GIGA_MAC_VER_22,
126 RTL_GIGA_MAC_VER_23,
127 RTL_GIGA_MAC_VER_24,
128 RTL_GIGA_MAC_VER_25,
129 RTL_GIGA_MAC_VER_26,
130 RTL_GIGA_MAC_VER_27,
131 RTL_GIGA_MAC_VER_28,
132 RTL_GIGA_MAC_VER_29,
133 RTL_GIGA_MAC_VER_30,
134 RTL_GIGA_MAC_VER_31,
135 RTL_GIGA_MAC_VER_32,
136 RTL_GIGA_MAC_VER_33,
Hayes Wang70090422011-07-06 15:58:06 +0800137 RTL_GIGA_MAC_VER_34,
Hayes Wangc2218922011-09-06 16:55:18 +0800138 RTL_GIGA_MAC_VER_35,
139 RTL_GIGA_MAC_VER_36,
Francois Romieu85bffe62011-04-27 08:22:39 +0200140 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
Francois Romieu2b7b4312011-04-18 22:53:24 -0700143enum rtl_tx_desc_version {
144 RTL_TD_0 = 0,
145 RTL_TD_1 = 1,
146};
147
Francois Romieud58d46b2011-05-03 16:38:29 +0200148#define JUMBO_1K ETH_DATA_LEN
149#define JUMBO_4K (4*1024 - ETH_HLEN - 2)
150#define JUMBO_6K (6*1024 - ETH_HLEN - 2)
151#define JUMBO_7K (7*1024 - ETH_HLEN - 2)
152#define JUMBO_9K (9*1024 - ETH_HLEN - 2)
153
154#define _R(NAME,TD,FW,SZ,B) { \
155 .name = NAME, \
156 .txd_version = TD, \
157 .fw_name = FW, \
158 .jumbo_max = SZ, \
159 .jumbo_tx_csum = B \
160}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800162static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700164 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200165 const char *fw_name;
Francois Romieud58d46b2011-05-03 16:38:29 +0200166 u16 jumbo_max;
167 bool jumbo_tx_csum;
Francois Romieu85bffe62011-04-27 08:22:39 +0200168} rtl_chip_infos[] = {
169 /* PCI devices. */
170 [RTL_GIGA_MAC_VER_01] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200171 _R("RTL8169", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200172 [RTL_GIGA_MAC_VER_02] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200173 _R("RTL8169s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200174 [RTL_GIGA_MAC_VER_03] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200175 _R("RTL8110s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200176 [RTL_GIGA_MAC_VER_04] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200177 _R("RTL8169sb/8110sb", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200178 [RTL_GIGA_MAC_VER_05] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200179 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200180 [RTL_GIGA_MAC_VER_06] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200181 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200182 /* PCI-E devices. */
183 [RTL_GIGA_MAC_VER_07] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200184 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200185 [RTL_GIGA_MAC_VER_08] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200186 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200187 [RTL_GIGA_MAC_VER_09] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200188 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200189 [RTL_GIGA_MAC_VER_10] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200190 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200191 [RTL_GIGA_MAC_VER_11] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200192 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200193 [RTL_GIGA_MAC_VER_12] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200194 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200195 [RTL_GIGA_MAC_VER_13] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200196 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200197 [RTL_GIGA_MAC_VER_14] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200198 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200199 [RTL_GIGA_MAC_VER_15] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200200 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200201 [RTL_GIGA_MAC_VER_16] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200202 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200203 [RTL_GIGA_MAC_VER_17] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200204 _R("RTL8168b/8111b", RTL_TD_1, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200205 [RTL_GIGA_MAC_VER_18] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200206 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200207 [RTL_GIGA_MAC_VER_19] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200208 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200209 [RTL_GIGA_MAC_VER_20] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200210 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200211 [RTL_GIGA_MAC_VER_21] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200212 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200213 [RTL_GIGA_MAC_VER_22] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200214 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200215 [RTL_GIGA_MAC_VER_23] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200216 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200217 [RTL_GIGA_MAC_VER_24] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200218 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200219 [RTL_GIGA_MAC_VER_25] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200220 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1,
221 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200222 [RTL_GIGA_MAC_VER_26] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200223 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2,
224 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200225 [RTL_GIGA_MAC_VER_27] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200226 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200227 [RTL_GIGA_MAC_VER_28] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200228 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200229 [RTL_GIGA_MAC_VER_29] =
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_30] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200233 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
234 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200235 [RTL_GIGA_MAC_VER_31] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200236 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200237 [RTL_GIGA_MAC_VER_32] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200238 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1,
239 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200240 [RTL_GIGA_MAC_VER_33] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200241 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2,
242 JUMBO_9K, false),
Hayes Wang70090422011-07-06 15:58:06 +0800243 [RTL_GIGA_MAC_VER_34] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200244 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3,
245 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800246 [RTL_GIGA_MAC_VER_35] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200247 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_1,
248 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800249 [RTL_GIGA_MAC_VER_36] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200250 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_2,
251 JUMBO_9K, false),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252};
253#undef _R
254
Francois Romieubcf0bf92006-07-26 23:14:13 +0200255enum cfg_version {
256 RTL_CFG_0 = 0x00,
257 RTL_CFG_1,
258 RTL_CFG_2
259};
260
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000261static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200262 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200263 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200264 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100265 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200266 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
267 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000268 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200269 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200270 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
271 { PCI_VENDOR_ID_LINKSYS, 0x1032,
272 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100273 { 0x0001, 0x8168,
274 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 {0,},
276};
277
278MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
279
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000280static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700281static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200282static struct {
283 u32 msg_enable;
284} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Francois Romieu07d3f512007-02-21 22:40:46 +0100286enum rtl_registers {
287 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100288 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100289 MAR0 = 8, /* Multicast filter. */
290 CounterAddrLow = 0x10,
291 CounterAddrHigh = 0x14,
292 TxDescStartAddrLow = 0x20,
293 TxDescStartAddrHigh = 0x24,
294 TxHDescStartAddrLow = 0x28,
295 TxHDescStartAddrHigh = 0x2c,
296 FLASH = 0x30,
297 ERSR = 0x36,
298 ChipCmd = 0x37,
299 TxPoll = 0x38,
300 IntrMask = 0x3c,
301 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700302
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800303 TxConfig = 0x40,
304#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
305#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
306
307 RxConfig = 0x44,
308#define RX128_INT_EN (1 << 15) /* 8111c and later */
309#define RX_MULTI_EN (1 << 14) /* 8111c only */
310#define RXCFG_FIFO_SHIFT 13
311 /* No threshold before first PCI xfer */
312#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
313#define RXCFG_DMA_SHIFT 8
314 /* Unlimited maximum PCI burst. */
315#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700316
Francois Romieu07d3f512007-02-21 22:40:46 +0100317 RxMissed = 0x4c,
318 Cfg9346 = 0x50,
319 Config0 = 0x51,
320 Config1 = 0x52,
321 Config2 = 0x53,
Francois Romieu160f00f2012-10-06 11:19:53 +0200322#define PME_SIGNAL (1 << 5) /* 8168c and later */
323
Francois Romieu07d3f512007-02-21 22:40:46 +0100324 Config3 = 0x54,
325 Config4 = 0x55,
326 Config5 = 0x56,
327 MultiIntr = 0x5c,
328 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100329 PHYstatus = 0x6c,
330 RxMaxSize = 0xda,
331 CPlusCmd = 0xe0,
332 IntrMitigate = 0xe2,
333 RxDescAddrLow = 0xe4,
334 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000335 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
336
337#define NoEarlyTx 0x3f /* Max value : no early transmit. */
338
339 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
340
341#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800342#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000343
Francois Romieu07d3f512007-02-21 22:40:46 +0100344 FuncEvent = 0xf0,
345 FuncEventMask = 0xf4,
346 FuncPresetState = 0xf8,
347 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348};
349
Francois Romieuf162a5d2008-06-01 22:37:49 +0200350enum rtl8110_registers {
351 TBICSR = 0x64,
352 TBI_ANAR = 0x68,
353 TBI_LPAR = 0x6a,
354};
355
356enum rtl8168_8101_registers {
357 CSIDR = 0x64,
358 CSIAR = 0x68,
359#define CSIAR_FLAG 0x80000000
360#define CSIAR_WRITE_CMD 0x80000000
361#define CSIAR_BYTE_ENABLE 0x0f
362#define CSIAR_BYTE_ENABLE_SHIFT 12
363#define CSIAR_ADDR_MASK 0x0fff
françois romieu065c27c2011-01-03 15:08:12 +0000364 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200365 EPHYAR = 0x80,
366#define EPHYAR_FLAG 0x80000000
367#define EPHYAR_WRITE_CMD 0x80000000
368#define EPHYAR_REG_MASK 0x1f
369#define EPHYAR_REG_SHIFT 16
370#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800371 DLLPR = 0xd0,
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800372#define PFM_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200373 DBG_REG = 0xd1,
374#define FIX_NAK_1 (1 << 4)
375#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800376 TWSI = 0xd2,
377 MCU = 0xd3,
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800378#define NOW_IS_OOB (1 << 7)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800379#define EN_NDP (1 << 3)
380#define EN_OOB_RESET (1 << 2)
françois romieudaf9df62009-10-07 12:44:20 +0000381 EFUSEAR = 0xdc,
382#define EFUSEAR_FLAG 0x80000000
383#define EFUSEAR_WRITE_CMD 0x80000000
384#define EFUSEAR_READ_CMD 0x00000000
385#define EFUSEAR_REG_MASK 0x03ff
386#define EFUSEAR_REG_SHIFT 8
387#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200388};
389
françois romieuc0e45c12011-01-03 15:08:04 +0000390enum rtl8168_registers {
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800391 LED_FREQ = 0x1a,
392 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000393 ERIDR = 0x70,
394 ERIAR = 0x74,
395#define ERIAR_FLAG 0x80000000
396#define ERIAR_WRITE_CMD 0x80000000
397#define ERIAR_READ_CMD 0x00000000
398#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000399#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800400#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
401#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
402#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
403#define ERIAR_MASK_SHIFT 12
404#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
405#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
406#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000407 EPHY_RXER_NUM = 0x7c,
408 OCPDR = 0xb0, /* OCP GPHY access */
409#define OCPDR_WRITE_CMD 0x80000000
410#define OCPDR_READ_CMD 0x00000000
411#define OCPDR_REG_MASK 0x7f
412#define OCPDR_GPHY_REG_SHIFT 16
413#define OCPDR_DATA_MASK 0xffff
414 OCPAR = 0xb4,
415#define OCPAR_FLAG 0x80000000
416#define OCPAR_GPHY_WRITE_CMD 0x8000f060
417#define OCPAR_GPHY_READ_CMD 0x0000f060
hayeswang01dc7fe2011-03-21 01:50:28 +0000418 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
419 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200420#define TXPLA_RST (1 << 29)
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800421#define PWM_EN (1 << 22)
françois romieuc0e45c12011-01-03 15:08:04 +0000422};
423
Francois Romieu07d3f512007-02-21 22:40:46 +0100424enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100426 SYSErr = 0x8000,
427 PCSTimeout = 0x4000,
428 SWInt = 0x0100,
429 TxDescUnavail = 0x0080,
430 RxFIFOOver = 0x0040,
431 LinkChg = 0x0020,
432 RxOverflow = 0x0010,
433 TxErr = 0x0008,
434 TxOK = 0x0004,
435 RxErr = 0x0002,
436 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400439 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200440 RxFOVF = (1 << 23),
441 RxRWT = (1 << 22),
442 RxRES = (1 << 21),
443 RxRUNT = (1 << 20),
444 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /* ChipCmdBits */
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800447 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100448 CmdReset = 0x10,
449 CmdRxEnb = 0x08,
450 CmdTxEnb = 0x04,
451 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Francois Romieu275391a2007-02-23 23:50:28 +0100453 /* TXPoll register p.5 */
454 HPQ = 0x80, /* Poll cmd on the high prio queue */
455 NPQ = 0x40, /* Poll cmd on the low prio queue */
456 FSWInt = 0x01, /* Forced software interrupt */
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100459 Cfg9346_Lock = 0x00,
460 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100463 AcceptErr = 0x20,
464 AcceptRunt = 0x10,
465 AcceptBroadcast = 0x08,
466 AcceptMulticast = 0x04,
467 AcceptMyPhys = 0x02,
468 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200469#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /* TxConfigBits */
472 TxInterFrameGapShift = 24,
473 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
474
Francois Romieu5d06a992006-02-23 00:47:58 +0100475 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200476 LEDS1 = (1 << 7),
477 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200478 Speed_down = (1 << 4),
479 MEMMAP = (1 << 3),
480 IOMAP = (1 << 2),
481 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100482 PMEnable = (1 << 0), /* Power Management Enable */
483
Francois Romieu6dccd162007-02-13 23:38:05 +0100484 /* Config2 register p. 25 */
françois romieu2ca6cf02011-12-15 08:37:43 +0000485 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100486 PCI_Clock_66MHz = 0x01,
487 PCI_Clock_33MHz = 0x00,
488
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100489 /* Config3 register p.25 */
490 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
491 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200492 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200493 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100494
Francois Romieud58d46b2011-05-03 16:38:29 +0200495 /* Config4 register */
496 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
497
Francois Romieu5d06a992006-02-23 00:47:58 +0100498 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100499 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
500 MWF = (1 << 5), /* Accept Multicast wakeup frame */
501 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200502 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100503 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100504 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /* TBICSR p.28 */
507 TBIReset = 0x80000000,
508 TBILoopback = 0x40000000,
509 TBINwEnable = 0x20000000,
510 TBINwRestart = 0x10000000,
511 TBILinkOk = 0x02000000,
512 TBINwComplete = 0x01000000,
513
514 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200515 EnableBist = (1 << 15), // 8168 8101
516 Mac_dbgo_oe = (1 << 14), // 8168 8101
517 Normal_mode = (1 << 13), // unused
518 Force_half_dup = (1 << 12), // 8168 8101
519 Force_rxflow_en = (1 << 11), // 8168 8101
520 Force_txflow_en = (1 << 10), // 8168 8101
521 Cxpl_dbg_sel = (1 << 9), // 8168 8101
522 ASF = (1 << 8), // 8168 8101
523 PktCntrDisable = (1 << 7), // 8168 8101
524 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 RxVlan = (1 << 6),
526 RxChkSum = (1 << 5),
527 PCIDAC = (1 << 4),
528 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100529 INTT_0 = 0x0000, // 8168
530 INTT_1 = 0x0001, // 8168
531 INTT_2 = 0x0002, // 8168
532 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100535 TBI_Enable = 0x80,
536 TxFlowCtrl = 0x40,
537 RxFlowCtrl = 0x20,
538 _1000bpsF = 0x10,
539 _100bps = 0x08,
540 _10bps = 0x04,
541 LinkStatus = 0x02,
542 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100545 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200546
547 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100548 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549};
550
Francois Romieu2b7b4312011-04-18 22:53:24 -0700551enum rtl_desc_bit {
552 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
554 RingEnd = (1 << 30), /* End of descriptor ring */
555 FirstFrag = (1 << 29), /* First segment of a packet */
556 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700557};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Francois Romieu2b7b4312011-04-18 22:53:24 -0700559/* Generic case. */
560enum rtl_tx_desc_bit {
561 /* First doubleword. */
562 TD_LSO = (1 << 27), /* Large Send Offload */
563#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Francois Romieu2b7b4312011-04-18 22:53:24 -0700565 /* Second doubleword. */
566 TxVlanTag = (1 << 17), /* Add VLAN tag */
567};
568
569/* 8169, 8168b and 810x except 8102e. */
570enum rtl_tx_desc_bit_0 {
571 /* First doubleword. */
572#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
573 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
574 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
575 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
576};
577
578/* 8102e, 8168c and beyond. */
579enum rtl_tx_desc_bit_1 {
580 /* Second doubleword. */
581#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
582 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
583 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
584 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
585};
586
587static const struct rtl_tx_desc_info {
588 struct {
589 u32 udp;
590 u32 tcp;
591 } checksum;
592 u16 mss_shift;
593 u16 opts_offset;
594} tx_desc_info [] = {
595 [RTL_TD_0] = {
596 .checksum = {
597 .udp = TD0_IP_CS | TD0_UDP_CS,
598 .tcp = TD0_IP_CS | TD0_TCP_CS
599 },
600 .mss_shift = TD0_MSS_SHIFT,
601 .opts_offset = 0
602 },
603 [RTL_TD_1] = {
604 .checksum = {
605 .udp = TD1_IP_CS | TD1_UDP_CS,
606 .tcp = TD1_IP_CS | TD1_TCP_CS
607 },
608 .mss_shift = TD1_MSS_SHIFT,
609 .opts_offset = 1
610 }
611};
612
613enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /* Rx private */
615 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
616 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
617
618#define RxProtoUDP (PID1)
619#define RxProtoTCP (PID0)
620#define RxProtoIP (PID1 | PID0)
621#define RxProtoMask RxProtoIP
622
623 IPFail = (1 << 16), /* IP checksum failed */
624 UDPFail = (1 << 15), /* UDP/IP checksum failed */
625 TCPFail = (1 << 14), /* TCP/IP checksum failed */
626 RxVlanTag = (1 << 16), /* VLAN tag available */
627};
628
629#define RsvdMask 0x3fffc000
630
631struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200632 __le32 opts1;
633 __le32 opts2;
634 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635};
636
637struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200638 __le32 opts1;
639 __le32 opts2;
640 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641};
642
643struct ring_info {
644 struct sk_buff *skb;
645 u32 len;
646 u8 __pad[sizeof(void *) - sizeof(u32)];
647};
648
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200649enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200650 RTL_FEATURE_WOL = (1 << 0),
651 RTL_FEATURE_MSI = (1 << 1),
652 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200653};
654
Ivan Vecera355423d2009-02-06 21:49:57 -0800655struct rtl8169_counters {
656 __le64 tx_packets;
657 __le64 rx_packets;
658 __le64 tx_errors;
659 __le32 rx_errors;
660 __le16 rx_missed;
661 __le16 align_errors;
662 __le32 tx_one_collision;
663 __le32 tx_multi_collision;
664 __le64 rx_unicast;
665 __le64 rx_broadcast;
666 __le32 rx_multicast;
667 __le16 tx_aborted;
668 __le16 tx_underun;
669};
670
Francois Romieuda78dbf2012-01-26 14:18:23 +0100671enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100672 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100673 RTL_FLAG_TASK_SLOW_PENDING,
674 RTL_FLAG_TASK_RESET_PENDING,
675 RTL_FLAG_TASK_PHY_PENDING,
676 RTL_FLAG_MAX
677};
678
Junchang Wang8027aa22012-03-04 23:30:32 +0100679struct rtl8169_stats {
680 u64 packets;
681 u64 bytes;
682 struct u64_stats_sync syncp;
683};
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685struct rtl8169_private {
686 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200687 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000688 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700689 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200690 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700691 u16 txd_version;
692 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
694 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
695 u32 dirty_rx;
696 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100697 struct rtl8169_stats rx_stats;
698 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
700 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
701 dma_addr_t TxPhyAddr;
702 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000703 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct timer_list timer;
706 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100707
708 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000709
710 struct mdio_ops {
711 void (*write)(void __iomem *, int, int);
712 int (*read)(void __iomem *, int);
713 } mdio_ops;
714
françois romieu065c27c2011-01-03 15:08:12 +0000715 struct pll_power_ops {
716 void (*down)(struct rtl8169_private *);
717 void (*up)(struct rtl8169_private *);
718 } pll_power_ops;
719
Francois Romieud58d46b2011-05-03 16:38:29 +0200720 struct jumbo_ops {
721 void (*enable)(struct rtl8169_private *);
722 void (*disable)(struct rtl8169_private *);
723 } jumbo_ops;
724
Oliver Neukum54405cd2011-01-06 21:55:13 +0100725 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200726 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000727 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100728 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000729 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800731 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100732
733 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100734 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
735 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100736 struct work_struct work;
737 } wk;
738
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200739 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200740
741 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800742 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000743 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400744 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000745
Francois Romieub6ffd972011-06-17 17:00:05 +0200746 struct rtl_fw {
747 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200748
749#define RTL_VER_SIZE 32
750
751 char version[RTL_VER_SIZE];
752
753 struct rtl_fw_phy_action {
754 __le32 *code;
755 size_t size;
756 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200757 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300758#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759};
760
Ralf Baechle979b6c12005-06-13 14:30:40 -0700761MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700764MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200765module_param_named(debug, debug.msg_enable, int, 0);
766MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767MODULE_LICENSE("GPL");
768MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000769MODULE_FIRMWARE(FIRMWARE_8168D_1);
770MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000771MODULE_FIRMWARE(FIRMWARE_8168E_1);
772MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400773MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800774MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800775MODULE_FIRMWARE(FIRMWARE_8168F_1);
776MODULE_FIRMWARE(FIRMWARE_8168F_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Francois Romieuda78dbf2012-01-26 14:18:23 +0100778static void rtl_lock_work(struct rtl8169_private *tp)
779{
780 mutex_lock(&tp->wk.mutex);
781}
782
783static void rtl_unlock_work(struct rtl8169_private *tp)
784{
785 mutex_unlock(&tp->wk.mutex);
786}
787
Francois Romieud58d46b2011-05-03 16:38:29 +0200788static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
789{
790 int cap = pci_pcie_cap(pdev);
791
792 if (cap) {
793 u16 ctl;
794
795 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
796 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
797 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
798 }
799}
800
françois romieub646d902011-01-03 15:08:21 +0000801static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
802{
803 void __iomem *ioaddr = tp->mmio_addr;
804 int i;
805
806 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
807 for (i = 0; i < 20; i++) {
808 udelay(100);
809 if (RTL_R32(OCPAR) & OCPAR_FLAG)
810 break;
811 }
812 return RTL_R32(OCPDR);
813}
814
815static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
816{
817 void __iomem *ioaddr = tp->mmio_addr;
818 int i;
819
820 RTL_W32(OCPDR, data);
821 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
822 for (i = 0; i < 20; i++) {
823 udelay(100);
824 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
825 break;
826 }
827}
828
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800829static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000830{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800831 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000832 int i;
833
834 RTL_W8(ERIDR, cmd);
835 RTL_W32(ERIAR, 0x800010e8);
836 msleep(2);
837 for (i = 0; i < 5; i++) {
838 udelay(100);
Francois Romieu1e4e82b2011-06-24 19:52:13 +0200839 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
françois romieub646d902011-01-03 15:08:21 +0000840 break;
841 }
842
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800843 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000844}
845
846#define OOB_CMD_RESET 0x00
847#define OOB_CMD_DRIVER_START 0x05
848#define OOB_CMD_DRIVER_STOP 0x06
849
Francois Romieucecb5fd2011-04-01 10:21:07 +0200850static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
851{
852 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
853}
854
françois romieub646d902011-01-03 15:08:21 +0000855static void rtl8168_driver_start(struct rtl8169_private *tp)
856{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200857 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000858 int i;
859
860 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
861
Francois Romieucecb5fd2011-04-01 10:21:07 +0200862 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000863
françois romieub646d902011-01-03 15:08:21 +0000864 for (i = 0; i < 10; i++) {
865 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000866 if (ocp_read(tp, 0x0f, reg) & 0x00000800)
françois romieub646d902011-01-03 15:08:21 +0000867 break;
868 }
869}
870
871static void rtl8168_driver_stop(struct rtl8169_private *tp)
872{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200873 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000874 int i;
875
876 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
877
Francois Romieucecb5fd2011-04-01 10:21:07 +0200878 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000879
françois romieub646d902011-01-03 15:08:21 +0000880 for (i = 0; i < 10; i++) {
881 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000882 if ((ocp_read(tp, 0x0f, reg) & 0x00000800) == 0)
françois romieub646d902011-01-03 15:08:21 +0000883 break;
884 }
885}
886
hayeswang4804b3b2011-03-21 01:50:29 +0000887static int r8168dp_check_dash(struct rtl8169_private *tp)
888{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200889 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000890
Francois Romieucecb5fd2011-04-01 10:21:07 +0200891 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +0000892}
françois romieub646d902011-01-03 15:08:21 +0000893
françois romieu4da19632011-01-03 15:07:55 +0000894static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
896 int i;
897
Francois Romieua6baf3a2007-11-08 23:23:21 +0100898 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Francois Romieu23714082006-01-29 00:49:09 +0100900 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100901 /*
902 * Check if the RTL8169 has completed writing to the specified
903 * MII register.
904 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200905 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 break;
Francois Romieu23714082006-01-29 00:49:09 +0100907 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700909 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700910 * According to hardware specs a 20us delay is required after write
911 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700912 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700913 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
françois romieu4da19632011-01-03 15:07:55 +0000916static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
918 int i, value = -1;
919
Francois Romieua6baf3a2007-11-08 23:23:21 +0100920 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Francois Romieu23714082006-01-29 00:49:09 +0100922 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100923 /*
924 * Check if the RTL8169 has completed retrieving data from
925 * the specified MII register.
926 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100928 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 break;
930 }
Francois Romieu23714082006-01-29 00:49:09 +0100931 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700933 /*
934 * According to hardware specs a 20us delay is required after read
935 * complete indication, but before sending next command.
936 */
937 udelay(20);
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return value;
940}
941
françois romieuc0e45c12011-01-03 15:08:04 +0000942static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
943{
944 int i;
945
946 RTL_W32(OCPDR, data |
947 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
948 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
949 RTL_W32(EPHY_RXER_NUM, 0);
950
951 for (i = 0; i < 100; i++) {
952 mdelay(1);
953 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
954 break;
955 }
956}
957
958static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
959{
960 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
961 (value & OCPDR_DATA_MASK));
962}
963
964static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
965{
966 int i;
967
968 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
969
970 mdelay(1);
971 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
972 RTL_W32(EPHY_RXER_NUM, 0);
973
974 for (i = 0; i < 100; i++) {
975 mdelay(1);
976 if (RTL_R32(OCPAR) & OCPAR_FLAG)
977 break;
978 }
979
980 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
981}
982
françois romieue6de30d2011-01-03 15:08:37 +0000983#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
984
985static void r8168dp_2_mdio_start(void __iomem *ioaddr)
986{
987 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
988}
989
990static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
991{
992 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
993}
994
995static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
996{
997 r8168dp_2_mdio_start(ioaddr);
998
999 r8169_mdio_write(ioaddr, reg_addr, value);
1000
1001 r8168dp_2_mdio_stop(ioaddr);
1002}
1003
1004static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
1005{
1006 int value;
1007
1008 r8168dp_2_mdio_start(ioaddr);
1009
1010 value = r8169_mdio_read(ioaddr, reg_addr);
1011
1012 r8168dp_2_mdio_stop(ioaddr);
1013
1014 return value;
1015}
1016
françois romieu4da19632011-01-03 15:07:55 +00001017static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001018{
françois romieuc0e45c12011-01-03 15:08:04 +00001019 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001020}
1021
françois romieu4da19632011-01-03 15:07:55 +00001022static int rtl_readphy(struct rtl8169_private *tp, int location)
1023{
françois romieuc0e45c12011-01-03 15:08:04 +00001024 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +00001025}
1026
1027static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1028{
1029 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1030}
1031
1032static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001033{
1034 int val;
1035
françois romieu4da19632011-01-03 15:07:55 +00001036 val = rtl_readphy(tp, reg_addr);
1037 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +00001038}
1039
Francois Romieuccdffb92008-07-26 14:26:06 +02001040static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1041 int val)
1042{
1043 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001044
françois romieu4da19632011-01-03 15:07:55 +00001045 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001046}
1047
1048static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1049{
1050 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001051
françois romieu4da19632011-01-03 15:07:55 +00001052 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001053}
1054
Francois Romieudacf8152008-08-02 20:44:13 +02001055static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
1056{
1057 unsigned int i;
1058
1059 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1060 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1061
1062 for (i = 0; i < 100; i++) {
1063 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
1064 break;
1065 udelay(10);
1066 }
1067}
1068
1069static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
1070{
1071 u16 value = 0xffff;
1072 unsigned int i;
1073
1074 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1075
1076 for (i = 0; i < 100; i++) {
1077 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
1078 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
1079 break;
1080 }
1081 udelay(10);
1082 }
1083
1084 return value;
1085}
1086
1087static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
1088{
1089 unsigned int i;
1090
1091 RTL_W32(CSIDR, value);
1092 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
1093 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
1094
1095 for (i = 0; i < 100; i++) {
1096 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
1097 break;
1098 udelay(10);
1099 }
1100}
1101
1102static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
1103{
1104 u32 value = ~0x00;
1105 unsigned int i;
1106
1107 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
1108 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
1109
1110 for (i = 0; i < 100; i++) {
1111 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
1112 value = RTL_R32(CSIDR);
1113 break;
1114 }
1115 udelay(10);
1116 }
1117
1118 return value;
1119}
1120
Hayes Wang133ac402011-07-06 15:58:05 +08001121static
1122void rtl_eri_write(void __iomem *ioaddr, int addr, u32 mask, u32 val, int type)
1123{
1124 unsigned int i;
1125
1126 BUG_ON((addr & 3) || (mask == 0));
1127 RTL_W32(ERIDR, val);
1128 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1129
1130 for (i = 0; i < 100; i++) {
1131 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
1132 break;
1133 udelay(100);
1134 }
1135}
1136
1137static u32 rtl_eri_read(void __iomem *ioaddr, int addr, int type)
1138{
1139 u32 value = ~0x00;
1140 unsigned int i;
1141
1142 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1143
1144 for (i = 0; i < 100; i++) {
1145 if (RTL_R32(ERIAR) & ERIAR_FLAG) {
1146 value = RTL_R32(ERIDR);
1147 break;
1148 }
1149 udelay(100);
1150 }
1151
1152 return value;
1153}
1154
1155static void
1156rtl_w1w0_eri(void __iomem *ioaddr, int addr, u32 mask, u32 p, u32 m, int type)
1157{
1158 u32 val;
1159
1160 val = rtl_eri_read(ioaddr, addr, type);
1161 rtl_eri_write(ioaddr, addr, mask, (val & ~m) | p, type);
1162}
1163
françois romieuc28aa382011-08-02 03:53:43 +00001164struct exgmac_reg {
1165 u16 addr;
1166 u16 mask;
1167 u32 val;
1168};
1169
1170static void rtl_write_exgmac_batch(void __iomem *ioaddr,
1171 const struct exgmac_reg *r, int len)
1172{
1173 while (len-- > 0) {
1174 rtl_eri_write(ioaddr, r->addr, r->mask, r->val, ERIAR_EXGMAC);
1175 r++;
1176 }
1177}
1178
françois romieudaf9df62009-10-07 12:44:20 +00001179static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
1180{
1181 u8 value = 0xff;
1182 unsigned int i;
1183
1184 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1185
1186 for (i = 0; i < 300; i++) {
1187 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
1188 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
1189 break;
1190 }
1191 udelay(100);
1192 }
1193
1194 return value;
1195}
1196
Francois Romieu9085cdf2012-01-26 12:59:08 +01001197static u16 rtl_get_events(struct rtl8169_private *tp)
1198{
1199 void __iomem *ioaddr = tp->mmio_addr;
1200
1201 return RTL_R16(IntrStatus);
1202}
1203
1204static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1205{
1206 void __iomem *ioaddr = tp->mmio_addr;
1207
1208 RTL_W16(IntrStatus, bits);
1209 mmiowb();
1210}
1211
1212static void rtl_irq_disable(struct rtl8169_private *tp)
1213{
1214 void __iomem *ioaddr = tp->mmio_addr;
1215
1216 RTL_W16(IntrMask, 0);
1217 mmiowb();
1218}
1219
Francois Romieu3e990ff2012-01-26 12:50:01 +01001220static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1221{
1222 void __iomem *ioaddr = tp->mmio_addr;
1223
1224 RTL_W16(IntrMask, bits);
1225}
1226
Francois Romieuda78dbf2012-01-26 14:18:23 +01001227#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1228#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1229#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1230
1231static void rtl_irq_enable_all(struct rtl8169_private *tp)
1232{
1233 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1234}
1235
françois romieu811fd302011-12-04 20:30:45 +00001236static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
françois romieu811fd302011-12-04 20:30:45 +00001238 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Francois Romieu9085cdf2012-01-26 12:59:08 +01001240 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001241 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001242 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
françois romieu4da19632011-01-03 15:07:55 +00001245static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
françois romieu4da19632011-01-03 15:07:55 +00001247 void __iomem *ioaddr = tp->mmio_addr;
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return RTL_R32(TBICSR) & TBIReset;
1250}
1251
françois romieu4da19632011-01-03 15:07:55 +00001252static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
françois romieu4da19632011-01-03 15:07:55 +00001254 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
1257static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1258{
1259 return RTL_R32(TBICSR) & TBILinkOk;
1260}
1261
1262static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1263{
1264 return RTL_R8(PHYstatus) & LinkStatus;
1265}
1266
françois romieu4da19632011-01-03 15:07:55 +00001267static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
françois romieu4da19632011-01-03 15:07:55 +00001269 void __iomem *ioaddr = tp->mmio_addr;
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1272}
1273
françois romieu4da19632011-01-03 15:07:55 +00001274static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
1276 unsigned int val;
1277
françois romieu4da19632011-01-03 15:07:55 +00001278 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1279 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
Hayes Wang70090422011-07-06 15:58:06 +08001282static void rtl_link_chg_patch(struct rtl8169_private *tp)
1283{
1284 void __iomem *ioaddr = tp->mmio_addr;
1285 struct net_device *dev = tp->dev;
1286
1287 if (!netif_running(dev))
1288 return;
1289
1290 if (tp->mac_version == RTL_GIGA_MAC_VER_34) {
1291 if (RTL_R8(PHYstatus) & _1000bpsF) {
1292 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1293 0x00000011, ERIAR_EXGMAC);
1294 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1295 0x00000005, ERIAR_EXGMAC);
1296 } else if (RTL_R8(PHYstatus) & _100bps) {
1297 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1298 0x0000001f, ERIAR_EXGMAC);
1299 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1300 0x00000005, ERIAR_EXGMAC);
1301 } else {
1302 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1303 0x0000001f, ERIAR_EXGMAC);
1304 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1305 0x0000003f, ERIAR_EXGMAC);
1306 }
1307 /* Reset packet filter */
1308 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
1309 ERIAR_EXGMAC);
1310 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
1311 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001312 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1313 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1314 if (RTL_R8(PHYstatus) & _1000bpsF) {
1315 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1316 0x00000011, ERIAR_EXGMAC);
1317 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1318 0x00000005, ERIAR_EXGMAC);
1319 } else {
1320 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1321 0x0000001f, ERIAR_EXGMAC);
1322 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1323 0x0000003f, ERIAR_EXGMAC);
1324 }
Hayes Wang70090422011-07-06 15:58:06 +08001325 }
1326}
1327
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001328static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001329 struct rtl8169_private *tp,
1330 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001333 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001334 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001335 if (pm)
1336 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001338 if (net_ratelimit())
1339 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001340 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001342 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001343 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001344 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001348static void rtl8169_check_link_status(struct net_device *dev,
1349 struct rtl8169_private *tp,
1350 void __iomem *ioaddr)
1351{
1352 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1353}
1354
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001355#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1356
1357static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1358{
1359 void __iomem *ioaddr = tp->mmio_addr;
1360 u8 options;
1361 u32 wolopts = 0;
1362
1363 options = RTL_R8(Config1);
1364 if (!(options & PMEnable))
1365 return 0;
1366
1367 options = RTL_R8(Config3);
1368 if (options & LinkUp)
1369 wolopts |= WAKE_PHY;
1370 if (options & MagicPacket)
1371 wolopts |= WAKE_MAGIC;
1372
1373 options = RTL_R8(Config5);
1374 if (options & UWF)
1375 wolopts |= WAKE_UCAST;
1376 if (options & BWF)
1377 wolopts |= WAKE_BCAST;
1378 if (options & MWF)
1379 wolopts |= WAKE_MCAST;
1380
1381 return wolopts;
1382}
1383
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001384static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1385{
1386 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001387
Francois Romieuda78dbf2012-01-26 14:18:23 +01001388 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001389
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001390 wol->supported = WAKE_ANY;
1391 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001392
Francois Romieuda78dbf2012-01-26 14:18:23 +01001393 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001394}
1395
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001396static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001397{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001398 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001399 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001400 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001401 u32 opt;
1402 u16 reg;
1403 u8 mask;
1404 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001405 { WAKE_PHY, Config3, LinkUp },
1406 { WAKE_MAGIC, Config3, MagicPacket },
1407 { WAKE_UCAST, Config5, UWF },
1408 { WAKE_BCAST, Config5, BWF },
1409 { WAKE_MCAST, Config5, MWF },
1410 { WAKE_ANY, Config5, LanWake }
1411 };
Francois Romieu34ffca42012-10-06 11:19:52 +02001412 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001413
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001414 RTL_W8(Cfg9346, Cfg9346_Unlock);
1415
1416 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
Francois Romieu34ffca42012-10-06 11:19:52 +02001417 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001418 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001419 options |= cfg[i].mask;
1420 RTL_W8(cfg[i].reg, options);
1421 }
1422
Francois Romieu34ffca42012-10-06 11:19:52 +02001423 switch (tp->mac_version) {
1424 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1425 options = RTL_R8(Config1) & ~PMEnable;
1426 if (wolopts)
1427 options |= PMEnable;
1428 RTL_W8(Config1, options);
1429 break;
1430 default:
Francois Romieu160f00f2012-10-06 11:19:53 +02001431 options = RTL_R8(Config2) & ~PME_SIGNAL;
1432 if (wolopts)
1433 options |= PME_SIGNAL;
1434 RTL_W8(Config2, options);
Francois Romieu34ffca42012-10-06 11:19:52 +02001435 break;
1436 }
1437
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001438 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001439}
1440
1441static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1442{
1443 struct rtl8169_private *tp = netdev_priv(dev);
1444
Francois Romieuda78dbf2012-01-26 14:18:23 +01001445 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001446
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001447 if (wol->wolopts)
1448 tp->features |= RTL_FEATURE_WOL;
1449 else
1450 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001451 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001452
1453 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001454
françois romieuea809072010-11-08 13:23:58 +00001455 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1456
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001457 return 0;
1458}
1459
Francois Romieu31bd2042011-04-26 18:58:59 +02001460static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1461{
Francois Romieu85bffe62011-04-27 08:22:39 +02001462 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465static void rtl8169_get_drvinfo(struct net_device *dev,
1466 struct ethtool_drvinfo *info)
1467{
1468 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001469 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Rick Jones68aad782011-11-07 13:29:27 +00001471 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1472 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1473 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001474 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001475 if (!IS_ERR_OR_NULL(rtl_fw))
1476 strlcpy(info->fw_version, rtl_fw->version,
1477 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
1480static int rtl8169_get_regs_len(struct net_device *dev)
1481{
1482 return R8169_REGS_SIZE;
1483}
1484
1485static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001486 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
1488 struct rtl8169_private *tp = netdev_priv(dev);
1489 void __iomem *ioaddr = tp->mmio_addr;
1490 int ret = 0;
1491 u32 reg;
1492
1493 reg = RTL_R32(TBICSR);
1494 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1495 (duplex == DUPLEX_FULL)) {
1496 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1497 } else if (autoneg == AUTONEG_ENABLE)
1498 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1499 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001500 netif_warn(tp, link, dev,
1501 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 ret = -EOPNOTSUPP;
1503 }
1504
1505 return ret;
1506}
1507
1508static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001509 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
1511 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001512 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001513 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Hayes Wang716b50a2011-02-22 17:26:18 +08001515 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001518 int auto_nego;
1519
françois romieu4da19632011-01-03 15:07:55 +00001520 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001521 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1522 ADVERTISE_100HALF | ADVERTISE_100FULL);
1523
1524 if (adv & ADVERTISED_10baseT_Half)
1525 auto_nego |= ADVERTISE_10HALF;
1526 if (adv & ADVERTISED_10baseT_Full)
1527 auto_nego |= ADVERTISE_10FULL;
1528 if (adv & ADVERTISED_100baseT_Half)
1529 auto_nego |= ADVERTISE_100HALF;
1530 if (adv & ADVERTISED_100baseT_Full)
1531 auto_nego |= ADVERTISE_100FULL;
1532
françois romieu3577aa12009-05-19 10:46:48 +00001533 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1534
françois romieu4da19632011-01-03 15:07:55 +00001535 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001536 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1537
1538 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001539 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001540 if (adv & ADVERTISED_1000baseT_Half)
1541 giga_ctrl |= ADVERTISE_1000HALF;
1542 if (adv & ADVERTISED_1000baseT_Full)
1543 giga_ctrl |= ADVERTISE_1000FULL;
1544 } else if (adv & (ADVERTISED_1000baseT_Half |
1545 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001546 netif_info(tp, link, dev,
1547 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001548 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
françois romieu3577aa12009-05-19 10:46:48 +00001551 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001552
françois romieu4da19632011-01-03 15:07:55 +00001553 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1554 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001555 } else {
1556 giga_ctrl = 0;
1557
1558 if (speed == SPEED_10)
1559 bmcr = 0;
1560 else if (speed == SPEED_100)
1561 bmcr = BMCR_SPEED100;
1562 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001563 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001564
1565 if (duplex == DUPLEX_FULL)
1566 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001567 }
1568
françois romieu4da19632011-01-03 15:07:55 +00001569 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001570
Francois Romieucecb5fd2011-04-01 10:21:07 +02001571 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1572 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001573 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001574 rtl_writephy(tp, 0x17, 0x2138);
1575 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001576 } else {
françois romieu4da19632011-01-03 15:07:55 +00001577 rtl_writephy(tp, 0x17, 0x2108);
1578 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001579 }
1580 }
1581
Oliver Neukum54405cd2011-01-06 21:55:13 +01001582 rc = 0;
1583out:
1584 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
1587static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001588 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
1590 struct rtl8169_private *tp = netdev_priv(dev);
1591 int ret;
1592
Oliver Neukum54405cd2011-01-06 21:55:13 +01001593 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001594 if (ret < 0)
1595 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Francois Romieu4876cc12011-03-11 21:07:11 +01001597 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1598 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001600 }
1601out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return ret;
1603}
1604
1605static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1606{
1607 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 int ret;
1609
Francois Romieu4876cc12011-03-11 21:07:11 +01001610 del_timer_sync(&tp->timer);
1611
Francois Romieuda78dbf2012-01-26 14:18:23 +01001612 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001613 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001614 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001615 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return ret;
1618}
1619
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001620static netdev_features_t rtl8169_fix_features(struct net_device *dev,
1621 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
Francois Romieud58d46b2011-05-03 16:38:29 +02001623 struct rtl8169_private *tp = netdev_priv(dev);
1624
Francois Romieu2b7b4312011-04-18 22:53:24 -07001625 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001626 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Francois Romieud58d46b2011-05-03 16:38:29 +02001628 if (dev->mtu > JUMBO_1K &&
1629 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
1630 features &= ~NETIF_F_IP_CSUM;
1631
Michał Mirosław350fb322011-04-08 06:35:56 +00001632 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
Francois Romieuda78dbf2012-01-26 14:18:23 +01001635static void __rtl8169_set_features(struct net_device *dev,
1636 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
1638 struct rtl8169_private *tp = netdev_priv(dev);
Ben Greear6bbe0212012-02-10 15:04:33 +00001639 netdev_features_t changed = features ^ dev->features;
Francois Romieuda78dbf2012-01-26 14:18:23 +01001640 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Ben Greear6bbe0212012-02-10 15:04:33 +00001642 if (!(changed & (NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)))
1643 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Ben Greear6bbe0212012-02-10 15:04:33 +00001645 if (changed & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)) {
1646 if (features & NETIF_F_RXCSUM)
1647 tp->cp_cmd |= RxChkSum;
1648 else
1649 tp->cp_cmd &= ~RxChkSum;
Michał Mirosław350fb322011-04-08 06:35:56 +00001650
Ben Greear6bbe0212012-02-10 15:04:33 +00001651 if (dev->features & NETIF_F_HW_VLAN_RX)
1652 tp->cp_cmd |= RxVlan;
1653 else
1654 tp->cp_cmd &= ~RxVlan;
1655
1656 RTL_W16(CPlusCmd, tp->cp_cmd);
1657 RTL_R16(CPlusCmd);
1658 }
1659 if (changed & NETIF_F_RXALL) {
1660 int tmp = (RTL_R32(RxConfig) & ~(AcceptErr | AcceptRunt));
1661 if (features & NETIF_F_RXALL)
1662 tmp |= (AcceptErr | AcceptRunt);
1663 RTL_W32(RxConfig, tmp);
1664 }
Francois Romieuda78dbf2012-01-26 14:18:23 +01001665}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Francois Romieuda78dbf2012-01-26 14:18:23 +01001667static int rtl8169_set_features(struct net_device *dev,
1668 netdev_features_t features)
1669{
1670 struct rtl8169_private *tp = netdev_priv(dev);
1671
1672 rtl_lock_work(tp);
1673 __rtl8169_set_features(dev, features);
1674 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 return 0;
1677}
1678
Francois Romieuda78dbf2012-01-26 14:18:23 +01001679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1681 struct sk_buff *skb)
1682{
Jesse Grosseab6d182010-10-20 13:56:03 +00001683 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1685}
1686
Francois Romieu7a8fc772011-03-01 17:18:33 +01001687static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
1689 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Francois Romieu7a8fc772011-03-01 17:18:33 +01001691 if (opts2 & RxVlanTag)
1692 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Eric Dumazet2edae082010-09-06 18:46:39 +00001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 desc->opts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
Francois Romieuccdffb92008-07-26 14:26:06 +02001697static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
1699 struct rtl8169_private *tp = netdev_priv(dev);
1700 void __iomem *ioaddr = tp->mmio_addr;
1701 u32 status;
1702
1703 cmd->supported =
1704 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1705 cmd->port = PORT_FIBRE;
1706 cmd->transceiver = XCVR_INTERNAL;
1707
1708 status = RTL_R32(TBICSR);
1709 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1710 cmd->autoneg = !!(status & TBINwEnable);
1711
David Decotigny70739492011-04-27 18:32:40 +00001712 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001714
1715 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716}
1717
Francois Romieuccdffb92008-07-26 14:26:06 +02001718static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
1720 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Francois Romieuccdffb92008-07-26 14:26:06 +02001722 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723}
1724
1725static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1726{
1727 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001728 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Francois Romieuda78dbf2012-01-26 14:18:23 +01001730 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02001731 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001732 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Francois Romieuccdffb92008-07-26 14:26:06 +02001734 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
1737static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1738 void *p)
1739{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001740 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Francois Romieu5b0384f2006-08-16 16:00:01 +02001742 if (regs->len > R8169_REGS_SIZE)
1743 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Francois Romieuda78dbf2012-01-26 14:18:23 +01001745 rtl_lock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001746 memcpy_fromio(p, tp->mmio_addr, regs->len);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001747 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748}
1749
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001750static u32 rtl8169_get_msglevel(struct net_device *dev)
1751{
1752 struct rtl8169_private *tp = netdev_priv(dev);
1753
1754 return tp->msg_enable;
1755}
1756
1757static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1758{
1759 struct rtl8169_private *tp = netdev_priv(dev);
1760
1761 tp->msg_enable = value;
1762}
1763
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001764static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1765 "tx_packets",
1766 "rx_packets",
1767 "tx_errors",
1768 "rx_errors",
1769 "rx_missed",
1770 "align_errors",
1771 "tx_single_collisions",
1772 "tx_multi_collisions",
1773 "unicast",
1774 "broadcast",
1775 "multicast",
1776 "tx_aborted",
1777 "tx_underrun",
1778};
1779
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001780static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001781{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001782 switch (sset) {
1783 case ETH_SS_STATS:
1784 return ARRAY_SIZE(rtl8169_gstrings);
1785 default:
1786 return -EOPNOTSUPP;
1787 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001788}
1789
Ivan Vecera355423d2009-02-06 21:49:57 -08001790static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001791{
1792 struct rtl8169_private *tp = netdev_priv(dev);
1793 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001794 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001795 struct rtl8169_counters *counters;
1796 dma_addr_t paddr;
1797 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001798 int wait = 1000;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001799
Ivan Vecera355423d2009-02-06 21:49:57 -08001800 /*
1801 * Some chips are unable to dump tally counters when the receiver
1802 * is disabled.
1803 */
1804 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1805 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001806
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001807 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001808 if (!counters)
1809 return;
1810
1811 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001812 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001813 RTL_W32(CounterAddrLow, cmd);
1814 RTL_W32(CounterAddrLow, cmd | CounterDump);
1815
Ivan Vecera355423d2009-02-06 21:49:57 -08001816 while (wait--) {
1817 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
Ivan Vecera355423d2009-02-06 21:49:57 -08001818 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001819 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001820 }
1821 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001822 }
1823
1824 RTL_W32(CounterAddrLow, 0);
1825 RTL_W32(CounterAddrHigh, 0);
1826
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001827 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001828}
1829
Ivan Vecera355423d2009-02-06 21:49:57 -08001830static void rtl8169_get_ethtool_stats(struct net_device *dev,
1831 struct ethtool_stats *stats, u64 *data)
1832{
1833 struct rtl8169_private *tp = netdev_priv(dev);
1834
1835 ASSERT_RTNL();
1836
1837 rtl8169_update_counters(dev);
1838
1839 data[0] = le64_to_cpu(tp->counters.tx_packets);
1840 data[1] = le64_to_cpu(tp->counters.rx_packets);
1841 data[2] = le64_to_cpu(tp->counters.tx_errors);
1842 data[3] = le32_to_cpu(tp->counters.rx_errors);
1843 data[4] = le16_to_cpu(tp->counters.rx_missed);
1844 data[5] = le16_to_cpu(tp->counters.align_errors);
1845 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1846 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1847 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1848 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1849 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1850 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1851 data[12] = le16_to_cpu(tp->counters.tx_underun);
1852}
1853
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001854static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1855{
1856 switch(stringset) {
1857 case ETH_SS_STATS:
1858 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1859 break;
1860 }
1861}
1862
Jeff Garzik7282d492006-09-13 14:30:00 -04001863static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 .get_drvinfo = rtl8169_get_drvinfo,
1865 .get_regs_len = rtl8169_get_regs_len,
1866 .get_link = ethtool_op_get_link,
1867 .get_settings = rtl8169_get_settings,
1868 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001869 .get_msglevel = rtl8169_get_msglevel,
1870 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001872 .get_wol = rtl8169_get_wol,
1873 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001874 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001875 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001876 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877};
1878
Francois Romieu07d3f512007-02-21 22:40:46 +01001879static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02001880 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Francois Romieu5d320a22011-05-08 17:47:36 +02001882 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01001883 /*
1884 * The driver currently handles the 8168Bf and the 8168Be identically
1885 * but they can be identified more specifically through the test below
1886 * if needed:
1887 *
1888 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001889 *
1890 * Same thing for the 8101Eb and the 8101Ec:
1891 *
1892 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001893 */
Francois Romieu37441002011-06-17 22:58:54 +02001894 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001896 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 int mac_version;
1898 } mac_info[] = {
Hayes Wangc2218922011-09-06 16:55:18 +08001899 /* 8168F family. */
1900 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
1901 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
1902
hayeswang01dc7fe2011-03-21 01:50:28 +00001903 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08001904 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00001905 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
1906 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
1907 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
1908
Francois Romieu5b538df2008-07-20 16:22:45 +02001909 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001910 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1911 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001912 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001913
françois romieue6de30d2011-01-03 15:08:37 +00001914 /* 8168DP family. */
1915 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1916 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00001917 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00001918
Francois Romieuef808d52008-06-29 13:10:54 +02001919 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001920 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001921 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001922 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001923 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001924 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1925 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001926 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001927 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001928 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001929
1930 /* 8168B family. */
1931 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1932 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1933 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1934 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1935
1936 /* 8101 family. */
hayeswang36a0e6c2011-03-21 01:50:30 +00001937 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08001938 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
1939 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
1940 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001941 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1942 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1943 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1944 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1945 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1946 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001947 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001948 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001949 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001950 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1951 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001952 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1953 /* FIXME: where did these entries come from ? -- FR */
1954 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1955 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1956
1957 /* 8110 family. */
1958 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1959 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1960 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1961 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1962 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1963 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1964
Jean Delvaref21b75e2009-05-26 20:54:48 -07001965 /* Catch-all */
1966 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02001967 };
1968 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 u32 reg;
1970
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001971 reg = RTL_R32(TxConfig);
1972 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 p++;
1974 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02001975
1976 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
1977 netif_notice(tp, probe, dev,
1978 "unknown MAC, using family default\n");
1979 tp->mac_version = default_version;
1980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981}
1982
1983static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1984{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001985 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986}
1987
Francois Romieu867763c2007-08-17 18:21:58 +02001988struct phy_reg {
1989 u16 reg;
1990 u16 val;
1991};
1992
françois romieu4da19632011-01-03 15:07:55 +00001993static void rtl_writephy_batch(struct rtl8169_private *tp,
1994 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001995{
1996 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001997 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001998 regs++;
1999 }
2000}
2001
françois romieubca03d52011-01-03 15:07:31 +00002002#define PHY_READ 0x00000000
2003#define PHY_DATA_OR 0x10000000
2004#define PHY_DATA_AND 0x20000000
2005#define PHY_BJMPN 0x30000000
2006#define PHY_READ_EFUSE 0x40000000
2007#define PHY_READ_MAC_BYTE 0x50000000
2008#define PHY_WRITE_MAC_BYTE 0x60000000
2009#define PHY_CLEAR_READCOUNT 0x70000000
2010#define PHY_WRITE 0x80000000
2011#define PHY_READCOUNT_EQ_SKIP 0x90000000
2012#define PHY_COMP_EQ_SKIPN 0xa0000000
2013#define PHY_COMP_NEQ_SKIPN 0xb0000000
2014#define PHY_WRITE_PREVIOUS 0xc0000000
2015#define PHY_SKIPN 0xd0000000
2016#define PHY_DELAY_MS 0xe0000000
2017#define PHY_WRITE_ERI_WORD 0xf0000000
2018
Hayes Wang960aee62011-06-18 11:37:48 +02002019struct fw_info {
2020 u32 magic;
2021 char version[RTL_VER_SIZE];
2022 __le32 fw_start;
2023 __le32 fw_len;
2024 u8 chksum;
2025} __packed;
2026
Francois Romieu1c361ef2011-06-17 17:16:24 +02002027#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2028
2029static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002030{
Francois Romieub6ffd972011-06-17 17:00:05 +02002031 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002032 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002033 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2034 char *version = rtl_fw->version;
2035 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002036
Francois Romieu1c361ef2011-06-17 17:16:24 +02002037 if (fw->size < FW_OPCODE_SIZE)
2038 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002039
2040 if (!fw_info->magic) {
2041 size_t i, size, start;
2042 u8 checksum = 0;
2043
2044 if (fw->size < sizeof(*fw_info))
2045 goto out;
2046
2047 for (i = 0; i < fw->size; i++)
2048 checksum += fw->data[i];
2049 if (checksum != 0)
2050 goto out;
2051
2052 start = le32_to_cpu(fw_info->fw_start);
2053 if (start > fw->size)
2054 goto out;
2055
2056 size = le32_to_cpu(fw_info->fw_len);
2057 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2058 goto out;
2059
2060 memcpy(version, fw_info->version, RTL_VER_SIZE);
2061
2062 pa->code = (__le32 *)(fw->data + start);
2063 pa->size = size;
2064 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002065 if (fw->size % FW_OPCODE_SIZE)
2066 goto out;
2067
2068 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2069
2070 pa->code = (__le32 *)fw->data;
2071 pa->size = fw->size / FW_OPCODE_SIZE;
2072 }
2073 version[RTL_VER_SIZE - 1] = 0;
2074
2075 rc = true;
2076out:
2077 return rc;
2078}
2079
Francois Romieufd112f22011-06-18 00:10:29 +02002080static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2081 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002082{
Francois Romieufd112f22011-06-18 00:10:29 +02002083 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002084 size_t index;
2085
Francois Romieu1c361ef2011-06-17 17:16:24 +02002086 for (index = 0; index < pa->size; index++) {
2087 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002088 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002089
hayeswang42b82dc2011-01-10 02:07:25 +00002090 switch(action & 0xf0000000) {
2091 case PHY_READ:
2092 case PHY_DATA_OR:
2093 case PHY_DATA_AND:
2094 case PHY_READ_EFUSE:
2095 case PHY_CLEAR_READCOUNT:
2096 case PHY_WRITE:
2097 case PHY_WRITE_PREVIOUS:
2098 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002099 break;
2100
hayeswang42b82dc2011-01-10 02:07:25 +00002101 case PHY_BJMPN:
2102 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002103 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002104 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002105 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002106 }
2107 break;
2108 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002109 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002110 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002111 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002112 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002113 }
2114 break;
2115 case PHY_COMP_EQ_SKIPN:
2116 case PHY_COMP_NEQ_SKIPN:
2117 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002118 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002119 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002120 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002121 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002122 }
2123 break;
2124
2125 case PHY_READ_MAC_BYTE:
2126 case PHY_WRITE_MAC_BYTE:
2127 case PHY_WRITE_ERI_WORD:
2128 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002129 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002130 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002131 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002132 }
2133 }
Francois Romieufd112f22011-06-18 00:10:29 +02002134 rc = true;
2135out:
2136 return rc;
2137}
françois romieubca03d52011-01-03 15:07:31 +00002138
Francois Romieufd112f22011-06-18 00:10:29 +02002139static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2140{
2141 struct net_device *dev = tp->dev;
2142 int rc = -EINVAL;
2143
2144 if (!rtl_fw_format_ok(tp, rtl_fw)) {
2145 netif_err(tp, ifup, dev, "invalid firwmare\n");
2146 goto out;
2147 }
2148
2149 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2150 rc = 0;
2151out:
2152 return rc;
2153}
2154
2155static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2156{
2157 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2158 u32 predata, count;
2159 size_t index;
2160
2161 predata = count = 0;
hayeswang42b82dc2011-01-10 02:07:25 +00002162
Francois Romieu1c361ef2011-06-17 17:16:24 +02002163 for (index = 0; index < pa->size; ) {
2164 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002165 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002166 u32 regno = (action & 0x0fff0000) >> 16;
2167
2168 if (!action)
2169 break;
françois romieubca03d52011-01-03 15:07:31 +00002170
2171 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002172 case PHY_READ:
2173 predata = rtl_readphy(tp, regno);
2174 count++;
2175 index++;
françois romieubca03d52011-01-03 15:07:31 +00002176 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002177 case PHY_DATA_OR:
2178 predata |= data;
2179 index++;
2180 break;
2181 case PHY_DATA_AND:
2182 predata &= data;
2183 index++;
2184 break;
2185 case PHY_BJMPN:
2186 index -= regno;
2187 break;
2188 case PHY_READ_EFUSE:
2189 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
2190 index++;
2191 break;
2192 case PHY_CLEAR_READCOUNT:
2193 count = 0;
2194 index++;
2195 break;
2196 case PHY_WRITE:
2197 rtl_writephy(tp, regno, data);
2198 index++;
2199 break;
2200 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002201 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002202 break;
2203 case PHY_COMP_EQ_SKIPN:
2204 if (predata == data)
2205 index += regno;
2206 index++;
2207 break;
2208 case PHY_COMP_NEQ_SKIPN:
2209 if (predata != data)
2210 index += regno;
2211 index++;
2212 break;
2213 case PHY_WRITE_PREVIOUS:
2214 rtl_writephy(tp, regno, predata);
2215 index++;
2216 break;
2217 case PHY_SKIPN:
2218 index += regno + 1;
2219 break;
2220 case PHY_DELAY_MS:
2221 mdelay(data);
2222 index++;
2223 break;
2224
2225 case PHY_READ_MAC_BYTE:
2226 case PHY_WRITE_MAC_BYTE:
2227 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00002228 default:
2229 BUG();
2230 }
2231 }
2232}
2233
françois romieuf1e02ed2011-01-13 13:07:53 +00002234static void rtl_release_firmware(struct rtl8169_private *tp)
2235{
Francois Romieub6ffd972011-06-17 17:00:05 +02002236 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2237 release_firmware(tp->rtl_fw->fw);
2238 kfree(tp->rtl_fw);
2239 }
2240 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002241}
2242
François Romieu953a12c2011-04-24 17:38:48 +02002243static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002244{
Francois Romieub6ffd972011-06-17 17:00:05 +02002245 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002246
2247 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieub6ffd972011-06-17 17:00:05 +02002248 if (!IS_ERR_OR_NULL(rtl_fw))
2249 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002250}
2251
2252static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2253{
2254 if (rtl_readphy(tp, reg) != val)
2255 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2256 else
2257 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002258}
2259
françois romieu4da19632011-01-03 15:07:55 +00002260static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002262 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002263 { 0x1f, 0x0001 },
2264 { 0x06, 0x006e },
2265 { 0x08, 0x0708 },
2266 { 0x15, 0x4000 },
2267 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
françois romieu0b9b5712009-08-10 19:44:56 +00002269 { 0x1f, 0x0001 },
2270 { 0x03, 0x00a1 },
2271 { 0x02, 0x0008 },
2272 { 0x01, 0x0120 },
2273 { 0x00, 0x1000 },
2274 { 0x04, 0x0800 },
2275 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
françois romieu0b9b5712009-08-10 19:44:56 +00002277 { 0x03, 0xff41 },
2278 { 0x02, 0xdf60 },
2279 { 0x01, 0x0140 },
2280 { 0x00, 0x0077 },
2281 { 0x04, 0x7800 },
2282 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
françois romieu0b9b5712009-08-10 19:44:56 +00002284 { 0x03, 0x802f },
2285 { 0x02, 0x4f02 },
2286 { 0x01, 0x0409 },
2287 { 0x00, 0xf0f9 },
2288 { 0x04, 0x9800 },
2289 { 0x04, 0x9000 },
2290
2291 { 0x03, 0xdf01 },
2292 { 0x02, 0xdf20 },
2293 { 0x01, 0xff95 },
2294 { 0x00, 0xba00 },
2295 { 0x04, 0xa800 },
2296 { 0x04, 0xa000 },
2297
2298 { 0x03, 0xff41 },
2299 { 0x02, 0xdf20 },
2300 { 0x01, 0x0140 },
2301 { 0x00, 0x00bb },
2302 { 0x04, 0xb800 },
2303 { 0x04, 0xb000 },
2304
2305 { 0x03, 0xdf41 },
2306 { 0x02, 0xdc60 },
2307 { 0x01, 0x6340 },
2308 { 0x00, 0x007d },
2309 { 0x04, 0xd800 },
2310 { 0x04, 0xd000 },
2311
2312 { 0x03, 0xdf01 },
2313 { 0x02, 0xdf20 },
2314 { 0x01, 0x100a },
2315 { 0x00, 0xa0ff },
2316 { 0x04, 0xf800 },
2317 { 0x04, 0xf000 },
2318
2319 { 0x1f, 0x0000 },
2320 { 0x0b, 0x0000 },
2321 { 0x00, 0x9200 }
2322 };
2323
françois romieu4da19632011-01-03 15:07:55 +00002324 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325}
2326
françois romieu4da19632011-01-03 15:07:55 +00002327static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002328{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002329 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002330 { 0x1f, 0x0002 },
2331 { 0x01, 0x90d0 },
2332 { 0x1f, 0x0000 }
2333 };
2334
françois romieu4da19632011-01-03 15:07:55 +00002335 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002336}
2337
françois romieu4da19632011-01-03 15:07:55 +00002338static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002339{
2340 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002341
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002342 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2343 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002344 return;
2345
françois romieu4da19632011-01-03 15:07:55 +00002346 rtl_writephy(tp, 0x1f, 0x0001);
2347 rtl_writephy(tp, 0x10, 0xf01b);
2348 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002349}
2350
françois romieu4da19632011-01-03 15:07:55 +00002351static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002352{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002353 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002354 { 0x1f, 0x0001 },
2355 { 0x04, 0x0000 },
2356 { 0x03, 0x00a1 },
2357 { 0x02, 0x0008 },
2358 { 0x01, 0x0120 },
2359 { 0x00, 0x1000 },
2360 { 0x04, 0x0800 },
2361 { 0x04, 0x9000 },
2362 { 0x03, 0x802f },
2363 { 0x02, 0x4f02 },
2364 { 0x01, 0x0409 },
2365 { 0x00, 0xf099 },
2366 { 0x04, 0x9800 },
2367 { 0x04, 0xa000 },
2368 { 0x03, 0xdf01 },
2369 { 0x02, 0xdf20 },
2370 { 0x01, 0xff95 },
2371 { 0x00, 0xba00 },
2372 { 0x04, 0xa800 },
2373 { 0x04, 0xf000 },
2374 { 0x03, 0xdf01 },
2375 { 0x02, 0xdf20 },
2376 { 0x01, 0x101a },
2377 { 0x00, 0xa0ff },
2378 { 0x04, 0xf800 },
2379 { 0x04, 0x0000 },
2380 { 0x1f, 0x0000 },
2381
2382 { 0x1f, 0x0001 },
2383 { 0x10, 0xf41b },
2384 { 0x14, 0xfb54 },
2385 { 0x18, 0xf5c7 },
2386 { 0x1f, 0x0000 },
2387
2388 { 0x1f, 0x0001 },
2389 { 0x17, 0x0cc0 },
2390 { 0x1f, 0x0000 }
2391 };
2392
françois romieu4da19632011-01-03 15:07:55 +00002393 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002394
françois romieu4da19632011-01-03 15:07:55 +00002395 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002396}
2397
françois romieu4da19632011-01-03 15:07:55 +00002398static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002399{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002400 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002401 { 0x1f, 0x0001 },
2402 { 0x04, 0x0000 },
2403 { 0x03, 0x00a1 },
2404 { 0x02, 0x0008 },
2405 { 0x01, 0x0120 },
2406 { 0x00, 0x1000 },
2407 { 0x04, 0x0800 },
2408 { 0x04, 0x9000 },
2409 { 0x03, 0x802f },
2410 { 0x02, 0x4f02 },
2411 { 0x01, 0x0409 },
2412 { 0x00, 0xf099 },
2413 { 0x04, 0x9800 },
2414 { 0x04, 0xa000 },
2415 { 0x03, 0xdf01 },
2416 { 0x02, 0xdf20 },
2417 { 0x01, 0xff95 },
2418 { 0x00, 0xba00 },
2419 { 0x04, 0xa800 },
2420 { 0x04, 0xf000 },
2421 { 0x03, 0xdf01 },
2422 { 0x02, 0xdf20 },
2423 { 0x01, 0x101a },
2424 { 0x00, 0xa0ff },
2425 { 0x04, 0xf800 },
2426 { 0x04, 0x0000 },
2427 { 0x1f, 0x0000 },
2428
2429 { 0x1f, 0x0001 },
2430 { 0x0b, 0x8480 },
2431 { 0x1f, 0x0000 },
2432
2433 { 0x1f, 0x0001 },
2434 { 0x18, 0x67c7 },
2435 { 0x04, 0x2000 },
2436 { 0x03, 0x002f },
2437 { 0x02, 0x4360 },
2438 { 0x01, 0x0109 },
2439 { 0x00, 0x3022 },
2440 { 0x04, 0x2800 },
2441 { 0x1f, 0x0000 },
2442
2443 { 0x1f, 0x0001 },
2444 { 0x17, 0x0cc0 },
2445 { 0x1f, 0x0000 }
2446 };
2447
françois romieu4da19632011-01-03 15:07:55 +00002448 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002449}
2450
françois romieu4da19632011-01-03 15:07:55 +00002451static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002452{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002453 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002454 { 0x10, 0xf41b },
2455 { 0x1f, 0x0000 }
2456 };
2457
françois romieu4da19632011-01-03 15:07:55 +00002458 rtl_writephy(tp, 0x1f, 0x0001);
2459 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002460
françois romieu4da19632011-01-03 15:07:55 +00002461 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002462}
2463
françois romieu4da19632011-01-03 15:07:55 +00002464static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002465{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002466 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002467 { 0x1f, 0x0001 },
2468 { 0x10, 0xf41b },
2469 { 0x1f, 0x0000 }
2470 };
2471
françois romieu4da19632011-01-03 15:07:55 +00002472 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002473}
2474
françois romieu4da19632011-01-03 15:07:55 +00002475static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002476{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002477 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002478 { 0x1f, 0x0000 },
2479 { 0x1d, 0x0f00 },
2480 { 0x1f, 0x0002 },
2481 { 0x0c, 0x1ec8 },
2482 { 0x1f, 0x0000 }
2483 };
2484
françois romieu4da19632011-01-03 15:07:55 +00002485 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002486}
2487
françois romieu4da19632011-01-03 15:07:55 +00002488static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002489{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002490 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002491 { 0x1f, 0x0001 },
2492 { 0x1d, 0x3d98 },
2493 { 0x1f, 0x0000 }
2494 };
2495
françois romieu4da19632011-01-03 15:07:55 +00002496 rtl_writephy(tp, 0x1f, 0x0000);
2497 rtl_patchphy(tp, 0x14, 1 << 5);
2498 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002499
françois romieu4da19632011-01-03 15:07:55 +00002500 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002501}
2502
françois romieu4da19632011-01-03 15:07:55 +00002503static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002504{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002505 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002506 { 0x1f, 0x0001 },
2507 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002508 { 0x1f, 0x0002 },
2509 { 0x00, 0x88d4 },
2510 { 0x01, 0x82b1 },
2511 { 0x03, 0x7002 },
2512 { 0x08, 0x9e30 },
2513 { 0x09, 0x01f0 },
2514 { 0x0a, 0x5500 },
2515 { 0x0c, 0x00c8 },
2516 { 0x1f, 0x0003 },
2517 { 0x12, 0xc096 },
2518 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002519 { 0x1f, 0x0000 },
2520 { 0x1f, 0x0000 },
2521 { 0x09, 0x2000 },
2522 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002523 };
2524
françois romieu4da19632011-01-03 15:07:55 +00002525 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002526
françois romieu4da19632011-01-03 15:07:55 +00002527 rtl_patchphy(tp, 0x14, 1 << 5);
2528 rtl_patchphy(tp, 0x0d, 1 << 5);
2529 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002530}
2531
françois romieu4da19632011-01-03 15:07:55 +00002532static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002533{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002534 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002535 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002536 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002537 { 0x03, 0x802f },
2538 { 0x02, 0x4f02 },
2539 { 0x01, 0x0409 },
2540 { 0x00, 0xf099 },
2541 { 0x04, 0x9800 },
2542 { 0x04, 0x9000 },
2543 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002544 { 0x1f, 0x0002 },
2545 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002546 { 0x06, 0x0761 },
2547 { 0x1f, 0x0003 },
2548 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002549 { 0x1f, 0x0000 }
2550 };
2551
françois romieu4da19632011-01-03 15:07:55 +00002552 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002553
françois romieu4da19632011-01-03 15:07:55 +00002554 rtl_patchphy(tp, 0x16, 1 << 0);
2555 rtl_patchphy(tp, 0x14, 1 << 5);
2556 rtl_patchphy(tp, 0x0d, 1 << 5);
2557 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002558}
2559
françois romieu4da19632011-01-03 15:07:55 +00002560static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002561{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002562 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002563 { 0x1f, 0x0001 },
2564 { 0x12, 0x2300 },
2565 { 0x1d, 0x3d98 },
2566 { 0x1f, 0x0002 },
2567 { 0x0c, 0x7eb8 },
2568 { 0x06, 0x5461 },
2569 { 0x1f, 0x0003 },
2570 { 0x16, 0x0f0a },
2571 { 0x1f, 0x0000 }
2572 };
2573
françois romieu4da19632011-01-03 15:07:55 +00002574 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002575
françois romieu4da19632011-01-03 15:07:55 +00002576 rtl_patchphy(tp, 0x16, 1 << 0);
2577 rtl_patchphy(tp, 0x14, 1 << 5);
2578 rtl_patchphy(tp, 0x0d, 1 << 5);
2579 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002580}
2581
françois romieu4da19632011-01-03 15:07:55 +00002582static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002583{
françois romieu4da19632011-01-03 15:07:55 +00002584 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002585}
2586
françois romieubca03d52011-01-03 15:07:31 +00002587static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002588{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002589 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002590 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002591 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002592 { 0x06, 0x4064 },
2593 { 0x07, 0x2863 },
2594 { 0x08, 0x059c },
2595 { 0x09, 0x26b4 },
2596 { 0x0a, 0x6a19 },
2597 { 0x0b, 0xdcc8 },
2598 { 0x10, 0xf06d },
2599 { 0x14, 0x7f68 },
2600 { 0x18, 0x7fd9 },
2601 { 0x1c, 0xf0ff },
2602 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002603 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002604 { 0x12, 0xf49f },
2605 { 0x13, 0x070b },
2606 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002607 { 0x14, 0x94c0 },
2608
2609 /*
2610 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002611 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002612 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002613 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002614 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002615 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002616 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002617 { 0x06, 0x5561 },
2618
2619 /*
2620 * Can not link to 1Gbps with bad cable
2621 * Decrease SNR threshold form 21.07dB to 19.04dB
2622 */
2623 { 0x1f, 0x0001 },
2624 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002625
2626 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002627 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002628 };
françois romieubca03d52011-01-03 15:07:31 +00002629 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002630
françois romieu4da19632011-01-03 15:07:55 +00002631 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002632
françois romieubca03d52011-01-03 15:07:31 +00002633 /*
2634 * Rx Error Issue
2635 * Fine Tune Switching regulator parameter
2636 */
françois romieu4da19632011-01-03 15:07:55 +00002637 rtl_writephy(tp, 0x1f, 0x0002);
2638 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2639 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002640
françois romieudaf9df62009-10-07 12:44:20 +00002641 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002642 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002643 { 0x1f, 0x0002 },
2644 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002645 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002646 { 0x05, 0x8330 },
2647 { 0x06, 0x669a },
2648 { 0x1f, 0x0002 }
2649 };
2650 int val;
2651
françois romieu4da19632011-01-03 15:07:55 +00002652 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002653
françois romieu4da19632011-01-03 15:07:55 +00002654 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002655
2656 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002657 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002658 0x0065, 0x0066, 0x0067, 0x0068,
2659 0x0069, 0x006a, 0x006b, 0x006c
2660 };
2661 int i;
2662
françois romieu4da19632011-01-03 15:07:55 +00002663 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002664
2665 val &= 0xff00;
2666 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002667 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002668 }
2669 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002670 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002671 { 0x1f, 0x0002 },
2672 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002673 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002674 { 0x05, 0x8330 },
2675 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002676 };
2677
françois romieu4da19632011-01-03 15:07:55 +00002678 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002679 }
2680
françois romieubca03d52011-01-03 15:07:31 +00002681 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002682 rtl_writephy(tp, 0x1f, 0x0002);
2683 rtl_patchphy(tp, 0x0d, 0x0300);
2684 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002685
françois romieubca03d52011-01-03 15:07:31 +00002686 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002687 rtl_writephy(tp, 0x1f, 0x0002);
2688 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2689 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002690
françois romieu4da19632011-01-03 15:07:55 +00002691 rtl_writephy(tp, 0x1f, 0x0005);
2692 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002693
2694 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002695
françois romieu4da19632011-01-03 15:07:55 +00002696 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002697}
2698
françois romieubca03d52011-01-03 15:07:31 +00002699static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002700{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002701 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002702 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002703 { 0x1f, 0x0001 },
2704 { 0x06, 0x4064 },
2705 { 0x07, 0x2863 },
2706 { 0x08, 0x059c },
2707 { 0x09, 0x26b4 },
2708 { 0x0a, 0x6a19 },
2709 { 0x0b, 0xdcc8 },
2710 { 0x10, 0xf06d },
2711 { 0x14, 0x7f68 },
2712 { 0x18, 0x7fd9 },
2713 { 0x1c, 0xf0ff },
2714 { 0x1d, 0x3d9c },
2715 { 0x1f, 0x0003 },
2716 { 0x12, 0xf49f },
2717 { 0x13, 0x070b },
2718 { 0x1a, 0x05ad },
2719 { 0x14, 0x94c0 },
2720
françois romieubca03d52011-01-03 15:07:31 +00002721 /*
2722 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002723 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002724 */
françois romieudaf9df62009-10-07 12:44:20 +00002725 { 0x1f, 0x0002 },
2726 { 0x06, 0x5561 },
2727 { 0x1f, 0x0005 },
2728 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002729 { 0x06, 0x5561 },
2730
2731 /*
2732 * Can not link to 1Gbps with bad cable
2733 * Decrease SNR threshold form 21.07dB to 19.04dB
2734 */
2735 { 0x1f, 0x0001 },
2736 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002737
2738 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002739 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002740 };
françois romieubca03d52011-01-03 15:07:31 +00002741 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002742
françois romieu4da19632011-01-03 15:07:55 +00002743 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002744
2745 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002746 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002747 { 0x1f, 0x0002 },
2748 { 0x05, 0x669a },
2749 { 0x1f, 0x0005 },
2750 { 0x05, 0x8330 },
2751 { 0x06, 0x669a },
2752
2753 { 0x1f, 0x0002 }
2754 };
2755 int val;
2756
françois romieu4da19632011-01-03 15:07:55 +00002757 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002758
françois romieu4da19632011-01-03 15:07:55 +00002759 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002760 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002761 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002762 0x0065, 0x0066, 0x0067, 0x0068,
2763 0x0069, 0x006a, 0x006b, 0x006c
2764 };
2765 int i;
2766
françois romieu4da19632011-01-03 15:07:55 +00002767 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002768
2769 val &= 0xff00;
2770 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002771 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002772 }
2773 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002774 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002775 { 0x1f, 0x0002 },
2776 { 0x05, 0x2642 },
2777 { 0x1f, 0x0005 },
2778 { 0x05, 0x8330 },
2779 { 0x06, 0x2642 }
2780 };
2781
françois romieu4da19632011-01-03 15:07:55 +00002782 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002783 }
2784
françois romieubca03d52011-01-03 15:07:31 +00002785 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002786 rtl_writephy(tp, 0x1f, 0x0002);
2787 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2788 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002789
françois romieubca03d52011-01-03 15:07:31 +00002790 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002791 rtl_writephy(tp, 0x1f, 0x0002);
2792 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002793
françois romieu4da19632011-01-03 15:07:55 +00002794 rtl_writephy(tp, 0x1f, 0x0005);
2795 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002796
2797 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002798
françois romieu4da19632011-01-03 15:07:55 +00002799 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002800}
2801
françois romieu4da19632011-01-03 15:07:55 +00002802static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002803{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002804 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002805 { 0x1f, 0x0002 },
2806 { 0x10, 0x0008 },
2807 { 0x0d, 0x006c },
2808
2809 { 0x1f, 0x0000 },
2810 { 0x0d, 0xf880 },
2811
2812 { 0x1f, 0x0001 },
2813 { 0x17, 0x0cc0 },
2814
2815 { 0x1f, 0x0001 },
2816 { 0x0b, 0xa4d8 },
2817 { 0x09, 0x281c },
2818 { 0x07, 0x2883 },
2819 { 0x0a, 0x6b35 },
2820 { 0x1d, 0x3da4 },
2821 { 0x1c, 0xeffd },
2822 { 0x14, 0x7f52 },
2823 { 0x18, 0x7fc6 },
2824 { 0x08, 0x0601 },
2825 { 0x06, 0x4063 },
2826 { 0x10, 0xf074 },
2827 { 0x1f, 0x0003 },
2828 { 0x13, 0x0789 },
2829 { 0x12, 0xf4bd },
2830 { 0x1a, 0x04fd },
2831 { 0x14, 0x84b0 },
2832 { 0x1f, 0x0000 },
2833 { 0x00, 0x9200 },
2834
2835 { 0x1f, 0x0005 },
2836 { 0x01, 0x0340 },
2837 { 0x1f, 0x0001 },
2838 { 0x04, 0x4000 },
2839 { 0x03, 0x1d21 },
2840 { 0x02, 0x0c32 },
2841 { 0x01, 0x0200 },
2842 { 0x00, 0x5554 },
2843 { 0x04, 0x4800 },
2844 { 0x04, 0x4000 },
2845 { 0x04, 0xf000 },
2846 { 0x03, 0xdf01 },
2847 { 0x02, 0xdf20 },
2848 { 0x01, 0x101a },
2849 { 0x00, 0xa0ff },
2850 { 0x04, 0xf800 },
2851 { 0x04, 0xf000 },
2852 { 0x1f, 0x0000 },
2853
2854 { 0x1f, 0x0007 },
2855 { 0x1e, 0x0023 },
2856 { 0x16, 0x0000 },
2857 { 0x1f, 0x0000 }
2858 };
2859
françois romieu4da19632011-01-03 15:07:55 +00002860 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002861}
2862
françois romieue6de30d2011-01-03 15:08:37 +00002863static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2864{
2865 static const struct phy_reg phy_reg_init[] = {
2866 { 0x1f, 0x0001 },
2867 { 0x17, 0x0cc0 },
2868
2869 { 0x1f, 0x0007 },
2870 { 0x1e, 0x002d },
2871 { 0x18, 0x0040 },
2872 { 0x1f, 0x0000 }
2873 };
2874
2875 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2876 rtl_patchphy(tp, 0x0d, 1 << 5);
2877}
2878
Hayes Wang70090422011-07-06 15:58:06 +08002879static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00002880{
2881 static const struct phy_reg phy_reg_init[] = {
2882 /* Enable Delay cap */
2883 { 0x1f, 0x0005 },
2884 { 0x05, 0x8b80 },
2885 { 0x06, 0xc896 },
2886 { 0x1f, 0x0000 },
2887
2888 /* Channel estimation fine tune */
2889 { 0x1f, 0x0001 },
2890 { 0x0b, 0x6c20 },
2891 { 0x07, 0x2872 },
2892 { 0x1c, 0xefff },
2893 { 0x1f, 0x0003 },
2894 { 0x14, 0x6420 },
2895 { 0x1f, 0x0000 },
2896
2897 /* Update PFM & 10M TX idle timer */
2898 { 0x1f, 0x0007 },
2899 { 0x1e, 0x002f },
2900 { 0x15, 0x1919 },
2901 { 0x1f, 0x0000 },
2902
2903 { 0x1f, 0x0007 },
2904 { 0x1e, 0x00ac },
2905 { 0x18, 0x0006 },
2906 { 0x1f, 0x0000 }
2907 };
2908
Francois Romieu15ecd032011-04-27 13:52:22 -07002909 rtl_apply_firmware(tp);
2910
hayeswang01dc7fe2011-03-21 01:50:28 +00002911 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2912
2913 /* DCO enable for 10M IDLE Power */
2914 rtl_writephy(tp, 0x1f, 0x0007);
2915 rtl_writephy(tp, 0x1e, 0x0023);
2916 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2917 rtl_writephy(tp, 0x1f, 0x0000);
2918
2919 /* For impedance matching */
2920 rtl_writephy(tp, 0x1f, 0x0002);
2921 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002922 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00002923
2924 /* PHY auto speed down */
2925 rtl_writephy(tp, 0x1f, 0x0007);
2926 rtl_writephy(tp, 0x1e, 0x002d);
2927 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
2928 rtl_writephy(tp, 0x1f, 0x0000);
2929 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2930
2931 rtl_writephy(tp, 0x1f, 0x0005);
2932 rtl_writephy(tp, 0x05, 0x8b86);
2933 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2934 rtl_writephy(tp, 0x1f, 0x0000);
2935
2936 rtl_writephy(tp, 0x1f, 0x0005);
2937 rtl_writephy(tp, 0x05, 0x8b85);
2938 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2939 rtl_writephy(tp, 0x1f, 0x0007);
2940 rtl_writephy(tp, 0x1e, 0x0020);
2941 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
2942 rtl_writephy(tp, 0x1f, 0x0006);
2943 rtl_writephy(tp, 0x00, 0x5a00);
2944 rtl_writephy(tp, 0x1f, 0x0000);
2945 rtl_writephy(tp, 0x0d, 0x0007);
2946 rtl_writephy(tp, 0x0e, 0x003c);
2947 rtl_writephy(tp, 0x0d, 0x4007);
2948 rtl_writephy(tp, 0x0e, 0x0000);
2949 rtl_writephy(tp, 0x0d, 0x0000);
2950}
2951
Hayes Wang70090422011-07-06 15:58:06 +08002952static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
2953{
2954 static const struct phy_reg phy_reg_init[] = {
2955 /* Enable Delay cap */
2956 { 0x1f, 0x0004 },
2957 { 0x1f, 0x0007 },
2958 { 0x1e, 0x00ac },
2959 { 0x18, 0x0006 },
2960 { 0x1f, 0x0002 },
2961 { 0x1f, 0x0000 },
2962 { 0x1f, 0x0000 },
2963
2964 /* Channel estimation fine tune */
2965 { 0x1f, 0x0003 },
2966 { 0x09, 0xa20f },
2967 { 0x1f, 0x0000 },
2968 { 0x1f, 0x0000 },
2969
2970 /* Green Setting */
2971 { 0x1f, 0x0005 },
2972 { 0x05, 0x8b5b },
2973 { 0x06, 0x9222 },
2974 { 0x05, 0x8b6d },
2975 { 0x06, 0x8000 },
2976 { 0x05, 0x8b76 },
2977 { 0x06, 0x8000 },
2978 { 0x1f, 0x0000 }
2979 };
2980
2981 rtl_apply_firmware(tp);
2982
2983 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2984
2985 /* For 4-corner performance improve */
2986 rtl_writephy(tp, 0x1f, 0x0005);
2987 rtl_writephy(tp, 0x05, 0x8b80);
2988 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2989 rtl_writephy(tp, 0x1f, 0x0000);
2990
2991 /* PHY auto speed down */
2992 rtl_writephy(tp, 0x1f, 0x0004);
2993 rtl_writephy(tp, 0x1f, 0x0007);
2994 rtl_writephy(tp, 0x1e, 0x002d);
2995 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
2996 rtl_writephy(tp, 0x1f, 0x0002);
2997 rtl_writephy(tp, 0x1f, 0x0000);
2998 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2999
3000 /* improve 10M EEE waveform */
3001 rtl_writephy(tp, 0x1f, 0x0005);
3002 rtl_writephy(tp, 0x05, 0x8b86);
3003 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3004 rtl_writephy(tp, 0x1f, 0x0000);
3005
3006 /* Improve 2-pair detection performance */
3007 rtl_writephy(tp, 0x1f, 0x0005);
3008 rtl_writephy(tp, 0x05, 0x8b85);
3009 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3010 rtl_writephy(tp, 0x1f, 0x0000);
3011
3012 /* EEE setting */
3013 rtl_w1w0_eri(tp->mmio_addr, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003,
3014 ERIAR_EXGMAC);
3015 rtl_writephy(tp, 0x1f, 0x0005);
3016 rtl_writephy(tp, 0x05, 0x8b85);
3017 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3018 rtl_writephy(tp, 0x1f, 0x0004);
3019 rtl_writephy(tp, 0x1f, 0x0007);
3020 rtl_writephy(tp, 0x1e, 0x0020);
David S. Miller1805b2f2011-10-24 18:18:09 -04003021 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003022 rtl_writephy(tp, 0x1f, 0x0002);
3023 rtl_writephy(tp, 0x1f, 0x0000);
3024 rtl_writephy(tp, 0x0d, 0x0007);
3025 rtl_writephy(tp, 0x0e, 0x003c);
3026 rtl_writephy(tp, 0x0d, 0x4007);
3027 rtl_writephy(tp, 0x0e, 0x0000);
3028 rtl_writephy(tp, 0x0d, 0x0000);
3029
3030 /* Green feature */
3031 rtl_writephy(tp, 0x1f, 0x0003);
3032 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3033 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3034 rtl_writephy(tp, 0x1f, 0x0000);
3035}
3036
Hayes Wangc2218922011-09-06 16:55:18 +08003037static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3038{
3039 static const struct phy_reg phy_reg_init[] = {
3040 /* Channel estimation fine tune */
3041 { 0x1f, 0x0003 },
3042 { 0x09, 0xa20f },
3043 { 0x1f, 0x0000 },
3044
3045 /* Modify green table for giga & fnet */
3046 { 0x1f, 0x0005 },
3047 { 0x05, 0x8b55 },
3048 { 0x06, 0x0000 },
3049 { 0x05, 0x8b5e },
3050 { 0x06, 0x0000 },
3051 { 0x05, 0x8b67 },
3052 { 0x06, 0x0000 },
3053 { 0x05, 0x8b70 },
3054 { 0x06, 0x0000 },
3055 { 0x1f, 0x0000 },
3056 { 0x1f, 0x0007 },
3057 { 0x1e, 0x0078 },
3058 { 0x17, 0x0000 },
3059 { 0x19, 0x00fb },
3060 { 0x1f, 0x0000 },
3061
3062 /* Modify green table for 10M */
3063 { 0x1f, 0x0005 },
3064 { 0x05, 0x8b79 },
3065 { 0x06, 0xaa00 },
3066 { 0x1f, 0x0000 },
3067
3068 /* Disable hiimpedance detection (RTCT) */
3069 { 0x1f, 0x0003 },
3070 { 0x01, 0x328a },
3071 { 0x1f, 0x0000 }
3072 };
3073
3074 rtl_apply_firmware(tp);
3075
3076 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3077
3078 /* For 4-corner performance improve */
3079 rtl_writephy(tp, 0x1f, 0x0005);
3080 rtl_writephy(tp, 0x05, 0x8b80);
3081 rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3082 rtl_writephy(tp, 0x1f, 0x0000);
3083
3084 /* PHY auto speed down */
3085 rtl_writephy(tp, 0x1f, 0x0007);
3086 rtl_writephy(tp, 0x1e, 0x002d);
3087 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3088 rtl_writephy(tp, 0x1f, 0x0000);
3089 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3090
3091 /* Improve 10M EEE waveform */
3092 rtl_writephy(tp, 0x1f, 0x0005);
3093 rtl_writephy(tp, 0x05, 0x8b86);
3094 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3095 rtl_writephy(tp, 0x1f, 0x0000);
3096
3097 /* Improve 2-pair detection performance */
3098 rtl_writephy(tp, 0x1f, 0x0005);
3099 rtl_writephy(tp, 0x05, 0x8b85);
3100 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3101 rtl_writephy(tp, 0x1f, 0x0000);
3102}
3103
3104static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3105{
3106 rtl_apply_firmware(tp);
3107
3108 /* For 4-corner performance improve */
3109 rtl_writephy(tp, 0x1f, 0x0005);
3110 rtl_writephy(tp, 0x05, 0x8b80);
3111 rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3112 rtl_writephy(tp, 0x1f, 0x0000);
3113
3114 /* PHY auto speed down */
3115 rtl_writephy(tp, 0x1f, 0x0007);
3116 rtl_writephy(tp, 0x1e, 0x002d);
3117 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3118 rtl_writephy(tp, 0x1f, 0x0000);
3119 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3120
3121 /* Improve 10M EEE waveform */
3122 rtl_writephy(tp, 0x1f, 0x0005);
3123 rtl_writephy(tp, 0x05, 0x8b86);
3124 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3125 rtl_writephy(tp, 0x1f, 0x0000);
3126}
3127
françois romieu4da19632011-01-03 15:07:55 +00003128static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02003129{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003130 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003131 { 0x1f, 0x0003 },
3132 { 0x08, 0x441d },
3133 { 0x01, 0x9100 },
3134 { 0x1f, 0x0000 }
3135 };
3136
françois romieu4da19632011-01-03 15:07:55 +00003137 rtl_writephy(tp, 0x1f, 0x0000);
3138 rtl_patchphy(tp, 0x11, 1 << 12);
3139 rtl_patchphy(tp, 0x19, 1 << 13);
3140 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003141
françois romieu4da19632011-01-03 15:07:55 +00003142 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02003143}
3144
Hayes Wang5a5e4442011-02-22 17:26:21 +08003145static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
3146{
3147 static const struct phy_reg phy_reg_init[] = {
3148 { 0x1f, 0x0005 },
3149 { 0x1a, 0x0000 },
3150 { 0x1f, 0x0000 },
3151
3152 { 0x1f, 0x0004 },
3153 { 0x1c, 0x0000 },
3154 { 0x1f, 0x0000 },
3155
3156 { 0x1f, 0x0001 },
3157 { 0x15, 0x7701 },
3158 { 0x1f, 0x0000 }
3159 };
3160
3161 /* Disable ALDPS before ram code */
3162 rtl_writephy(tp, 0x1f, 0x0000);
3163 rtl_writephy(tp, 0x18, 0x0310);
3164 msleep(100);
3165
François Romieu953a12c2011-04-24 17:38:48 +02003166 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003167
3168 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3169}
3170
Francois Romieu5615d9f2007-08-17 17:50:46 +02003171static void rtl_hw_phy_config(struct net_device *dev)
3172{
3173 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003174
3175 rtl8169_print_mac_version(tp);
3176
3177 switch (tp->mac_version) {
3178 case RTL_GIGA_MAC_VER_01:
3179 break;
3180 case RTL_GIGA_MAC_VER_02:
3181 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00003182 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003183 break;
3184 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00003185 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003186 break;
françois romieu2e9558562009-08-10 19:44:19 +00003187 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00003188 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00003189 break;
françois romieu8c7006a2009-08-10 19:43:29 +00003190 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00003191 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00003192 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02003193 case RTL_GIGA_MAC_VER_07:
3194 case RTL_GIGA_MAC_VER_08:
3195 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00003196 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003197 break;
Francois Romieu236b8082008-05-30 16:11:48 +02003198 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00003199 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003200 break;
3201 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00003202 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003203 break;
3204 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00003205 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003206 break;
Francois Romieu867763c2007-08-17 18:21:58 +02003207 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00003208 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003209 break;
3210 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00003211 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003212 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02003213 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00003214 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003215 break;
Francois Romieu197ff762008-06-28 13:16:02 +02003216 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00003217 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02003218 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02003219 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00003220 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003221 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003222 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003223 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00003224 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02003225 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02003226 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00003227 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003228 break;
3229 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00003230 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003231 break;
3232 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00003233 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02003234 break;
françois romieue6de30d2011-01-03 15:08:37 +00003235 case RTL_GIGA_MAC_VER_28:
3236 rtl8168d_4_hw_phy_config(tp);
3237 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08003238 case RTL_GIGA_MAC_VER_29:
3239 case RTL_GIGA_MAC_VER_30:
3240 rtl8105e_hw_phy_config(tp);
3241 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02003242 case RTL_GIGA_MAC_VER_31:
3243 /* None. */
3244 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00003245 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00003246 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003247 rtl8168e_1_hw_phy_config(tp);
3248 break;
3249 case RTL_GIGA_MAC_VER_34:
3250 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00003251 break;
Hayes Wangc2218922011-09-06 16:55:18 +08003252 case RTL_GIGA_MAC_VER_35:
3253 rtl8168f_1_hw_phy_config(tp);
3254 break;
3255 case RTL_GIGA_MAC_VER_36:
3256 rtl8168f_2_hw_phy_config(tp);
3257 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003258
Francois Romieu5615d9f2007-08-17 17:50:46 +02003259 default:
3260 break;
3261 }
3262}
3263
Francois Romieuda78dbf2012-01-26 14:18:23 +01003264static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 struct timer_list *timer = &tp->timer;
3267 void __iomem *ioaddr = tp->mmio_addr;
3268 unsigned long timeout = RTL8169_PHY_TIMEOUT;
3269
Francois Romieubcf0bf92006-07-26 23:14:13 +02003270 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
françois romieu4da19632011-01-03 15:07:55 +00003272 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02003273 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 * A busy loop could burn quite a few cycles on nowadays CPU.
3275 * Let's delay the execution of the timer for a few ticks.
3276 */
3277 timeout = HZ/10;
3278 goto out_mod_timer;
3279 }
3280
3281 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01003282 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Francois Romieuda78dbf2012-01-26 14:18:23 +01003284 netif_warn(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
françois romieu4da19632011-01-03 15:07:55 +00003286 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
3288out_mod_timer:
3289 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003290}
3291
3292static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
3293{
Francois Romieuda78dbf2012-01-26 14:18:23 +01003294 if (!test_and_set_bit(flag, tp->wk.flags))
3295 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003296}
3297
3298static void rtl8169_phy_timer(unsigned long __opaque)
3299{
3300 struct net_device *dev = (struct net_device *)__opaque;
3301 struct rtl8169_private *tp = netdev_priv(dev);
3302
Francois Romieu98ddf982012-01-31 10:47:34 +01003303 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304}
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
3307 void __iomem *ioaddr)
3308{
3309 iounmap(ioaddr);
3310 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003311 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 pci_disable_device(pdev);
3313 free_netdev(dev);
3314}
3315
Francois Romieubf793292006-11-01 00:53:05 +01003316static void rtl8169_phy_reset(struct net_device *dev,
3317 struct rtl8169_private *tp)
3318{
Francois Romieu07d3f512007-02-21 22:40:46 +01003319 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01003320
françois romieu4da19632011-01-03 15:07:55 +00003321 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01003322 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00003323 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01003324 return;
3325 msleep(1);
3326 }
Joe Perchesbf82c182010-02-09 11:49:50 +00003327 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01003328}
3329
David S. Miller8decf862011-09-22 03:23:13 -04003330static bool rtl_tbi_enabled(struct rtl8169_private *tp)
3331{
3332 void __iomem *ioaddr = tp->mmio_addr;
3333
3334 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
3335 (RTL_R8(PHYstatus) & TBI_Enable);
3336}
3337
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003338static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003340 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003341
Francois Romieu5615d9f2007-08-17 17:50:46 +02003342 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003343
Marcus Sundberg773328942008-07-10 21:28:08 +02003344 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
3345 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3346 RTL_W8(0x82, 0x01);
3347 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003348
Francois Romieu6dccd162007-02-13 23:38:05 +01003349 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
3350
3351 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3352 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003353
Francois Romieubcf0bf92006-07-26 23:14:13 +02003354 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003355 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3356 RTL_W8(0x82, 0x01);
3357 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00003358 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003359 }
3360
Francois Romieubf793292006-11-01 00:53:05 +01003361 rtl8169_phy_reset(dev, tp);
3362
Oliver Neukum54405cd2011-01-06 21:55:13 +01003363 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02003364 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3365 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3366 (tp->mii.supports_gmii ?
3367 ADVERTISED_1000baseT_Half |
3368 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003369
David S. Miller8decf862011-09-22 03:23:13 -04003370 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00003371 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003372}
3373
Francois Romieu773d2022007-01-31 23:47:43 +01003374static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
3375{
3376 void __iomem *ioaddr = tp->mmio_addr;
3377 u32 high;
3378 u32 low;
3379
3380 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
3381 high = addr[4] | (addr[5] << 8);
3382
Francois Romieuda78dbf2012-01-26 14:18:23 +01003383 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003384
3385 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00003386
Francois Romieu773d2022007-01-31 23:47:43 +01003387 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00003388 RTL_R32(MAC4);
3389
Francois Romieu78f1cd02010-03-27 19:35:46 -07003390 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00003391 RTL_R32(MAC0);
3392
françois romieuc28aa382011-08-02 03:53:43 +00003393 if (tp->mac_version == RTL_GIGA_MAC_VER_34) {
3394 const struct exgmac_reg e[] = {
3395 { .addr = 0xe0, ERIAR_MASK_1111, .val = low },
3396 { .addr = 0xe4, ERIAR_MASK_1111, .val = high },
3397 { .addr = 0xf0, ERIAR_MASK_1111, .val = low << 16 },
3398 { .addr = 0xf4, ERIAR_MASK_1111, .val = high << 16 |
3399 low >> 16 },
3400 };
3401
3402 rtl_write_exgmac_batch(ioaddr, e, ARRAY_SIZE(e));
3403 }
3404
Francois Romieu773d2022007-01-31 23:47:43 +01003405 RTL_W8(Cfg9346, Cfg9346_Lock);
3406
Francois Romieuda78dbf2012-01-26 14:18:23 +01003407 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003408}
3409
3410static int rtl_set_mac_address(struct net_device *dev, void *p)
3411{
3412 struct rtl8169_private *tp = netdev_priv(dev);
3413 struct sockaddr *addr = p;
3414
3415 if (!is_valid_ether_addr(addr->sa_data))
3416 return -EADDRNOTAVAIL;
3417
3418 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3419
3420 rtl_rar_set(tp, dev->dev_addr);
3421
3422 return 0;
3423}
3424
Francois Romieu5f787a12006-08-17 13:02:36 +02003425static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3426{
3427 struct rtl8169_private *tp = netdev_priv(dev);
3428 struct mii_ioctl_data *data = if_mii(ifr);
3429
Francois Romieu8b4ab282008-11-19 22:05:25 -08003430 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
3431}
Francois Romieu5f787a12006-08-17 13:02:36 +02003432
Francois Romieucecb5fd2011-04-01 10:21:07 +02003433static int rtl_xmii_ioctl(struct rtl8169_private *tp,
3434 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08003435{
Francois Romieu5f787a12006-08-17 13:02:36 +02003436 switch (cmd) {
3437 case SIOCGMIIPHY:
3438 data->phy_id = 32; /* Internal PHY */
3439 return 0;
3440
3441 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003442 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02003443 return 0;
3444
3445 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003446 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02003447 return 0;
3448 }
3449 return -EOPNOTSUPP;
3450}
3451
Francois Romieu8b4ab282008-11-19 22:05:25 -08003452static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3453{
3454 return -EOPNOTSUPP;
3455}
3456
Francois Romieufbac58f2007-10-04 22:51:38 +02003457static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3458{
3459 if (tp->features & RTL_FEATURE_MSI) {
3460 pci_disable_msi(pdev);
3461 tp->features &= ~RTL_FEATURE_MSI;
3462 }
3463}
3464
françois romieuc0e45c12011-01-03 15:08:04 +00003465static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
3466{
3467 struct mdio_ops *ops = &tp->mdio_ops;
3468
3469 switch (tp->mac_version) {
3470 case RTL_GIGA_MAC_VER_27:
3471 ops->write = r8168dp_1_mdio_write;
3472 ops->read = r8168dp_1_mdio_read;
3473 break;
françois romieue6de30d2011-01-03 15:08:37 +00003474 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003475 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003476 ops->write = r8168dp_2_mdio_write;
3477 ops->read = r8168dp_2_mdio_read;
3478 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003479 default:
3480 ops->write = r8169_mdio_write;
3481 ops->read = r8169_mdio_read;
3482 break;
3483 }
3484}
3485
David S. Miller1805b2f2011-10-24 18:18:09 -04003486static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
3487{
3488 void __iomem *ioaddr = tp->mmio_addr;
3489
3490 switch (tp->mac_version) {
Cyril Bruleboiscfc2c992012-10-31 14:00:46 +00003491 case RTL_GIGA_MAC_VER_25:
3492 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04003493 case RTL_GIGA_MAC_VER_29:
3494 case RTL_GIGA_MAC_VER_30:
3495 case RTL_GIGA_MAC_VER_32:
3496 case RTL_GIGA_MAC_VER_33:
3497 case RTL_GIGA_MAC_VER_34:
3498 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3499 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3500 break;
3501 default:
3502 break;
3503 }
3504}
3505
3506static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
3507{
3508 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
3509 return false;
3510
3511 rtl_writephy(tp, 0x1f, 0x0000);
3512 rtl_writephy(tp, MII_BMCR, 0x0000);
3513
3514 rtl_wol_suspend_quirk(tp);
3515
3516 return true;
3517}
3518
françois romieu065c27c2011-01-03 15:08:12 +00003519static void r810x_phy_power_down(struct rtl8169_private *tp)
3520{
3521 rtl_writephy(tp, 0x1f, 0x0000);
3522 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3523}
3524
3525static void r810x_phy_power_up(struct rtl8169_private *tp)
3526{
3527 rtl_writephy(tp, 0x1f, 0x0000);
3528 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3529}
3530
3531static void r810x_pll_power_down(struct rtl8169_private *tp)
3532{
David S. Miller1805b2f2011-10-24 18:18:09 -04003533 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003534 return;
françois romieu065c27c2011-01-03 15:08:12 +00003535
3536 r810x_phy_power_down(tp);
3537}
3538
3539static void r810x_pll_power_up(struct rtl8169_private *tp)
3540{
3541 r810x_phy_power_up(tp);
3542}
3543
3544static void r8168_phy_power_up(struct rtl8169_private *tp)
3545{
3546 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003547 switch (tp->mac_version) {
3548 case RTL_GIGA_MAC_VER_11:
3549 case RTL_GIGA_MAC_VER_12:
3550 case RTL_GIGA_MAC_VER_17:
3551 case RTL_GIGA_MAC_VER_18:
3552 case RTL_GIGA_MAC_VER_19:
3553 case RTL_GIGA_MAC_VER_20:
3554 case RTL_GIGA_MAC_VER_21:
3555 case RTL_GIGA_MAC_VER_22:
3556 case RTL_GIGA_MAC_VER_23:
3557 case RTL_GIGA_MAC_VER_24:
3558 case RTL_GIGA_MAC_VER_25:
3559 case RTL_GIGA_MAC_VER_26:
3560 case RTL_GIGA_MAC_VER_27:
3561 case RTL_GIGA_MAC_VER_28:
3562 case RTL_GIGA_MAC_VER_31:
3563 rtl_writephy(tp, 0x0e, 0x0000);
3564 break;
3565 default:
3566 break;
3567 }
françois romieu065c27c2011-01-03 15:08:12 +00003568 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3569}
3570
3571static void r8168_phy_power_down(struct rtl8169_private *tp)
3572{
3573 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003574 switch (tp->mac_version) {
3575 case RTL_GIGA_MAC_VER_32:
3576 case RTL_GIGA_MAC_VER_33:
3577 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3578 break;
3579
3580 case RTL_GIGA_MAC_VER_11:
3581 case RTL_GIGA_MAC_VER_12:
3582 case RTL_GIGA_MAC_VER_17:
3583 case RTL_GIGA_MAC_VER_18:
3584 case RTL_GIGA_MAC_VER_19:
3585 case RTL_GIGA_MAC_VER_20:
3586 case RTL_GIGA_MAC_VER_21:
3587 case RTL_GIGA_MAC_VER_22:
3588 case RTL_GIGA_MAC_VER_23:
3589 case RTL_GIGA_MAC_VER_24:
3590 case RTL_GIGA_MAC_VER_25:
3591 case RTL_GIGA_MAC_VER_26:
3592 case RTL_GIGA_MAC_VER_27:
3593 case RTL_GIGA_MAC_VER_28:
3594 case RTL_GIGA_MAC_VER_31:
3595 rtl_writephy(tp, 0x0e, 0x0200);
3596 default:
3597 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3598 break;
3599 }
françois romieu065c27c2011-01-03 15:08:12 +00003600}
3601
3602static void r8168_pll_power_down(struct rtl8169_private *tp)
3603{
3604 void __iomem *ioaddr = tp->mmio_addr;
3605
Francois Romieucecb5fd2011-04-01 10:21:07 +02003606 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3607 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3608 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003609 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003610 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003611 }
françois romieu065c27c2011-01-03 15:08:12 +00003612
Francois Romieucecb5fd2011-04-01 10:21:07 +02003613 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
3614 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00003615 (RTL_R16(CPlusCmd) & ASF)) {
3616 return;
3617 }
3618
hayeswang01dc7fe2011-03-21 01:50:28 +00003619 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3620 tp->mac_version == RTL_GIGA_MAC_VER_33)
3621 rtl_ephy_write(ioaddr, 0x19, 0xff64);
3622
David S. Miller1805b2f2011-10-24 18:18:09 -04003623 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003624 return;
françois romieu065c27c2011-01-03 15:08:12 +00003625
3626 r8168_phy_power_down(tp);
3627
3628 switch (tp->mac_version) {
3629 case RTL_GIGA_MAC_VER_25:
3630 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003631 case RTL_GIGA_MAC_VER_27:
3632 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003633 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003634 case RTL_GIGA_MAC_VER_32:
3635 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003636 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3637 break;
3638 }
3639}
3640
3641static void r8168_pll_power_up(struct rtl8169_private *tp)
3642{
3643 void __iomem *ioaddr = tp->mmio_addr;
3644
Francois Romieucecb5fd2011-04-01 10:21:07 +02003645 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3646 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3647 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003648 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003649 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003650 }
françois romieu065c27c2011-01-03 15:08:12 +00003651
3652 switch (tp->mac_version) {
3653 case RTL_GIGA_MAC_VER_25:
3654 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003655 case RTL_GIGA_MAC_VER_27:
3656 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003657 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003658 case RTL_GIGA_MAC_VER_32:
3659 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003660 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3661 break;
3662 }
3663
3664 r8168_phy_power_up(tp);
3665}
3666
Francois Romieud58d46b2011-05-03 16:38:29 +02003667static void rtl_generic_op(struct rtl8169_private *tp,
3668 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00003669{
3670 if (op)
3671 op(tp);
3672}
3673
3674static void rtl_pll_power_down(struct rtl8169_private *tp)
3675{
Francois Romieud58d46b2011-05-03 16:38:29 +02003676 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00003677}
3678
3679static void rtl_pll_power_up(struct rtl8169_private *tp)
3680{
Francois Romieud58d46b2011-05-03 16:38:29 +02003681 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00003682}
3683
3684static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
3685{
3686 struct pll_power_ops *ops = &tp->pll_power_ops;
3687
3688 switch (tp->mac_version) {
3689 case RTL_GIGA_MAC_VER_07:
3690 case RTL_GIGA_MAC_VER_08:
3691 case RTL_GIGA_MAC_VER_09:
3692 case RTL_GIGA_MAC_VER_10:
3693 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08003694 case RTL_GIGA_MAC_VER_29:
3695 case RTL_GIGA_MAC_VER_30:
françois romieu065c27c2011-01-03 15:08:12 +00003696 ops->down = r810x_pll_power_down;
3697 ops->up = r810x_pll_power_up;
3698 break;
3699
3700 case RTL_GIGA_MAC_VER_11:
3701 case RTL_GIGA_MAC_VER_12:
3702 case RTL_GIGA_MAC_VER_17:
3703 case RTL_GIGA_MAC_VER_18:
3704 case RTL_GIGA_MAC_VER_19:
3705 case RTL_GIGA_MAC_VER_20:
3706 case RTL_GIGA_MAC_VER_21:
3707 case RTL_GIGA_MAC_VER_22:
3708 case RTL_GIGA_MAC_VER_23:
3709 case RTL_GIGA_MAC_VER_24:
3710 case RTL_GIGA_MAC_VER_25:
3711 case RTL_GIGA_MAC_VER_26:
3712 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00003713 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003714 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003715 case RTL_GIGA_MAC_VER_32:
3716 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003717 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08003718 case RTL_GIGA_MAC_VER_35:
3719 case RTL_GIGA_MAC_VER_36:
françois romieu065c27c2011-01-03 15:08:12 +00003720 ops->down = r8168_pll_power_down;
3721 ops->up = r8168_pll_power_up;
3722 break;
3723
3724 default:
3725 ops->down = NULL;
3726 ops->up = NULL;
3727 break;
3728 }
3729}
3730
Hayes Wange542a222011-07-06 15:58:04 +08003731static void rtl_init_rxcfg(struct rtl8169_private *tp)
3732{
3733 void __iomem *ioaddr = tp->mmio_addr;
3734
3735 switch (tp->mac_version) {
3736 case RTL_GIGA_MAC_VER_01:
3737 case RTL_GIGA_MAC_VER_02:
3738 case RTL_GIGA_MAC_VER_03:
3739 case RTL_GIGA_MAC_VER_04:
3740 case RTL_GIGA_MAC_VER_05:
3741 case RTL_GIGA_MAC_VER_06:
3742 case RTL_GIGA_MAC_VER_10:
3743 case RTL_GIGA_MAC_VER_11:
3744 case RTL_GIGA_MAC_VER_12:
3745 case RTL_GIGA_MAC_VER_13:
3746 case RTL_GIGA_MAC_VER_14:
3747 case RTL_GIGA_MAC_VER_15:
3748 case RTL_GIGA_MAC_VER_16:
3749 case RTL_GIGA_MAC_VER_17:
3750 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
3751 break;
3752 case RTL_GIGA_MAC_VER_18:
3753 case RTL_GIGA_MAC_VER_19:
3754 case RTL_GIGA_MAC_VER_20:
3755 case RTL_GIGA_MAC_VER_21:
3756 case RTL_GIGA_MAC_VER_22:
3757 case RTL_GIGA_MAC_VER_23:
3758 case RTL_GIGA_MAC_VER_24:
Francois Romieu6418cc42012-06-20 12:09:18 +00003759 case RTL_GIGA_MAC_VER_34:
Hayes Wange542a222011-07-06 15:58:04 +08003760 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
3761 break;
3762 default:
3763 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
3764 break;
3765 }
3766}
3767
Hayes Wang92fc43b2011-07-06 15:58:03 +08003768static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
3769{
3770 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
3771}
3772
Francois Romieud58d46b2011-05-03 16:38:29 +02003773static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
3774{
françois romieu9c5028e2012-03-02 04:43:14 +00003775 void __iomem *ioaddr = tp->mmio_addr;
3776
3777 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02003778 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00003779 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02003780}
3781
3782static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
3783{
françois romieu9c5028e2012-03-02 04:43:14 +00003784 void __iomem *ioaddr = tp->mmio_addr;
3785
3786 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02003787 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00003788 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02003789}
3790
3791static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
3792{
3793 void __iomem *ioaddr = tp->mmio_addr;
3794
3795 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3796 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
3797 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
3798}
3799
3800static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
3801{
3802 void __iomem *ioaddr = tp->mmio_addr;
3803
3804 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3805 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
3806 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
3807}
3808
3809static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
3810{
3811 void __iomem *ioaddr = tp->mmio_addr;
3812
3813 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3814}
3815
3816static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
3817{
3818 void __iomem *ioaddr = tp->mmio_addr;
3819
3820 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3821}
3822
3823static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
3824{
3825 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02003826
3827 RTL_W8(MaxTxPacketSize, 0x3f);
3828 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3829 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01003830 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02003831}
3832
3833static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
3834{
3835 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02003836
3837 RTL_W8(MaxTxPacketSize, 0x0c);
3838 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3839 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01003840 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02003841}
3842
3843static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
3844{
3845 rtl_tx_performance_tweak(tp->pci_dev,
3846 (0x2 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
3847}
3848
3849static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
3850{
3851 rtl_tx_performance_tweak(tp->pci_dev,
3852 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
3853}
3854
3855static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
3856{
3857 void __iomem *ioaddr = tp->mmio_addr;
3858
3859 r8168b_0_hw_jumbo_enable(tp);
3860
3861 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
3862}
3863
3864static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
3865{
3866 void __iomem *ioaddr = tp->mmio_addr;
3867
3868 r8168b_0_hw_jumbo_disable(tp);
3869
3870 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
3871}
3872
3873static void __devinit rtl_init_jumbo_ops(struct rtl8169_private *tp)
3874{
3875 struct jumbo_ops *ops = &tp->jumbo_ops;
3876
3877 switch (tp->mac_version) {
3878 case RTL_GIGA_MAC_VER_11:
3879 ops->disable = r8168b_0_hw_jumbo_disable;
3880 ops->enable = r8168b_0_hw_jumbo_enable;
3881 break;
3882 case RTL_GIGA_MAC_VER_12:
3883 case RTL_GIGA_MAC_VER_17:
3884 ops->disable = r8168b_1_hw_jumbo_disable;
3885 ops->enable = r8168b_1_hw_jumbo_enable;
3886 break;
3887 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
3888 case RTL_GIGA_MAC_VER_19:
3889 case RTL_GIGA_MAC_VER_20:
3890 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
3891 case RTL_GIGA_MAC_VER_22:
3892 case RTL_GIGA_MAC_VER_23:
3893 case RTL_GIGA_MAC_VER_24:
3894 case RTL_GIGA_MAC_VER_25:
3895 case RTL_GIGA_MAC_VER_26:
3896 ops->disable = r8168c_hw_jumbo_disable;
3897 ops->enable = r8168c_hw_jumbo_enable;
3898 break;
3899 case RTL_GIGA_MAC_VER_27:
3900 case RTL_GIGA_MAC_VER_28:
3901 ops->disable = r8168dp_hw_jumbo_disable;
3902 ops->enable = r8168dp_hw_jumbo_enable;
3903 break;
3904 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
3905 case RTL_GIGA_MAC_VER_32:
3906 case RTL_GIGA_MAC_VER_33:
3907 case RTL_GIGA_MAC_VER_34:
3908 ops->disable = r8168e_hw_jumbo_disable;
3909 ops->enable = r8168e_hw_jumbo_enable;
3910 break;
3911
3912 /*
3913 * No action needed for jumbo frames with 8169.
3914 * No jumbo for 810x at all.
3915 */
3916 default:
3917 ops->disable = NULL;
3918 ops->enable = NULL;
3919 break;
3920 }
3921}
3922
Francois Romieu6f43adc2011-04-29 15:05:51 +02003923static void rtl_hw_reset(struct rtl8169_private *tp)
3924{
3925 void __iomem *ioaddr = tp->mmio_addr;
3926 int i;
3927
3928 /* Soft reset the chip. */
3929 RTL_W8(ChipCmd, CmdReset);
3930
3931 /* Check that the chip has finished the reset. */
3932 for (i = 0; i < 100; i++) {
3933 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3934 break;
Hayes Wang92fc43b2011-07-06 15:58:03 +08003935 udelay(100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02003936 }
3937}
3938
Francois Romieub6ffd972011-06-17 17:00:05 +02003939static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
3940{
3941 struct rtl_fw *rtl_fw;
3942 const char *name;
3943 int rc = -ENOMEM;
3944
3945 name = rtl_lookup_firmware_name(tp);
3946 if (!name)
3947 goto out_no_firmware;
3948
3949 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
3950 if (!rtl_fw)
3951 goto err_warn;
3952
3953 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
3954 if (rc < 0)
3955 goto err_free;
3956
Francois Romieufd112f22011-06-18 00:10:29 +02003957 rc = rtl_check_firmware(tp, rtl_fw);
3958 if (rc < 0)
3959 goto err_release_firmware;
3960
Francois Romieub6ffd972011-06-17 17:00:05 +02003961 tp->rtl_fw = rtl_fw;
3962out:
3963 return;
3964
Francois Romieufd112f22011-06-18 00:10:29 +02003965err_release_firmware:
3966 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02003967err_free:
3968 kfree(rtl_fw);
3969err_warn:
3970 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
3971 name, rc);
3972out_no_firmware:
3973 tp->rtl_fw = NULL;
3974 goto out;
3975}
3976
François Romieu953a12c2011-04-24 17:38:48 +02003977static void rtl_request_firmware(struct rtl8169_private *tp)
3978{
Francois Romieub6ffd972011-06-17 17:00:05 +02003979 if (IS_ERR(tp->rtl_fw))
3980 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02003981}
3982
Hayes Wang92fc43b2011-07-06 15:58:03 +08003983static void rtl_rx_close(struct rtl8169_private *tp)
3984{
3985 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08003986
Francois Romieu1687b562011-07-19 17:21:29 +02003987 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08003988}
3989
françois romieue6de30d2011-01-03 15:08:37 +00003990static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991{
françois romieue6de30d2011-01-03 15:08:37 +00003992 void __iomem *ioaddr = tp->mmio_addr;
3993
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00003995 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Hayes Wang92fc43b2011-07-06 15:58:03 +08003997 rtl_rx_close(tp);
3998
Hayes Wang5d2e1952011-02-22 17:26:22 +08003999 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00004000 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4001 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieue6de30d2011-01-03 15:08:37 +00004002 while (RTL_R8(TxPoll) & NPQ)
4003 udelay(20);
Hayes Wangc2218922011-09-06 16:55:18 +08004004 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
4005 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
4006 tp->mac_version == RTL_GIGA_MAC_VER_36) {
David S. Miller8decf862011-09-22 03:23:13 -04004007 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Hayes Wang70090422011-07-06 15:58:06 +08004008 while (!(RTL_R32(TxConfig) & TXCFG_EMPTY))
4009 udelay(100);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004010 } else {
4011 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
4012 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00004013 }
4014
Hayes Wang92fc43b2011-07-06 15:58:03 +08004015 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016}
4017
Francois Romieu7f796d82007-06-11 23:04:41 +02004018static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004019{
4020 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01004021
4022 /* Set DMA burst size and Interframe Gap Time */
4023 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4024 (InterFrameGap << TxInterFrameGapShift));
4025}
4026
Francois Romieu07ce4062007-02-23 23:36:39 +01004027static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028{
4029 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
Francois Romieu07ce4062007-02-23 23:36:39 +01004031 tp->hw_start(dev);
4032
Francois Romieuda78dbf2012-01-26 14:18:23 +01004033 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004034}
4035
Francois Romieu7f796d82007-06-11 23:04:41 +02004036static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
4037 void __iomem *ioaddr)
4038{
4039 /*
4040 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
4041 * register to be written before TxDescAddrLow to work.
4042 * Switching from MMIO to I/O access fixes the issue as well.
4043 */
4044 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004045 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02004046 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004047 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02004048}
4049
4050static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
4051{
4052 u16 cmd;
4053
4054 cmd = RTL_R16(CPlusCmd);
4055 RTL_W16(CPlusCmd, cmd);
4056 return cmd;
4057}
4058
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07004059static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02004060{
4061 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00004062 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02004063}
4064
Francois Romieu6dccd162007-02-13 23:38:05 +01004065static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
4066{
Francois Romieu37441002011-06-17 22:58:54 +02004067 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01004068 u32 mac_version;
4069 u32 clk;
4070 u32 val;
4071 } cfg2_info [] = {
4072 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
4073 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
4074 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
4075 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02004076 };
4077 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01004078 unsigned int i;
4079 u32 clk;
4080
4081 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01004082 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01004083 if ((p->mac_version == mac_version) && (p->clk == clk)) {
4084 RTL_W32(0x7c, p->val);
4085 break;
4086 }
4087 }
4088}
4089
Francois Romieue6b763e2012-03-08 09:35:39 +01004090static void rtl_set_rx_mode(struct net_device *dev)
4091{
4092 struct rtl8169_private *tp = netdev_priv(dev);
4093 void __iomem *ioaddr = tp->mmio_addr;
4094 u32 mc_filter[2]; /* Multicast hash filter */
4095 int rx_mode;
4096 u32 tmp = 0;
4097
4098 if (dev->flags & IFF_PROMISC) {
4099 /* Unconditionally log net taps. */
4100 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
4101 rx_mode =
4102 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4103 AcceptAllPhys;
4104 mc_filter[1] = mc_filter[0] = 0xffffffff;
4105 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
4106 (dev->flags & IFF_ALLMULTI)) {
4107 /* Too many to filter perfectly -- accept all multicasts. */
4108 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4109 mc_filter[1] = mc_filter[0] = 0xffffffff;
4110 } else {
4111 struct netdev_hw_addr *ha;
4112
4113 rx_mode = AcceptBroadcast | AcceptMyPhys;
4114 mc_filter[1] = mc_filter[0] = 0;
4115 netdev_for_each_mc_addr(ha, dev) {
4116 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
4117 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4118 rx_mode |= AcceptMulticast;
4119 }
4120 }
4121
4122 if (dev->features & NETIF_F_RXALL)
4123 rx_mode |= (AcceptErr | AcceptRunt);
4124
4125 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
4126
4127 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
4128 u32 data = mc_filter[0];
4129
4130 mc_filter[0] = swab32(mc_filter[1]);
4131 mc_filter[1] = swab32(data);
4132 }
4133
Nathan Walp1b10e0b2012-11-01 12:08:47 +00004134 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
4135 mc_filter[1] = mc_filter[0] = 0xffffffff;
4136
Francois Romieue6b763e2012-03-08 09:35:39 +01004137 RTL_W32(MAR0 + 4, mc_filter[1]);
4138 RTL_W32(MAR0 + 0, mc_filter[0]);
4139
4140 RTL_W32(RxConfig, tmp);
4141}
4142
Francois Romieu07ce4062007-02-23 23:36:39 +01004143static void rtl_hw_start_8169(struct net_device *dev)
4144{
4145 struct rtl8169_private *tp = netdev_priv(dev);
4146 void __iomem *ioaddr = tp->mmio_addr;
4147 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01004148
Francois Romieu9cb427b2006-11-02 00:10:16 +01004149 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
4150 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
4151 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4152 }
4153
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02004155 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4156 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4157 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4158 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004159 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4160
Hayes Wange542a222011-07-06 15:58:04 +08004161 rtl_init_rxcfg(tp);
4162
françois romieuf0298f82011-01-03 15:07:42 +00004163 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004165 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
Francois Romieucecb5fd2011-04-01 10:21:07 +02004167 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4168 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4169 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4170 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02004171 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
Francois Romieu7f796d82007-06-11 23:04:41 +02004173 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004174
Francois Romieucecb5fd2011-04-01 10:21:07 +02004175 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4176 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02004177 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02004179 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 }
4181
Francois Romieubcf0bf92006-07-26 23:14:13 +02004182 RTL_W16(CPlusCmd, tp->cp_cmd);
4183
Francois Romieu6dccd162007-02-13 23:38:05 +01004184 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
4185
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 /*
4187 * Undocumented corner. Supposedly:
4188 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4189 */
4190 RTL_W16(IntrMitigate, 0x0000);
4191
Francois Romieu7f796d82007-06-11 23:04:41 +02004192 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01004193
Francois Romieucecb5fd2011-04-01 10:21:07 +02004194 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
4195 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
4196 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
4197 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02004198 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4199 rtl_set_rx_tx_config_registers(tp);
4200 }
4201
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02004203
4204 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4205 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
4207 RTL_W32(RxMissed, 0);
4208
Francois Romieu07ce4062007-02-23 23:36:39 +01004209 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
4211 /* no early-rx interrupts */
4212 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01004213}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
françois romieu650e8d52011-01-03 15:08:29 +00004215static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02004216{
4217 u32 csi;
4218
4219 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00004220 rtl_csi_write(ioaddr, 0x070c, csi | bits);
4221}
4222
françois romieue6de30d2011-01-03 15:08:37 +00004223static void rtl_csi_access_enable_1(void __iomem *ioaddr)
4224{
4225 rtl_csi_access_enable(ioaddr, 0x17000000);
4226}
4227
françois romieu650e8d52011-01-03 15:08:29 +00004228static void rtl_csi_access_enable_2(void __iomem *ioaddr)
4229{
4230 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02004231}
4232
4233struct ephy_info {
4234 unsigned int offset;
4235 u16 mask;
4236 u16 bits;
4237};
4238
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004239static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02004240{
4241 u16 w;
4242
4243 while (len-- > 0) {
4244 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
4245 rtl_ephy_write(ioaddr, e->offset, w);
4246 e++;
4247 }
4248}
4249
Francois Romieub726e492008-06-28 12:22:59 +02004250static void rtl_disable_clock_request(struct pci_dev *pdev)
4251{
Jon Masone44daad2011-06-27 07:46:31 +00004252 int cap = pci_pcie_cap(pdev);
Francois Romieub726e492008-06-28 12:22:59 +02004253
4254 if (cap) {
4255 u16 ctl;
4256
4257 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4258 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
4259 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4260 }
4261}
4262
françois romieue6de30d2011-01-03 15:08:37 +00004263static void rtl_enable_clock_request(struct pci_dev *pdev)
4264{
Jon Masone44daad2011-06-27 07:46:31 +00004265 int cap = pci_pcie_cap(pdev);
françois romieue6de30d2011-01-03 15:08:37 +00004266
4267 if (cap) {
4268 u16 ctl;
4269
4270 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4271 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
4272 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4273 }
4274}
4275
Francois Romieub726e492008-06-28 12:22:59 +02004276#define R8168_CPCMD_QUIRK_MASK (\
4277 EnableBist | \
4278 Mac_dbgo_oe | \
4279 Force_half_dup | \
4280 Force_rxflow_en | \
4281 Force_txflow_en | \
4282 Cxpl_dbg_sel | \
4283 ASF | \
4284 PktCntrDisable | \
4285 Mac_dbgo_sel)
4286
Francois Romieu219a1e92008-06-28 11:58:39 +02004287static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
4288{
Francois Romieub726e492008-06-28 12:22:59 +02004289 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4290
4291 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4292
Francois Romieu2e68ae42008-06-28 12:00:55 +02004293 rtl_tx_performance_tweak(pdev,
4294 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02004295}
4296
4297static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
4298{
4299 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02004300
françois romieuf0298f82011-01-03 15:07:42 +00004301 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02004302
4303 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02004304}
4305
4306static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
4307{
Francois Romieub726e492008-06-28 12:22:59 +02004308 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4309
4310 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4311
Francois Romieu219a1e92008-06-28 11:58:39 +02004312 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02004313
4314 rtl_disable_clock_request(pdev);
4315
4316 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02004317}
4318
Francois Romieuef3386f2008-06-29 12:24:30 +02004319static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02004320{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004321 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004322 { 0x01, 0, 0x0001 },
4323 { 0x02, 0x0800, 0x1000 },
4324 { 0x03, 0, 0x0042 },
4325 { 0x06, 0x0080, 0x0000 },
4326 { 0x07, 0, 0x2000 }
4327 };
4328
françois romieu650e8d52011-01-03 15:08:29 +00004329 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004330
4331 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
4332
Francois Romieu219a1e92008-06-28 11:58:39 +02004333 __rtl_hw_start_8168cp(ioaddr, pdev);
4334}
4335
Francois Romieuef3386f2008-06-29 12:24:30 +02004336static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
4337{
françois romieu650e8d52011-01-03 15:08:29 +00004338 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02004339
4340 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4341
4342 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4343
4344 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4345}
4346
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004347static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
4348{
françois romieu650e8d52011-01-03 15:08:29 +00004349 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004350
4351 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4352
4353 /* Magic. */
4354 RTL_W8(DBG_REG, 0x20);
4355
françois romieuf0298f82011-01-03 15:07:42 +00004356 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004357
4358 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4359
4360 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4361}
4362
Francois Romieu219a1e92008-06-28 11:58:39 +02004363static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
4364{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004365 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004366 { 0x02, 0x0800, 0x1000 },
4367 { 0x03, 0, 0x0002 },
4368 { 0x06, 0x0080, 0x0000 }
4369 };
4370
françois romieu650e8d52011-01-03 15:08:29 +00004371 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004372
4373 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
4374
4375 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
4376
Francois Romieu219a1e92008-06-28 11:58:39 +02004377 __rtl_hw_start_8168cp(ioaddr, pdev);
4378}
4379
4380static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
4381{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004382 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004383 { 0x01, 0, 0x0001 },
4384 { 0x03, 0x0400, 0x0220 }
4385 };
4386
françois romieu650e8d52011-01-03 15:08:29 +00004387 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004388
4389 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
4390
Francois Romieu219a1e92008-06-28 11:58:39 +02004391 __rtl_hw_start_8168cp(ioaddr, pdev);
4392}
4393
Francois Romieu197ff762008-06-28 13:16:02 +02004394static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
4395{
4396 rtl_hw_start_8168c_2(ioaddr, pdev);
4397}
4398
Francois Romieu6fb07052008-06-29 11:54:28 +02004399static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
4400{
françois romieu650e8d52011-01-03 15:08:29 +00004401 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02004402
4403 __rtl_hw_start_8168cp(ioaddr, pdev);
4404}
4405
Francois Romieu5b538df2008-07-20 16:22:45 +02004406static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
4407{
françois romieu650e8d52011-01-03 15:08:29 +00004408 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02004409
4410 rtl_disable_clock_request(pdev);
4411
françois romieuf0298f82011-01-03 15:07:42 +00004412 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02004413
4414 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4415
4416 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4417}
4418
hayeswang4804b3b2011-03-21 01:50:29 +00004419static void rtl_hw_start_8168dp(void __iomem *ioaddr, struct pci_dev *pdev)
4420{
4421 rtl_csi_access_enable_1(ioaddr);
4422
4423 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4424
4425 RTL_W8(MaxTxPacketSize, TxPacketMax);
4426
4427 rtl_disable_clock_request(pdev);
4428}
4429
françois romieue6de30d2011-01-03 15:08:37 +00004430static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
4431{
4432 static const struct ephy_info e_info_8168d_4[] = {
4433 { 0x0b, ~0, 0x48 },
4434 { 0x19, 0x20, 0x50 },
4435 { 0x0c, ~0, 0x20 }
4436 };
4437 int i;
4438
4439 rtl_csi_access_enable_1(ioaddr);
4440
4441 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4442
4443 RTL_W8(MaxTxPacketSize, TxPacketMax);
4444
4445 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
4446 const struct ephy_info *e = e_info_8168d_4 + i;
4447 u16 w;
4448
4449 w = rtl_ephy_read(ioaddr, e->offset);
4450 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
4451 }
4452
4453 rtl_enable_clock_request(pdev);
4454}
4455
Hayes Wang70090422011-07-06 15:58:06 +08004456static void rtl_hw_start_8168e_1(void __iomem *ioaddr, struct pci_dev *pdev)
hayeswang01dc7fe2011-03-21 01:50:28 +00004457{
Hayes Wang70090422011-07-06 15:58:06 +08004458 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00004459 { 0x00, 0x0200, 0x0100 },
4460 { 0x00, 0x0000, 0x0004 },
4461 { 0x06, 0x0002, 0x0001 },
4462 { 0x06, 0x0000, 0x0030 },
4463 { 0x07, 0x0000, 0x2000 },
4464 { 0x00, 0x0000, 0x0020 },
4465 { 0x03, 0x5800, 0x2000 },
4466 { 0x03, 0x0000, 0x0001 },
4467 { 0x01, 0x0800, 0x1000 },
4468 { 0x07, 0x0000, 0x4000 },
4469 { 0x1e, 0x0000, 0x2000 },
4470 { 0x19, 0xffff, 0xfe6c },
4471 { 0x0a, 0x0000, 0x0040 }
4472 };
4473
4474 rtl_csi_access_enable_2(ioaddr);
4475
Hayes Wang70090422011-07-06 15:58:06 +08004476 rtl_ephy_init(ioaddr, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00004477
4478 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4479
4480 RTL_W8(MaxTxPacketSize, TxPacketMax);
4481
4482 rtl_disable_clock_request(pdev);
4483
4484 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02004485 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
4486 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00004487
Francois Romieucecb5fd2011-04-01 10:21:07 +02004488 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00004489}
4490
Hayes Wang70090422011-07-06 15:58:06 +08004491static void rtl_hw_start_8168e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4492{
4493 static const struct ephy_info e_info_8168e_2[] = {
4494 { 0x09, 0x0000, 0x0080 },
4495 { 0x19, 0x0000, 0x0224 }
4496 };
4497
4498 rtl_csi_access_enable_1(ioaddr);
4499
4500 rtl_ephy_init(ioaddr, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
4501
4502 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4503
4504 rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4505 rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4506 rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
4507 rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
4508 rtl_eri_write(ioaddr, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
4509 rtl_eri_write(ioaddr, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
4510 rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4511 rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
4512 ERIAR_EXGMAC);
4513
Hayes Wang3090bd92011-09-06 16:55:15 +08004514 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08004515
4516 rtl_disable_clock_request(pdev);
4517
4518 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
4519 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
4520
4521 /* Adjust EEE LED frequency */
4522 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
4523
4524 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
4525 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
4526 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4527}
4528
Hayes Wangc2218922011-09-06 16:55:18 +08004529static void rtl_hw_start_8168f_1(void __iomem *ioaddr, struct pci_dev *pdev)
4530{
4531 static const struct ephy_info e_info_8168f_1[] = {
4532 { 0x06, 0x00c0, 0x0020 },
4533 { 0x08, 0x0001, 0x0002 },
4534 { 0x09, 0x0000, 0x0080 },
4535 { 0x19, 0x0000, 0x0224 }
4536 };
4537
4538 rtl_csi_access_enable_1(ioaddr);
4539
4540 rtl_ephy_init(ioaddr, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
4541
4542 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4543
4544 rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4545 rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4546 rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
4547 rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
4548 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
4549 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
4550 rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4551 rtl_w1w0_eri(ioaddr, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4552 rtl_eri_write(ioaddr, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
4553 rtl_eri_write(ioaddr, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
4554 rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
4555 ERIAR_EXGMAC);
4556
4557 RTL_W8(MaxTxPacketSize, EarlySize);
4558
4559 rtl_disable_clock_request(pdev);
4560
4561 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
4562 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
4563
4564 /* Adjust EEE LED frequency */
4565 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
4566
4567 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
4568 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
4569 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4570}
4571
Francois Romieu07ce4062007-02-23 23:36:39 +01004572static void rtl_hw_start_8168(struct net_device *dev)
4573{
Francois Romieu2dd99532007-06-11 23:22:52 +02004574 struct rtl8169_private *tp = netdev_priv(dev);
4575 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01004576 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02004577
4578 RTL_W8(Cfg9346, Cfg9346_Unlock);
4579
françois romieuf0298f82011-01-03 15:07:42 +00004580 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02004581
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004582 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02004583
Francois Romieu0e485152007-02-20 00:00:26 +01004584 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02004585
4586 RTL_W16(CPlusCmd, tp->cp_cmd);
4587
Francois Romieu0e485152007-02-20 00:00:26 +01004588 RTL_W16(IntrMitigate, 0x5151);
4589
4590 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00004591 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01004592 tp->event_slow |= RxFIFOOver | PCSTimeout;
4593 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01004594 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004595
4596 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4597
Francois Romieub8363902008-06-01 12:31:57 +02004598 rtl_set_rx_mode(dev);
4599
4600 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4601 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02004602
4603 RTL_R8(IntrMask);
4604
Francois Romieu219a1e92008-06-28 11:58:39 +02004605 switch (tp->mac_version) {
4606 case RTL_GIGA_MAC_VER_11:
4607 rtl_hw_start_8168bb(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004608 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004609
4610 case RTL_GIGA_MAC_VER_12:
4611 case RTL_GIGA_MAC_VER_17:
4612 rtl_hw_start_8168bef(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004613 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004614
4615 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02004616 rtl_hw_start_8168cp_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004617 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004618
4619 case RTL_GIGA_MAC_VER_19:
4620 rtl_hw_start_8168c_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004621 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004622
4623 case RTL_GIGA_MAC_VER_20:
4624 rtl_hw_start_8168c_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004625 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004626
Francois Romieu197ff762008-06-28 13:16:02 +02004627 case RTL_GIGA_MAC_VER_21:
4628 rtl_hw_start_8168c_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004629 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004630
Francois Romieu6fb07052008-06-29 11:54:28 +02004631 case RTL_GIGA_MAC_VER_22:
4632 rtl_hw_start_8168c_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004633 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004634
Francois Romieuef3386f2008-06-29 12:24:30 +02004635 case RTL_GIGA_MAC_VER_23:
4636 rtl_hw_start_8168cp_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004637 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004638
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004639 case RTL_GIGA_MAC_VER_24:
4640 rtl_hw_start_8168cp_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004641 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004642
Francois Romieu5b538df2008-07-20 16:22:45 +02004643 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00004644 case RTL_GIGA_MAC_VER_26:
4645 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02004646 rtl_hw_start_8168d(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004647 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004648
françois romieue6de30d2011-01-03 15:08:37 +00004649 case RTL_GIGA_MAC_VER_28:
4650 rtl_hw_start_8168d_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004651 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004652
hayeswang4804b3b2011-03-21 01:50:29 +00004653 case RTL_GIGA_MAC_VER_31:
4654 rtl_hw_start_8168dp(ioaddr, pdev);
4655 break;
4656
hayeswang01dc7fe2011-03-21 01:50:28 +00004657 case RTL_GIGA_MAC_VER_32:
4658 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004659 rtl_hw_start_8168e_1(ioaddr, pdev);
4660 break;
4661 case RTL_GIGA_MAC_VER_34:
4662 rtl_hw_start_8168e_2(ioaddr, pdev);
hayeswang01dc7fe2011-03-21 01:50:28 +00004663 break;
françois romieue6de30d2011-01-03 15:08:37 +00004664
Hayes Wangc2218922011-09-06 16:55:18 +08004665 case RTL_GIGA_MAC_VER_35:
4666 case RTL_GIGA_MAC_VER_36:
4667 rtl_hw_start_8168f_1(ioaddr, pdev);
4668 break;
4669
Francois Romieu219a1e92008-06-28 11:58:39 +02004670 default:
4671 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
4672 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00004673 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004674 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004675
Francois Romieu0e485152007-02-20 00:00:26 +01004676 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4677
Francois Romieub8363902008-06-01 12:31:57 +02004678 RTL_W8(Cfg9346, Cfg9346_Lock);
4679
Francois Romieu2dd99532007-06-11 23:22:52 +02004680 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01004681}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
Francois Romieu2857ffb2008-08-02 21:08:49 +02004683#define R810X_CPCMD_QUIRK_MASK (\
4684 EnableBist | \
4685 Mac_dbgo_oe | \
4686 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00004687 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02004688 Force_txflow_en | \
4689 Cxpl_dbg_sel | \
4690 ASF | \
4691 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004692 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004693
4694static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4695{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004696 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004697 { 0x01, 0, 0x6e65 },
4698 { 0x02, 0, 0x091f },
4699 { 0x03, 0, 0xc2f9 },
4700 { 0x06, 0, 0xafb5 },
4701 { 0x07, 0, 0x0e00 },
4702 { 0x19, 0, 0xec80 },
4703 { 0x01, 0, 0x2e65 },
4704 { 0x01, 0, 0x6e65 }
4705 };
4706 u8 cfg1;
4707
françois romieu650e8d52011-01-03 15:08:29 +00004708 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004709
4710 RTL_W8(DBG_REG, FIX_NAK_1);
4711
4712 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4713
4714 RTL_W8(Config1,
4715 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
4716 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4717
4718 cfg1 = RTL_R8(Config1);
4719 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
4720 RTL_W8(Config1, cfg1 & ~LEDS0);
4721
Francois Romieu2857ffb2008-08-02 21:08:49 +02004722 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
4723}
4724
4725static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4726{
françois romieu650e8d52011-01-03 15:08:29 +00004727 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004728
4729 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4730
4731 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
4732 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004733}
4734
4735static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
4736{
4737 rtl_hw_start_8102e_2(ioaddr, pdev);
4738
4739 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
4740}
4741
Hayes Wang5a5e4442011-02-22 17:26:21 +08004742static void rtl_hw_start_8105e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4743{
4744 static const struct ephy_info e_info_8105e_1[] = {
4745 { 0x07, 0, 0x4000 },
4746 { 0x19, 0, 0x0200 },
4747 { 0x19, 0, 0x0020 },
4748 { 0x1e, 0, 0x2000 },
4749 { 0x03, 0, 0x0001 },
4750 { 0x19, 0, 0x0100 },
4751 { 0x19, 0, 0x0004 },
4752 { 0x0a, 0, 0x0020 }
4753 };
4754
Francois Romieucecb5fd2011-04-01 10:21:07 +02004755 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08004756 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
4757
Francois Romieucecb5fd2011-04-01 10:21:07 +02004758 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08004759 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
4760
4761 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e2011-07-06 15:58:02 +08004762 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004763
4764 rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
4765}
4766
4767static void rtl_hw_start_8105e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4768{
4769 rtl_hw_start_8105e_1(ioaddr, pdev);
4770 rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
4771}
4772
Francois Romieu07ce4062007-02-23 23:36:39 +01004773static void rtl_hw_start_8101(struct net_device *dev)
4774{
Francois Romieucdf1a602007-06-11 23:29:50 +02004775 struct rtl8169_private *tp = netdev_priv(dev);
4776 void __iomem *ioaddr = tp->mmio_addr;
4777 struct pci_dev *pdev = tp->pci_dev;
4778
Francois Romieuda78dbf2012-01-26 14:18:23 +01004779 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
4780 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00004781
Francois Romieucecb5fd2011-04-01 10:21:07 +02004782 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
4783 tp->mac_version == RTL_GIGA_MAC_VER_16) {
Jon Masone44daad2011-06-27 07:46:31 +00004784 int cap = pci_pcie_cap(pdev);
Francois Romieu9c14cea2008-07-05 00:21:15 +02004785
4786 if (cap) {
4787 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
4788 PCI_EXP_DEVCTL_NOSNOOP_EN);
4789 }
Francois Romieucdf1a602007-06-11 23:29:50 +02004790 }
4791
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004792 RTL_W8(Cfg9346, Cfg9346_Unlock);
4793
Francois Romieu2857ffb2008-08-02 21:08:49 +02004794 switch (tp->mac_version) {
4795 case RTL_GIGA_MAC_VER_07:
4796 rtl_hw_start_8102e_1(ioaddr, pdev);
4797 break;
4798
4799 case RTL_GIGA_MAC_VER_08:
4800 rtl_hw_start_8102e_3(ioaddr, pdev);
4801 break;
4802
4803 case RTL_GIGA_MAC_VER_09:
4804 rtl_hw_start_8102e_2(ioaddr, pdev);
4805 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004806
4807 case RTL_GIGA_MAC_VER_29:
4808 rtl_hw_start_8105e_1(ioaddr, pdev);
4809 break;
4810 case RTL_GIGA_MAC_VER_30:
4811 rtl_hw_start_8105e_2(ioaddr, pdev);
4812 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02004813 }
4814
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004815 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02004816
françois romieuf0298f82011-01-03 15:07:42 +00004817 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02004818
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004819 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02004820
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004821 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02004822 RTL_W16(CPlusCmd, tp->cp_cmd);
4823
4824 RTL_W16(IntrMitigate, 0x0000);
4825
4826 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4827
4828 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4829 rtl_set_rx_tx_config_registers(tp);
4830
Francois Romieucdf1a602007-06-11 23:29:50 +02004831 RTL_R8(IntrMask);
4832
Francois Romieucdf1a602007-06-11 23:29:50 +02004833 rtl_set_rx_mode(dev);
4834
4835 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836}
4837
4838static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
4839{
Francois Romieud58d46b2011-05-03 16:38:29 +02004840 struct rtl8169_private *tp = netdev_priv(dev);
4841
4842 if (new_mtu < ETH_ZLEN ||
4843 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 return -EINVAL;
4845
Francois Romieud58d46b2011-05-03 16:38:29 +02004846 if (new_mtu > ETH_DATA_LEN)
4847 rtl_hw_jumbo_enable(tp);
4848 else
4849 rtl_hw_jumbo_disable(tp);
4850
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00004852 netdev_update_features(dev);
4853
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004854 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855}
4856
4857static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
4858{
Al Viro95e09182007-12-22 18:55:39 +00004859 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
4861}
4862
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004863static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
4864 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004866 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004867 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004868
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004869 kfree(*data_buff);
4870 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 rtl8169_make_unusable_by_asic(desc);
4872}
4873
4874static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
4875{
4876 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
4877
4878 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
4879}
4880
4881static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
4882 u32 rx_buf_sz)
4883{
4884 desc->addr = cpu_to_le64(mapping);
4885 wmb();
4886 rtl8169_mark_to_asic(desc, rx_buf_sz);
4887}
4888
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004889static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004891 return (void *)ALIGN((long)data, 16);
4892}
4893
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004894static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
4895 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004896{
4897 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004899 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004900 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004901 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004903 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
4904 if (!data)
4905 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004906
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004907 if (rtl8169_align(data) != data) {
4908 kfree(data);
4909 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4910 if (!data)
4911 return NULL;
4912 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004913
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004914 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004915 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004916 if (unlikely(dma_mapping_error(d, mapping))) {
4917 if (net_ratelimit())
4918 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004919 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
4922 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004923 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004924
4925err_out:
4926 kfree(data);
4927 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928}
4929
4930static void rtl8169_rx_clear(struct rtl8169_private *tp)
4931{
Francois Romieu07d3f512007-02-21 22:40:46 +01004932 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933
4934 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004935 if (tp->Rx_databuff[i]) {
4936 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 tp->RxDescArray + i);
4938 }
4939 }
4940}
4941
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004942static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004944 desc->opts1 |= cpu_to_le32(RingEnd);
4945}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004946
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004947static int rtl8169_rx_fill(struct rtl8169_private *tp)
4948{
4949 unsigned int i;
4950
4951 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004952 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004953
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004954 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004956
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004957 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004958 if (!data) {
4959 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004960 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004961 }
4962 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004965 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4966 return 0;
4967
4968err_out:
4969 rtl8169_rx_clear(tp);
4970 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971}
4972
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973static int rtl8169_init_ring(struct net_device *dev)
4974{
4975 struct rtl8169_private *tp = netdev_priv(dev);
4976
4977 rtl8169_init_ring_indexes(tp);
4978
4979 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004980 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004982 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983}
4984
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004985static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 struct TxDesc *desc)
4987{
4988 unsigned int len = tx_skb->len;
4989
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004990 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4991
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 desc->opts1 = 0x00;
4993 desc->opts2 = 0x00;
4994 desc->addr = 0x00;
4995 tx_skb->len = 0;
4996}
4997
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004998static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4999 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000{
5001 unsigned int i;
5002
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005003 for (i = 0; i < n; i++) {
5004 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 struct ring_info *tx_skb = tp->tx_skb + entry;
5006 unsigned int len = tx_skb->len;
5007
5008 if (len) {
5009 struct sk_buff *skb = tx_skb->skb;
5010
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005011 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 tp->TxDescArray + entry);
5013 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00005014 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 dev_kfree_skb(skb);
5016 tx_skb->skb = NULL;
5017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 }
5019 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005020}
5021
5022static void rtl8169_tx_clear(struct rtl8169_private *tp)
5023{
5024 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 tp->cur_tx = tp->dirty_tx = 0;
5026}
5027
Francois Romieu4422bcd2012-01-26 11:23:32 +01005028static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029{
David Howellsc4028952006-11-22 14:57:56 +00005030 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01005031 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032
Francois Romieuda78dbf2012-01-26 14:18:23 +01005033 napi_disable(&tp->napi);
5034 netif_stop_queue(dev);
5035 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
françois romieuc7c2c392011-12-04 20:30:52 +00005037 rtl8169_hw_reset(tp);
5038
Francois Romieu56de4142011-03-15 17:29:31 +01005039 for (i = 0; i < NUM_RX_DESC; i++)
5040 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
5041
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00005043 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044
Francois Romieuda78dbf2012-01-26 14:18:23 +01005045 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01005046 rtl_hw_start(dev);
5047 netif_wake_queue(dev);
5048 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049}
5050
5051static void rtl8169_tx_timeout(struct net_device *dev)
5052{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005053 struct rtl8169_private *tp = netdev_priv(dev);
5054
5055 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056}
5057
5058static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07005059 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060{
5061 struct skb_shared_info *info = skb_shinfo(skb);
5062 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04005063 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005064 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065
5066 entry = tp->cur_tx;
5067 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00005068 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 dma_addr_t mapping;
5070 u32 status, len;
5071 void *addr;
5072
5073 entry = (entry + 1) % NUM_TX_DESC;
5074
5075 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00005076 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00005077 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005078 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005079 if (unlikely(dma_mapping_error(d, mapping))) {
5080 if (net_ratelimit())
5081 netif_err(tp, drv, tp->dev,
5082 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005083 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085
Francois Romieucecb5fd2011-04-01 10:21:07 +02005086 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005087 status = opts[0] | len |
5088 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
5090 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07005091 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 txd->addr = cpu_to_le64(mapping);
5093
5094 tp->tx_skb[entry].len = len;
5095 }
5096
5097 if (cur_frag) {
5098 tp->tx_skb[entry].skb = skb;
5099 txd->opts1 |= cpu_to_le32(LastFrag);
5100 }
5101
5102 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005103
5104err_out:
5105 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
5106 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107}
5108
Francois Romieu2b7b4312011-04-18 22:53:24 -07005109static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
5110 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111{
Francois Romieu2b7b4312011-04-18 22:53:24 -07005112 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00005113 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005114 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115
Francois Romieu2b7b4312011-04-18 22:53:24 -07005116 if (mss) {
5117 opts[0] |= TD_LSO;
5118 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
5119 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005120 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
5122 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005123 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005125 opts[offset] |= info->checksum.udp;
5126 else
5127 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129}
5130
Stephen Hemminger613573252009-08-31 19:50:58 +00005131static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
5132 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133{
5134 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005135 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136 struct TxDesc *txd = tp->TxDescArray + entry;
5137 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005138 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 dma_addr_t mapping;
5140 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005141 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005142 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02005143
Julien Ducourthial477206a2012-05-09 00:00:06 +02005144 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005145 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005146 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147 }
5148
5149 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005150 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005152 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005153 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005154 if (unlikely(dma_mapping_error(d, mapping))) {
5155 if (net_ratelimit())
5156 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005157 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159
5160 tp->tx_skb[entry].len = len;
5161 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162
Francois Romieu2b7b4312011-04-18 22:53:24 -07005163 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
5164 opts[0] = DescOwn;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005165
Francois Romieu2b7b4312011-04-18 22:53:24 -07005166 rtl8169_tso_csum(tp, skb, opts);
5167
5168 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005169 if (frags < 0)
5170 goto err_dma_1;
5171 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005172 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005173 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07005174 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005175 tp->tx_skb[entry].skb = skb;
5176 }
5177
Francois Romieu2b7b4312011-04-18 22:53:24 -07005178 txd->opts2 = cpu_to_le32(opts[1]);
5179
Richard Cochran5047fb52012-03-10 07:29:42 +00005180 skb_tx_timestamp(skb);
5181
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 wmb();
5183
Francois Romieucecb5fd2011-04-01 10:21:07 +02005184 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005185 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 txd->opts1 = cpu_to_le32(status);
5187
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 tp->cur_tx += frags + 1;
5189
David Dillow4c020a92010-03-03 16:33:10 +00005190 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191
Francois Romieucecb5fd2011-04-01 10:21:07 +02005192 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193
Francois Romieuda78dbf2012-01-26 14:18:23 +01005194 mmiowb();
5195
Julien Ducourthial477206a2012-05-09 00:00:06 +02005196 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01005197 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
5198 * not miss a ring update when it notices a stopped queue.
5199 */
5200 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01005202 /* Sync with rtl_tx:
5203 * - publish queue status and cur_tx ring index (write barrier)
5204 * - refresh dirty_tx ring index (read barrier).
5205 * May the current thread have a pessimistic view of the ring
5206 * status and forget to wake up queue, a racing rtl_tx thread
5207 * can't.
5208 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005209 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02005210 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 netif_wake_queue(dev);
5212 }
5213
Stephen Hemminger613573252009-08-31 19:50:58 +00005214 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005216err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005217 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005218err_dma_0:
5219 dev_kfree_skb(skb);
5220 dev->stats.tx_dropped++;
5221 return NETDEV_TX_OK;
5222
5223err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005225 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00005226 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227}
5228
5229static void rtl8169_pcierr_interrupt(struct net_device *dev)
5230{
5231 struct rtl8169_private *tp = netdev_priv(dev);
5232 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 u16 pci_status, pci_cmd;
5234
5235 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
5236 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
5237
Joe Perchesbf82c182010-02-09 11:49:50 +00005238 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
5239 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240
5241 /*
5242 * The recovery sequence below admits a very elaborated explanation:
5243 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01005244 * - I did not see what else could be done;
5245 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 *
5247 * Feel free to adjust to your needs.
5248 */
Francois Romieua27993f2006-12-18 00:04:19 +01005249 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01005250 pci_cmd &= ~PCI_COMMAND_PARITY;
5251 else
5252 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
5253
5254 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255
5256 pci_write_config_word(pdev, PCI_STATUS,
5257 pci_status & (PCI_STATUS_DETECTED_PARITY |
5258 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
5259 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
5260
5261 /* The infamous DAC f*ckup only happens at boot time */
5262 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00005263 void __iomem *ioaddr = tp->mmio_addr;
5264
Joe Perchesbf82c182010-02-09 11:49:50 +00005265 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 tp->cp_cmd &= ~PCIDAC;
5267 RTL_W16(CPlusCmd, tp->cp_cmd);
5268 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269 }
5270
françois romieue6de30d2011-01-03 15:08:37 +00005271 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01005272
Francois Romieu98ddf982012-01-31 10:47:34 +01005273 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274}
5275
Francois Romieuda78dbf2012-01-26 14:18:23 +01005276static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277{
5278 unsigned int dirty_tx, tx_left;
5279
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 dirty_tx = tp->dirty_tx;
5281 smp_rmb();
5282 tx_left = tp->cur_tx - dirty_tx;
5283
5284 while (tx_left > 0) {
5285 unsigned int entry = dirty_tx % NUM_TX_DESC;
5286 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 u32 status;
5288
5289 rmb();
5290 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
5291 if (status & DescOwn)
5292 break;
5293
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005294 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
5295 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 if (status & LastFrag) {
Francois Romieuf63b1d92012-07-23 22:55:55 +02005297 u64_stats_update_begin(&tp->tx_stats.syncp);
5298 tp->tx_stats.packets++;
5299 tp->tx_stats.bytes += tx_skb->skb->len;
5300 u64_stats_update_end(&tp->tx_stats.syncp);
5301 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302 tx_skb->skb = NULL;
5303 }
5304 dirty_tx++;
5305 tx_left--;
5306 }
5307
5308 if (tp->dirty_tx != dirty_tx) {
5309 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01005310 /* Sync with rtl8169_start_xmit:
5311 * - publish dirty_tx ring index (write barrier)
5312 * - refresh cur_tx ring index and queue status (read barrier)
5313 * May the current thread miss the stopped queue condition,
5314 * a racing xmit thread can only have a right view of the
5315 * ring status.
5316 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005317 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02005319 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 netif_wake_queue(dev);
5321 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02005322 /*
5323 * 8168 hack: TxPoll requests are lost when the Tx packets are
5324 * too close. Let's kick an extra TxPoll request when a burst
5325 * of start_xmit activity is detected (if it is not detected,
5326 * it is slow enough). -- FR
5327 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005328 if (tp->cur_tx != dirty_tx) {
5329 void __iomem *ioaddr = tp->mmio_addr;
5330
Francois Romieud78ae2d2007-08-26 20:08:19 +02005331 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 }
5334}
5335
Francois Romieu126fa4b2005-05-12 20:09:17 -04005336static inline int rtl8169_fragmented_frame(u32 status)
5337{
5338 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
5339}
5340
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005341static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 u32 status = opts1 & RxProtoMask;
5344
5345 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00005346 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 skb->ip_summed = CHECKSUM_UNNECESSARY;
5348 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005349 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350}
5351
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005352static struct sk_buff *rtl8169_try_rx_copy(void *data,
5353 struct rtl8169_private *tp,
5354 int pkt_size,
5355 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02005357 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005358 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005360 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005361 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005362 prefetch(data);
5363 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
5364 if (skb)
5365 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005366 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
5367
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005368 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369}
5370
Francois Romieuda78dbf2012-01-26 14:18:23 +01005371static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372{
5373 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005374 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 cur_rx = tp->cur_rx;
5377 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02005378 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005380 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005382 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 u32 status;
5384
5385 rmb();
David S. Miller8decf862011-09-22 03:23:13 -04005386 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387
5388 if (status & DescOwn)
5389 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005390 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005391 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
5392 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005393 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02005395 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02005397 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005398 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01005399 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005400 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005401 }
Ben Greear6bbe0212012-02-10 15:04:33 +00005402 if ((status & (RxRUNT | RxCRC)) &&
5403 !(status & (RxRWT | RxFOVF)) &&
5404 (dev->features & NETIF_F_RXALL))
5405 goto process_pkt;
5406
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005407 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005409 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00005410 dma_addr_t addr;
5411 int pkt_size;
5412
5413process_pkt:
5414 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00005415 if (likely(!(dev->features & NETIF_F_RXFCS)))
5416 pkt_size = (status & 0x00003fff) - 4;
5417 else
5418 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419
Francois Romieu126fa4b2005-05-12 20:09:17 -04005420 /*
5421 * The driver does not support incoming fragmented
5422 * frames. They are seen as a symptom of over-mtu
5423 * sized frames.
5424 */
5425 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02005426 dev->stats.rx_dropped++;
5427 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005428 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005429 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005430 }
5431
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005432 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
5433 tp, pkt_size, addr);
5434 rtl8169_mark_to_asic(desc, rx_buf_sz);
5435 if (!skb) {
5436 dev->stats.rx_dropped++;
5437 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438 }
5439
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005440 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 skb_put(skb, pkt_size);
5442 skb->protocol = eth_type_trans(skb, dev);
5443
Francois Romieu7a8fc772011-03-01 17:18:33 +01005444 rtl8169_rx_vlan_tag(desc, skb);
5445
Francois Romieu56de4142011-03-15 17:29:31 +01005446 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447
Junchang Wang8027aa22012-03-04 23:30:32 +01005448 u64_stats_update_begin(&tp->rx_stats.syncp);
5449 tp->rx_stats.packets++;
5450 tp->rx_stats.bytes += pkt_size;
5451 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452 }
Francois Romieu6dccd162007-02-13 23:38:05 +01005453
5454 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00005455 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01005456 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
5457 desc->opts2 = 0;
5458 cur_rx++;
5459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 }
5461
5462 count = cur_rx - tp->cur_rx;
5463 tp->cur_rx = cur_rx;
5464
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005465 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466
5467 return count;
5468}
5469
Francois Romieu07d3f512007-02-21 22:40:46 +01005470static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471{
Francois Romieu07d3f512007-02-21 22:40:46 +01005472 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 int handled = 0;
Francois Romieu9085cdf2012-01-26 12:59:08 +01005475 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476
Francois Romieu9085cdf2012-01-26 12:59:08 +01005477 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005478 if (status && status != 0xffff) {
5479 status &= RTL_EVENT_NAPI | tp->event_slow;
5480 if (status) {
5481 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00005482
Francois Romieuda78dbf2012-01-26 14:18:23 +01005483 rtl_irq_disable(tp);
5484 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 return IRQ_RETVAL(handled);
5488}
5489
Francois Romieuda78dbf2012-01-26 14:18:23 +01005490/*
5491 * Workqueue context.
5492 */
5493static void rtl_slow_event_work(struct rtl8169_private *tp)
5494{
5495 struct net_device *dev = tp->dev;
5496 u16 status;
5497
5498 status = rtl_get_events(tp) & tp->event_slow;
5499 rtl_ack_events(tp, status);
5500
5501 if (unlikely(status & RxFIFOOver)) {
5502 switch (tp->mac_version) {
5503 /* Work around for rx fifo overflow */
5504 case RTL_GIGA_MAC_VER_11:
5505 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01005506 /* XXX - Hack alert. See rtl_task(). */
5507 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005508 default:
5509 break;
5510 }
5511 }
5512
5513 if (unlikely(status & SYSErr))
5514 rtl8169_pcierr_interrupt(dev);
5515
5516 if (status & LinkChg)
5517 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
5518
5519 napi_disable(&tp->napi);
5520 rtl_irq_disable(tp);
5521
5522 napi_enable(&tp->napi);
5523 napi_schedule(&tp->napi);
5524}
5525
Francois Romieu4422bcd2012-01-26 11:23:32 +01005526static void rtl_task(struct work_struct *work)
5527{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005528 static const struct {
5529 int bitnr;
5530 void (*action)(struct rtl8169_private *);
5531 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01005532 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005533 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
5534 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
5535 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
5536 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01005537 struct rtl8169_private *tp =
5538 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005539 struct net_device *dev = tp->dev;
5540 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01005541
Francois Romieuda78dbf2012-01-26 14:18:23 +01005542 rtl_lock_work(tp);
5543
Francois Romieu6c4a70c2012-01-31 10:56:44 +01005544 if (!netif_running(dev) ||
5545 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01005546 goto out_unlock;
5547
5548 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
5549 bool pending;
5550
Francois Romieuda78dbf2012-01-26 14:18:23 +01005551 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005552 if (pending)
5553 rtl_work[i].action(tp);
5554 }
5555
5556out_unlock:
5557 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01005558}
5559
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005560static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005562 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
5563 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01005564 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
5565 int work_done= 0;
5566 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
Francois Romieuda78dbf2012-01-26 14:18:23 +01005568 status = rtl_get_events(tp);
5569 rtl_ack_events(tp, status & ~tp->event_slow);
5570
5571 if (status & RTL_EVENT_NAPI_RX)
5572 work_done = rtl_rx(dev, tp, (u32) budget);
5573
5574 if (status & RTL_EVENT_NAPI_TX)
5575 rtl_tx(dev, tp);
5576
5577 if (status & tp->event_slow) {
5578 enable_mask &= ~tp->event_slow;
5579
5580 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
5581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005583 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005584 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00005585
Francois Romieuda78dbf2012-01-26 14:18:23 +01005586 rtl_irq_enable(tp, enable_mask);
5587 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 }
5589
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005590 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
Francois Romieu523a6092008-09-10 22:28:56 +02005593static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
5594{
5595 struct rtl8169_private *tp = netdev_priv(dev);
5596
5597 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
5598 return;
5599
5600 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
5601 RTL_W32(RxMissed, 0);
5602}
5603
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604static void rtl8169_down(struct net_device *dev)
5605{
5606 struct rtl8169_private *tp = netdev_priv(dev);
5607 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
Francois Romieu4876cc12011-03-11 21:07:11 +01005609 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005611 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005612 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613
Hayes Wang92fc43b2011-07-06 15:58:03 +08005614 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005615 /*
5616 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01005617 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
5618 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005619 */
Francois Romieu523a6092008-09-10 22:28:56 +02005620 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005623 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625 rtl8169_tx_clear(tp);
5626
5627 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00005628
5629 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630}
5631
5632static int rtl8169_close(struct net_device *dev)
5633{
5634 struct rtl8169_private *tp = netdev_priv(dev);
5635 struct pci_dev *pdev = tp->pci_dev;
5636
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005637 pm_runtime_get_sync(&pdev->dev);
5638
Francois Romieucecb5fd2011-04-01 10:21:07 +02005639 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08005640 rtl8169_update_counters(dev);
5641
Francois Romieuda78dbf2012-01-26 14:18:23 +01005642 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01005643 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005644
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005646 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647
Francois Romieu92a7c4e2012-03-10 10:42:12 +01005648 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00005650 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
5651 tp->RxPhyAddr);
5652 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
5653 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654 tp->TxDescArray = NULL;
5655 tp->RxDescArray = NULL;
5656
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005657 pm_runtime_put_sync(&pdev->dev);
5658
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659 return 0;
5660}
5661
Francois Romieudc1c00c2012-03-08 10:06:18 +01005662#ifdef CONFIG_NET_POLL_CONTROLLER
5663static void rtl8169_netpoll(struct net_device *dev)
5664{
5665 struct rtl8169_private *tp = netdev_priv(dev);
5666
5667 rtl8169_interrupt(tp->pci_dev->irq, dev);
5668}
5669#endif
5670
Francois Romieudf43ac72012-03-08 09:48:40 +01005671static int rtl_open(struct net_device *dev)
5672{
5673 struct rtl8169_private *tp = netdev_priv(dev);
5674 void __iomem *ioaddr = tp->mmio_addr;
5675 struct pci_dev *pdev = tp->pci_dev;
5676 int retval = -ENOMEM;
5677
5678 pm_runtime_get_sync(&pdev->dev);
5679
5680 /*
5681 * Rx and Tx desscriptors needs 256 bytes alignment.
5682 * dma_alloc_coherent provides more.
5683 */
5684 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
5685 &tp->TxPhyAddr, GFP_KERNEL);
5686 if (!tp->TxDescArray)
5687 goto err_pm_runtime_put;
5688
5689 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
5690 &tp->RxPhyAddr, GFP_KERNEL);
5691 if (!tp->RxDescArray)
5692 goto err_free_tx_0;
5693
5694 retval = rtl8169_init_ring(dev);
5695 if (retval < 0)
5696 goto err_free_rx_1;
5697
5698 INIT_WORK(&tp->wk.work, rtl_task);
5699
5700 smp_mb();
5701
5702 rtl_request_firmware(tp);
5703
Francois Romieu92a7c4e2012-03-10 10:42:12 +01005704 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01005705 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
5706 dev->name, dev);
5707 if (retval < 0)
5708 goto err_release_fw_2;
5709
5710 rtl_lock_work(tp);
5711
5712 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
5713
5714 napi_enable(&tp->napi);
5715
5716 rtl8169_init_phy(dev, tp);
5717
5718 __rtl8169_set_features(dev, dev->features);
5719
5720 rtl_pll_power_up(tp);
5721
5722 rtl_hw_start(dev);
5723
5724 netif_start_queue(dev);
5725
5726 rtl_unlock_work(tp);
5727
5728 tp->saved_wolopts = 0;
5729 pm_runtime_put_noidle(&pdev->dev);
5730
5731 rtl8169_check_link_status(dev, tp, ioaddr);
5732out:
5733 return retval;
5734
5735err_release_fw_2:
5736 rtl_release_firmware(tp);
5737 rtl8169_rx_clear(tp);
5738err_free_rx_1:
5739 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
5740 tp->RxPhyAddr);
5741 tp->RxDescArray = NULL;
5742err_free_tx_0:
5743 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
5744 tp->TxPhyAddr);
5745 tp->TxDescArray = NULL;
5746err_pm_runtime_put:
5747 pm_runtime_put_noidle(&pdev->dev);
5748 goto out;
5749}
5750
Junchang Wang8027aa22012-03-04 23:30:32 +01005751static struct rtnl_link_stats64 *
5752rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753{
5754 struct rtl8169_private *tp = netdev_priv(dev);
5755 void __iomem *ioaddr = tp->mmio_addr;
Junchang Wang8027aa22012-03-04 23:30:32 +01005756 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
Francois Romieuda78dbf2012-01-26 14:18:23 +01005758 if (netif_running(dev))
Francois Romieu523a6092008-09-10 22:28:56 +02005759 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02005760
Junchang Wang8027aa22012-03-04 23:30:32 +01005761 do {
5762 start = u64_stats_fetch_begin_bh(&tp->rx_stats.syncp);
5763 stats->rx_packets = tp->rx_stats.packets;
5764 stats->rx_bytes = tp->rx_stats.bytes;
5765 } while (u64_stats_fetch_retry_bh(&tp->rx_stats.syncp, start));
5766
5767
5768 do {
5769 start = u64_stats_fetch_begin_bh(&tp->tx_stats.syncp);
5770 stats->tx_packets = tp->tx_stats.packets;
5771 stats->tx_bytes = tp->tx_stats.bytes;
5772 } while (u64_stats_fetch_retry_bh(&tp->tx_stats.syncp, start));
5773
5774 stats->rx_dropped = dev->stats.rx_dropped;
5775 stats->tx_dropped = dev->stats.tx_dropped;
5776 stats->rx_length_errors = dev->stats.rx_length_errors;
5777 stats->rx_errors = dev->stats.rx_errors;
5778 stats->rx_crc_errors = dev->stats.rx_crc_errors;
5779 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
5780 stats->rx_missed_errors = dev->stats.rx_missed_errors;
5781
5782 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783}
5784
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005785static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01005786{
françois romieu065c27c2011-01-03 15:08:12 +00005787 struct rtl8169_private *tp = netdev_priv(dev);
5788
Francois Romieu5d06a992006-02-23 00:47:58 +01005789 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005790 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01005791
5792 netif_device_detach(dev);
5793 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005794
5795 rtl_lock_work(tp);
5796 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01005797 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005798 rtl_unlock_work(tp);
5799
5800 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005801}
Francois Romieu5d06a992006-02-23 00:47:58 +01005802
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005803#ifdef CONFIG_PM
5804
5805static int rtl8169_suspend(struct device *device)
5806{
5807 struct pci_dev *pdev = to_pci_dev(device);
5808 struct net_device *dev = pci_get_drvdata(pdev);
5809
5810 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02005811
Francois Romieu5d06a992006-02-23 00:47:58 +01005812 return 0;
5813}
5814
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005815static void __rtl8169_resume(struct net_device *dev)
5816{
françois romieu065c27c2011-01-03 15:08:12 +00005817 struct rtl8169_private *tp = netdev_priv(dev);
5818
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005819 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00005820
5821 rtl_pll_power_up(tp);
5822
Artem Savkovcff4c162012-04-03 10:29:11 +00005823 rtl_lock_work(tp);
5824 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01005825 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00005826 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005827
Francois Romieu98ddf982012-01-31 10:47:34 +01005828 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005829}
5830
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005831static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01005832{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005833 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01005834 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005835 struct rtl8169_private *tp = netdev_priv(dev);
5836
5837 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01005838
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005839 if (netif_running(dev))
5840 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01005841
Francois Romieu5d06a992006-02-23 00:47:58 +01005842 return 0;
5843}
5844
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005845static int rtl8169_runtime_suspend(struct device *device)
5846{
5847 struct pci_dev *pdev = to_pci_dev(device);
5848 struct net_device *dev = pci_get_drvdata(pdev);
5849 struct rtl8169_private *tp = netdev_priv(dev);
5850
5851 if (!tp->TxDescArray)
5852 return 0;
5853
Francois Romieuda78dbf2012-01-26 14:18:23 +01005854 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005855 tp->saved_wolopts = __rtl8169_get_wol(tp);
5856 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005857 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005858
5859 rtl8169_net_suspend(dev);
5860
5861 return 0;
5862}
5863
5864static int rtl8169_runtime_resume(struct device *device)
5865{
5866 struct pci_dev *pdev = to_pci_dev(device);
5867 struct net_device *dev = pci_get_drvdata(pdev);
5868 struct rtl8169_private *tp = netdev_priv(dev);
5869
5870 if (!tp->TxDescArray)
5871 return 0;
5872
Francois Romieuda78dbf2012-01-26 14:18:23 +01005873 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005874 __rtl8169_set_wol(tp, tp->saved_wolopts);
5875 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01005876 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005877
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005878 rtl8169_init_phy(dev, tp);
5879
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005880 __rtl8169_resume(dev);
5881
5882 return 0;
5883}
5884
5885static int rtl8169_runtime_idle(struct device *device)
5886{
5887 struct pci_dev *pdev = to_pci_dev(device);
5888 struct net_device *dev = pci_get_drvdata(pdev);
5889 struct rtl8169_private *tp = netdev_priv(dev);
5890
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005891 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005892}
5893
Alexey Dobriyan47145212009-12-14 18:00:08 -08005894static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02005895 .suspend = rtl8169_suspend,
5896 .resume = rtl8169_resume,
5897 .freeze = rtl8169_suspend,
5898 .thaw = rtl8169_resume,
5899 .poweroff = rtl8169_suspend,
5900 .restore = rtl8169_resume,
5901 .runtime_suspend = rtl8169_runtime_suspend,
5902 .runtime_resume = rtl8169_runtime_resume,
5903 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005904};
5905
5906#define RTL8169_PM_OPS (&rtl8169_pm_ops)
5907
5908#else /* !CONFIG_PM */
5909
5910#define RTL8169_PM_OPS NULL
5911
5912#endif /* !CONFIG_PM */
5913
David S. Miller1805b2f2011-10-24 18:18:09 -04005914static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
5915{
5916 void __iomem *ioaddr = tp->mmio_addr;
5917
5918 /* WoL fails with 8168b when the receiver is disabled. */
5919 switch (tp->mac_version) {
5920 case RTL_GIGA_MAC_VER_11:
5921 case RTL_GIGA_MAC_VER_12:
5922 case RTL_GIGA_MAC_VER_17:
5923 pci_clear_master(tp->pci_dev);
5924
5925 RTL_W8(ChipCmd, CmdRxEnb);
5926 /* PCI commit */
5927 RTL_R8(ChipCmd);
5928 break;
5929 default:
5930 break;
5931 }
5932}
5933
Francois Romieu1765f952008-09-13 17:21:40 +02005934static void rtl_shutdown(struct pci_dev *pdev)
5935{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005936 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00005937 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00005938 struct device *d = &pdev->dev;
5939
5940 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02005941
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005942 rtl8169_net_suspend(dev);
5943
Francois Romieucecb5fd2011-04-01 10:21:07 +02005944 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08005945 rtl_rar_set(tp, dev->perm_addr);
5946
Hayes Wang92fc43b2011-07-06 15:58:03 +08005947 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00005948
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005949 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04005950 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
5951 rtl_wol_suspend_quirk(tp);
5952 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00005953 }
5954
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005955 pci_wake_from_d3(pdev, true);
5956 pci_set_power_state(pdev, PCI_D3hot);
5957 }
françois romieu2a15cd22012-03-06 01:14:12 +00005958
5959 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005960}
Francois Romieu5d06a992006-02-23 00:47:58 +01005961
Francois Romieue27566e2012-03-08 09:54:01 +01005962static void __devexit rtl_remove_one(struct pci_dev *pdev)
5963{
5964 struct net_device *dev = pci_get_drvdata(pdev);
5965 struct rtl8169_private *tp = netdev_priv(dev);
5966
5967 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
5968 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
5969 tp->mac_version == RTL_GIGA_MAC_VER_31) {
5970 rtl8168_driver_stop(tp);
5971 }
5972
5973 cancel_work_sync(&tp->wk.work);
5974
Devendra Naga0440cf62012-05-31 01:51:20 +00005975 netif_napi_del(&tp->napi);
5976
Francois Romieue27566e2012-03-08 09:54:01 +01005977 unregister_netdev(dev);
5978
5979 rtl_release_firmware(tp);
5980
5981 if (pci_dev_run_wake(pdev))
5982 pm_runtime_get_noresume(&pdev->dev);
5983
5984 /* restore original MAC address */
5985 rtl_rar_set(tp, dev->perm_addr);
5986
5987 rtl_disable_msi(pdev, tp);
5988 rtl8169_release_board(pdev, dev, tp->mmio_addr);
5989 pci_set_drvdata(pdev, NULL);
5990}
5991
Francois Romieufa9c3852012-03-08 10:01:50 +01005992static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01005993 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01005994 .ndo_stop = rtl8169_close,
5995 .ndo_get_stats64 = rtl8169_get_stats64,
5996 .ndo_start_xmit = rtl8169_start_xmit,
5997 .ndo_tx_timeout = rtl8169_tx_timeout,
5998 .ndo_validate_addr = eth_validate_addr,
5999 .ndo_change_mtu = rtl8169_change_mtu,
6000 .ndo_fix_features = rtl8169_fix_features,
6001 .ndo_set_features = rtl8169_set_features,
6002 .ndo_set_mac_address = rtl_set_mac_address,
6003 .ndo_do_ioctl = rtl8169_ioctl,
6004 .ndo_set_rx_mode = rtl_set_rx_mode,
6005#ifdef CONFIG_NET_POLL_CONTROLLER
6006 .ndo_poll_controller = rtl8169_netpoll,
6007#endif
6008
6009};
6010
Francois Romieu31fa8b12012-03-08 10:09:40 +01006011static const struct rtl_cfg_info {
6012 void (*hw_start)(struct net_device *);
6013 unsigned int region;
6014 unsigned int align;
6015 u16 event_slow;
6016 unsigned features;
6017 u8 default_ver;
6018} rtl_cfg_infos [] = {
6019 [RTL_CFG_0] = {
6020 .hw_start = rtl_hw_start_8169,
6021 .region = 1,
6022 .align = 0,
6023 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
6024 .features = RTL_FEATURE_GMII,
6025 .default_ver = RTL_GIGA_MAC_VER_01,
6026 },
6027 [RTL_CFG_1] = {
6028 .hw_start = rtl_hw_start_8168,
6029 .region = 2,
6030 .align = 8,
6031 .event_slow = SYSErr | LinkChg | RxOverflow,
6032 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
6033 .default_ver = RTL_GIGA_MAC_VER_11,
6034 },
6035 [RTL_CFG_2] = {
6036 .hw_start = rtl_hw_start_8101,
6037 .region = 2,
6038 .align = 8,
6039 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
6040 PCSTimeout,
6041 .features = RTL_FEATURE_MSI,
6042 .default_ver = RTL_GIGA_MAC_VER_13,
6043 }
6044};
6045
6046/* Cfg9346_Unlock assumed. */
6047static unsigned rtl_try_msi(struct rtl8169_private *tp,
6048 const struct rtl_cfg_info *cfg)
6049{
6050 void __iomem *ioaddr = tp->mmio_addr;
6051 unsigned msi = 0;
6052 u8 cfg2;
6053
6054 cfg2 = RTL_R8(Config2) & ~MSIEnable;
6055 if (cfg->features & RTL_FEATURE_MSI) {
6056 if (pci_enable_msi(tp->pci_dev)) {
6057 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
6058 } else {
6059 cfg2 |= MSIEnable;
6060 msi = RTL_FEATURE_MSI;
6061 }
6062 }
6063 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
6064 RTL_W8(Config2, cfg2);
6065 return msi;
6066}
6067
Francois Romieu3b6cf252012-03-08 09:59:04 +01006068static int __devinit
6069rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
6070{
6071 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
6072 const unsigned int region = cfg->region;
6073 struct rtl8169_private *tp;
6074 struct mii_if_info *mii;
6075 struct net_device *dev;
6076 void __iomem *ioaddr;
6077 int chipset, i;
6078 int rc;
6079
6080 if (netif_msg_drv(&debug)) {
6081 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
6082 MODULENAME, RTL8169_VERSION);
6083 }
6084
6085 dev = alloc_etherdev(sizeof (*tp));
6086 if (!dev) {
6087 rc = -ENOMEM;
6088 goto out;
6089 }
6090
6091 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01006092 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006093 tp = netdev_priv(dev);
6094 tp->dev = dev;
6095 tp->pci_dev = pdev;
6096 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
6097
6098 mii = &tp->mii;
6099 mii->dev = dev;
6100 mii->mdio_read = rtl_mdio_read;
6101 mii->mdio_write = rtl_mdio_write;
6102 mii->phy_id_mask = 0x1f;
6103 mii->reg_num_mask = 0x1f;
6104 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
6105
6106 /* disable ASPM completely as that cause random device stop working
6107 * problems as well as full system hangs for some PCIe devices users */
6108 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6109 PCIE_LINK_STATE_CLKPM);
6110
6111 /* enable device (incl. PCI PM wakeup and hotplug setup) */
6112 rc = pci_enable_device(pdev);
6113 if (rc < 0) {
6114 netif_err(tp, probe, dev, "enable failure\n");
6115 goto err_out_free_dev_1;
6116 }
6117
6118 if (pci_set_mwi(pdev) < 0)
6119 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
6120
6121 /* make sure PCI base addr 1 is MMIO */
6122 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
6123 netif_err(tp, probe, dev,
6124 "region #%d not an MMIO resource, aborting\n",
6125 region);
6126 rc = -ENODEV;
6127 goto err_out_mwi_2;
6128 }
6129
6130 /* check for weird/broken PCI region reporting */
6131 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
6132 netif_err(tp, probe, dev,
6133 "Invalid PCI region size(s), aborting\n");
6134 rc = -ENODEV;
6135 goto err_out_mwi_2;
6136 }
6137
6138 rc = pci_request_regions(pdev, MODULENAME);
6139 if (rc < 0) {
6140 netif_err(tp, probe, dev, "could not request regions\n");
6141 goto err_out_mwi_2;
6142 }
6143
6144 tp->cp_cmd = RxChkSum;
6145
6146 if ((sizeof(dma_addr_t) > 4) &&
6147 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
6148 tp->cp_cmd |= PCIDAC;
6149 dev->features |= NETIF_F_HIGHDMA;
6150 } else {
6151 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6152 if (rc < 0) {
6153 netif_err(tp, probe, dev, "DMA configuration failed\n");
6154 goto err_out_free_res_3;
6155 }
6156 }
6157
6158 /* ioremap MMIO region */
6159 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
6160 if (!ioaddr) {
6161 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
6162 rc = -EIO;
6163 goto err_out_free_res_3;
6164 }
6165 tp->mmio_addr = ioaddr;
6166
6167 if (!pci_is_pcie(pdev))
6168 netif_info(tp, probe, dev, "not PCI Express\n");
6169
6170 /* Identify chip attached to board */
6171 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
6172
6173 rtl_init_rxcfg(tp);
6174
6175 rtl_irq_disable(tp);
6176
6177 rtl_hw_reset(tp);
6178
6179 rtl_ack_events(tp, 0xffff);
6180
6181 pci_set_master(pdev);
6182
6183 /*
6184 * Pretend we are using VLANs; This bypasses a nasty bug where
6185 * Interrupts stop flowing on high load on 8110SCd controllers.
6186 */
6187 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
6188 tp->cp_cmd |= RxVlan;
6189
6190 rtl_init_mdio_ops(tp);
6191 rtl_init_pll_power_ops(tp);
6192 rtl_init_jumbo_ops(tp);
6193
6194 rtl8169_print_mac_version(tp);
6195
6196 chipset = tp->mac_version;
6197 tp->txd_version = rtl_chip_infos[chipset].txd_version;
6198
6199 RTL_W8(Cfg9346, Cfg9346_Unlock);
6200 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
6201 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
6202 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
6203 tp->features |= RTL_FEATURE_WOL;
6204 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
6205 tp->features |= RTL_FEATURE_WOL;
6206 tp->features |= rtl_try_msi(tp, cfg);
6207 RTL_W8(Cfg9346, Cfg9346_Lock);
6208
6209 if (rtl_tbi_enabled(tp)) {
6210 tp->set_speed = rtl8169_set_speed_tbi;
6211 tp->get_settings = rtl8169_gset_tbi;
6212 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
6213 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
6214 tp->link_ok = rtl8169_tbi_link_ok;
6215 tp->do_ioctl = rtl_tbi_ioctl;
6216 } else {
6217 tp->set_speed = rtl8169_set_speed_xmii;
6218 tp->get_settings = rtl8169_gset_xmii;
6219 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
6220 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
6221 tp->link_ok = rtl8169_xmii_link_ok;
6222 tp->do_ioctl = rtl_xmii_ioctl;
6223 }
6224
6225 mutex_init(&tp->wk.mutex);
6226
6227 /* Get MAC address */
6228 for (i = 0; i < ETH_ALEN; i++)
6229 dev->dev_addr[i] = RTL_R8(MAC0 + i);
6230 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
6231
6232 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
6233 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006234
6235 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
6236
6237 /* don't enable SG, IP_CSUM and TSO by default - it might not work
6238 * properly for all devices */
6239 dev->features |= NETIF_F_RXCSUM |
6240 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
6241
6242 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6243 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
6244 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6245 NETIF_F_HIGHDMA;
6246
6247 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
6248 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
6249 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
6250
6251 dev->hw_features |= NETIF_F_RXALL;
6252 dev->hw_features |= NETIF_F_RXFCS;
6253
6254 tp->hw_start = cfg->hw_start;
6255 tp->event_slow = cfg->event_slow;
6256
6257 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
6258 ~(RxBOVF | RxFOVF) : ~0;
6259
6260 init_timer(&tp->timer);
6261 tp->timer.data = (unsigned long) dev;
6262 tp->timer.function = rtl8169_phy_timer;
6263
6264 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
6265
6266 rc = register_netdev(dev);
6267 if (rc < 0)
6268 goto err_out_msi_4;
6269
6270 pci_set_drvdata(pdev, dev);
6271
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006272 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
6273 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
6274 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006275 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
6276 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
6277 "tx checksumming: %s]\n",
6278 rtl_chip_infos[chipset].jumbo_max,
6279 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
6280 }
6281
6282 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6283 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6284 tp->mac_version == RTL_GIGA_MAC_VER_31) {
6285 rtl8168_driver_start(tp);
6286 }
6287
6288 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
6289
6290 if (pci_dev_run_wake(pdev))
6291 pm_runtime_put_noidle(&pdev->dev);
6292
6293 netif_carrier_off(dev);
6294
6295out:
6296 return rc;
6297
6298err_out_msi_4:
Devendra Naga0440cf62012-05-31 01:51:20 +00006299 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006300 rtl_disable_msi(pdev, tp);
6301 iounmap(ioaddr);
6302err_out_free_res_3:
6303 pci_release_regions(pdev);
6304err_out_mwi_2:
6305 pci_clear_mwi(pdev);
6306 pci_disable_device(pdev);
6307err_out_free_dev_1:
6308 free_netdev(dev);
6309 goto out;
6310}
6311
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312static struct pci_driver rtl8169_pci_driver = {
6313 .name = MODULENAME,
6314 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01006315 .probe = rtl_init_one,
Francois Romieue27566e2012-03-08 09:54:01 +01006316 .remove = __devexit_p(rtl_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02006317 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006318 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319};
6320
Francois Romieu07d3f512007-02-21 22:40:46 +01006321static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322{
Jeff Garzik29917622006-08-19 17:48:59 -04006323 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324}
6325
Francois Romieu07d3f512007-02-21 22:40:46 +01006326static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327{
6328 pci_unregister_driver(&rtl8169_pci_driver);
6329}
6330
6331module_init(rtl8169_init_module);
6332module_exit(rtl8169_cleanup_module);