blob: b8b59a97d233214cdb574cfd263a183011524f8f [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"
Hayes Wang7e18dca2012-03-30 14:33:02 +080047#define FIRMWARE_8402_1 "rtl_nic/rtl8402-1.fw"
Hayes Wangb3d7b2f2012-03-30 14:48:06 +080048#define FIRMWARE_8411_1 "rtl_nic/rtl8411-1.fw"
Hayes Wang5598bfe2012-07-02 17:23:21 +080049#define FIRMWARE_8106E_1 "rtl_nic/rtl8106e-1.fw"
Hayes Wangc5583862012-07-02 17:23:22 +080050#define FIRMWARE_8168G_1 "rtl_nic/rtl8168g-1.fw"
françois romieubca03d52011-01-03 15:07:31 +000051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#ifdef RTL8169_DEBUG
53#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020054 if (!(expr)) { \
55 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070056 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020057 }
Joe Perches06fa7352007-10-18 21:15:00 +020058#define dprintk(fmt, args...) \
59 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#else
61#define assert(expr) do {} while (0)
62#define dprintk(fmt, args...) do {} while (0)
63#endif /* RTL8169_DEBUG */
64
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020065#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070066 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020067
Julien Ducourthial477206a2012-05-09 00:00:06 +020068#define TX_SLOTS_AVAIL(tp) \
69 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
70
71/* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
72#define TX_FRAGS_READY_FOR(tp,nr_frags) \
73 (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
76 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050077static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Francois Romieu9c14cea2008-07-05 00:21:15 +020079#define MAX_READ_REQUEST_SHIFT 12
Michal Schmidtaee77e42012-09-09 13:55:26 +000080#define TX_DMA_BURST 7 /* Maximum PCI burst, '7' is unlimited */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
82
83#define R8169_REGS_SIZE 256
84#define R8169_NAPI_WEIGHT 64
85#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
Timo Teräs9fba0812013-01-15 21:01:24 +000086#define NUM_RX_DESC 256U /* Number of Rx descriptor registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
88#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
89
90#define RTL8169_TX_TIMEOUT (6*HZ)
91#define RTL8169_PHY_TIMEOUT (10*HZ)
92
93/* write/read MMIO register */
94#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
95#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
96#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
97#define RTL_R8(reg) readb (ioaddr + (reg))
98#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +000099#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101enum mac_version {
Francois Romieu85bffe62011-04-27 08:22:39 +0200102 RTL_GIGA_MAC_VER_01 = 0,
103 RTL_GIGA_MAC_VER_02,
104 RTL_GIGA_MAC_VER_03,
105 RTL_GIGA_MAC_VER_04,
106 RTL_GIGA_MAC_VER_05,
107 RTL_GIGA_MAC_VER_06,
108 RTL_GIGA_MAC_VER_07,
109 RTL_GIGA_MAC_VER_08,
110 RTL_GIGA_MAC_VER_09,
111 RTL_GIGA_MAC_VER_10,
112 RTL_GIGA_MAC_VER_11,
113 RTL_GIGA_MAC_VER_12,
114 RTL_GIGA_MAC_VER_13,
115 RTL_GIGA_MAC_VER_14,
116 RTL_GIGA_MAC_VER_15,
117 RTL_GIGA_MAC_VER_16,
118 RTL_GIGA_MAC_VER_17,
119 RTL_GIGA_MAC_VER_18,
120 RTL_GIGA_MAC_VER_19,
121 RTL_GIGA_MAC_VER_20,
122 RTL_GIGA_MAC_VER_21,
123 RTL_GIGA_MAC_VER_22,
124 RTL_GIGA_MAC_VER_23,
125 RTL_GIGA_MAC_VER_24,
126 RTL_GIGA_MAC_VER_25,
127 RTL_GIGA_MAC_VER_26,
128 RTL_GIGA_MAC_VER_27,
129 RTL_GIGA_MAC_VER_28,
130 RTL_GIGA_MAC_VER_29,
131 RTL_GIGA_MAC_VER_30,
132 RTL_GIGA_MAC_VER_31,
133 RTL_GIGA_MAC_VER_32,
134 RTL_GIGA_MAC_VER_33,
Hayes Wang70090422011-07-06 15:58:06 +0800135 RTL_GIGA_MAC_VER_34,
Hayes Wangc2218922011-09-06 16:55:18 +0800136 RTL_GIGA_MAC_VER_35,
137 RTL_GIGA_MAC_VER_36,
Hayes Wang7e18dca2012-03-30 14:33:02 +0800138 RTL_GIGA_MAC_VER_37,
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800139 RTL_GIGA_MAC_VER_38,
Hayes Wang5598bfe2012-07-02 17:23:21 +0800140 RTL_GIGA_MAC_VER_39,
Hayes Wangc5583862012-07-02 17:23:22 +0800141 RTL_GIGA_MAC_VER_40,
142 RTL_GIGA_MAC_VER_41,
Francois Romieu85bffe62011-04-27 08:22:39 +0200143 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
Francois Romieu2b7b4312011-04-18 22:53:24 -0700146enum rtl_tx_desc_version {
147 RTL_TD_0 = 0,
148 RTL_TD_1 = 1,
149};
150
Francois Romieud58d46b2011-05-03 16:38:29 +0200151#define JUMBO_1K ETH_DATA_LEN
152#define JUMBO_4K (4*1024 - ETH_HLEN - 2)
153#define JUMBO_6K (6*1024 - ETH_HLEN - 2)
154#define JUMBO_7K (7*1024 - ETH_HLEN - 2)
155#define JUMBO_9K (9*1024 - ETH_HLEN - 2)
156
157#define _R(NAME,TD,FW,SZ,B) { \
158 .name = NAME, \
159 .txd_version = TD, \
160 .fw_name = FW, \
161 .jumbo_max = SZ, \
162 .jumbo_tx_csum = B \
163}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800165static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700167 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200168 const char *fw_name;
Francois Romieud58d46b2011-05-03 16:38:29 +0200169 u16 jumbo_max;
170 bool jumbo_tx_csum;
Francois Romieu85bffe62011-04-27 08:22:39 +0200171} rtl_chip_infos[] = {
172 /* PCI devices. */
173 [RTL_GIGA_MAC_VER_01] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200174 _R("RTL8169", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200175 [RTL_GIGA_MAC_VER_02] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200176 _R("RTL8169s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200177 [RTL_GIGA_MAC_VER_03] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200178 _R("RTL8110s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200179 [RTL_GIGA_MAC_VER_04] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200180 _R("RTL8169sb/8110sb", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200181 [RTL_GIGA_MAC_VER_05] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200182 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200183 [RTL_GIGA_MAC_VER_06] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200184 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200185 /* PCI-E devices. */
186 [RTL_GIGA_MAC_VER_07] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200187 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200188 [RTL_GIGA_MAC_VER_08] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200189 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200190 [RTL_GIGA_MAC_VER_09] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200191 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200192 [RTL_GIGA_MAC_VER_10] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200193 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200194 [RTL_GIGA_MAC_VER_11] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200195 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200196 [RTL_GIGA_MAC_VER_12] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200197 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200198 [RTL_GIGA_MAC_VER_13] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200199 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200200 [RTL_GIGA_MAC_VER_14] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200201 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200202 [RTL_GIGA_MAC_VER_15] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200203 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200204 [RTL_GIGA_MAC_VER_16] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200205 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200206 [RTL_GIGA_MAC_VER_17] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200207 _R("RTL8168b/8111b", RTL_TD_1, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200208 [RTL_GIGA_MAC_VER_18] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200209 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200210 [RTL_GIGA_MAC_VER_19] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200211 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200212 [RTL_GIGA_MAC_VER_20] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200213 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200214 [RTL_GIGA_MAC_VER_21] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200215 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200216 [RTL_GIGA_MAC_VER_22] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200217 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200218 [RTL_GIGA_MAC_VER_23] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200219 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200220 [RTL_GIGA_MAC_VER_24] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200221 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200222 [RTL_GIGA_MAC_VER_25] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200223 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1,
224 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200225 [RTL_GIGA_MAC_VER_26] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200226 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2,
227 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200228 [RTL_GIGA_MAC_VER_27] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200229 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200230 [RTL_GIGA_MAC_VER_28] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200231 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200232 [RTL_GIGA_MAC_VER_29] =
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_30] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200236 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
237 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200238 [RTL_GIGA_MAC_VER_31] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200239 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200240 [RTL_GIGA_MAC_VER_32] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200241 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1,
242 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200243 [RTL_GIGA_MAC_VER_33] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200244 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2,
245 JUMBO_9K, false),
Hayes Wang70090422011-07-06 15:58:06 +0800246 [RTL_GIGA_MAC_VER_34] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200247 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3,
248 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800249 [RTL_GIGA_MAC_VER_35] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200250 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_1,
251 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800252 [RTL_GIGA_MAC_VER_36] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200253 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_2,
254 JUMBO_9K, false),
Hayes Wang7e18dca2012-03-30 14:33:02 +0800255 [RTL_GIGA_MAC_VER_37] =
256 _R("RTL8402", RTL_TD_1, FIRMWARE_8402_1,
257 JUMBO_1K, true),
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800258 [RTL_GIGA_MAC_VER_38] =
259 _R("RTL8411", RTL_TD_1, FIRMWARE_8411_1,
260 JUMBO_9K, false),
Hayes Wang5598bfe2012-07-02 17:23:21 +0800261 [RTL_GIGA_MAC_VER_39] =
262 _R("RTL8106e", RTL_TD_1, FIRMWARE_8106E_1,
263 JUMBO_1K, true),
Hayes Wangc5583862012-07-02 17:23:22 +0800264 [RTL_GIGA_MAC_VER_40] =
265 _R("RTL8168g/8111g", RTL_TD_1, FIRMWARE_8168G_1,
266 JUMBO_9K, false),
267 [RTL_GIGA_MAC_VER_41] =
268 _R("RTL8168g/8111g", RTL_TD_1, NULL, JUMBO_9K, false),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270#undef _R
271
Francois Romieubcf0bf92006-07-26 23:14:13 +0200272enum cfg_version {
273 RTL_CFG_0 = 0x00,
274 RTL_CFG_1,
275 RTL_CFG_2
276};
277
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000278static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200279 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200280 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200281 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100282 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200283 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
Francois Romieu2a35cfa2012-08-31 23:06:17 +0200284 { PCI_VENDOR_ID_DLINK, 0x4300,
285 PCI_VENDOR_ID_DLINK, 0x4b10, 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200286 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000287 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200288 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200289 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
290 { PCI_VENDOR_ID_LINKSYS, 0x1032,
291 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100292 { 0x0001, 0x8168,
293 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 {0,},
295};
296
297MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
298
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000299static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700300static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200301static struct {
302 u32 msg_enable;
303} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Francois Romieu07d3f512007-02-21 22:40:46 +0100305enum rtl_registers {
306 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100307 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100308 MAR0 = 8, /* Multicast filter. */
309 CounterAddrLow = 0x10,
310 CounterAddrHigh = 0x14,
311 TxDescStartAddrLow = 0x20,
312 TxDescStartAddrHigh = 0x24,
313 TxHDescStartAddrLow = 0x28,
314 TxHDescStartAddrHigh = 0x2c,
315 FLASH = 0x30,
316 ERSR = 0x36,
317 ChipCmd = 0x37,
318 TxPoll = 0x38,
319 IntrMask = 0x3c,
320 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700321
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800322 TxConfig = 0x40,
323#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
324#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
325
326 RxConfig = 0x44,
327#define RX128_INT_EN (1 << 15) /* 8111c and later */
328#define RX_MULTI_EN (1 << 14) /* 8111c only */
329#define RXCFG_FIFO_SHIFT 13
330 /* No threshold before first PCI xfer */
331#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
332#define RXCFG_DMA_SHIFT 8
333 /* Unlimited maximum PCI burst. */
334#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700335
Francois Romieu07d3f512007-02-21 22:40:46 +0100336 RxMissed = 0x4c,
337 Cfg9346 = 0x50,
338 Config0 = 0x51,
339 Config1 = 0x52,
340 Config2 = 0x53,
Francois Romieud387b422012-04-17 11:12:01 +0200341#define PME_SIGNAL (1 << 5) /* 8168c and later */
342
Francois Romieu07d3f512007-02-21 22:40:46 +0100343 Config3 = 0x54,
344 Config4 = 0x55,
345 Config5 = 0x56,
346 MultiIntr = 0x5c,
347 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100348 PHYstatus = 0x6c,
349 RxMaxSize = 0xda,
350 CPlusCmd = 0xe0,
351 IntrMitigate = 0xe2,
352 RxDescAddrLow = 0xe4,
353 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000354 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
355
356#define NoEarlyTx 0x3f /* Max value : no early transmit. */
357
358 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
359
360#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800361#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000362
Francois Romieu07d3f512007-02-21 22:40:46 +0100363 FuncEvent = 0xf0,
364 FuncEventMask = 0xf4,
365 FuncPresetState = 0xf8,
366 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367};
368
Francois Romieuf162a5d2008-06-01 22:37:49 +0200369enum rtl8110_registers {
370 TBICSR = 0x64,
371 TBI_ANAR = 0x68,
372 TBI_LPAR = 0x6a,
373};
374
375enum rtl8168_8101_registers {
376 CSIDR = 0x64,
377 CSIAR = 0x68,
378#define CSIAR_FLAG 0x80000000
379#define CSIAR_WRITE_CMD 0x80000000
380#define CSIAR_BYTE_ENABLE 0x0f
381#define CSIAR_BYTE_ENABLE_SHIFT 12
382#define CSIAR_ADDR_MASK 0x0fff
Hayes Wang7e18dca2012-03-30 14:33:02 +0800383#define CSIAR_FUNC_CARD 0x00000000
384#define CSIAR_FUNC_SDIO 0x00010000
385#define CSIAR_FUNC_NIC 0x00020000
françois romieu065c27c2011-01-03 15:08:12 +0000386 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200387 EPHYAR = 0x80,
388#define EPHYAR_FLAG 0x80000000
389#define EPHYAR_WRITE_CMD 0x80000000
390#define EPHYAR_REG_MASK 0x1f
391#define EPHYAR_REG_SHIFT 16
392#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800393 DLLPR = 0xd0,
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800394#define PFM_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200395 DBG_REG = 0xd1,
396#define FIX_NAK_1 (1 << 4)
397#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800398 TWSI = 0xd2,
399 MCU = 0xd3,
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800400#define NOW_IS_OOB (1 << 7)
Hayes Wangc5583862012-07-02 17:23:22 +0800401#define TX_EMPTY (1 << 5)
402#define RX_EMPTY (1 << 4)
403#define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800404#define EN_NDP (1 << 3)
405#define EN_OOB_RESET (1 << 2)
Hayes Wangc5583862012-07-02 17:23:22 +0800406#define LINK_LIST_RDY (1 << 1)
françois romieudaf9df62009-10-07 12:44:20 +0000407 EFUSEAR = 0xdc,
408#define EFUSEAR_FLAG 0x80000000
409#define EFUSEAR_WRITE_CMD 0x80000000
410#define EFUSEAR_READ_CMD 0x00000000
411#define EFUSEAR_REG_MASK 0x03ff
412#define EFUSEAR_REG_SHIFT 8
413#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200414};
415
françois romieuc0e45c12011-01-03 15:08:04 +0000416enum rtl8168_registers {
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800417 LED_FREQ = 0x1a,
418 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000419 ERIDR = 0x70,
420 ERIAR = 0x74,
421#define ERIAR_FLAG 0x80000000
422#define ERIAR_WRITE_CMD 0x80000000
423#define ERIAR_READ_CMD 0x00000000
424#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000425#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800426#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
427#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
428#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
429#define ERIAR_MASK_SHIFT 12
430#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
431#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
Hayes Wangc5583862012-07-02 17:23:22 +0800432#define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800433#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000434 EPHY_RXER_NUM = 0x7c,
435 OCPDR = 0xb0, /* OCP GPHY access */
436#define OCPDR_WRITE_CMD 0x80000000
437#define OCPDR_READ_CMD 0x00000000
438#define OCPDR_REG_MASK 0x7f
439#define OCPDR_GPHY_REG_SHIFT 16
440#define OCPDR_DATA_MASK 0xffff
441 OCPAR = 0xb4,
442#define OCPAR_FLAG 0x80000000
443#define OCPAR_GPHY_WRITE_CMD 0x8000f060
444#define OCPAR_GPHY_READ_CMD 0x0000f060
Hayes Wangc5583862012-07-02 17:23:22 +0800445 GPHY_OCP = 0xb8,
hayeswang01dc7fe2011-03-21 01:50:28 +0000446 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
447 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200448#define TXPLA_RST (1 << 29)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800449#define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800450#define PWM_EN (1 << 22)
Hayes Wangc5583862012-07-02 17:23:22 +0800451#define RXDV_GATED_EN (1 << 19)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800452#define EARLY_TALLY_EN (1 << 16)
françois romieuc0e45c12011-01-03 15:08:04 +0000453};
454
Francois Romieu07d3f512007-02-21 22:40:46 +0100455enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100457 SYSErr = 0x8000,
458 PCSTimeout = 0x4000,
459 SWInt = 0x0100,
460 TxDescUnavail = 0x0080,
461 RxFIFOOver = 0x0040,
462 LinkChg = 0x0020,
463 RxOverflow = 0x0010,
464 TxErr = 0x0008,
465 TxOK = 0x0004,
466 RxErr = 0x0002,
467 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400470 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200471 RxFOVF = (1 << 23),
472 RxRWT = (1 << 22),
473 RxRES = (1 << 21),
474 RxRUNT = (1 << 20),
475 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 /* ChipCmdBits */
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800478 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100479 CmdReset = 0x10,
480 CmdRxEnb = 0x08,
481 CmdTxEnb = 0x04,
482 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Francois Romieu275391a2007-02-23 23:50:28 +0100484 /* TXPoll register p.5 */
485 HPQ = 0x80, /* Poll cmd on the high prio queue */
486 NPQ = 0x40, /* Poll cmd on the low prio queue */
487 FSWInt = 0x01, /* Forced software interrupt */
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100490 Cfg9346_Lock = 0x00,
491 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100494 AcceptErr = 0x20,
495 AcceptRunt = 0x10,
496 AcceptBroadcast = 0x08,
497 AcceptMulticast = 0x04,
498 AcceptMyPhys = 0x02,
499 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200500#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /* TxConfigBits */
503 TxInterFrameGapShift = 24,
504 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
505
Francois Romieu5d06a992006-02-23 00:47:58 +0100506 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200507 LEDS1 = (1 << 7),
508 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200509 Speed_down = (1 << 4),
510 MEMMAP = (1 << 3),
511 IOMAP = (1 << 2),
512 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100513 PMEnable = (1 << 0), /* Power Management Enable */
514
Francois Romieu6dccd162007-02-13 23:38:05 +0100515 /* Config2 register p. 25 */
françois romieu2ca6cf02011-12-15 08:37:43 +0000516 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100517 PCI_Clock_66MHz = 0x01,
518 PCI_Clock_33MHz = 0x00,
519
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100520 /* Config3 register p.25 */
521 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
522 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200523 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200524 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100525
Francois Romieud58d46b2011-05-03 16:38:29 +0200526 /* Config4 register */
527 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
528
Francois Romieu5d06a992006-02-23 00:47:58 +0100529 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100530 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
531 MWF = (1 << 5), /* Accept Multicast wakeup frame */
532 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200533 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100534 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100535 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /* TBICSR p.28 */
538 TBIReset = 0x80000000,
539 TBILoopback = 0x40000000,
540 TBINwEnable = 0x20000000,
541 TBINwRestart = 0x10000000,
542 TBILinkOk = 0x02000000,
543 TBINwComplete = 0x01000000,
544
545 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200546 EnableBist = (1 << 15), // 8168 8101
547 Mac_dbgo_oe = (1 << 14), // 8168 8101
548 Normal_mode = (1 << 13), // unused
549 Force_half_dup = (1 << 12), // 8168 8101
550 Force_rxflow_en = (1 << 11), // 8168 8101
551 Force_txflow_en = (1 << 10), // 8168 8101
552 Cxpl_dbg_sel = (1 << 9), // 8168 8101
553 ASF = (1 << 8), // 8168 8101
554 PktCntrDisable = (1 << 7), // 8168 8101
555 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 RxVlan = (1 << 6),
557 RxChkSum = (1 << 5),
558 PCIDAC = (1 << 4),
559 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100560 INTT_0 = 0x0000, // 8168
561 INTT_1 = 0x0001, // 8168
562 INTT_2 = 0x0002, // 8168
563 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100566 TBI_Enable = 0x80,
567 TxFlowCtrl = 0x40,
568 RxFlowCtrl = 0x20,
569 _1000bpsF = 0x10,
570 _100bps = 0x08,
571 _10bps = 0x04,
572 LinkStatus = 0x02,
573 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100576 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200577
578 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100579 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580};
581
Francois Romieu2b7b4312011-04-18 22:53:24 -0700582enum rtl_desc_bit {
583 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
585 RingEnd = (1 << 30), /* End of descriptor ring */
586 FirstFrag = (1 << 29), /* First segment of a packet */
587 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700588};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Francois Romieu2b7b4312011-04-18 22:53:24 -0700590/* Generic case. */
591enum rtl_tx_desc_bit {
592 /* First doubleword. */
593 TD_LSO = (1 << 27), /* Large Send Offload */
594#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Francois Romieu2b7b4312011-04-18 22:53:24 -0700596 /* Second doubleword. */
597 TxVlanTag = (1 << 17), /* Add VLAN tag */
598};
599
600/* 8169, 8168b and 810x except 8102e. */
601enum rtl_tx_desc_bit_0 {
602 /* First doubleword. */
603#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
604 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
605 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
606 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
607};
608
609/* 8102e, 8168c and beyond. */
610enum rtl_tx_desc_bit_1 {
611 /* Second doubleword. */
612#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
613 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
614 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
615 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
616};
617
618static const struct rtl_tx_desc_info {
619 struct {
620 u32 udp;
621 u32 tcp;
622 } checksum;
623 u16 mss_shift;
624 u16 opts_offset;
625} tx_desc_info [] = {
626 [RTL_TD_0] = {
627 .checksum = {
628 .udp = TD0_IP_CS | TD0_UDP_CS,
629 .tcp = TD0_IP_CS | TD0_TCP_CS
630 },
631 .mss_shift = TD0_MSS_SHIFT,
632 .opts_offset = 0
633 },
634 [RTL_TD_1] = {
635 .checksum = {
636 .udp = TD1_IP_CS | TD1_UDP_CS,
637 .tcp = TD1_IP_CS | TD1_TCP_CS
638 },
639 .mss_shift = TD1_MSS_SHIFT,
640 .opts_offset = 1
641 }
642};
643
644enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* Rx private */
646 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
647 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
648
649#define RxProtoUDP (PID1)
650#define RxProtoTCP (PID0)
651#define RxProtoIP (PID1 | PID0)
652#define RxProtoMask RxProtoIP
653
654 IPFail = (1 << 16), /* IP checksum failed */
655 UDPFail = (1 << 15), /* UDP/IP checksum failed */
656 TCPFail = (1 << 14), /* TCP/IP checksum failed */
657 RxVlanTag = (1 << 16), /* VLAN tag available */
658};
659
660#define RsvdMask 0x3fffc000
661
662struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200663 __le32 opts1;
664 __le32 opts2;
665 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666};
667
668struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200669 __le32 opts1;
670 __le32 opts2;
671 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672};
673
674struct ring_info {
675 struct sk_buff *skb;
676 u32 len;
677 u8 __pad[sizeof(void *) - sizeof(u32)];
678};
679
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200680enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200681 RTL_FEATURE_WOL = (1 << 0),
682 RTL_FEATURE_MSI = (1 << 1),
683 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200684};
685
Ivan Vecera355423d2009-02-06 21:49:57 -0800686struct rtl8169_counters {
687 __le64 tx_packets;
688 __le64 rx_packets;
689 __le64 tx_errors;
690 __le32 rx_errors;
691 __le16 rx_missed;
692 __le16 align_errors;
693 __le32 tx_one_collision;
694 __le32 tx_multi_collision;
695 __le64 rx_unicast;
696 __le64 rx_broadcast;
697 __le32 rx_multicast;
698 __le16 tx_aborted;
699 __le16 tx_underun;
700};
701
Francois Romieuda78dbf2012-01-26 14:18:23 +0100702enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100703 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100704 RTL_FLAG_TASK_SLOW_PENDING,
705 RTL_FLAG_TASK_RESET_PENDING,
706 RTL_FLAG_TASK_PHY_PENDING,
707 RTL_FLAG_MAX
708};
709
Junchang Wang8027aa22012-03-04 23:30:32 +0100710struct rtl8169_stats {
711 u64 packets;
712 u64 bytes;
713 struct u64_stats_sync syncp;
714};
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716struct rtl8169_private {
717 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200718 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000719 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700720 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200721 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700722 u16 txd_version;
723 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
725 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100727 struct rtl8169_stats rx_stats;
728 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
730 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
731 dma_addr_t TxPhyAddr;
732 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000733 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct timer_list timer;
736 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100737
738 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000739
740 struct mdio_ops {
Francois Romieu24192212012-07-06 20:19:42 +0200741 void (*write)(struct rtl8169_private *, int, int);
742 int (*read)(struct rtl8169_private *, int);
françois romieuc0e45c12011-01-03 15:08:04 +0000743 } mdio_ops;
744
françois romieu065c27c2011-01-03 15:08:12 +0000745 struct pll_power_ops {
746 void (*down)(struct rtl8169_private *);
747 void (*up)(struct rtl8169_private *);
748 } pll_power_ops;
749
Francois Romieud58d46b2011-05-03 16:38:29 +0200750 struct jumbo_ops {
751 void (*enable)(struct rtl8169_private *);
752 void (*disable)(struct rtl8169_private *);
753 } jumbo_ops;
754
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800755 struct csi_ops {
Francois Romieu52989f02012-07-06 13:37:00 +0200756 void (*write)(struct rtl8169_private *, int, int);
757 u32 (*read)(struct rtl8169_private *, int);
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800758 } csi_ops;
759
Oliver Neukum54405cd2011-01-06 21:55:13 +0100760 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200761 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000762 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100763 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000764 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800766 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100767
768 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100769 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
770 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100771 struct work_struct work;
772 } wk;
773
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200774 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200775
776 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800777 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000778 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400779 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000780
Francois Romieub6ffd972011-06-17 17:00:05 +0200781 struct rtl_fw {
782 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200783
784#define RTL_VER_SIZE 32
785
786 char version[RTL_VER_SIZE];
787
788 struct rtl_fw_phy_action {
789 __le32 *code;
790 size_t size;
791 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200792 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300793#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Hayes Wangc5583862012-07-02 17:23:22 +0800794
795 u32 ocp_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796};
797
Ralf Baechle979b6c12005-06-13 14:30:40 -0700798MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700801MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200802module_param_named(debug, debug.msg_enable, int, 0);
803MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804MODULE_LICENSE("GPL");
805MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000806MODULE_FIRMWARE(FIRMWARE_8168D_1);
807MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000808MODULE_FIRMWARE(FIRMWARE_8168E_1);
809MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400810MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800811MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800812MODULE_FIRMWARE(FIRMWARE_8168F_1);
813MODULE_FIRMWARE(FIRMWARE_8168F_2);
Hayes Wang7e18dca2012-03-30 14:33:02 +0800814MODULE_FIRMWARE(FIRMWARE_8402_1);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800815MODULE_FIRMWARE(FIRMWARE_8411_1);
Hayes Wang5598bfe2012-07-02 17:23:21 +0800816MODULE_FIRMWARE(FIRMWARE_8106E_1);
Hayes Wangc5583862012-07-02 17:23:22 +0800817MODULE_FIRMWARE(FIRMWARE_8168G_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Francois Romieuda78dbf2012-01-26 14:18:23 +0100819static void rtl_lock_work(struct rtl8169_private *tp)
820{
821 mutex_lock(&tp->wk.mutex);
822}
823
824static void rtl_unlock_work(struct rtl8169_private *tp)
825{
826 mutex_unlock(&tp->wk.mutex);
827}
828
Francois Romieud58d46b2011-05-03 16:38:29 +0200829static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
830{
Jiang Liu7d7903b2012-07-24 17:20:16 +0800831 pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
832 PCI_EXP_DEVCTL_READRQ, force);
Francois Romieud58d46b2011-05-03 16:38:29 +0200833}
834
Francois Romieuffc46952012-07-06 14:19:23 +0200835struct rtl_cond {
836 bool (*check)(struct rtl8169_private *);
837 const char *msg;
838};
839
840static void rtl_udelay(unsigned int d)
841{
842 udelay(d);
843}
844
845static bool rtl_loop_wait(struct rtl8169_private *tp, const struct rtl_cond *c,
846 void (*delay)(unsigned int), unsigned int d, int n,
847 bool high)
848{
849 int i;
850
851 for (i = 0; i < n; i++) {
852 delay(d);
853 if (c->check(tp) == high)
854 return true;
855 }
Francois Romieu82e316e2012-07-11 23:39:51 +0200856 netif_err(tp, drv, tp->dev, "%s == %d (loop: %d, delay: %d).\n",
857 c->msg, !high, n, d);
Francois Romieuffc46952012-07-06 14:19:23 +0200858 return false;
859}
860
861static bool rtl_udelay_loop_wait_high(struct rtl8169_private *tp,
862 const struct rtl_cond *c,
863 unsigned int d, int n)
864{
865 return rtl_loop_wait(tp, c, rtl_udelay, d, n, true);
866}
867
868static bool rtl_udelay_loop_wait_low(struct rtl8169_private *tp,
869 const struct rtl_cond *c,
870 unsigned int d, int n)
871{
872 return rtl_loop_wait(tp, c, rtl_udelay, d, n, false);
873}
874
875static bool rtl_msleep_loop_wait_high(struct rtl8169_private *tp,
876 const struct rtl_cond *c,
877 unsigned int d, int n)
878{
879 return rtl_loop_wait(tp, c, msleep, d, n, true);
880}
881
882static bool rtl_msleep_loop_wait_low(struct rtl8169_private *tp,
883 const struct rtl_cond *c,
884 unsigned int d, int n)
885{
886 return rtl_loop_wait(tp, c, msleep, d, n, false);
887}
888
889#define DECLARE_RTL_COND(name) \
890static bool name ## _check(struct rtl8169_private *); \
891 \
892static const struct rtl_cond name = { \
893 .check = name ## _check, \
894 .msg = #name \
895}; \
896 \
897static bool name ## _check(struct rtl8169_private *tp)
898
899DECLARE_RTL_COND(rtl_ocpar_cond)
900{
901 void __iomem *ioaddr = tp->mmio_addr;
902
903 return RTL_R32(OCPAR) & OCPAR_FLAG;
904}
905
françois romieub646d902011-01-03 15:08:21 +0000906static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
907{
908 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000909
910 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
Francois Romieuffc46952012-07-06 14:19:23 +0200911
912 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 100, 20) ?
913 RTL_R32(OCPDR) : ~0;
françois romieub646d902011-01-03 15:08:21 +0000914}
915
916static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
917{
918 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000919
920 RTL_W32(OCPDR, data);
921 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
Francois Romieuffc46952012-07-06 14:19:23 +0200922
923 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 100, 20);
924}
925
926DECLARE_RTL_COND(rtl_eriar_cond)
927{
928 void __iomem *ioaddr = tp->mmio_addr;
929
930 return RTL_R32(ERIAR) & ERIAR_FLAG;
françois romieub646d902011-01-03 15:08:21 +0000931}
932
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800933static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000934{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800935 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000936
937 RTL_W8(ERIDR, cmd);
938 RTL_W32(ERIAR, 0x800010e8);
939 msleep(2);
Francois Romieuffc46952012-07-06 14:19:23 +0200940
941 if (!rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 5))
942 return;
françois romieub646d902011-01-03 15:08:21 +0000943
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800944 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000945}
946
947#define OOB_CMD_RESET 0x00
948#define OOB_CMD_DRIVER_START 0x05
949#define OOB_CMD_DRIVER_STOP 0x06
950
Francois Romieucecb5fd2011-04-01 10:21:07 +0200951static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
952{
953 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
954}
955
Francois Romieuffc46952012-07-06 14:19:23 +0200956DECLARE_RTL_COND(rtl_ocp_read_cond)
françois romieub646d902011-01-03 15:08:21 +0000957{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200958 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000959
Francois Romieucecb5fd2011-04-01 10:21:07 +0200960 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000961
Francois Romieuffc46952012-07-06 14:19:23 +0200962 return ocp_read(tp, 0x0f, reg) & 0x00000800;
963}
964
965static void rtl8168_driver_start(struct rtl8169_private *tp)
966{
967 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
968
969 rtl_msleep_loop_wait_high(tp, &rtl_ocp_read_cond, 10, 10);
françois romieub646d902011-01-03 15:08:21 +0000970}
971
972static void rtl8168_driver_stop(struct rtl8169_private *tp)
973{
françois romieub646d902011-01-03 15:08:21 +0000974 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
975
Francois Romieuffc46952012-07-06 14:19:23 +0200976 rtl_msleep_loop_wait_low(tp, &rtl_ocp_read_cond, 10, 10);
françois romieub646d902011-01-03 15:08:21 +0000977}
978
hayeswang4804b3b2011-03-21 01:50:29 +0000979static int r8168dp_check_dash(struct rtl8169_private *tp)
980{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200981 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000982
Francois Romieucecb5fd2011-04-01 10:21:07 +0200983 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +0000984}
françois romieub646d902011-01-03 15:08:21 +0000985
Hayes Wangc5583862012-07-02 17:23:22 +0800986static bool rtl_ocp_reg_failure(struct rtl8169_private *tp, u32 reg)
987{
988 if (reg & 0xffff0001) {
989 netif_err(tp, drv, tp->dev, "Invalid ocp reg %x!\n", reg);
990 return true;
991 }
992 return false;
993}
994
995DECLARE_RTL_COND(rtl_ocp_gphy_cond)
996{
997 void __iomem *ioaddr = tp->mmio_addr;
998
999 return RTL_R32(GPHY_OCP) & OCPAR_FLAG;
1000}
1001
1002static void r8168_phy_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1003{
1004 void __iomem *ioaddr = tp->mmio_addr;
1005
1006 if (rtl_ocp_reg_failure(tp, reg))
1007 return;
1008
1009 RTL_W32(GPHY_OCP, OCPAR_FLAG | (reg << 15) | data);
1010
1011 rtl_udelay_loop_wait_low(tp, &rtl_ocp_gphy_cond, 25, 10);
1012}
1013
1014static u16 r8168_phy_ocp_read(struct rtl8169_private *tp, u32 reg)
1015{
1016 void __iomem *ioaddr = tp->mmio_addr;
1017
1018 if (rtl_ocp_reg_failure(tp, reg))
1019 return 0;
1020
1021 RTL_W32(GPHY_OCP, reg << 15);
1022
1023 return rtl_udelay_loop_wait_high(tp, &rtl_ocp_gphy_cond, 25, 10) ?
1024 (RTL_R32(GPHY_OCP) & 0xffff) : ~0;
1025}
1026
Hayes Wangc5583862012-07-02 17:23:22 +08001027static void r8168_mac_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1028{
1029 void __iomem *ioaddr = tp->mmio_addr;
1030
1031 if (rtl_ocp_reg_failure(tp, reg))
1032 return;
1033
1034 RTL_W32(OCPDR, OCPAR_FLAG | (reg << 15) | data);
Hayes Wangc5583862012-07-02 17:23:22 +08001035}
1036
1037static u16 r8168_mac_ocp_read(struct rtl8169_private *tp, u32 reg)
1038{
1039 void __iomem *ioaddr = tp->mmio_addr;
1040
1041 if (rtl_ocp_reg_failure(tp, reg))
1042 return 0;
1043
1044 RTL_W32(OCPDR, reg << 15);
1045
Hayes Wang3a83ad12012-07-11 20:31:56 +08001046 return RTL_R32(OCPDR);
Hayes Wangc5583862012-07-02 17:23:22 +08001047}
1048
1049#define OCP_STD_PHY_BASE 0xa400
1050
1051static void r8168g_mdio_write(struct rtl8169_private *tp, int reg, int value)
1052{
1053 if (reg == 0x1f) {
1054 tp->ocp_base = value ? value << 4 : OCP_STD_PHY_BASE;
1055 return;
1056 }
1057
1058 if (tp->ocp_base != OCP_STD_PHY_BASE)
1059 reg -= 0x10;
1060
1061 r8168_phy_ocp_write(tp, tp->ocp_base + reg * 2, value);
1062}
1063
1064static int r8168g_mdio_read(struct rtl8169_private *tp, int reg)
1065{
1066 if (tp->ocp_base != OCP_STD_PHY_BASE)
1067 reg -= 0x10;
1068
1069 return r8168_phy_ocp_read(tp, tp->ocp_base + reg * 2);
1070}
1071
Francois Romieuffc46952012-07-06 14:19:23 +02001072DECLARE_RTL_COND(rtl_phyar_cond)
1073{
1074 void __iomem *ioaddr = tp->mmio_addr;
1075
1076 return RTL_R32(PHYAR) & 0x80000000;
1077}
1078
Francois Romieu24192212012-07-06 20:19:42 +02001079static void r8169_mdio_write(struct rtl8169_private *tp, int reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Francois Romieu24192212012-07-06 20:19:42 +02001081 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Francois Romieu24192212012-07-06 20:19:42 +02001083 RTL_W32(PHYAR, 0x80000000 | (reg & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Francois Romieuffc46952012-07-06 14:19:23 +02001085 rtl_udelay_loop_wait_low(tp, &rtl_phyar_cond, 25, 20);
Timo Teräs024a07b2010-06-06 15:38:47 -07001086 /*
Timo Teräs81a95f02010-06-09 17:31:48 -07001087 * According to hardware specs a 20us delay is required after write
1088 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -07001089 */
Timo Teräs81a95f02010-06-09 17:31:48 -07001090 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
1092
Francois Romieu24192212012-07-06 20:19:42 +02001093static int r8169_mdio_read(struct rtl8169_private *tp, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
Francois Romieu24192212012-07-06 20:19:42 +02001095 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieuffc46952012-07-06 14:19:23 +02001096 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Francois Romieu24192212012-07-06 20:19:42 +02001098 RTL_W32(PHYAR, 0x0 | (reg & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Francois Romieuffc46952012-07-06 14:19:23 +02001100 value = rtl_udelay_loop_wait_high(tp, &rtl_phyar_cond, 25, 20) ?
1101 RTL_R32(PHYAR) & 0xffff : ~0;
1102
Timo Teräs81a95f02010-06-09 17:31:48 -07001103 /*
1104 * According to hardware specs a 20us delay is required after read
1105 * complete indication, but before sending next command.
1106 */
1107 udelay(20);
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return value;
1110}
1111
Francois Romieu24192212012-07-06 20:19:42 +02001112static void r8168dp_1_mdio_access(struct rtl8169_private *tp, int reg, u32 data)
françois romieuc0e45c12011-01-03 15:08:04 +00001113{
Francois Romieu24192212012-07-06 20:19:42 +02001114 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001115
Francois Romieu24192212012-07-06 20:19:42 +02001116 RTL_W32(OCPDR, data | ((reg & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
françois romieuc0e45c12011-01-03 15:08:04 +00001117 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
1118 RTL_W32(EPHY_RXER_NUM, 0);
1119
Francois Romieuffc46952012-07-06 14:19:23 +02001120 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 1000, 100);
françois romieuc0e45c12011-01-03 15:08:04 +00001121}
1122
Francois Romieu24192212012-07-06 20:19:42 +02001123static void r8168dp_1_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieuc0e45c12011-01-03 15:08:04 +00001124{
Francois Romieu24192212012-07-06 20:19:42 +02001125 r8168dp_1_mdio_access(tp, reg,
1126 OCPDR_WRITE_CMD | (value & OCPDR_DATA_MASK));
françois romieuc0e45c12011-01-03 15:08:04 +00001127}
1128
Francois Romieu24192212012-07-06 20:19:42 +02001129static int r8168dp_1_mdio_read(struct rtl8169_private *tp, int reg)
françois romieuc0e45c12011-01-03 15:08:04 +00001130{
Francois Romieu24192212012-07-06 20:19:42 +02001131 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001132
Francois Romieu24192212012-07-06 20:19:42 +02001133 r8168dp_1_mdio_access(tp, reg, OCPDR_READ_CMD);
françois romieuc0e45c12011-01-03 15:08:04 +00001134
1135 mdelay(1);
1136 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
1137 RTL_W32(EPHY_RXER_NUM, 0);
1138
Francois Romieuffc46952012-07-06 14:19:23 +02001139 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 1000, 100) ?
1140 RTL_R32(OCPDR) & OCPDR_DATA_MASK : ~0;
françois romieuc0e45c12011-01-03 15:08:04 +00001141}
1142
françois romieue6de30d2011-01-03 15:08:37 +00001143#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1144
1145static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1146{
1147 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1148}
1149
1150static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1151{
1152 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1153}
1154
Francois Romieu24192212012-07-06 20:19:42 +02001155static void r8168dp_2_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieue6de30d2011-01-03 15:08:37 +00001156{
Francois Romieu24192212012-07-06 20:19:42 +02001157 void __iomem *ioaddr = tp->mmio_addr;
1158
françois romieue6de30d2011-01-03 15:08:37 +00001159 r8168dp_2_mdio_start(ioaddr);
1160
Francois Romieu24192212012-07-06 20:19:42 +02001161 r8169_mdio_write(tp, reg, value);
françois romieue6de30d2011-01-03 15:08:37 +00001162
1163 r8168dp_2_mdio_stop(ioaddr);
1164}
1165
Francois Romieu24192212012-07-06 20:19:42 +02001166static int r8168dp_2_mdio_read(struct rtl8169_private *tp, int reg)
françois romieue6de30d2011-01-03 15:08:37 +00001167{
Francois Romieu24192212012-07-06 20:19:42 +02001168 void __iomem *ioaddr = tp->mmio_addr;
françois romieue6de30d2011-01-03 15:08:37 +00001169 int value;
1170
1171 r8168dp_2_mdio_start(ioaddr);
1172
Francois Romieu24192212012-07-06 20:19:42 +02001173 value = r8169_mdio_read(tp, reg);
françois romieue6de30d2011-01-03 15:08:37 +00001174
1175 r8168dp_2_mdio_stop(ioaddr);
1176
1177 return value;
1178}
1179
françois romieu4da19632011-01-03 15:07:55 +00001180static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001181{
Francois Romieu24192212012-07-06 20:19:42 +02001182 tp->mdio_ops.write(tp, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001183}
1184
françois romieu4da19632011-01-03 15:07:55 +00001185static int rtl_readphy(struct rtl8169_private *tp, int location)
1186{
Francois Romieu24192212012-07-06 20:19:42 +02001187 return tp->mdio_ops.read(tp, location);
françois romieu4da19632011-01-03 15:07:55 +00001188}
1189
1190static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1191{
1192 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1193}
1194
1195static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001196{
1197 int val;
1198
françois romieu4da19632011-01-03 15:07:55 +00001199 val = rtl_readphy(tp, reg_addr);
1200 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +00001201}
1202
Francois Romieuccdffb92008-07-26 14:26:06 +02001203static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1204 int val)
1205{
1206 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001207
françois romieu4da19632011-01-03 15:07:55 +00001208 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001209}
1210
1211static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1212{
1213 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001214
françois romieu4da19632011-01-03 15:07:55 +00001215 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001216}
1217
Francois Romieuffc46952012-07-06 14:19:23 +02001218DECLARE_RTL_COND(rtl_ephyar_cond)
1219{
1220 void __iomem *ioaddr = tp->mmio_addr;
1221
1222 return RTL_R32(EPHYAR) & EPHYAR_FLAG;
1223}
1224
Francois Romieufdf6fc02012-07-06 22:40:38 +02001225static void rtl_ephy_write(struct rtl8169_private *tp, int reg_addr, int value)
Francois Romieudacf8152008-08-02 20:44:13 +02001226{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001227 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001228
1229 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1230 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1231
Francois Romieuffc46952012-07-06 14:19:23 +02001232 rtl_udelay_loop_wait_low(tp, &rtl_ephyar_cond, 10, 100);
1233
1234 udelay(10);
Francois Romieudacf8152008-08-02 20:44:13 +02001235}
1236
Francois Romieufdf6fc02012-07-06 22:40:38 +02001237static u16 rtl_ephy_read(struct rtl8169_private *tp, int reg_addr)
Francois Romieudacf8152008-08-02 20:44:13 +02001238{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001239 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001240
1241 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1242
Francois Romieuffc46952012-07-06 14:19:23 +02001243 return rtl_udelay_loop_wait_high(tp, &rtl_ephyar_cond, 10, 100) ?
1244 RTL_R32(EPHYAR) & EPHYAR_DATA_MASK : ~0;
Francois Romieudacf8152008-08-02 20:44:13 +02001245}
1246
Francois Romieufdf6fc02012-07-06 22:40:38 +02001247static void rtl_eri_write(struct rtl8169_private *tp, int addr, u32 mask,
1248 u32 val, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001249{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001250 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001251
1252 BUG_ON((addr & 3) || (mask == 0));
1253 RTL_W32(ERIDR, val);
1254 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1255
Francois Romieuffc46952012-07-06 14:19:23 +02001256 rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 100);
Hayes Wang133ac402011-07-06 15:58:05 +08001257}
1258
Francois Romieufdf6fc02012-07-06 22:40:38 +02001259static u32 rtl_eri_read(struct rtl8169_private *tp, int addr, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001260{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001261 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001262
1263 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1264
Francois Romieuffc46952012-07-06 14:19:23 +02001265 return rtl_udelay_loop_wait_high(tp, &rtl_eriar_cond, 100, 100) ?
1266 RTL_R32(ERIDR) : ~0;
Hayes Wang133ac402011-07-06 15:58:05 +08001267}
1268
Francois Romieufdf6fc02012-07-06 22:40:38 +02001269static void rtl_w1w0_eri(struct rtl8169_private *tp, int addr, u32 mask, u32 p,
1270 u32 m, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001271{
1272 u32 val;
1273
Francois Romieufdf6fc02012-07-06 22:40:38 +02001274 val = rtl_eri_read(tp, addr, type);
1275 rtl_eri_write(tp, addr, mask, (val & ~m) | p, type);
Hayes Wang133ac402011-07-06 15:58:05 +08001276}
1277
françois romieuc28aa382011-08-02 03:53:43 +00001278struct exgmac_reg {
1279 u16 addr;
1280 u16 mask;
1281 u32 val;
1282};
1283
Francois Romieufdf6fc02012-07-06 22:40:38 +02001284static void rtl_write_exgmac_batch(struct rtl8169_private *tp,
françois romieuc28aa382011-08-02 03:53:43 +00001285 const struct exgmac_reg *r, int len)
1286{
1287 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001288 rtl_eri_write(tp, r->addr, r->mask, r->val, ERIAR_EXGMAC);
françois romieuc28aa382011-08-02 03:53:43 +00001289 r++;
1290 }
1291}
1292
Francois Romieuffc46952012-07-06 14:19:23 +02001293DECLARE_RTL_COND(rtl_efusear_cond)
1294{
1295 void __iomem *ioaddr = tp->mmio_addr;
1296
1297 return RTL_R32(EFUSEAR) & EFUSEAR_FLAG;
1298}
1299
Francois Romieufdf6fc02012-07-06 22:40:38 +02001300static u8 rtl8168d_efuse_read(struct rtl8169_private *tp, int reg_addr)
françois romieudaf9df62009-10-07 12:44:20 +00001301{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001302 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00001303
1304 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1305
Francois Romieuffc46952012-07-06 14:19:23 +02001306 return rtl_udelay_loop_wait_high(tp, &rtl_efusear_cond, 100, 300) ?
1307 RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK : ~0;
françois romieudaf9df62009-10-07 12:44:20 +00001308}
1309
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001310static u16 rtl_get_events(struct rtl8169_private *tp)
1311{
1312 void __iomem *ioaddr = tp->mmio_addr;
1313
1314 return RTL_R16(IntrStatus);
1315}
1316
1317static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1318{
1319 void __iomem *ioaddr = tp->mmio_addr;
1320
1321 RTL_W16(IntrStatus, bits);
1322 mmiowb();
1323}
1324
1325static void rtl_irq_disable(struct rtl8169_private *tp)
1326{
1327 void __iomem *ioaddr = tp->mmio_addr;
1328
1329 RTL_W16(IntrMask, 0);
1330 mmiowb();
1331}
1332
Francois Romieu3e990ff2012-01-26 12:50:01 +01001333static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1334{
1335 void __iomem *ioaddr = tp->mmio_addr;
1336
1337 RTL_W16(IntrMask, bits);
1338}
1339
Francois Romieuda78dbf2012-01-26 14:18:23 +01001340#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1341#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1342#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1343
1344static void rtl_irq_enable_all(struct rtl8169_private *tp)
1345{
1346 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1347}
1348
françois romieu811fd302011-12-04 20:30:45 +00001349static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
françois romieu811fd302011-12-04 20:30:45 +00001351 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001353 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001354 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001355 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
françois romieu4da19632011-01-03 15:07:55 +00001358static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
françois romieu4da19632011-01-03 15:07:55 +00001360 void __iomem *ioaddr = tp->mmio_addr;
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return RTL_R32(TBICSR) & TBIReset;
1363}
1364
françois romieu4da19632011-01-03 15:07:55 +00001365static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
françois romieu4da19632011-01-03 15:07:55 +00001367 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
1370static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1371{
1372 return RTL_R32(TBICSR) & TBILinkOk;
1373}
1374
1375static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1376{
1377 return RTL_R8(PHYstatus) & LinkStatus;
1378}
1379
françois romieu4da19632011-01-03 15:07:55 +00001380static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
françois romieu4da19632011-01-03 15:07:55 +00001382 void __iomem *ioaddr = tp->mmio_addr;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1385}
1386
françois romieu4da19632011-01-03 15:07:55 +00001387static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
1389 unsigned int val;
1390
françois romieu4da19632011-01-03 15:07:55 +00001391 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1392 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
Hayes Wang70090422011-07-06 15:58:06 +08001395static void rtl_link_chg_patch(struct rtl8169_private *tp)
1396{
1397 void __iomem *ioaddr = tp->mmio_addr;
1398 struct net_device *dev = tp->dev;
1399
1400 if (!netif_running(dev))
1401 return;
1402
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001403 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1404 tp->mac_version == RTL_GIGA_MAC_VER_38) {
Hayes Wang70090422011-07-06 15:58:06 +08001405 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001406 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1407 ERIAR_EXGMAC);
1408 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1409 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001410 } else if (RTL_R8(PHYstatus) & _100bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001411 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1412 ERIAR_EXGMAC);
1413 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1414 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001415 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001416 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1417 ERIAR_EXGMAC);
1418 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1419 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001420 }
1421 /* Reset packet filter */
Francois Romieufdf6fc02012-07-06 22:40:38 +02001422 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
Hayes Wang70090422011-07-06 15:58:06 +08001423 ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02001424 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
Hayes Wang70090422011-07-06 15:58:06 +08001425 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001426 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1427 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1428 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001429 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1430 ERIAR_EXGMAC);
1431 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1432 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001433 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001434 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1435 ERIAR_EXGMAC);
1436 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1437 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001438 }
Hayes Wang7e18dca2012-03-30 14:33:02 +08001439 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1440 if (RTL_R8(PHYstatus) & _10bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001441 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x4d02,
1442 ERIAR_EXGMAC);
1443 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_0011, 0x0060,
1444 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001445 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001446 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000,
1447 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001448 }
Hayes Wang70090422011-07-06 15:58:06 +08001449 }
1450}
1451
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001452static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001453 struct rtl8169_private *tp,
1454 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001457 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001458 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001459 if (pm)
1460 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001462 if (net_ratelimit())
1463 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001464 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001466 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001467 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001468 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001472static void rtl8169_check_link_status(struct net_device *dev,
1473 struct rtl8169_private *tp,
1474 void __iomem *ioaddr)
1475{
1476 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1477}
1478
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001479#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1480
1481static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1482{
1483 void __iomem *ioaddr = tp->mmio_addr;
1484 u8 options;
1485 u32 wolopts = 0;
1486
1487 options = RTL_R8(Config1);
1488 if (!(options & PMEnable))
1489 return 0;
1490
1491 options = RTL_R8(Config3);
1492 if (options & LinkUp)
1493 wolopts |= WAKE_PHY;
1494 if (options & MagicPacket)
1495 wolopts |= WAKE_MAGIC;
1496
1497 options = RTL_R8(Config5);
1498 if (options & UWF)
1499 wolopts |= WAKE_UCAST;
1500 if (options & BWF)
1501 wolopts |= WAKE_BCAST;
1502 if (options & MWF)
1503 wolopts |= WAKE_MCAST;
1504
1505 return wolopts;
1506}
1507
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001508static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1509{
1510 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001511
Francois Romieuda78dbf2012-01-26 14:18:23 +01001512 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001513
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001514 wol->supported = WAKE_ANY;
1515 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001516
Francois Romieuda78dbf2012-01-26 14:18:23 +01001517 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001518}
1519
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001520static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001521{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001522 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001523 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001524 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001525 u32 opt;
1526 u16 reg;
1527 u8 mask;
1528 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001529 { WAKE_PHY, Config3, LinkUp },
1530 { WAKE_MAGIC, Config3, MagicPacket },
1531 { WAKE_UCAST, Config5, UWF },
1532 { WAKE_BCAST, Config5, BWF },
1533 { WAKE_MCAST, Config5, MWF },
1534 { WAKE_ANY, Config5, LanWake }
1535 };
Francois Romieu851e6022012-04-17 11:10:11 +02001536 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001537
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001538 RTL_W8(Cfg9346, Cfg9346_Unlock);
1539
1540 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
Francois Romieu851e6022012-04-17 11:10:11 +02001541 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001542 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001543 options |= cfg[i].mask;
1544 RTL_W8(cfg[i].reg, options);
1545 }
1546
Francois Romieu851e6022012-04-17 11:10:11 +02001547 switch (tp->mac_version) {
1548 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1549 options = RTL_R8(Config1) & ~PMEnable;
1550 if (wolopts)
1551 options |= PMEnable;
1552 RTL_W8(Config1, options);
1553 break;
1554 default:
Francois Romieud387b422012-04-17 11:12:01 +02001555 options = RTL_R8(Config2) & ~PME_SIGNAL;
1556 if (wolopts)
1557 options |= PME_SIGNAL;
1558 RTL_W8(Config2, options);
Francois Romieu851e6022012-04-17 11:10:11 +02001559 break;
1560 }
1561
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001562 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001563}
1564
1565static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1566{
1567 struct rtl8169_private *tp = netdev_priv(dev);
1568
Francois Romieuda78dbf2012-01-26 14:18:23 +01001569 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001570
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001571 if (wol->wolopts)
1572 tp->features |= RTL_FEATURE_WOL;
1573 else
1574 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001575 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001576
1577 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001578
françois romieuea809072010-11-08 13:23:58 +00001579 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1580
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001581 return 0;
1582}
1583
Francois Romieu31bd2042011-04-26 18:58:59 +02001584static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1585{
Francois Romieu85bffe62011-04-27 08:22:39 +02001586 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001587}
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589static void rtl8169_get_drvinfo(struct net_device *dev,
1590 struct ethtool_drvinfo *info)
1591{
1592 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001593 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Rick Jones68aad782011-11-07 13:29:27 +00001595 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1596 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1597 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001598 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001599 if (!IS_ERR_OR_NULL(rtl_fw))
1600 strlcpy(info->fw_version, rtl_fw->version,
1601 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602}
1603
1604static int rtl8169_get_regs_len(struct net_device *dev)
1605{
1606 return R8169_REGS_SIZE;
1607}
1608
1609static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001610 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 struct rtl8169_private *tp = netdev_priv(dev);
1613 void __iomem *ioaddr = tp->mmio_addr;
1614 int ret = 0;
1615 u32 reg;
1616
1617 reg = RTL_R32(TBICSR);
1618 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1619 (duplex == DUPLEX_FULL)) {
1620 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1621 } else if (autoneg == AUTONEG_ENABLE)
1622 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1623 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001624 netif_warn(tp, link, dev,
1625 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 ret = -EOPNOTSUPP;
1627 }
1628
1629 return ret;
1630}
1631
1632static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001633 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
1635 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001636 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001637 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Hayes Wang716b50a2011-02-22 17:26:18 +08001639 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001642 int auto_nego;
1643
françois romieu4da19632011-01-03 15:07:55 +00001644 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001645 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1646 ADVERTISE_100HALF | ADVERTISE_100FULL);
1647
1648 if (adv & ADVERTISED_10baseT_Half)
1649 auto_nego |= ADVERTISE_10HALF;
1650 if (adv & ADVERTISED_10baseT_Full)
1651 auto_nego |= ADVERTISE_10FULL;
1652 if (adv & ADVERTISED_100baseT_Half)
1653 auto_nego |= ADVERTISE_100HALF;
1654 if (adv & ADVERTISED_100baseT_Full)
1655 auto_nego |= ADVERTISE_100FULL;
1656
françois romieu3577aa12009-05-19 10:46:48 +00001657 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1658
françois romieu4da19632011-01-03 15:07:55 +00001659 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001660 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1661
1662 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001663 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001664 if (adv & ADVERTISED_1000baseT_Half)
1665 giga_ctrl |= ADVERTISE_1000HALF;
1666 if (adv & ADVERTISED_1000baseT_Full)
1667 giga_ctrl |= ADVERTISE_1000FULL;
1668 } else if (adv & (ADVERTISED_1000baseT_Half |
1669 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001670 netif_info(tp, link, dev,
1671 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001672 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
françois romieu3577aa12009-05-19 10:46:48 +00001675 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001676
françois romieu4da19632011-01-03 15:07:55 +00001677 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1678 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001679 } else {
1680 giga_ctrl = 0;
1681
1682 if (speed == SPEED_10)
1683 bmcr = 0;
1684 else if (speed == SPEED_100)
1685 bmcr = BMCR_SPEED100;
1686 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001687 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001688
1689 if (duplex == DUPLEX_FULL)
1690 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001691 }
1692
françois romieu4da19632011-01-03 15:07:55 +00001693 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001694
Francois Romieucecb5fd2011-04-01 10:21:07 +02001695 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1696 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001697 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001698 rtl_writephy(tp, 0x17, 0x2138);
1699 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001700 } else {
françois romieu4da19632011-01-03 15:07:55 +00001701 rtl_writephy(tp, 0x17, 0x2108);
1702 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001703 }
1704 }
1705
Oliver Neukum54405cd2011-01-06 21:55:13 +01001706 rc = 0;
1707out:
1708 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709}
1710
1711static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001712 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 struct rtl8169_private *tp = netdev_priv(dev);
1715 int ret;
1716
Oliver Neukum54405cd2011-01-06 21:55:13 +01001717 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001718 if (ret < 0)
1719 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Francois Romieu4876cc12011-03-11 21:07:11 +01001721 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1722 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001724 }
1725out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 return ret;
1727}
1728
1729static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1730{
1731 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 int ret;
1733
Francois Romieu4876cc12011-03-11 21:07:11 +01001734 del_timer_sync(&tp->timer);
1735
Francois Romieuda78dbf2012-01-26 14:18:23 +01001736 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001737 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001738 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001739 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 return ret;
1742}
1743
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001744static netdev_features_t rtl8169_fix_features(struct net_device *dev,
1745 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
Francois Romieud58d46b2011-05-03 16:38:29 +02001747 struct rtl8169_private *tp = netdev_priv(dev);
1748
Francois Romieu2b7b4312011-04-18 22:53:24 -07001749 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001750 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Francois Romieud58d46b2011-05-03 16:38:29 +02001752 if (dev->mtu > JUMBO_1K &&
1753 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
1754 features &= ~NETIF_F_IP_CSUM;
1755
Michał Mirosław350fb322011-04-08 06:35:56 +00001756 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
1758
Francois Romieuda78dbf2012-01-26 14:18:23 +01001759static void __rtl8169_set_features(struct net_device *dev,
1760 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
1762 struct rtl8169_private *tp = netdev_priv(dev);
Ben Greear6bbe0212012-02-10 15:04:33 +00001763 netdev_features_t changed = features ^ dev->features;
Francois Romieuda78dbf2012-01-26 14:18:23 +01001764 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Ben Greear6bbe0212012-02-10 15:04:33 +00001766 if (!(changed & (NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)))
1767 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Ben Greear6bbe0212012-02-10 15:04:33 +00001769 if (changed & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)) {
1770 if (features & NETIF_F_RXCSUM)
1771 tp->cp_cmd |= RxChkSum;
1772 else
1773 tp->cp_cmd &= ~RxChkSum;
Michał Mirosław350fb322011-04-08 06:35:56 +00001774
Ben Greear6bbe0212012-02-10 15:04:33 +00001775 if (dev->features & NETIF_F_HW_VLAN_RX)
1776 tp->cp_cmd |= RxVlan;
1777 else
1778 tp->cp_cmd &= ~RxVlan;
1779
1780 RTL_W16(CPlusCmd, tp->cp_cmd);
1781 RTL_R16(CPlusCmd);
1782 }
1783 if (changed & NETIF_F_RXALL) {
1784 int tmp = (RTL_R32(RxConfig) & ~(AcceptErr | AcceptRunt));
1785 if (features & NETIF_F_RXALL)
1786 tmp |= (AcceptErr | AcceptRunt);
1787 RTL_W32(RxConfig, tmp);
1788 }
Francois Romieuda78dbf2012-01-26 14:18:23 +01001789}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Francois Romieuda78dbf2012-01-26 14:18:23 +01001791static int rtl8169_set_features(struct net_device *dev,
1792 netdev_features_t features)
1793{
1794 struct rtl8169_private *tp = netdev_priv(dev);
1795
1796 rtl_lock_work(tp);
1797 __rtl8169_set_features(dev, features);
1798 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 return 0;
1801}
1802
Francois Romieuda78dbf2012-01-26 14:18:23 +01001803
Kirill Smelkov810f4892012-11-10 21:11:02 +04001804static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Jesse Grosseab6d182010-10-20 13:56:03 +00001806 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1808}
1809
Francois Romieu7a8fc772011-03-01 17:18:33 +01001810static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
1812 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Francois Romieu7a8fc772011-03-01 17:18:33 +01001814 if (opts2 & RxVlanTag)
1815 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816}
1817
Francois Romieuccdffb92008-07-26 14:26:06 +02001818static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 struct rtl8169_private *tp = netdev_priv(dev);
1821 void __iomem *ioaddr = tp->mmio_addr;
1822 u32 status;
1823
1824 cmd->supported =
1825 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1826 cmd->port = PORT_FIBRE;
1827 cmd->transceiver = XCVR_INTERNAL;
1828
1829 status = RTL_R32(TBICSR);
1830 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1831 cmd->autoneg = !!(status & TBINwEnable);
1832
David Decotigny70739492011-04-27 18:32:40 +00001833 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001835
1836 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837}
1838
Francois Romieuccdffb92008-07-26 14:26:06 +02001839static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
1841 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Francois Romieuccdffb92008-07-26 14:26:06 +02001843 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844}
1845
1846static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1847{
1848 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001849 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Francois Romieuda78dbf2012-01-26 14:18:23 +01001851 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02001852 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001853 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Francois Romieuccdffb92008-07-26 14:26:06 +02001855 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856}
1857
1858static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1859 void *p)
1860{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001861 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Francois Romieu5b0384f2006-08-16 16:00:01 +02001863 if (regs->len > R8169_REGS_SIZE)
1864 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Francois Romieuda78dbf2012-01-26 14:18:23 +01001866 rtl_lock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001867 memcpy_fromio(p, tp->mmio_addr, regs->len);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001868 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
1870
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001871static u32 rtl8169_get_msglevel(struct net_device *dev)
1872{
1873 struct rtl8169_private *tp = netdev_priv(dev);
1874
1875 return tp->msg_enable;
1876}
1877
1878static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1879{
1880 struct rtl8169_private *tp = netdev_priv(dev);
1881
1882 tp->msg_enable = value;
1883}
1884
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001885static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1886 "tx_packets",
1887 "rx_packets",
1888 "tx_errors",
1889 "rx_errors",
1890 "rx_missed",
1891 "align_errors",
1892 "tx_single_collisions",
1893 "tx_multi_collisions",
1894 "unicast",
1895 "broadcast",
1896 "multicast",
1897 "tx_aborted",
1898 "tx_underrun",
1899};
1900
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001901static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001902{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001903 switch (sset) {
1904 case ETH_SS_STATS:
1905 return ARRAY_SIZE(rtl8169_gstrings);
1906 default:
1907 return -EOPNOTSUPP;
1908 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001909}
1910
Francois Romieuffc46952012-07-06 14:19:23 +02001911DECLARE_RTL_COND(rtl_counters_cond)
1912{
1913 void __iomem *ioaddr = tp->mmio_addr;
1914
1915 return RTL_R32(CounterAddrLow) & CounterDump;
1916}
1917
Ivan Vecera355423d2009-02-06 21:49:57 -08001918static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001919{
1920 struct rtl8169_private *tp = netdev_priv(dev);
1921 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001922 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001923 struct rtl8169_counters *counters;
1924 dma_addr_t paddr;
1925 u32 cmd;
1926
Ivan Vecera355423d2009-02-06 21:49:57 -08001927 /*
1928 * Some chips are unable to dump tally counters when the receiver
1929 * is disabled.
1930 */
1931 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1932 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001933
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001934 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001935 if (!counters)
1936 return;
1937
1938 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001939 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001940 RTL_W32(CounterAddrLow, cmd);
1941 RTL_W32(CounterAddrLow, cmd | CounterDump);
1942
Francois Romieuffc46952012-07-06 14:19:23 +02001943 if (rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000))
1944 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001945
1946 RTL_W32(CounterAddrLow, 0);
1947 RTL_W32(CounterAddrHigh, 0);
1948
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001949 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001950}
1951
Ivan Vecera355423d2009-02-06 21:49:57 -08001952static void rtl8169_get_ethtool_stats(struct net_device *dev,
1953 struct ethtool_stats *stats, u64 *data)
1954{
1955 struct rtl8169_private *tp = netdev_priv(dev);
1956
1957 ASSERT_RTNL();
1958
1959 rtl8169_update_counters(dev);
1960
1961 data[0] = le64_to_cpu(tp->counters.tx_packets);
1962 data[1] = le64_to_cpu(tp->counters.rx_packets);
1963 data[2] = le64_to_cpu(tp->counters.tx_errors);
1964 data[3] = le32_to_cpu(tp->counters.rx_errors);
1965 data[4] = le16_to_cpu(tp->counters.rx_missed);
1966 data[5] = le16_to_cpu(tp->counters.align_errors);
1967 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1968 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1969 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1970 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1971 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1972 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1973 data[12] = le16_to_cpu(tp->counters.tx_underun);
1974}
1975
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001976static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1977{
1978 switch(stringset) {
1979 case ETH_SS_STATS:
1980 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1981 break;
1982 }
1983}
1984
Jeff Garzik7282d492006-09-13 14:30:00 -04001985static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 .get_drvinfo = rtl8169_get_drvinfo,
1987 .get_regs_len = rtl8169_get_regs_len,
1988 .get_link = ethtool_op_get_link,
1989 .get_settings = rtl8169_get_settings,
1990 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001991 .get_msglevel = rtl8169_get_msglevel,
1992 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001994 .get_wol = rtl8169_get_wol,
1995 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001996 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001997 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001998 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00001999 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000};
2001
Francois Romieu07d3f512007-02-21 22:40:46 +01002002static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02002003 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
Francois Romieu5d320a22011-05-08 17:47:36 +02002005 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002006 /*
2007 * The driver currently handles the 8168Bf and the 8168Be identically
2008 * but they can be identified more specifically through the test below
2009 * if needed:
2010 *
2011 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01002012 *
2013 * Same thing for the 8101Eb and the 8101Ec:
2014 *
2015 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01002016 */
Francois Romieu37441002011-06-17 22:58:54 +02002017 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002019 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 int mac_version;
2021 } mac_info[] = {
Hayes Wangc5583862012-07-02 17:23:22 +08002022 /* 8168G family. */
2023 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2024 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2025
Hayes Wangc2218922011-09-06 16:55:18 +08002026 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08002027 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08002028 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2029 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2030
hayeswang01dc7fe2011-03-21 01:50:28 +00002031 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08002032 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00002033 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
2034 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2035 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2036
Francois Romieu5b538df2008-07-20 16:22:45 +02002037 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00002038 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
2039 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00002040 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002041
françois romieue6de30d2011-01-03 15:08:37 +00002042 /* 8168DP family. */
2043 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2044 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00002045 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00002046
Francois Romieuef808d52008-06-29 13:10:54 +02002047 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07002048 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02002049 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02002050 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002051 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002052 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2053 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02002054 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02002055 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02002056 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002057
2058 /* 8168B family. */
2059 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2060 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
2061 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2062 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2063
2064 /* 8101 family. */
Hayes Wang5598bfe2012-07-02 17:23:21 +08002065 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39 },
2066 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
Hayes Wang7e18dca2012-03-30 14:33:02 +08002067 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00002068 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08002069 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
2070 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2071 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002072 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
2073 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
2074 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2075 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2076 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2077 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002078 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002079 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002080 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002081 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2082 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002083 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2084 /* FIXME: where did these entries come from ? -- FR */
2085 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2086 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2087
2088 /* 8110 family. */
2089 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2090 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2091 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2092 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2093 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2094 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2095
Jean Delvaref21b75e2009-05-26 20:54:48 -07002096 /* Catch-all */
2097 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02002098 };
2099 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 u32 reg;
2101
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002102 reg = RTL_R32(TxConfig);
2103 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 p++;
2105 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02002106
2107 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2108 netif_notice(tp, probe, dev,
2109 "unknown MAC, using family default\n");
2110 tp->mac_version = default_version;
2111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113
2114static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2115{
Francois Romieubcf0bf92006-07-26 23:14:13 +02002116 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
Francois Romieu867763c2007-08-17 18:21:58 +02002119struct phy_reg {
2120 u16 reg;
2121 u16 val;
2122};
2123
françois romieu4da19632011-01-03 15:07:55 +00002124static void rtl_writephy_batch(struct rtl8169_private *tp,
2125 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02002126{
2127 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00002128 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02002129 regs++;
2130 }
2131}
2132
françois romieubca03d52011-01-03 15:07:31 +00002133#define PHY_READ 0x00000000
2134#define PHY_DATA_OR 0x10000000
2135#define PHY_DATA_AND 0x20000000
2136#define PHY_BJMPN 0x30000000
2137#define PHY_READ_EFUSE 0x40000000
2138#define PHY_READ_MAC_BYTE 0x50000000
2139#define PHY_WRITE_MAC_BYTE 0x60000000
2140#define PHY_CLEAR_READCOUNT 0x70000000
2141#define PHY_WRITE 0x80000000
2142#define PHY_READCOUNT_EQ_SKIP 0x90000000
2143#define PHY_COMP_EQ_SKIPN 0xa0000000
2144#define PHY_COMP_NEQ_SKIPN 0xb0000000
2145#define PHY_WRITE_PREVIOUS 0xc0000000
2146#define PHY_SKIPN 0xd0000000
2147#define PHY_DELAY_MS 0xe0000000
2148#define PHY_WRITE_ERI_WORD 0xf0000000
2149
Hayes Wang960aee62011-06-18 11:37:48 +02002150struct fw_info {
2151 u32 magic;
2152 char version[RTL_VER_SIZE];
2153 __le32 fw_start;
2154 __le32 fw_len;
2155 u8 chksum;
2156} __packed;
2157
Francois Romieu1c361ef2011-06-17 17:16:24 +02002158#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2159
2160static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002161{
Francois Romieub6ffd972011-06-17 17:00:05 +02002162 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002163 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002164 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2165 char *version = rtl_fw->version;
2166 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002167
Francois Romieu1c361ef2011-06-17 17:16:24 +02002168 if (fw->size < FW_OPCODE_SIZE)
2169 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002170
2171 if (!fw_info->magic) {
2172 size_t i, size, start;
2173 u8 checksum = 0;
2174
2175 if (fw->size < sizeof(*fw_info))
2176 goto out;
2177
2178 for (i = 0; i < fw->size; i++)
2179 checksum += fw->data[i];
2180 if (checksum != 0)
2181 goto out;
2182
2183 start = le32_to_cpu(fw_info->fw_start);
2184 if (start > fw->size)
2185 goto out;
2186
2187 size = le32_to_cpu(fw_info->fw_len);
2188 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2189 goto out;
2190
2191 memcpy(version, fw_info->version, RTL_VER_SIZE);
2192
2193 pa->code = (__le32 *)(fw->data + start);
2194 pa->size = size;
2195 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002196 if (fw->size % FW_OPCODE_SIZE)
2197 goto out;
2198
2199 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2200
2201 pa->code = (__le32 *)fw->data;
2202 pa->size = fw->size / FW_OPCODE_SIZE;
2203 }
2204 version[RTL_VER_SIZE - 1] = 0;
2205
2206 rc = true;
2207out:
2208 return rc;
2209}
2210
Francois Romieufd112f22011-06-18 00:10:29 +02002211static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2212 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002213{
Francois Romieufd112f22011-06-18 00:10:29 +02002214 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002215 size_t index;
2216
Francois Romieu1c361ef2011-06-17 17:16:24 +02002217 for (index = 0; index < pa->size; index++) {
2218 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002219 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002220
hayeswang42b82dc2011-01-10 02:07:25 +00002221 switch(action & 0xf0000000) {
2222 case PHY_READ:
2223 case PHY_DATA_OR:
2224 case PHY_DATA_AND:
2225 case PHY_READ_EFUSE:
2226 case PHY_CLEAR_READCOUNT:
2227 case PHY_WRITE:
2228 case PHY_WRITE_PREVIOUS:
2229 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002230 break;
2231
hayeswang42b82dc2011-01-10 02:07:25 +00002232 case PHY_BJMPN:
2233 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002234 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002235 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002236 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002237 }
2238 break;
2239 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002240 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002241 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002242 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002243 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002244 }
2245 break;
2246 case PHY_COMP_EQ_SKIPN:
2247 case PHY_COMP_NEQ_SKIPN:
2248 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002249 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002250 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002251 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002252 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002253 }
2254 break;
2255
2256 case PHY_READ_MAC_BYTE:
2257 case PHY_WRITE_MAC_BYTE:
2258 case PHY_WRITE_ERI_WORD:
2259 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002260 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002261 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002262 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002263 }
2264 }
Francois Romieufd112f22011-06-18 00:10:29 +02002265 rc = true;
2266out:
2267 return rc;
2268}
françois romieubca03d52011-01-03 15:07:31 +00002269
Francois Romieufd112f22011-06-18 00:10:29 +02002270static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2271{
2272 struct net_device *dev = tp->dev;
2273 int rc = -EINVAL;
2274
2275 if (!rtl_fw_format_ok(tp, rtl_fw)) {
2276 netif_err(tp, ifup, dev, "invalid firwmare\n");
2277 goto out;
2278 }
2279
2280 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2281 rc = 0;
2282out:
2283 return rc;
2284}
2285
2286static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2287{
2288 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2289 u32 predata, count;
2290 size_t index;
2291
2292 predata = count = 0;
hayeswang42b82dc2011-01-10 02:07:25 +00002293
Francois Romieu1c361ef2011-06-17 17:16:24 +02002294 for (index = 0; index < pa->size; ) {
2295 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002296 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002297 u32 regno = (action & 0x0fff0000) >> 16;
2298
2299 if (!action)
2300 break;
françois romieubca03d52011-01-03 15:07:31 +00002301
2302 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002303 case PHY_READ:
2304 predata = rtl_readphy(tp, regno);
2305 count++;
2306 index++;
françois romieubca03d52011-01-03 15:07:31 +00002307 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002308 case PHY_DATA_OR:
2309 predata |= data;
2310 index++;
2311 break;
2312 case PHY_DATA_AND:
2313 predata &= data;
2314 index++;
2315 break;
2316 case PHY_BJMPN:
2317 index -= regno;
2318 break;
2319 case PHY_READ_EFUSE:
Francois Romieufdf6fc02012-07-06 22:40:38 +02002320 predata = rtl8168d_efuse_read(tp, regno);
hayeswang42b82dc2011-01-10 02:07:25 +00002321 index++;
2322 break;
2323 case PHY_CLEAR_READCOUNT:
2324 count = 0;
2325 index++;
2326 break;
2327 case PHY_WRITE:
2328 rtl_writephy(tp, regno, data);
2329 index++;
2330 break;
2331 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002332 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002333 break;
2334 case PHY_COMP_EQ_SKIPN:
2335 if (predata == data)
2336 index += regno;
2337 index++;
2338 break;
2339 case PHY_COMP_NEQ_SKIPN:
2340 if (predata != data)
2341 index += regno;
2342 index++;
2343 break;
2344 case PHY_WRITE_PREVIOUS:
2345 rtl_writephy(tp, regno, predata);
2346 index++;
2347 break;
2348 case PHY_SKIPN:
2349 index += regno + 1;
2350 break;
2351 case PHY_DELAY_MS:
2352 mdelay(data);
2353 index++;
2354 break;
2355
2356 case PHY_READ_MAC_BYTE:
2357 case PHY_WRITE_MAC_BYTE:
2358 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00002359 default:
2360 BUG();
2361 }
2362 }
2363}
2364
françois romieuf1e02ed2011-01-13 13:07:53 +00002365static void rtl_release_firmware(struct rtl8169_private *tp)
2366{
Francois Romieub6ffd972011-06-17 17:00:05 +02002367 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2368 release_firmware(tp->rtl_fw->fw);
2369 kfree(tp->rtl_fw);
2370 }
2371 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002372}
2373
François Romieu953a12c2011-04-24 17:38:48 +02002374static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002375{
Francois Romieub6ffd972011-06-17 17:00:05 +02002376 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002377
2378 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieueef63cc2013-02-08 23:43:20 +01002379 if (!IS_ERR_OR_NULL(rtl_fw))
Francois Romieub6ffd972011-06-17 17:00:05 +02002380 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002381}
2382
2383static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2384{
2385 if (rtl_readphy(tp, reg) != val)
2386 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2387 else
2388 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002389}
2390
françois romieu4da19632011-01-03 15:07:55 +00002391static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002393 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002394 { 0x1f, 0x0001 },
2395 { 0x06, 0x006e },
2396 { 0x08, 0x0708 },
2397 { 0x15, 0x4000 },
2398 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
françois romieu0b9b5712009-08-10 19:44:56 +00002400 { 0x1f, 0x0001 },
2401 { 0x03, 0x00a1 },
2402 { 0x02, 0x0008 },
2403 { 0x01, 0x0120 },
2404 { 0x00, 0x1000 },
2405 { 0x04, 0x0800 },
2406 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
françois romieu0b9b5712009-08-10 19:44:56 +00002408 { 0x03, 0xff41 },
2409 { 0x02, 0xdf60 },
2410 { 0x01, 0x0140 },
2411 { 0x00, 0x0077 },
2412 { 0x04, 0x7800 },
2413 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
françois romieu0b9b5712009-08-10 19:44:56 +00002415 { 0x03, 0x802f },
2416 { 0x02, 0x4f02 },
2417 { 0x01, 0x0409 },
2418 { 0x00, 0xf0f9 },
2419 { 0x04, 0x9800 },
2420 { 0x04, 0x9000 },
2421
2422 { 0x03, 0xdf01 },
2423 { 0x02, 0xdf20 },
2424 { 0x01, 0xff95 },
2425 { 0x00, 0xba00 },
2426 { 0x04, 0xa800 },
2427 { 0x04, 0xa000 },
2428
2429 { 0x03, 0xff41 },
2430 { 0x02, 0xdf20 },
2431 { 0x01, 0x0140 },
2432 { 0x00, 0x00bb },
2433 { 0x04, 0xb800 },
2434 { 0x04, 0xb000 },
2435
2436 { 0x03, 0xdf41 },
2437 { 0x02, 0xdc60 },
2438 { 0x01, 0x6340 },
2439 { 0x00, 0x007d },
2440 { 0x04, 0xd800 },
2441 { 0x04, 0xd000 },
2442
2443 { 0x03, 0xdf01 },
2444 { 0x02, 0xdf20 },
2445 { 0x01, 0x100a },
2446 { 0x00, 0xa0ff },
2447 { 0x04, 0xf800 },
2448 { 0x04, 0xf000 },
2449
2450 { 0x1f, 0x0000 },
2451 { 0x0b, 0x0000 },
2452 { 0x00, 0x9200 }
2453 };
2454
françois romieu4da19632011-01-03 15:07:55 +00002455 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456}
2457
françois romieu4da19632011-01-03 15:07:55 +00002458static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002459{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002460 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002461 { 0x1f, 0x0002 },
2462 { 0x01, 0x90d0 },
2463 { 0x1f, 0x0000 }
2464 };
2465
françois romieu4da19632011-01-03 15:07:55 +00002466 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002467}
2468
françois romieu4da19632011-01-03 15:07:55 +00002469static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002470{
2471 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002472
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002473 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2474 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002475 return;
2476
françois romieu4da19632011-01-03 15:07:55 +00002477 rtl_writephy(tp, 0x1f, 0x0001);
2478 rtl_writephy(tp, 0x10, 0xf01b);
2479 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002480}
2481
françois romieu4da19632011-01-03 15:07:55 +00002482static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002483{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002484 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002485 { 0x1f, 0x0001 },
2486 { 0x04, 0x0000 },
2487 { 0x03, 0x00a1 },
2488 { 0x02, 0x0008 },
2489 { 0x01, 0x0120 },
2490 { 0x00, 0x1000 },
2491 { 0x04, 0x0800 },
2492 { 0x04, 0x9000 },
2493 { 0x03, 0x802f },
2494 { 0x02, 0x4f02 },
2495 { 0x01, 0x0409 },
2496 { 0x00, 0xf099 },
2497 { 0x04, 0x9800 },
2498 { 0x04, 0xa000 },
2499 { 0x03, 0xdf01 },
2500 { 0x02, 0xdf20 },
2501 { 0x01, 0xff95 },
2502 { 0x00, 0xba00 },
2503 { 0x04, 0xa800 },
2504 { 0x04, 0xf000 },
2505 { 0x03, 0xdf01 },
2506 { 0x02, 0xdf20 },
2507 { 0x01, 0x101a },
2508 { 0x00, 0xa0ff },
2509 { 0x04, 0xf800 },
2510 { 0x04, 0x0000 },
2511 { 0x1f, 0x0000 },
2512
2513 { 0x1f, 0x0001 },
2514 { 0x10, 0xf41b },
2515 { 0x14, 0xfb54 },
2516 { 0x18, 0xf5c7 },
2517 { 0x1f, 0x0000 },
2518
2519 { 0x1f, 0x0001 },
2520 { 0x17, 0x0cc0 },
2521 { 0x1f, 0x0000 }
2522 };
2523
françois romieu4da19632011-01-03 15:07:55 +00002524 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002525
françois romieu4da19632011-01-03 15:07:55 +00002526 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002527}
2528
françois romieu4da19632011-01-03 15:07:55 +00002529static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002530{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002531 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002532 { 0x1f, 0x0001 },
2533 { 0x04, 0x0000 },
2534 { 0x03, 0x00a1 },
2535 { 0x02, 0x0008 },
2536 { 0x01, 0x0120 },
2537 { 0x00, 0x1000 },
2538 { 0x04, 0x0800 },
2539 { 0x04, 0x9000 },
2540 { 0x03, 0x802f },
2541 { 0x02, 0x4f02 },
2542 { 0x01, 0x0409 },
2543 { 0x00, 0xf099 },
2544 { 0x04, 0x9800 },
2545 { 0x04, 0xa000 },
2546 { 0x03, 0xdf01 },
2547 { 0x02, 0xdf20 },
2548 { 0x01, 0xff95 },
2549 { 0x00, 0xba00 },
2550 { 0x04, 0xa800 },
2551 { 0x04, 0xf000 },
2552 { 0x03, 0xdf01 },
2553 { 0x02, 0xdf20 },
2554 { 0x01, 0x101a },
2555 { 0x00, 0xa0ff },
2556 { 0x04, 0xf800 },
2557 { 0x04, 0x0000 },
2558 { 0x1f, 0x0000 },
2559
2560 { 0x1f, 0x0001 },
2561 { 0x0b, 0x8480 },
2562 { 0x1f, 0x0000 },
2563
2564 { 0x1f, 0x0001 },
2565 { 0x18, 0x67c7 },
2566 { 0x04, 0x2000 },
2567 { 0x03, 0x002f },
2568 { 0x02, 0x4360 },
2569 { 0x01, 0x0109 },
2570 { 0x00, 0x3022 },
2571 { 0x04, 0x2800 },
2572 { 0x1f, 0x0000 },
2573
2574 { 0x1f, 0x0001 },
2575 { 0x17, 0x0cc0 },
2576 { 0x1f, 0x0000 }
2577 };
2578
françois romieu4da19632011-01-03 15:07:55 +00002579 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002580}
2581
françois romieu4da19632011-01-03 15:07:55 +00002582static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002583{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002584 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002585 { 0x10, 0xf41b },
2586 { 0x1f, 0x0000 }
2587 };
2588
françois romieu4da19632011-01-03 15:07:55 +00002589 rtl_writephy(tp, 0x1f, 0x0001);
2590 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002591
françois romieu4da19632011-01-03 15:07:55 +00002592 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002593}
2594
françois romieu4da19632011-01-03 15:07:55 +00002595static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002596{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002597 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002598 { 0x1f, 0x0001 },
2599 { 0x10, 0xf41b },
2600 { 0x1f, 0x0000 }
2601 };
2602
françois romieu4da19632011-01-03 15:07:55 +00002603 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002604}
2605
françois romieu4da19632011-01-03 15:07:55 +00002606static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002607{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002608 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002609 { 0x1f, 0x0000 },
2610 { 0x1d, 0x0f00 },
2611 { 0x1f, 0x0002 },
2612 { 0x0c, 0x1ec8 },
2613 { 0x1f, 0x0000 }
2614 };
2615
françois romieu4da19632011-01-03 15:07:55 +00002616 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002617}
2618
françois romieu4da19632011-01-03 15:07:55 +00002619static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002620{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002621 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002622 { 0x1f, 0x0001 },
2623 { 0x1d, 0x3d98 },
2624 { 0x1f, 0x0000 }
2625 };
2626
françois romieu4da19632011-01-03 15:07:55 +00002627 rtl_writephy(tp, 0x1f, 0x0000);
2628 rtl_patchphy(tp, 0x14, 1 << 5);
2629 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002630
françois romieu4da19632011-01-03 15:07:55 +00002631 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002632}
2633
françois romieu4da19632011-01-03 15:07:55 +00002634static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002635{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002636 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002637 { 0x1f, 0x0001 },
2638 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002639 { 0x1f, 0x0002 },
2640 { 0x00, 0x88d4 },
2641 { 0x01, 0x82b1 },
2642 { 0x03, 0x7002 },
2643 { 0x08, 0x9e30 },
2644 { 0x09, 0x01f0 },
2645 { 0x0a, 0x5500 },
2646 { 0x0c, 0x00c8 },
2647 { 0x1f, 0x0003 },
2648 { 0x12, 0xc096 },
2649 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002650 { 0x1f, 0x0000 },
2651 { 0x1f, 0x0000 },
2652 { 0x09, 0x2000 },
2653 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002654 };
2655
françois romieu4da19632011-01-03 15:07:55 +00002656 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002657
françois romieu4da19632011-01-03 15:07:55 +00002658 rtl_patchphy(tp, 0x14, 1 << 5);
2659 rtl_patchphy(tp, 0x0d, 1 << 5);
2660 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002661}
2662
françois romieu4da19632011-01-03 15:07:55 +00002663static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002664{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002665 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002666 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002667 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002668 { 0x03, 0x802f },
2669 { 0x02, 0x4f02 },
2670 { 0x01, 0x0409 },
2671 { 0x00, 0xf099 },
2672 { 0x04, 0x9800 },
2673 { 0x04, 0x9000 },
2674 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002675 { 0x1f, 0x0002 },
2676 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002677 { 0x06, 0x0761 },
2678 { 0x1f, 0x0003 },
2679 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002680 { 0x1f, 0x0000 }
2681 };
2682
françois romieu4da19632011-01-03 15:07:55 +00002683 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002684
françois romieu4da19632011-01-03 15:07:55 +00002685 rtl_patchphy(tp, 0x16, 1 << 0);
2686 rtl_patchphy(tp, 0x14, 1 << 5);
2687 rtl_patchphy(tp, 0x0d, 1 << 5);
2688 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002689}
2690
françois romieu4da19632011-01-03 15:07:55 +00002691static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002692{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002693 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002694 { 0x1f, 0x0001 },
2695 { 0x12, 0x2300 },
2696 { 0x1d, 0x3d98 },
2697 { 0x1f, 0x0002 },
2698 { 0x0c, 0x7eb8 },
2699 { 0x06, 0x5461 },
2700 { 0x1f, 0x0003 },
2701 { 0x16, 0x0f0a },
2702 { 0x1f, 0x0000 }
2703 };
2704
françois romieu4da19632011-01-03 15:07:55 +00002705 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002706
françois romieu4da19632011-01-03 15:07:55 +00002707 rtl_patchphy(tp, 0x16, 1 << 0);
2708 rtl_patchphy(tp, 0x14, 1 << 5);
2709 rtl_patchphy(tp, 0x0d, 1 << 5);
2710 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002711}
2712
françois romieu4da19632011-01-03 15:07:55 +00002713static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002714{
françois romieu4da19632011-01-03 15:07:55 +00002715 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002716}
2717
françois romieubca03d52011-01-03 15:07:31 +00002718static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002719{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002720 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002721 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002722 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002723 { 0x06, 0x4064 },
2724 { 0x07, 0x2863 },
2725 { 0x08, 0x059c },
2726 { 0x09, 0x26b4 },
2727 { 0x0a, 0x6a19 },
2728 { 0x0b, 0xdcc8 },
2729 { 0x10, 0xf06d },
2730 { 0x14, 0x7f68 },
2731 { 0x18, 0x7fd9 },
2732 { 0x1c, 0xf0ff },
2733 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002734 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002735 { 0x12, 0xf49f },
2736 { 0x13, 0x070b },
2737 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002738 { 0x14, 0x94c0 },
2739
2740 /*
2741 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002742 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002743 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002744 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002745 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002746 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002747 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002748 { 0x06, 0x5561 },
2749
2750 /*
2751 * Can not link to 1Gbps with bad cable
2752 * Decrease SNR threshold form 21.07dB to 19.04dB
2753 */
2754 { 0x1f, 0x0001 },
2755 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002756
2757 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002758 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002759 };
2760
françois romieu4da19632011-01-03 15:07:55 +00002761 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002762
françois romieubca03d52011-01-03 15:07:31 +00002763 /*
2764 * Rx Error Issue
2765 * Fine Tune Switching regulator parameter
2766 */
françois romieu4da19632011-01-03 15:07:55 +00002767 rtl_writephy(tp, 0x1f, 0x0002);
2768 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2769 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002770
Francois Romieufdf6fc02012-07-06 22:40:38 +02002771 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002772 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002773 { 0x1f, 0x0002 },
2774 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002775 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002776 { 0x05, 0x8330 },
2777 { 0x06, 0x669a },
2778 { 0x1f, 0x0002 }
2779 };
2780 int val;
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
françois romieu4da19632011-01-03 15:07:55 +00002784 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002785
2786 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002787 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002788 0x0065, 0x0066, 0x0067, 0x0068,
2789 0x0069, 0x006a, 0x006b, 0x006c
2790 };
2791 int i;
2792
françois romieu4da19632011-01-03 15:07:55 +00002793 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002794
2795 val &= 0xff00;
2796 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002797 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002798 }
2799 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002800 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002801 { 0x1f, 0x0002 },
2802 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002803 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002804 { 0x05, 0x8330 },
2805 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002806 };
2807
françois romieu4da19632011-01-03 15:07:55 +00002808 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002809 }
2810
françois romieubca03d52011-01-03 15:07:31 +00002811 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002812 rtl_writephy(tp, 0x1f, 0x0002);
2813 rtl_patchphy(tp, 0x0d, 0x0300);
2814 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002815
françois romieubca03d52011-01-03 15:07:31 +00002816 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002817 rtl_writephy(tp, 0x1f, 0x0002);
2818 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2819 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002820
françois romieu4da19632011-01-03 15:07:55 +00002821 rtl_writephy(tp, 0x1f, 0x0005);
2822 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002823
2824 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002825
françois romieu4da19632011-01-03 15:07:55 +00002826 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002827}
2828
françois romieubca03d52011-01-03 15:07:31 +00002829static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002830{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002831 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002832 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002833 { 0x1f, 0x0001 },
2834 { 0x06, 0x4064 },
2835 { 0x07, 0x2863 },
2836 { 0x08, 0x059c },
2837 { 0x09, 0x26b4 },
2838 { 0x0a, 0x6a19 },
2839 { 0x0b, 0xdcc8 },
2840 { 0x10, 0xf06d },
2841 { 0x14, 0x7f68 },
2842 { 0x18, 0x7fd9 },
2843 { 0x1c, 0xf0ff },
2844 { 0x1d, 0x3d9c },
2845 { 0x1f, 0x0003 },
2846 { 0x12, 0xf49f },
2847 { 0x13, 0x070b },
2848 { 0x1a, 0x05ad },
2849 { 0x14, 0x94c0 },
2850
françois romieubca03d52011-01-03 15:07:31 +00002851 /*
2852 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002853 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002854 */
françois romieudaf9df62009-10-07 12:44:20 +00002855 { 0x1f, 0x0002 },
2856 { 0x06, 0x5561 },
2857 { 0x1f, 0x0005 },
2858 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002859 { 0x06, 0x5561 },
2860
2861 /*
2862 * Can not link to 1Gbps with bad cable
2863 * Decrease SNR threshold form 21.07dB to 19.04dB
2864 */
2865 { 0x1f, 0x0001 },
2866 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002867
2868 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002869 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002870 };
2871
françois romieu4da19632011-01-03 15:07:55 +00002872 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002873
Francois Romieufdf6fc02012-07-06 22:40:38 +02002874 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002875 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002876 { 0x1f, 0x0002 },
2877 { 0x05, 0x669a },
2878 { 0x1f, 0x0005 },
2879 { 0x05, 0x8330 },
2880 { 0x06, 0x669a },
2881
2882 { 0x1f, 0x0002 }
2883 };
2884 int val;
2885
françois romieu4da19632011-01-03 15:07:55 +00002886 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002887
françois romieu4da19632011-01-03 15:07:55 +00002888 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002889 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002890 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002891 0x0065, 0x0066, 0x0067, 0x0068,
2892 0x0069, 0x006a, 0x006b, 0x006c
2893 };
2894 int i;
2895
françois romieu4da19632011-01-03 15:07:55 +00002896 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002897
2898 val &= 0xff00;
2899 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002900 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002901 }
2902 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002903 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002904 { 0x1f, 0x0002 },
2905 { 0x05, 0x2642 },
2906 { 0x1f, 0x0005 },
2907 { 0x05, 0x8330 },
2908 { 0x06, 0x2642 }
2909 };
2910
françois romieu4da19632011-01-03 15:07:55 +00002911 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002912 }
2913
françois romieubca03d52011-01-03 15:07:31 +00002914 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002915 rtl_writephy(tp, 0x1f, 0x0002);
2916 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2917 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002918
françois romieubca03d52011-01-03 15:07:31 +00002919 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002920 rtl_writephy(tp, 0x1f, 0x0002);
2921 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002922
françois romieu4da19632011-01-03 15:07:55 +00002923 rtl_writephy(tp, 0x1f, 0x0005);
2924 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002925
2926 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002927
françois romieu4da19632011-01-03 15:07:55 +00002928 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002929}
2930
françois romieu4da19632011-01-03 15:07:55 +00002931static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002932{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002933 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002934 { 0x1f, 0x0002 },
2935 { 0x10, 0x0008 },
2936 { 0x0d, 0x006c },
2937
2938 { 0x1f, 0x0000 },
2939 { 0x0d, 0xf880 },
2940
2941 { 0x1f, 0x0001 },
2942 { 0x17, 0x0cc0 },
2943
2944 { 0x1f, 0x0001 },
2945 { 0x0b, 0xa4d8 },
2946 { 0x09, 0x281c },
2947 { 0x07, 0x2883 },
2948 { 0x0a, 0x6b35 },
2949 { 0x1d, 0x3da4 },
2950 { 0x1c, 0xeffd },
2951 { 0x14, 0x7f52 },
2952 { 0x18, 0x7fc6 },
2953 { 0x08, 0x0601 },
2954 { 0x06, 0x4063 },
2955 { 0x10, 0xf074 },
2956 { 0x1f, 0x0003 },
2957 { 0x13, 0x0789 },
2958 { 0x12, 0xf4bd },
2959 { 0x1a, 0x04fd },
2960 { 0x14, 0x84b0 },
2961 { 0x1f, 0x0000 },
2962 { 0x00, 0x9200 },
2963
2964 { 0x1f, 0x0005 },
2965 { 0x01, 0x0340 },
2966 { 0x1f, 0x0001 },
2967 { 0x04, 0x4000 },
2968 { 0x03, 0x1d21 },
2969 { 0x02, 0x0c32 },
2970 { 0x01, 0x0200 },
2971 { 0x00, 0x5554 },
2972 { 0x04, 0x4800 },
2973 { 0x04, 0x4000 },
2974 { 0x04, 0xf000 },
2975 { 0x03, 0xdf01 },
2976 { 0x02, 0xdf20 },
2977 { 0x01, 0x101a },
2978 { 0x00, 0xa0ff },
2979 { 0x04, 0xf800 },
2980 { 0x04, 0xf000 },
2981 { 0x1f, 0x0000 },
2982
2983 { 0x1f, 0x0007 },
2984 { 0x1e, 0x0023 },
2985 { 0x16, 0x0000 },
2986 { 0x1f, 0x0000 }
2987 };
2988
françois romieu4da19632011-01-03 15:07:55 +00002989 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002990}
2991
françois romieue6de30d2011-01-03 15:08:37 +00002992static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2993{
2994 static const struct phy_reg phy_reg_init[] = {
2995 { 0x1f, 0x0001 },
2996 { 0x17, 0x0cc0 },
2997
2998 { 0x1f, 0x0007 },
2999 { 0x1e, 0x002d },
3000 { 0x18, 0x0040 },
3001 { 0x1f, 0x0000 }
3002 };
3003
3004 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3005 rtl_patchphy(tp, 0x0d, 1 << 5);
3006}
3007
Hayes Wang70090422011-07-06 15:58:06 +08003008static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00003009{
3010 static const struct phy_reg phy_reg_init[] = {
3011 /* Enable Delay cap */
3012 { 0x1f, 0x0005 },
3013 { 0x05, 0x8b80 },
3014 { 0x06, 0xc896 },
3015 { 0x1f, 0x0000 },
3016
3017 /* Channel estimation fine tune */
3018 { 0x1f, 0x0001 },
3019 { 0x0b, 0x6c20 },
3020 { 0x07, 0x2872 },
3021 { 0x1c, 0xefff },
3022 { 0x1f, 0x0003 },
3023 { 0x14, 0x6420 },
3024 { 0x1f, 0x0000 },
3025
3026 /* Update PFM & 10M TX idle timer */
3027 { 0x1f, 0x0007 },
3028 { 0x1e, 0x002f },
3029 { 0x15, 0x1919 },
3030 { 0x1f, 0x0000 },
3031
3032 { 0x1f, 0x0007 },
3033 { 0x1e, 0x00ac },
3034 { 0x18, 0x0006 },
3035 { 0x1f, 0x0000 }
3036 };
3037
Francois Romieu15ecd032011-04-27 13:52:22 -07003038 rtl_apply_firmware(tp);
3039
hayeswang01dc7fe2011-03-21 01:50:28 +00003040 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3041
3042 /* DCO enable for 10M IDLE Power */
3043 rtl_writephy(tp, 0x1f, 0x0007);
3044 rtl_writephy(tp, 0x1e, 0x0023);
3045 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
3046 rtl_writephy(tp, 0x1f, 0x0000);
3047
3048 /* For impedance matching */
3049 rtl_writephy(tp, 0x1f, 0x0002);
3050 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003051 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003052
3053 /* PHY auto speed down */
3054 rtl_writephy(tp, 0x1f, 0x0007);
3055 rtl_writephy(tp, 0x1e, 0x002d);
3056 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
3057 rtl_writephy(tp, 0x1f, 0x0000);
3058 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3059
3060 rtl_writephy(tp, 0x1f, 0x0005);
3061 rtl_writephy(tp, 0x05, 0x8b86);
3062 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3063 rtl_writephy(tp, 0x1f, 0x0000);
3064
3065 rtl_writephy(tp, 0x1f, 0x0005);
3066 rtl_writephy(tp, 0x05, 0x8b85);
3067 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3068 rtl_writephy(tp, 0x1f, 0x0007);
3069 rtl_writephy(tp, 0x1e, 0x0020);
3070 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
3071 rtl_writephy(tp, 0x1f, 0x0006);
3072 rtl_writephy(tp, 0x00, 0x5a00);
3073 rtl_writephy(tp, 0x1f, 0x0000);
3074 rtl_writephy(tp, 0x0d, 0x0007);
3075 rtl_writephy(tp, 0x0e, 0x003c);
3076 rtl_writephy(tp, 0x0d, 0x4007);
3077 rtl_writephy(tp, 0x0e, 0x0000);
3078 rtl_writephy(tp, 0x0d, 0x0000);
3079}
3080
françois romieu9ecb9aa2012-12-07 11:20:21 +00003081static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3082{
3083 const u16 w[] = {
3084 addr[0] | (addr[1] << 8),
3085 addr[2] | (addr[3] << 8),
3086 addr[4] | (addr[5] << 8)
3087 };
3088 const struct exgmac_reg e[] = {
3089 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3090 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3091 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3092 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3093 };
3094
3095 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3096}
3097
Hayes Wang70090422011-07-06 15:58:06 +08003098static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3099{
3100 static const struct phy_reg phy_reg_init[] = {
3101 /* Enable Delay cap */
3102 { 0x1f, 0x0004 },
3103 { 0x1f, 0x0007 },
3104 { 0x1e, 0x00ac },
3105 { 0x18, 0x0006 },
3106 { 0x1f, 0x0002 },
3107 { 0x1f, 0x0000 },
3108 { 0x1f, 0x0000 },
3109
3110 /* Channel estimation fine tune */
3111 { 0x1f, 0x0003 },
3112 { 0x09, 0xa20f },
3113 { 0x1f, 0x0000 },
3114 { 0x1f, 0x0000 },
3115
3116 /* Green Setting */
3117 { 0x1f, 0x0005 },
3118 { 0x05, 0x8b5b },
3119 { 0x06, 0x9222 },
3120 { 0x05, 0x8b6d },
3121 { 0x06, 0x8000 },
3122 { 0x05, 0x8b76 },
3123 { 0x06, 0x8000 },
3124 { 0x1f, 0x0000 }
3125 };
3126
3127 rtl_apply_firmware(tp);
3128
3129 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3130
3131 /* For 4-corner performance improve */
3132 rtl_writephy(tp, 0x1f, 0x0005);
3133 rtl_writephy(tp, 0x05, 0x8b80);
3134 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
3135 rtl_writephy(tp, 0x1f, 0x0000);
3136
3137 /* PHY auto speed down */
3138 rtl_writephy(tp, 0x1f, 0x0004);
3139 rtl_writephy(tp, 0x1f, 0x0007);
3140 rtl_writephy(tp, 0x1e, 0x002d);
3141 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3142 rtl_writephy(tp, 0x1f, 0x0002);
3143 rtl_writephy(tp, 0x1f, 0x0000);
3144 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3145
3146 /* improve 10M EEE waveform */
3147 rtl_writephy(tp, 0x1f, 0x0005);
3148 rtl_writephy(tp, 0x05, 0x8b86);
3149 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3150 rtl_writephy(tp, 0x1f, 0x0000);
3151
3152 /* Improve 2-pair detection performance */
3153 rtl_writephy(tp, 0x1f, 0x0005);
3154 rtl_writephy(tp, 0x05, 0x8b85);
3155 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3156 rtl_writephy(tp, 0x1f, 0x0000);
3157
3158 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003159 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08003160 rtl_writephy(tp, 0x1f, 0x0005);
3161 rtl_writephy(tp, 0x05, 0x8b85);
3162 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3163 rtl_writephy(tp, 0x1f, 0x0004);
3164 rtl_writephy(tp, 0x1f, 0x0007);
3165 rtl_writephy(tp, 0x1e, 0x0020);
David S. Miller1805b2f2011-10-24 18:18:09 -04003166 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003167 rtl_writephy(tp, 0x1f, 0x0002);
3168 rtl_writephy(tp, 0x1f, 0x0000);
3169 rtl_writephy(tp, 0x0d, 0x0007);
3170 rtl_writephy(tp, 0x0e, 0x003c);
3171 rtl_writephy(tp, 0x0d, 0x4007);
3172 rtl_writephy(tp, 0x0e, 0x0000);
3173 rtl_writephy(tp, 0x0d, 0x0000);
3174
3175 /* Green feature */
3176 rtl_writephy(tp, 0x1f, 0x0003);
3177 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3178 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3179 rtl_writephy(tp, 0x1f, 0x0000);
hayeswange0c07552012-10-23 20:24:03 +00003180
françois romieu9ecb9aa2012-12-07 11:20:21 +00003181 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3182 rtl_rar_exgmac_set(tp, tp->dev->dev_addr);
Hayes Wang70090422011-07-06 15:58:06 +08003183}
3184
Hayes Wang5f886e02012-03-30 14:33:03 +08003185static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3186{
3187 /* For 4-corner performance improve */
3188 rtl_writephy(tp, 0x1f, 0x0005);
3189 rtl_writephy(tp, 0x05, 0x8b80);
3190 rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3191 rtl_writephy(tp, 0x1f, 0x0000);
3192
3193 /* PHY auto speed down */
3194 rtl_writephy(tp, 0x1f, 0x0007);
3195 rtl_writephy(tp, 0x1e, 0x002d);
3196 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3197 rtl_writephy(tp, 0x1f, 0x0000);
3198 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3199
3200 /* Improve 10M EEE waveform */
3201 rtl_writephy(tp, 0x1f, 0x0005);
3202 rtl_writephy(tp, 0x05, 0x8b86);
3203 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3204 rtl_writephy(tp, 0x1f, 0x0000);
3205}
3206
Hayes Wangc2218922011-09-06 16:55:18 +08003207static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3208{
3209 static const struct phy_reg phy_reg_init[] = {
3210 /* Channel estimation fine tune */
3211 { 0x1f, 0x0003 },
3212 { 0x09, 0xa20f },
3213 { 0x1f, 0x0000 },
3214
3215 /* Modify green table for giga & fnet */
3216 { 0x1f, 0x0005 },
3217 { 0x05, 0x8b55 },
3218 { 0x06, 0x0000 },
3219 { 0x05, 0x8b5e },
3220 { 0x06, 0x0000 },
3221 { 0x05, 0x8b67 },
3222 { 0x06, 0x0000 },
3223 { 0x05, 0x8b70 },
3224 { 0x06, 0x0000 },
3225 { 0x1f, 0x0000 },
3226 { 0x1f, 0x0007 },
3227 { 0x1e, 0x0078 },
3228 { 0x17, 0x0000 },
3229 { 0x19, 0x00fb },
3230 { 0x1f, 0x0000 },
3231
3232 /* Modify green table for 10M */
3233 { 0x1f, 0x0005 },
3234 { 0x05, 0x8b79 },
3235 { 0x06, 0xaa00 },
3236 { 0x1f, 0x0000 },
3237
3238 /* Disable hiimpedance detection (RTCT) */
3239 { 0x1f, 0x0003 },
3240 { 0x01, 0x328a },
3241 { 0x1f, 0x0000 }
3242 };
3243
3244 rtl_apply_firmware(tp);
3245
3246 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3247
Hayes Wang5f886e02012-03-30 14:33:03 +08003248 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003249
3250 /* Improve 2-pair detection performance */
3251 rtl_writephy(tp, 0x1f, 0x0005);
3252 rtl_writephy(tp, 0x05, 0x8b85);
3253 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3254 rtl_writephy(tp, 0x1f, 0x0000);
3255}
3256
3257static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3258{
3259 rtl_apply_firmware(tp);
3260
Hayes Wang5f886e02012-03-30 14:33:03 +08003261 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003262}
3263
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003264static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3265{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003266 static const struct phy_reg phy_reg_init[] = {
3267 /* Channel estimation fine tune */
3268 { 0x1f, 0x0003 },
3269 { 0x09, 0xa20f },
3270 { 0x1f, 0x0000 },
3271
3272 /* Modify green table for giga & fnet */
3273 { 0x1f, 0x0005 },
3274 { 0x05, 0x8b55 },
3275 { 0x06, 0x0000 },
3276 { 0x05, 0x8b5e },
3277 { 0x06, 0x0000 },
3278 { 0x05, 0x8b67 },
3279 { 0x06, 0x0000 },
3280 { 0x05, 0x8b70 },
3281 { 0x06, 0x0000 },
3282 { 0x1f, 0x0000 },
3283 { 0x1f, 0x0007 },
3284 { 0x1e, 0x0078 },
3285 { 0x17, 0x0000 },
3286 { 0x19, 0x00aa },
3287 { 0x1f, 0x0000 },
3288
3289 /* Modify green table for 10M */
3290 { 0x1f, 0x0005 },
3291 { 0x05, 0x8b79 },
3292 { 0x06, 0xaa00 },
3293 { 0x1f, 0x0000 },
3294
3295 /* Disable hiimpedance detection (RTCT) */
3296 { 0x1f, 0x0003 },
3297 { 0x01, 0x328a },
3298 { 0x1f, 0x0000 }
3299 };
3300
3301
3302 rtl_apply_firmware(tp);
3303
3304 rtl8168f_hw_phy_config(tp);
3305
3306 /* Improve 2-pair detection performance */
3307 rtl_writephy(tp, 0x1f, 0x0005);
3308 rtl_writephy(tp, 0x05, 0x8b85);
3309 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3310 rtl_writephy(tp, 0x1f, 0x0000);
3311
3312 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3313
3314 /* Modify green table for giga */
3315 rtl_writephy(tp, 0x1f, 0x0005);
3316 rtl_writephy(tp, 0x05, 0x8b54);
3317 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3318 rtl_writephy(tp, 0x05, 0x8b5d);
3319 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3320 rtl_writephy(tp, 0x05, 0x8a7c);
3321 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3322 rtl_writephy(tp, 0x05, 0x8a7f);
3323 rtl_w1w0_phy(tp, 0x06, 0x0100, 0x0000);
3324 rtl_writephy(tp, 0x05, 0x8a82);
3325 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3326 rtl_writephy(tp, 0x05, 0x8a85);
3327 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3328 rtl_writephy(tp, 0x05, 0x8a88);
3329 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3330 rtl_writephy(tp, 0x1f, 0x0000);
3331
3332 /* uc same-seed solution */
3333 rtl_writephy(tp, 0x1f, 0x0005);
3334 rtl_writephy(tp, 0x05, 0x8b85);
3335 rtl_w1w0_phy(tp, 0x06, 0x8000, 0x0000);
3336 rtl_writephy(tp, 0x1f, 0x0000);
3337
3338 /* eee setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003339 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003340 rtl_writephy(tp, 0x1f, 0x0005);
3341 rtl_writephy(tp, 0x05, 0x8b85);
3342 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3343 rtl_writephy(tp, 0x1f, 0x0004);
3344 rtl_writephy(tp, 0x1f, 0x0007);
3345 rtl_writephy(tp, 0x1e, 0x0020);
3346 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
3347 rtl_writephy(tp, 0x1f, 0x0000);
3348 rtl_writephy(tp, 0x0d, 0x0007);
3349 rtl_writephy(tp, 0x0e, 0x003c);
3350 rtl_writephy(tp, 0x0d, 0x4007);
3351 rtl_writephy(tp, 0x0e, 0x0000);
3352 rtl_writephy(tp, 0x0d, 0x0000);
3353
3354 /* Green feature */
3355 rtl_writephy(tp, 0x1f, 0x0003);
3356 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3357 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3358 rtl_writephy(tp, 0x1f, 0x0000);
3359}
3360
Hayes Wangc5583862012-07-02 17:23:22 +08003361static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp)
3362{
Hayes Wangc5583862012-07-02 17:23:22 +08003363 rtl_apply_firmware(tp);
3364
hayeswang41f44d12013-04-01 22:23:36 +00003365 rtl_writephy(tp, 0x1f, 0x0a46);
3366 if (rtl_readphy(tp, 0x10) & 0x0100) {
3367 rtl_writephy(tp, 0x1f, 0x0bcc);
3368 rtl_w1w0_phy(tp, 0x12, 0x0000, 0x8000);
3369 } else {
3370 rtl_writephy(tp, 0x1f, 0x0bcc);
3371 rtl_w1w0_phy(tp, 0x12, 0x8000, 0x0000);
3372 }
Hayes Wangc5583862012-07-02 17:23:22 +08003373
hayeswang41f44d12013-04-01 22:23:36 +00003374 rtl_writephy(tp, 0x1f, 0x0a46);
3375 if (rtl_readphy(tp, 0x13) & 0x0100) {
3376 rtl_writephy(tp, 0x1f, 0x0c41);
3377 rtl_w1w0_phy(tp, 0x15, 0x0002, 0x0000);
3378 } else {
hayeswangfe7524c2013-04-01 22:23:37 +00003379 rtl_writephy(tp, 0x1f, 0x0c41);
3380 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0002);
hayeswang41f44d12013-04-01 22:23:36 +00003381 }
Hayes Wangc5583862012-07-02 17:23:22 +08003382
hayeswang41f44d12013-04-01 22:23:36 +00003383 /* Enable PHY auto speed down */
3384 rtl_writephy(tp, 0x1f, 0x0a44);
3385 rtl_w1w0_phy(tp, 0x11, 0x000c, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003386
hayeswangfe7524c2013-04-01 22:23:37 +00003387 rtl_writephy(tp, 0x1f, 0x0bcc);
3388 rtl_w1w0_phy(tp, 0x14, 0x0100, 0x0000);
3389 rtl_writephy(tp, 0x1f, 0x0a44);
3390 rtl_w1w0_phy(tp, 0x11, 0x00c0, 0x0000);
3391 rtl_writephy(tp, 0x1f, 0x0a43);
3392 rtl_writephy(tp, 0x13, 0x8084);
3393 rtl_w1w0_phy(tp, 0x14, 0x0000, 0x6000);
3394 rtl_w1w0_phy(tp, 0x10, 0x1003, 0x0000);
3395
hayeswang41f44d12013-04-01 22:23:36 +00003396 /* EEE auto-fallback function */
3397 rtl_writephy(tp, 0x1f, 0x0a4b);
3398 rtl_w1w0_phy(tp, 0x11, 0x0004, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003399
hayeswang41f44d12013-04-01 22:23:36 +00003400 /* Enable UC LPF tune function */
3401 rtl_writephy(tp, 0x1f, 0x0a43);
3402 rtl_writephy(tp, 0x13, 0x8012);
3403 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3404
3405 rtl_writephy(tp, 0x1f, 0x0c42);
3406 rtl_w1w0_phy(tp, 0x11, 0x4000, 0x2000);
3407
hayeswangfe7524c2013-04-01 22:23:37 +00003408 /* Improve SWR Efficiency */
3409 rtl_writephy(tp, 0x1f, 0x0bcd);
3410 rtl_writephy(tp, 0x14, 0x5065);
3411 rtl_writephy(tp, 0x14, 0xd065);
3412 rtl_writephy(tp, 0x1f, 0x0bc8);
3413 rtl_writephy(tp, 0x11, 0x5655);
3414 rtl_writephy(tp, 0x1f, 0x0bcd);
3415 rtl_writephy(tp, 0x14, 0x1065);
3416 rtl_writephy(tp, 0x14, 0x9065);
3417 rtl_writephy(tp, 0x14, 0x1065);
3418
hayeswang41f44d12013-04-01 22:23:36 +00003419 rtl_writephy(tp, 0x1f, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003420}
3421
françois romieu4da19632011-01-03 15:07:55 +00003422static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02003423{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003424 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003425 { 0x1f, 0x0003 },
3426 { 0x08, 0x441d },
3427 { 0x01, 0x9100 },
3428 { 0x1f, 0x0000 }
3429 };
3430
françois romieu4da19632011-01-03 15:07:55 +00003431 rtl_writephy(tp, 0x1f, 0x0000);
3432 rtl_patchphy(tp, 0x11, 1 << 12);
3433 rtl_patchphy(tp, 0x19, 1 << 13);
3434 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003435
françois romieu4da19632011-01-03 15:07:55 +00003436 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02003437}
3438
Hayes Wang5a5e4442011-02-22 17:26:21 +08003439static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
3440{
3441 static const struct phy_reg phy_reg_init[] = {
3442 { 0x1f, 0x0005 },
3443 { 0x1a, 0x0000 },
3444 { 0x1f, 0x0000 },
3445
3446 { 0x1f, 0x0004 },
3447 { 0x1c, 0x0000 },
3448 { 0x1f, 0x0000 },
3449
3450 { 0x1f, 0x0001 },
3451 { 0x15, 0x7701 },
3452 { 0x1f, 0x0000 }
3453 };
3454
3455 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01003456 rtl_writephy(tp, 0x1f, 0x0000);
3457 rtl_writephy(tp, 0x18, 0x0310);
3458 msleep(100);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003459
François Romieu953a12c2011-04-24 17:38:48 +02003460 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003461
3462 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3463}
3464
Hayes Wang7e18dca2012-03-30 14:33:02 +08003465static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
3466{
Hayes Wang7e18dca2012-03-30 14:33:02 +08003467 /* Disable ALDPS before setting firmware */
Francois Romieueef63cc2013-02-08 23:43:20 +01003468 rtl_writephy(tp, 0x1f, 0x0000);
3469 rtl_writephy(tp, 0x18, 0x0310);
3470 msleep(20);
Hayes Wang7e18dca2012-03-30 14:33:02 +08003471
3472 rtl_apply_firmware(tp);
3473
3474 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003475 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08003476 rtl_writephy(tp, 0x1f, 0x0004);
3477 rtl_writephy(tp, 0x10, 0x401f);
3478 rtl_writephy(tp, 0x19, 0x7030);
3479 rtl_writephy(tp, 0x1f, 0x0000);
3480}
3481
Hayes Wang5598bfe2012-07-02 17:23:21 +08003482static void rtl8106e_hw_phy_config(struct rtl8169_private *tp)
3483{
Hayes Wang5598bfe2012-07-02 17:23:21 +08003484 static const struct phy_reg phy_reg_init[] = {
3485 { 0x1f, 0x0004 },
3486 { 0x10, 0xc07f },
3487 { 0x19, 0x7030 },
3488 { 0x1f, 0x0000 }
3489 };
3490
3491 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01003492 rtl_writephy(tp, 0x1f, 0x0000);
3493 rtl_writephy(tp, 0x18, 0x0310);
3494 msleep(100);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003495
3496 rtl_apply_firmware(tp);
3497
Francois Romieufdf6fc02012-07-06 22:40:38 +02003498 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003499 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3500
Francois Romieufdf6fc02012-07-06 22:40:38 +02003501 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003502}
3503
Francois Romieu5615d9f2007-08-17 17:50:46 +02003504static void rtl_hw_phy_config(struct net_device *dev)
3505{
3506 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003507
3508 rtl8169_print_mac_version(tp);
3509
3510 switch (tp->mac_version) {
3511 case RTL_GIGA_MAC_VER_01:
3512 break;
3513 case RTL_GIGA_MAC_VER_02:
3514 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00003515 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003516 break;
3517 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00003518 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003519 break;
françois romieu2e9558562009-08-10 19:44:19 +00003520 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00003521 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00003522 break;
françois romieu8c7006a2009-08-10 19:43:29 +00003523 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00003524 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00003525 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02003526 case RTL_GIGA_MAC_VER_07:
3527 case RTL_GIGA_MAC_VER_08:
3528 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00003529 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003530 break;
Francois Romieu236b8082008-05-30 16:11:48 +02003531 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00003532 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003533 break;
3534 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00003535 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003536 break;
3537 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00003538 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003539 break;
Francois Romieu867763c2007-08-17 18:21:58 +02003540 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00003541 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003542 break;
3543 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00003544 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003545 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02003546 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00003547 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003548 break;
Francois Romieu197ff762008-06-28 13:16:02 +02003549 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00003550 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02003551 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02003552 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00003553 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003554 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003555 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003556 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00003557 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02003558 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02003559 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00003560 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003561 break;
3562 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00003563 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003564 break;
3565 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00003566 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02003567 break;
françois romieue6de30d2011-01-03 15:08:37 +00003568 case RTL_GIGA_MAC_VER_28:
3569 rtl8168d_4_hw_phy_config(tp);
3570 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08003571 case RTL_GIGA_MAC_VER_29:
3572 case RTL_GIGA_MAC_VER_30:
3573 rtl8105e_hw_phy_config(tp);
3574 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02003575 case RTL_GIGA_MAC_VER_31:
3576 /* None. */
3577 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00003578 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00003579 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003580 rtl8168e_1_hw_phy_config(tp);
3581 break;
3582 case RTL_GIGA_MAC_VER_34:
3583 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00003584 break;
Hayes Wangc2218922011-09-06 16:55:18 +08003585 case RTL_GIGA_MAC_VER_35:
3586 rtl8168f_1_hw_phy_config(tp);
3587 break;
3588 case RTL_GIGA_MAC_VER_36:
3589 rtl8168f_2_hw_phy_config(tp);
3590 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003591
Hayes Wang7e18dca2012-03-30 14:33:02 +08003592 case RTL_GIGA_MAC_VER_37:
3593 rtl8402_hw_phy_config(tp);
3594 break;
3595
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003596 case RTL_GIGA_MAC_VER_38:
3597 rtl8411_hw_phy_config(tp);
3598 break;
3599
Hayes Wang5598bfe2012-07-02 17:23:21 +08003600 case RTL_GIGA_MAC_VER_39:
3601 rtl8106e_hw_phy_config(tp);
3602 break;
3603
Hayes Wangc5583862012-07-02 17:23:22 +08003604 case RTL_GIGA_MAC_VER_40:
3605 rtl8168g_1_hw_phy_config(tp);
3606 break;
3607
3608 case RTL_GIGA_MAC_VER_41:
Francois Romieu5615d9f2007-08-17 17:50:46 +02003609 default:
3610 break;
3611 }
3612}
3613
Francois Romieuda78dbf2012-01-26 14:18:23 +01003614static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 struct timer_list *timer = &tp->timer;
3617 void __iomem *ioaddr = tp->mmio_addr;
3618 unsigned long timeout = RTL8169_PHY_TIMEOUT;
3619
Francois Romieubcf0bf92006-07-26 23:14:13 +02003620 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
françois romieu4da19632011-01-03 15:07:55 +00003622 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02003623 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 * A busy loop could burn quite a few cycles on nowadays CPU.
3625 * Let's delay the execution of the timer for a few ticks.
3626 */
3627 timeout = HZ/10;
3628 goto out_mod_timer;
3629 }
3630
3631 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01003632 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Francois Romieuda78dbf2012-01-26 14:18:23 +01003634 netif_warn(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635
françois romieu4da19632011-01-03 15:07:55 +00003636 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
3638out_mod_timer:
3639 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003640}
3641
3642static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
3643{
Francois Romieuda78dbf2012-01-26 14:18:23 +01003644 if (!test_and_set_bit(flag, tp->wk.flags))
3645 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003646}
3647
3648static void rtl8169_phy_timer(unsigned long __opaque)
3649{
3650 struct net_device *dev = (struct net_device *)__opaque;
3651 struct rtl8169_private *tp = netdev_priv(dev);
3652
Francois Romieu98ddf982012-01-31 10:47:34 +01003653 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654}
3655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
3657 void __iomem *ioaddr)
3658{
3659 iounmap(ioaddr);
3660 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003661 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 pci_disable_device(pdev);
3663 free_netdev(dev);
3664}
3665
Francois Romieuffc46952012-07-06 14:19:23 +02003666DECLARE_RTL_COND(rtl_phy_reset_cond)
3667{
3668 return tp->phy_reset_pending(tp);
3669}
3670
Francois Romieubf793292006-11-01 00:53:05 +01003671static void rtl8169_phy_reset(struct net_device *dev,
3672 struct rtl8169_private *tp)
3673{
françois romieu4da19632011-01-03 15:07:55 +00003674 tp->phy_reset_enable(tp);
Francois Romieuffc46952012-07-06 14:19:23 +02003675 rtl_msleep_loop_wait_low(tp, &rtl_phy_reset_cond, 1, 100);
Francois Romieubf793292006-11-01 00:53:05 +01003676}
3677
David S. Miller8decf862011-09-22 03:23:13 -04003678static bool rtl_tbi_enabled(struct rtl8169_private *tp)
3679{
3680 void __iomem *ioaddr = tp->mmio_addr;
3681
3682 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
3683 (RTL_R8(PHYstatus) & TBI_Enable);
3684}
3685
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003686static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003688 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003689
Francois Romieu5615d9f2007-08-17 17:50:46 +02003690 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003691
Marcus Sundberg773328942008-07-10 21:28:08 +02003692 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
3693 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3694 RTL_W8(0x82, 0x01);
3695 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003696
Francois Romieu6dccd162007-02-13 23:38:05 +01003697 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
3698
3699 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3700 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003701
Francois Romieubcf0bf92006-07-26 23:14:13 +02003702 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003703 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3704 RTL_W8(0x82, 0x01);
3705 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00003706 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003707 }
3708
Francois Romieubf793292006-11-01 00:53:05 +01003709 rtl8169_phy_reset(dev, tp);
3710
Oliver Neukum54405cd2011-01-06 21:55:13 +01003711 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02003712 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3713 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3714 (tp->mii.supports_gmii ?
3715 ADVERTISED_1000baseT_Half |
3716 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003717
David S. Miller8decf862011-09-22 03:23:13 -04003718 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00003719 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003720}
3721
Francois Romieu773d2022007-01-31 23:47:43 +01003722static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
3723{
3724 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu773d2022007-01-31 23:47:43 +01003725
Francois Romieuda78dbf2012-01-26 14:18:23 +01003726 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003727
3728 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00003729
françois romieu9ecb9aa2012-12-07 11:20:21 +00003730 RTL_W32(MAC4, addr[4] | addr[5] << 8);
françois romieu908ba2b2010-04-26 11:42:58 +00003731 RTL_R32(MAC4);
3732
françois romieu9ecb9aa2012-12-07 11:20:21 +00003733 RTL_W32(MAC0, addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
françois romieu908ba2b2010-04-26 11:42:58 +00003734 RTL_R32(MAC0);
3735
françois romieu9ecb9aa2012-12-07 11:20:21 +00003736 if (tp->mac_version == RTL_GIGA_MAC_VER_34)
3737 rtl_rar_exgmac_set(tp, addr);
françois romieuc28aa382011-08-02 03:53:43 +00003738
Francois Romieu773d2022007-01-31 23:47:43 +01003739 RTL_W8(Cfg9346, Cfg9346_Lock);
3740
Francois Romieuda78dbf2012-01-26 14:18:23 +01003741 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003742}
3743
3744static int rtl_set_mac_address(struct net_device *dev, void *p)
3745{
3746 struct rtl8169_private *tp = netdev_priv(dev);
3747 struct sockaddr *addr = p;
3748
3749 if (!is_valid_ether_addr(addr->sa_data))
3750 return -EADDRNOTAVAIL;
3751
3752 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3753
3754 rtl_rar_set(tp, dev->dev_addr);
3755
3756 return 0;
3757}
3758
Francois Romieu5f787a12006-08-17 13:02:36 +02003759static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3760{
3761 struct rtl8169_private *tp = netdev_priv(dev);
3762 struct mii_ioctl_data *data = if_mii(ifr);
3763
Francois Romieu8b4ab282008-11-19 22:05:25 -08003764 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
3765}
Francois Romieu5f787a12006-08-17 13:02:36 +02003766
Francois Romieucecb5fd2011-04-01 10:21:07 +02003767static int rtl_xmii_ioctl(struct rtl8169_private *tp,
3768 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08003769{
Francois Romieu5f787a12006-08-17 13:02:36 +02003770 switch (cmd) {
3771 case SIOCGMIIPHY:
3772 data->phy_id = 32; /* Internal PHY */
3773 return 0;
3774
3775 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003776 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02003777 return 0;
3778
3779 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003780 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02003781 return 0;
3782 }
3783 return -EOPNOTSUPP;
3784}
3785
Francois Romieu8b4ab282008-11-19 22:05:25 -08003786static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3787{
3788 return -EOPNOTSUPP;
3789}
3790
Francois Romieufbac58f2007-10-04 22:51:38 +02003791static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3792{
3793 if (tp->features & RTL_FEATURE_MSI) {
3794 pci_disable_msi(pdev);
3795 tp->features &= ~RTL_FEATURE_MSI;
3796 }
3797}
3798
Bill Pembertonbaf63292012-12-03 09:23:28 -05003799static void rtl_init_mdio_ops(struct rtl8169_private *tp)
françois romieuc0e45c12011-01-03 15:08:04 +00003800{
3801 struct mdio_ops *ops = &tp->mdio_ops;
3802
3803 switch (tp->mac_version) {
3804 case RTL_GIGA_MAC_VER_27:
3805 ops->write = r8168dp_1_mdio_write;
3806 ops->read = r8168dp_1_mdio_read;
3807 break;
françois romieue6de30d2011-01-03 15:08:37 +00003808 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003809 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003810 ops->write = r8168dp_2_mdio_write;
3811 ops->read = r8168dp_2_mdio_read;
3812 break;
Hayes Wangc5583862012-07-02 17:23:22 +08003813 case RTL_GIGA_MAC_VER_40:
3814 case RTL_GIGA_MAC_VER_41:
3815 ops->write = r8168g_mdio_write;
3816 ops->read = r8168g_mdio_read;
3817 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003818 default:
3819 ops->write = r8169_mdio_write;
3820 ops->read = r8169_mdio_read;
3821 break;
3822 }
3823}
3824
David S. Miller1805b2f2011-10-24 18:18:09 -04003825static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
3826{
3827 void __iomem *ioaddr = tp->mmio_addr;
3828
3829 switch (tp->mac_version) {
Cyril Bruleboisb00e69d2012-10-31 14:00:46 +00003830 case RTL_GIGA_MAC_VER_25:
3831 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04003832 case RTL_GIGA_MAC_VER_29:
3833 case RTL_GIGA_MAC_VER_30:
3834 case RTL_GIGA_MAC_VER_32:
3835 case RTL_GIGA_MAC_VER_33:
3836 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08003837 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003838 case RTL_GIGA_MAC_VER_38:
Hayes Wang5598bfe2012-07-02 17:23:21 +08003839 case RTL_GIGA_MAC_VER_39:
Hayes Wangc5583862012-07-02 17:23:22 +08003840 case RTL_GIGA_MAC_VER_40:
3841 case RTL_GIGA_MAC_VER_41:
David S. Miller1805b2f2011-10-24 18:18:09 -04003842 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3843 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3844 break;
3845 default:
3846 break;
3847 }
3848}
3849
3850static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
3851{
3852 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
3853 return false;
3854
3855 rtl_writephy(tp, 0x1f, 0x0000);
3856 rtl_writephy(tp, MII_BMCR, 0x0000);
3857
3858 rtl_wol_suspend_quirk(tp);
3859
3860 return true;
3861}
3862
françois romieu065c27c2011-01-03 15:08:12 +00003863static void r810x_phy_power_down(struct rtl8169_private *tp)
3864{
3865 rtl_writephy(tp, 0x1f, 0x0000);
3866 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3867}
3868
3869static void r810x_phy_power_up(struct rtl8169_private *tp)
3870{
3871 rtl_writephy(tp, 0x1f, 0x0000);
3872 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3873}
3874
3875static void r810x_pll_power_down(struct rtl8169_private *tp)
3876{
Hayes Wang00042992012-03-30 14:33:00 +08003877 void __iomem *ioaddr = tp->mmio_addr;
3878
David S. Miller1805b2f2011-10-24 18:18:09 -04003879 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003880 return;
françois romieu065c27c2011-01-03 15:08:12 +00003881
3882 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003883
3884 switch (tp->mac_version) {
3885 case RTL_GIGA_MAC_VER_07:
3886 case RTL_GIGA_MAC_VER_08:
3887 case RTL_GIGA_MAC_VER_09:
3888 case RTL_GIGA_MAC_VER_10:
3889 case RTL_GIGA_MAC_VER_13:
3890 case RTL_GIGA_MAC_VER_16:
3891 break;
3892 default:
3893 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3894 break;
3895 }
françois romieu065c27c2011-01-03 15:08:12 +00003896}
3897
3898static void r810x_pll_power_up(struct rtl8169_private *tp)
3899{
Hayes Wang00042992012-03-30 14:33:00 +08003900 void __iomem *ioaddr = tp->mmio_addr;
3901
françois romieu065c27c2011-01-03 15:08:12 +00003902 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003903
3904 switch (tp->mac_version) {
3905 case RTL_GIGA_MAC_VER_07:
3906 case RTL_GIGA_MAC_VER_08:
3907 case RTL_GIGA_MAC_VER_09:
3908 case RTL_GIGA_MAC_VER_10:
3909 case RTL_GIGA_MAC_VER_13:
3910 case RTL_GIGA_MAC_VER_16:
3911 break;
3912 default:
3913 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3914 break;
3915 }
françois romieu065c27c2011-01-03 15:08:12 +00003916}
3917
3918static void r8168_phy_power_up(struct rtl8169_private *tp)
3919{
3920 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003921 switch (tp->mac_version) {
3922 case RTL_GIGA_MAC_VER_11:
3923 case RTL_GIGA_MAC_VER_12:
3924 case RTL_GIGA_MAC_VER_17:
3925 case RTL_GIGA_MAC_VER_18:
3926 case RTL_GIGA_MAC_VER_19:
3927 case RTL_GIGA_MAC_VER_20:
3928 case RTL_GIGA_MAC_VER_21:
3929 case RTL_GIGA_MAC_VER_22:
3930 case RTL_GIGA_MAC_VER_23:
3931 case RTL_GIGA_MAC_VER_24:
3932 case RTL_GIGA_MAC_VER_25:
3933 case RTL_GIGA_MAC_VER_26:
3934 case RTL_GIGA_MAC_VER_27:
3935 case RTL_GIGA_MAC_VER_28:
3936 case RTL_GIGA_MAC_VER_31:
3937 rtl_writephy(tp, 0x0e, 0x0000);
3938 break;
3939 default:
3940 break;
3941 }
françois romieu065c27c2011-01-03 15:08:12 +00003942 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3943}
3944
3945static void r8168_phy_power_down(struct rtl8169_private *tp)
3946{
3947 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003948 switch (tp->mac_version) {
3949 case RTL_GIGA_MAC_VER_32:
3950 case RTL_GIGA_MAC_VER_33:
3951 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3952 break;
3953
3954 case RTL_GIGA_MAC_VER_11:
3955 case RTL_GIGA_MAC_VER_12:
3956 case RTL_GIGA_MAC_VER_17:
3957 case RTL_GIGA_MAC_VER_18:
3958 case RTL_GIGA_MAC_VER_19:
3959 case RTL_GIGA_MAC_VER_20:
3960 case RTL_GIGA_MAC_VER_21:
3961 case RTL_GIGA_MAC_VER_22:
3962 case RTL_GIGA_MAC_VER_23:
3963 case RTL_GIGA_MAC_VER_24:
3964 case RTL_GIGA_MAC_VER_25:
3965 case RTL_GIGA_MAC_VER_26:
3966 case RTL_GIGA_MAC_VER_27:
3967 case RTL_GIGA_MAC_VER_28:
3968 case RTL_GIGA_MAC_VER_31:
3969 rtl_writephy(tp, 0x0e, 0x0200);
3970 default:
3971 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3972 break;
3973 }
françois romieu065c27c2011-01-03 15:08:12 +00003974}
3975
3976static void r8168_pll_power_down(struct rtl8169_private *tp)
3977{
3978 void __iomem *ioaddr = tp->mmio_addr;
3979
Francois Romieucecb5fd2011-04-01 10:21:07 +02003980 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3981 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3982 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003983 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003984 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003985 }
françois romieu065c27c2011-01-03 15:08:12 +00003986
Francois Romieucecb5fd2011-04-01 10:21:07 +02003987 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
3988 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00003989 (RTL_R16(CPlusCmd) & ASF)) {
3990 return;
3991 }
3992
hayeswang01dc7fe2011-03-21 01:50:28 +00003993 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3994 tp->mac_version == RTL_GIGA_MAC_VER_33)
Francois Romieufdf6fc02012-07-06 22:40:38 +02003995 rtl_ephy_write(tp, 0x19, 0xff64);
hayeswang01dc7fe2011-03-21 01:50:28 +00003996
David S. Miller1805b2f2011-10-24 18:18:09 -04003997 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003998 return;
françois romieu065c27c2011-01-03 15:08:12 +00003999
4000 r8168_phy_power_down(tp);
4001
4002 switch (tp->mac_version) {
4003 case RTL_GIGA_MAC_VER_25:
4004 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004005 case RTL_GIGA_MAC_VER_27:
4006 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004007 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004008 case RTL_GIGA_MAC_VER_32:
4009 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004010 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4011 break;
4012 }
4013}
4014
4015static void r8168_pll_power_up(struct rtl8169_private *tp)
4016{
4017 void __iomem *ioaddr = tp->mmio_addr;
4018
françois romieu065c27c2011-01-03 15:08:12 +00004019 switch (tp->mac_version) {
4020 case RTL_GIGA_MAC_VER_25:
4021 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004022 case RTL_GIGA_MAC_VER_27:
4023 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004024 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004025 case RTL_GIGA_MAC_VER_32:
4026 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004027 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4028 break;
4029 }
4030
4031 r8168_phy_power_up(tp);
4032}
4033
Francois Romieud58d46b2011-05-03 16:38:29 +02004034static void rtl_generic_op(struct rtl8169_private *tp,
4035 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00004036{
4037 if (op)
4038 op(tp);
4039}
4040
4041static void rtl_pll_power_down(struct rtl8169_private *tp)
4042{
Francois Romieud58d46b2011-05-03 16:38:29 +02004043 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00004044}
4045
4046static void rtl_pll_power_up(struct rtl8169_private *tp)
4047{
Francois Romieud58d46b2011-05-03 16:38:29 +02004048 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00004049}
4050
Bill Pembertonbaf63292012-12-03 09:23:28 -05004051static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
françois romieu065c27c2011-01-03 15:08:12 +00004052{
4053 struct pll_power_ops *ops = &tp->pll_power_ops;
4054
4055 switch (tp->mac_version) {
4056 case RTL_GIGA_MAC_VER_07:
4057 case RTL_GIGA_MAC_VER_08:
4058 case RTL_GIGA_MAC_VER_09:
4059 case RTL_GIGA_MAC_VER_10:
4060 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08004061 case RTL_GIGA_MAC_VER_29:
4062 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004063 case RTL_GIGA_MAC_VER_37:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004064 case RTL_GIGA_MAC_VER_39:
françois romieu065c27c2011-01-03 15:08:12 +00004065 ops->down = r810x_pll_power_down;
4066 ops->up = r810x_pll_power_up;
4067 break;
4068
4069 case RTL_GIGA_MAC_VER_11:
4070 case RTL_GIGA_MAC_VER_12:
4071 case RTL_GIGA_MAC_VER_17:
4072 case RTL_GIGA_MAC_VER_18:
4073 case RTL_GIGA_MAC_VER_19:
4074 case RTL_GIGA_MAC_VER_20:
4075 case RTL_GIGA_MAC_VER_21:
4076 case RTL_GIGA_MAC_VER_22:
4077 case RTL_GIGA_MAC_VER_23:
4078 case RTL_GIGA_MAC_VER_24:
4079 case RTL_GIGA_MAC_VER_25:
4080 case RTL_GIGA_MAC_VER_26:
4081 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00004082 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004083 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004084 case RTL_GIGA_MAC_VER_32:
4085 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004086 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08004087 case RTL_GIGA_MAC_VER_35:
4088 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004089 case RTL_GIGA_MAC_VER_38:
Hayes Wangc5583862012-07-02 17:23:22 +08004090 case RTL_GIGA_MAC_VER_40:
4091 case RTL_GIGA_MAC_VER_41:
françois romieu065c27c2011-01-03 15:08:12 +00004092 ops->down = r8168_pll_power_down;
4093 ops->up = r8168_pll_power_up;
4094 break;
4095
4096 default:
4097 ops->down = NULL;
4098 ops->up = NULL;
4099 break;
4100 }
4101}
4102
Hayes Wange542a222011-07-06 15:58:04 +08004103static void rtl_init_rxcfg(struct rtl8169_private *tp)
4104{
4105 void __iomem *ioaddr = tp->mmio_addr;
4106
4107 switch (tp->mac_version) {
4108 case RTL_GIGA_MAC_VER_01:
4109 case RTL_GIGA_MAC_VER_02:
4110 case RTL_GIGA_MAC_VER_03:
4111 case RTL_GIGA_MAC_VER_04:
4112 case RTL_GIGA_MAC_VER_05:
4113 case RTL_GIGA_MAC_VER_06:
4114 case RTL_GIGA_MAC_VER_10:
4115 case RTL_GIGA_MAC_VER_11:
4116 case RTL_GIGA_MAC_VER_12:
4117 case RTL_GIGA_MAC_VER_13:
4118 case RTL_GIGA_MAC_VER_14:
4119 case RTL_GIGA_MAC_VER_15:
4120 case RTL_GIGA_MAC_VER_16:
4121 case RTL_GIGA_MAC_VER_17:
4122 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
4123 break;
4124 case RTL_GIGA_MAC_VER_18:
4125 case RTL_GIGA_MAC_VER_19:
4126 case RTL_GIGA_MAC_VER_20:
4127 case RTL_GIGA_MAC_VER_21:
4128 case RTL_GIGA_MAC_VER_22:
4129 case RTL_GIGA_MAC_VER_23:
4130 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00004131 case RTL_GIGA_MAC_VER_34:
Hayes Wange542a222011-07-06 15:58:04 +08004132 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
4133 break;
4134 default:
4135 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
4136 break;
4137 }
4138}
4139
Hayes Wang92fc43b2011-07-06 15:58:03 +08004140static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4141{
Timo Teräs9fba0812013-01-15 21:01:24 +00004142 tp->dirty_tx = tp->cur_tx = tp->cur_rx = 0;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004143}
4144
Francois Romieud58d46b2011-05-03 16:38:29 +02004145static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
4146{
françois romieu9c5028e2012-03-02 04:43:14 +00004147 void __iomem *ioaddr = tp->mmio_addr;
4148
4149 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004150 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00004151 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004152}
4153
4154static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
4155{
françois romieu9c5028e2012-03-02 04:43:14 +00004156 void __iomem *ioaddr = tp->mmio_addr;
4157
4158 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004159 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00004160 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004161}
4162
4163static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
4164{
4165 void __iomem *ioaddr = tp->mmio_addr;
4166
4167 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4168 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
4169 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
4170}
4171
4172static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
4173{
4174 void __iomem *ioaddr = tp->mmio_addr;
4175
4176 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4177 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
4178 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
4179}
4180
4181static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
4182{
4183 void __iomem *ioaddr = tp->mmio_addr;
4184
4185 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4186}
4187
4188static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
4189{
4190 void __iomem *ioaddr = tp->mmio_addr;
4191
4192 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4193}
4194
4195static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
4196{
4197 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02004198
4199 RTL_W8(MaxTxPacketSize, 0x3f);
4200 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4201 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01004202 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02004203}
4204
4205static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
4206{
4207 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02004208
4209 RTL_W8(MaxTxPacketSize, 0x0c);
4210 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4211 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01004212 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02004213}
4214
4215static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
4216{
4217 rtl_tx_performance_tweak(tp->pci_dev,
4218 (0x2 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
4219}
4220
4221static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
4222{
4223 rtl_tx_performance_tweak(tp->pci_dev,
4224 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
4225}
4226
4227static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
4228{
4229 void __iomem *ioaddr = tp->mmio_addr;
4230
4231 r8168b_0_hw_jumbo_enable(tp);
4232
4233 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
4234}
4235
4236static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
4237{
4238 void __iomem *ioaddr = tp->mmio_addr;
4239
4240 r8168b_0_hw_jumbo_disable(tp);
4241
4242 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
4243}
4244
Bill Pembertonbaf63292012-12-03 09:23:28 -05004245static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
Francois Romieud58d46b2011-05-03 16:38:29 +02004246{
4247 struct jumbo_ops *ops = &tp->jumbo_ops;
4248
4249 switch (tp->mac_version) {
4250 case RTL_GIGA_MAC_VER_11:
4251 ops->disable = r8168b_0_hw_jumbo_disable;
4252 ops->enable = r8168b_0_hw_jumbo_enable;
4253 break;
4254 case RTL_GIGA_MAC_VER_12:
4255 case RTL_GIGA_MAC_VER_17:
4256 ops->disable = r8168b_1_hw_jumbo_disable;
4257 ops->enable = r8168b_1_hw_jumbo_enable;
4258 break;
4259 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
4260 case RTL_GIGA_MAC_VER_19:
4261 case RTL_GIGA_MAC_VER_20:
4262 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
4263 case RTL_GIGA_MAC_VER_22:
4264 case RTL_GIGA_MAC_VER_23:
4265 case RTL_GIGA_MAC_VER_24:
4266 case RTL_GIGA_MAC_VER_25:
4267 case RTL_GIGA_MAC_VER_26:
4268 ops->disable = r8168c_hw_jumbo_disable;
4269 ops->enable = r8168c_hw_jumbo_enable;
4270 break;
4271 case RTL_GIGA_MAC_VER_27:
4272 case RTL_GIGA_MAC_VER_28:
4273 ops->disable = r8168dp_hw_jumbo_disable;
4274 ops->enable = r8168dp_hw_jumbo_enable;
4275 break;
4276 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
4277 case RTL_GIGA_MAC_VER_32:
4278 case RTL_GIGA_MAC_VER_33:
4279 case RTL_GIGA_MAC_VER_34:
4280 ops->disable = r8168e_hw_jumbo_disable;
4281 ops->enable = r8168e_hw_jumbo_enable;
4282 break;
4283
4284 /*
4285 * No action needed for jumbo frames with 8169.
4286 * No jumbo for 810x at all.
4287 */
Hayes Wangc5583862012-07-02 17:23:22 +08004288 case RTL_GIGA_MAC_VER_40:
4289 case RTL_GIGA_MAC_VER_41:
Francois Romieud58d46b2011-05-03 16:38:29 +02004290 default:
4291 ops->disable = NULL;
4292 ops->enable = NULL;
4293 break;
4294 }
4295}
4296
Francois Romieuffc46952012-07-06 14:19:23 +02004297DECLARE_RTL_COND(rtl_chipcmd_cond)
4298{
4299 void __iomem *ioaddr = tp->mmio_addr;
4300
4301 return RTL_R8(ChipCmd) & CmdReset;
4302}
4303
Francois Romieu6f43adc2011-04-29 15:05:51 +02004304static void rtl_hw_reset(struct rtl8169_private *tp)
4305{
4306 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu6f43adc2011-04-29 15:05:51 +02004307
Francois Romieu6f43adc2011-04-29 15:05:51 +02004308 RTL_W8(ChipCmd, CmdReset);
4309
Francois Romieuffc46952012-07-06 14:19:23 +02004310 rtl_udelay_loop_wait_low(tp, &rtl_chipcmd_cond, 100, 100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02004311}
4312
Francois Romieub6ffd972011-06-17 17:00:05 +02004313static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
4314{
4315 struct rtl_fw *rtl_fw;
4316 const char *name;
4317 int rc = -ENOMEM;
4318
4319 name = rtl_lookup_firmware_name(tp);
4320 if (!name)
4321 goto out_no_firmware;
4322
4323 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
4324 if (!rtl_fw)
4325 goto err_warn;
4326
4327 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
4328 if (rc < 0)
4329 goto err_free;
4330
Francois Romieufd112f22011-06-18 00:10:29 +02004331 rc = rtl_check_firmware(tp, rtl_fw);
4332 if (rc < 0)
4333 goto err_release_firmware;
4334
Francois Romieub6ffd972011-06-17 17:00:05 +02004335 tp->rtl_fw = rtl_fw;
4336out:
4337 return;
4338
Francois Romieufd112f22011-06-18 00:10:29 +02004339err_release_firmware:
4340 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02004341err_free:
4342 kfree(rtl_fw);
4343err_warn:
4344 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
4345 name, rc);
4346out_no_firmware:
4347 tp->rtl_fw = NULL;
4348 goto out;
4349}
4350
François Romieu953a12c2011-04-24 17:38:48 +02004351static void rtl_request_firmware(struct rtl8169_private *tp)
4352{
Francois Romieub6ffd972011-06-17 17:00:05 +02004353 if (IS_ERR(tp->rtl_fw))
4354 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02004355}
4356
Hayes Wang92fc43b2011-07-06 15:58:03 +08004357static void rtl_rx_close(struct rtl8169_private *tp)
4358{
4359 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004360
Francois Romieu1687b562011-07-19 17:21:29 +02004361 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004362}
4363
Francois Romieuffc46952012-07-06 14:19:23 +02004364DECLARE_RTL_COND(rtl_npq_cond)
4365{
4366 void __iomem *ioaddr = tp->mmio_addr;
4367
4368 return RTL_R8(TxPoll) & NPQ;
4369}
4370
4371DECLARE_RTL_COND(rtl_txcfg_empty_cond)
4372{
4373 void __iomem *ioaddr = tp->mmio_addr;
4374
4375 return RTL_R32(TxConfig) & TXCFG_EMPTY;
4376}
4377
françois romieue6de30d2011-01-03 15:08:37 +00004378static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379{
françois romieue6de30d2011-01-03 15:08:37 +00004380 void __iomem *ioaddr = tp->mmio_addr;
4381
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00004383 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
Hayes Wang92fc43b2011-07-06 15:58:03 +08004385 rtl_rx_close(tp);
4386
Hayes Wang5d2e1952011-02-22 17:26:22 +08004387 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00004388 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4389 tp->mac_version == RTL_GIGA_MAC_VER_31) {
Francois Romieuffc46952012-07-06 14:19:23 +02004390 rtl_udelay_loop_wait_low(tp, &rtl_npq_cond, 20, 42*42);
Hayes Wangc2218922011-09-06 16:55:18 +08004391 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
4392 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
Hayes Wang7e18dca2012-03-30 14:33:02 +08004393 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004394 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
Hayes Wangc5583862012-07-02 17:23:22 +08004395 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
4396 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004397 tp->mac_version == RTL_GIGA_MAC_VER_38) {
David S. Miller8decf862011-09-22 03:23:13 -04004398 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Francois Romieuffc46952012-07-06 14:19:23 +02004399 rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004400 } else {
4401 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
4402 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00004403 }
4404
Hayes Wang92fc43b2011-07-06 15:58:03 +08004405 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406}
4407
Francois Romieu7f796d832007-06-11 23:04:41 +02004408static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004409{
4410 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01004411
4412 /* Set DMA burst size and Interframe Gap Time */
4413 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4414 (InterFrameGap << TxInterFrameGapShift));
4415}
4416
Francois Romieu07ce4062007-02-23 23:36:39 +01004417static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418{
4419 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
Francois Romieu07ce4062007-02-23 23:36:39 +01004421 tp->hw_start(dev);
4422
Francois Romieuda78dbf2012-01-26 14:18:23 +01004423 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004424}
4425
Francois Romieu7f796d832007-06-11 23:04:41 +02004426static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
4427 void __iomem *ioaddr)
4428{
4429 /*
4430 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
4431 * register to be written before TxDescAddrLow to work.
4432 * Switching from MMIO to I/O access fixes the issue as well.
4433 */
4434 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004435 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004436 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004437 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004438}
4439
4440static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
4441{
4442 u16 cmd;
4443
4444 cmd = RTL_R16(CPlusCmd);
4445 RTL_W16(CPlusCmd, cmd);
4446 return cmd;
4447}
4448
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07004449static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02004450{
4451 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00004452 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02004453}
4454
Francois Romieu6dccd162007-02-13 23:38:05 +01004455static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
4456{
Francois Romieu37441002011-06-17 22:58:54 +02004457 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01004458 u32 mac_version;
4459 u32 clk;
4460 u32 val;
4461 } cfg2_info [] = {
4462 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
4463 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
4464 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
4465 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02004466 };
4467 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01004468 unsigned int i;
4469 u32 clk;
4470
4471 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01004472 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01004473 if ((p->mac_version == mac_version) && (p->clk == clk)) {
4474 RTL_W32(0x7c, p->val);
4475 break;
4476 }
4477 }
4478}
4479
Francois Romieue6b763e2012-03-08 09:35:39 +01004480static void rtl_set_rx_mode(struct net_device *dev)
4481{
4482 struct rtl8169_private *tp = netdev_priv(dev);
4483 void __iomem *ioaddr = tp->mmio_addr;
4484 u32 mc_filter[2]; /* Multicast hash filter */
4485 int rx_mode;
4486 u32 tmp = 0;
4487
4488 if (dev->flags & IFF_PROMISC) {
4489 /* Unconditionally log net taps. */
4490 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
4491 rx_mode =
4492 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4493 AcceptAllPhys;
4494 mc_filter[1] = mc_filter[0] = 0xffffffff;
4495 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
4496 (dev->flags & IFF_ALLMULTI)) {
4497 /* Too many to filter perfectly -- accept all multicasts. */
4498 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4499 mc_filter[1] = mc_filter[0] = 0xffffffff;
4500 } else {
4501 struct netdev_hw_addr *ha;
4502
4503 rx_mode = AcceptBroadcast | AcceptMyPhys;
4504 mc_filter[1] = mc_filter[0] = 0;
4505 netdev_for_each_mc_addr(ha, dev) {
4506 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
4507 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4508 rx_mode |= AcceptMulticast;
4509 }
4510 }
4511
4512 if (dev->features & NETIF_F_RXALL)
4513 rx_mode |= (AcceptErr | AcceptRunt);
4514
4515 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
4516
4517 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
4518 u32 data = mc_filter[0];
4519
4520 mc_filter[0] = swab32(mc_filter[1]);
4521 mc_filter[1] = swab32(data);
4522 }
4523
Nathan Walp04817762012-11-01 12:08:47 +00004524 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
4525 mc_filter[1] = mc_filter[0] = 0xffffffff;
4526
Francois Romieue6b763e2012-03-08 09:35:39 +01004527 RTL_W32(MAR0 + 4, mc_filter[1]);
4528 RTL_W32(MAR0 + 0, mc_filter[0]);
4529
4530 RTL_W32(RxConfig, tmp);
4531}
4532
Francois Romieu07ce4062007-02-23 23:36:39 +01004533static void rtl_hw_start_8169(struct net_device *dev)
4534{
4535 struct rtl8169_private *tp = netdev_priv(dev);
4536 void __iomem *ioaddr = tp->mmio_addr;
4537 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01004538
Francois Romieu9cb427b2006-11-02 00:10:16 +01004539 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
4540 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
4541 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4542 }
4543
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02004545 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4546 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4547 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4548 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004549 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4550
Hayes Wange542a222011-07-06 15:58:04 +08004551 rtl_init_rxcfg(tp);
4552
françois romieuf0298f82011-01-03 15:07:42 +00004553 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004555 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
Francois Romieucecb5fd2011-04-01 10:21:07 +02004557 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4558 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4559 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4560 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02004561 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
Francois Romieu7f796d832007-06-11 23:04:41 +02004563 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004564
Francois Romieucecb5fd2011-04-01 10:21:07 +02004565 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4566 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02004567 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02004569 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 }
4571
Francois Romieubcf0bf92006-07-26 23:14:13 +02004572 RTL_W16(CPlusCmd, tp->cp_cmd);
4573
Francois Romieu6dccd162007-02-13 23:38:05 +01004574 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
4575
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 /*
4577 * Undocumented corner. Supposedly:
4578 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4579 */
4580 RTL_W16(IntrMitigate, 0x0000);
4581
Francois Romieu7f796d832007-06-11 23:04:41 +02004582 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01004583
Francois Romieucecb5fd2011-04-01 10:21:07 +02004584 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
4585 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
4586 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
4587 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02004588 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4589 rtl_set_rx_tx_config_registers(tp);
4590 }
4591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02004593
4594 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4595 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596
4597 RTL_W32(RxMissed, 0);
4598
Francois Romieu07ce4062007-02-23 23:36:39 +01004599 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
4601 /* no early-rx interrupts */
4602 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01004603}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004605static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
4606{
4607 if (tp->csi_ops.write)
Francois Romieu52989f02012-07-06 13:37:00 +02004608 tp->csi_ops.write(tp, addr, value);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004609}
4610
4611static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
4612{
Francois Romieu52989f02012-07-06 13:37:00 +02004613 return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004614}
4615
4616static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02004617{
4618 u32 csi;
4619
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004620 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
4621 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00004622}
4623
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004624static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00004625{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004626 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00004627}
4628
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004629static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00004630{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004631 rtl_csi_access_enable(tp, 0x27000000);
4632}
4633
Francois Romieuffc46952012-07-06 14:19:23 +02004634DECLARE_RTL_COND(rtl_csiar_cond)
4635{
4636 void __iomem *ioaddr = tp->mmio_addr;
4637
4638 return RTL_R32(CSIAR) & CSIAR_FLAG;
4639}
4640
Francois Romieu52989f02012-07-06 13:37:00 +02004641static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004642{
Francois Romieu52989f02012-07-06 13:37:00 +02004643 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004644
4645 RTL_W32(CSIDR, value);
4646 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4647 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4648
Francois Romieuffc46952012-07-06 14:19:23 +02004649 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004650}
4651
Francois Romieu52989f02012-07-06 13:37:00 +02004652static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004653{
Francois Romieu52989f02012-07-06 13:37:00 +02004654 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004655
4656 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
4657 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4658
Francois Romieuffc46952012-07-06 14:19:23 +02004659 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
4660 RTL_R32(CSIDR) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004661}
4662
Francois Romieu52989f02012-07-06 13:37:00 +02004663static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wang7e18dca2012-03-30 14:33:02 +08004664{
Francois Romieu52989f02012-07-06 13:37:00 +02004665 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004666
4667 RTL_W32(CSIDR, value);
4668 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4669 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
4670 CSIAR_FUNC_NIC);
4671
Francois Romieuffc46952012-07-06 14:19:23 +02004672 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004673}
4674
Francois Romieu52989f02012-07-06 13:37:00 +02004675static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wang7e18dca2012-03-30 14:33:02 +08004676{
Francois Romieu52989f02012-07-06 13:37:00 +02004677 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004678
4679 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
4680 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4681
Francois Romieuffc46952012-07-06 14:19:23 +02004682 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
4683 RTL_R32(CSIDR) : ~0;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004684}
4685
Bill Pembertonbaf63292012-12-03 09:23:28 -05004686static void rtl_init_csi_ops(struct rtl8169_private *tp)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004687{
4688 struct csi_ops *ops = &tp->csi_ops;
4689
4690 switch (tp->mac_version) {
4691 case RTL_GIGA_MAC_VER_01:
4692 case RTL_GIGA_MAC_VER_02:
4693 case RTL_GIGA_MAC_VER_03:
4694 case RTL_GIGA_MAC_VER_04:
4695 case RTL_GIGA_MAC_VER_05:
4696 case RTL_GIGA_MAC_VER_06:
4697 case RTL_GIGA_MAC_VER_10:
4698 case RTL_GIGA_MAC_VER_11:
4699 case RTL_GIGA_MAC_VER_12:
4700 case RTL_GIGA_MAC_VER_13:
4701 case RTL_GIGA_MAC_VER_14:
4702 case RTL_GIGA_MAC_VER_15:
4703 case RTL_GIGA_MAC_VER_16:
4704 case RTL_GIGA_MAC_VER_17:
4705 ops->write = NULL;
4706 ops->read = NULL;
4707 break;
4708
Hayes Wang7e18dca2012-03-30 14:33:02 +08004709 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004710 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004711 ops->write = r8402_csi_write;
4712 ops->read = r8402_csi_read;
4713 break;
4714
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004715 default:
4716 ops->write = r8169_csi_write;
4717 ops->read = r8169_csi_read;
4718 break;
4719 }
Francois Romieudacf8152008-08-02 20:44:13 +02004720}
4721
4722struct ephy_info {
4723 unsigned int offset;
4724 u16 mask;
4725 u16 bits;
4726};
4727
Francois Romieufdf6fc02012-07-06 22:40:38 +02004728static void rtl_ephy_init(struct rtl8169_private *tp, const struct ephy_info *e,
4729 int len)
Francois Romieudacf8152008-08-02 20:44:13 +02004730{
4731 u16 w;
4732
4733 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02004734 w = (rtl_ephy_read(tp, e->offset) & ~e->mask) | e->bits;
4735 rtl_ephy_write(tp, e->offset, w);
Francois Romieudacf8152008-08-02 20:44:13 +02004736 e++;
4737 }
4738}
4739
Francois Romieub726e492008-06-28 12:22:59 +02004740static void rtl_disable_clock_request(struct pci_dev *pdev)
4741{
Jiang Liu7d7903b2012-07-24 17:20:16 +08004742 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL,
4743 PCI_EXP_LNKCTL_CLKREQ_EN);
Francois Romieub726e492008-06-28 12:22:59 +02004744}
4745
françois romieue6de30d2011-01-03 15:08:37 +00004746static void rtl_enable_clock_request(struct pci_dev *pdev)
4747{
Jiang Liu7d7903b2012-07-24 17:20:16 +08004748 pcie_capability_set_word(pdev, PCI_EXP_LNKCTL,
4749 PCI_EXP_LNKCTL_CLKREQ_EN);
françois romieue6de30d2011-01-03 15:08:37 +00004750}
4751
Francois Romieub726e492008-06-28 12:22:59 +02004752#define R8168_CPCMD_QUIRK_MASK (\
4753 EnableBist | \
4754 Mac_dbgo_oe | \
4755 Force_half_dup | \
4756 Force_rxflow_en | \
4757 Force_txflow_en | \
4758 Cxpl_dbg_sel | \
4759 ASF | \
4760 PktCntrDisable | \
4761 Mac_dbgo_sel)
4762
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004763static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004764{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004765 void __iomem *ioaddr = tp->mmio_addr;
4766 struct pci_dev *pdev = tp->pci_dev;
4767
Francois Romieub726e492008-06-28 12:22:59 +02004768 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4769
4770 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4771
françois romieufaf1e782013-02-27 13:01:57 +00004772 if (tp->dev->mtu <= ETH_DATA_LEN) {
4773 rtl_tx_performance_tweak(pdev, (0x5 << MAX_READ_REQUEST_SHIFT) |
4774 PCI_EXP_DEVCTL_NOSNOOP_EN);
4775 }
Francois Romieu219a1e92008-06-28 11:58:39 +02004776}
4777
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004778static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004779{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004780 void __iomem *ioaddr = tp->mmio_addr;
4781
4782 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004783
françois romieuf0298f82011-01-03 15:07:42 +00004784 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02004785
4786 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02004787}
4788
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004789static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004790{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004791 void __iomem *ioaddr = tp->mmio_addr;
4792 struct pci_dev *pdev = tp->pci_dev;
4793
Francois Romieub726e492008-06-28 12:22:59 +02004794 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4795
4796 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4797
françois romieufaf1e782013-02-27 13:01:57 +00004798 if (tp->dev->mtu <= ETH_DATA_LEN)
4799 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02004800
4801 rtl_disable_clock_request(pdev);
4802
4803 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02004804}
4805
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004806static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004807{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004808 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004809 { 0x01, 0, 0x0001 },
4810 { 0x02, 0x0800, 0x1000 },
4811 { 0x03, 0, 0x0042 },
4812 { 0x06, 0x0080, 0x0000 },
4813 { 0x07, 0, 0x2000 }
4814 };
4815
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004816 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004817
Francois Romieufdf6fc02012-07-06 22:40:38 +02004818 rtl_ephy_init(tp, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
Francois Romieub726e492008-06-28 12:22:59 +02004819
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004820 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004821}
4822
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004823static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02004824{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004825 void __iomem *ioaddr = tp->mmio_addr;
4826 struct pci_dev *pdev = tp->pci_dev;
4827
4828 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004829
4830 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4831
françois romieufaf1e782013-02-27 13:01:57 +00004832 if (tp->dev->mtu <= ETH_DATA_LEN)
4833 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieuef3386f2008-06-29 12:24:30 +02004834
4835 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4836}
4837
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004838static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004839{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004840 void __iomem *ioaddr = tp->mmio_addr;
4841 struct pci_dev *pdev = tp->pci_dev;
4842
4843 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004844
4845 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4846
4847 /* Magic. */
4848 RTL_W8(DBG_REG, 0x20);
4849
françois romieuf0298f82011-01-03 15:07:42 +00004850 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004851
françois romieufaf1e782013-02-27 13:01:57 +00004852 if (tp->dev->mtu <= ETH_DATA_LEN)
4853 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004854
4855 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4856}
4857
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004858static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004859{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004860 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004861 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004862 { 0x02, 0x0800, 0x1000 },
4863 { 0x03, 0, 0x0002 },
4864 { 0x06, 0x0080, 0x0000 }
4865 };
4866
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004867 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004868
4869 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
4870
Francois Romieufdf6fc02012-07-06 22:40:38 +02004871 rtl_ephy_init(tp, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
Francois Romieub726e492008-06-28 12:22:59 +02004872
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004873 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004874}
4875
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004876static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004877{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004878 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004879 { 0x01, 0, 0x0001 },
4880 { 0x03, 0x0400, 0x0220 }
4881 };
4882
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004883 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004884
Francois Romieufdf6fc02012-07-06 22:40:38 +02004885 rtl_ephy_init(tp, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
Francois Romieub726e492008-06-28 12:22:59 +02004886
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004887 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004888}
4889
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004890static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02004891{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004892 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02004893}
4894
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004895static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02004896{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004897 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004898
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004899 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004900}
4901
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004902static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02004903{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004904 void __iomem *ioaddr = tp->mmio_addr;
4905 struct pci_dev *pdev = tp->pci_dev;
4906
4907 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02004908
4909 rtl_disable_clock_request(pdev);
4910
françois romieuf0298f82011-01-03 15:07:42 +00004911 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02004912
françois romieufaf1e782013-02-27 13:01:57 +00004913 if (tp->dev->mtu <= ETH_DATA_LEN)
4914 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu5b538df2008-07-20 16:22:45 +02004915
4916 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4917}
4918
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004919static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00004920{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004921 void __iomem *ioaddr = tp->mmio_addr;
4922 struct pci_dev *pdev = tp->pci_dev;
4923
4924 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004925
françois romieufaf1e782013-02-27 13:01:57 +00004926 if (tp->dev->mtu <= ETH_DATA_LEN)
4927 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang4804b3b2011-03-21 01:50:29 +00004928
4929 RTL_W8(MaxTxPacketSize, TxPacketMax);
4930
4931 rtl_disable_clock_request(pdev);
4932}
4933
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004934static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00004935{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004936 void __iomem *ioaddr = tp->mmio_addr;
4937 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00004938 static const struct ephy_info e_info_8168d_4[] = {
4939 { 0x0b, ~0, 0x48 },
4940 { 0x19, 0x20, 0x50 },
4941 { 0x0c, ~0, 0x20 }
4942 };
4943 int i;
4944
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004945 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00004946
4947 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4948
4949 RTL_W8(MaxTxPacketSize, TxPacketMax);
4950
4951 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
4952 const struct ephy_info *e = e_info_8168d_4 + i;
4953 u16 w;
4954
Francois Romieufdf6fc02012-07-06 22:40:38 +02004955 w = rtl_ephy_read(tp, e->offset);
4956 rtl_ephy_write(tp, 0x03, (w & e->mask) | e->bits);
françois romieue6de30d2011-01-03 15:08:37 +00004957 }
4958
4959 rtl_enable_clock_request(pdev);
4960}
4961
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004962static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00004963{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004964 void __iomem *ioaddr = tp->mmio_addr;
4965 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08004966 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00004967 { 0x00, 0x0200, 0x0100 },
4968 { 0x00, 0x0000, 0x0004 },
4969 { 0x06, 0x0002, 0x0001 },
4970 { 0x06, 0x0000, 0x0030 },
4971 { 0x07, 0x0000, 0x2000 },
4972 { 0x00, 0x0000, 0x0020 },
4973 { 0x03, 0x5800, 0x2000 },
4974 { 0x03, 0x0000, 0x0001 },
4975 { 0x01, 0x0800, 0x1000 },
4976 { 0x07, 0x0000, 0x4000 },
4977 { 0x1e, 0x0000, 0x2000 },
4978 { 0x19, 0xffff, 0xfe6c },
4979 { 0x0a, 0x0000, 0x0040 }
4980 };
4981
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004982 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00004983
Francois Romieufdf6fc02012-07-06 22:40:38 +02004984 rtl_ephy_init(tp, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00004985
françois romieufaf1e782013-02-27 13:01:57 +00004986 if (tp->dev->mtu <= ETH_DATA_LEN)
4987 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang01dc7fe2011-03-21 01:50:28 +00004988
4989 RTL_W8(MaxTxPacketSize, TxPacketMax);
4990
4991 rtl_disable_clock_request(pdev);
4992
4993 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02004994 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
4995 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00004996
Francois Romieucecb5fd2011-04-01 10:21:07 +02004997 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00004998}
4999
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005000static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08005001{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005002 void __iomem *ioaddr = tp->mmio_addr;
5003 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005004 static const struct ephy_info e_info_8168e_2[] = {
5005 { 0x09, 0x0000, 0x0080 },
5006 { 0x19, 0x0000, 0x0224 }
5007 };
5008
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005009 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005010
Francois Romieufdf6fc02012-07-06 22:40:38 +02005011 rtl_ephy_init(tp, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
Hayes Wang70090422011-07-06 15:58:06 +08005012
françois romieufaf1e782013-02-27 13:01:57 +00005013 if (tp->dev->mtu <= ETH_DATA_LEN)
5014 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Hayes Wang70090422011-07-06 15:58:06 +08005015
Francois Romieufdf6fc02012-07-06 22:40:38 +02005016 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5017 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5018 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5019 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5020 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5021 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
5022 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5023 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08005024
Hayes Wang3090bd92011-09-06 16:55:15 +08005025 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08005026
Francois Romieu4521e1a92012-11-01 16:46:28 +00005027 rtl_disable_clock_request(pdev);
5028
Hayes Wang70090422011-07-06 15:58:06 +08005029 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5030 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5031
5032 /* Adjust EEE LED frequency */
5033 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5034
5035 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
5036 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005037 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wang70090422011-07-06 15:58:06 +08005038}
5039
Hayes Wang5f886e02012-03-30 14:33:03 +08005040static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08005041{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005042 void __iomem *ioaddr = tp->mmio_addr;
5043 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08005044
Hayes Wang5f886e02012-03-30 14:33:03 +08005045 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005046
5047 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5048
Francois Romieufdf6fc02012-07-06 22:40:38 +02005049 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5050 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5051 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5052 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5053 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5054 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5055 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5056 rtl_w1w0_eri(tp, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5057 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5058 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08005059
5060 RTL_W8(MaxTxPacketSize, EarlySize);
5061
Francois Romieu4521e1a92012-11-01 16:46:28 +00005062 rtl_disable_clock_request(pdev);
5063
Hayes Wangc2218922011-09-06 16:55:18 +08005064 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5065 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08005066 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005067 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
5068 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wangc2218922011-09-06 16:55:18 +08005069}
5070
Hayes Wang5f886e02012-03-30 14:33:03 +08005071static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
5072{
5073 void __iomem *ioaddr = tp->mmio_addr;
5074 static const struct ephy_info e_info_8168f_1[] = {
5075 { 0x06, 0x00c0, 0x0020 },
5076 { 0x08, 0x0001, 0x0002 },
5077 { 0x09, 0x0000, 0x0080 },
5078 { 0x19, 0x0000, 0x0224 }
5079 };
5080
5081 rtl_hw_start_8168f(tp);
5082
Francois Romieufdf6fc02012-07-06 22:40:38 +02005083 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wang5f886e02012-03-30 14:33:03 +08005084
Francois Romieufdf6fc02012-07-06 22:40:38 +02005085 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang5f886e02012-03-30 14:33:03 +08005086
5087 /* Adjust EEE LED frequency */
5088 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5089}
5090
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005091static void rtl_hw_start_8411(struct rtl8169_private *tp)
5092{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005093 static const struct ephy_info e_info_8168f_1[] = {
5094 { 0x06, 0x00c0, 0x0020 },
5095 { 0x0f, 0xffff, 0x5200 },
5096 { 0x1e, 0x0000, 0x4000 },
5097 { 0x19, 0x0000, 0x0224 }
5098 };
5099
5100 rtl_hw_start_8168f(tp);
5101
Francois Romieufdf6fc02012-07-06 22:40:38 +02005102 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005103
Francois Romieufdf6fc02012-07-06 22:40:38 +02005104 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005105}
5106
Hayes Wangc5583862012-07-02 17:23:22 +08005107static void rtl_hw_start_8168g_1(struct rtl8169_private *tp)
5108{
5109 void __iomem *ioaddr = tp->mmio_addr;
5110 struct pci_dev *pdev = tp->pci_dev;
5111
5112 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x080002, ERIAR_EXGMAC);
5113 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
5114 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
5115 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5116
5117 rtl_csi_access_enable_1(tp);
5118
5119 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5120
5121 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5122 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5123
5124 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005125 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
Hayes Wangc5583862012-07-02 17:23:22 +08005126 RTL_W8(MaxTxPacketSize, EarlySize);
5127
5128 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5129 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5130
5131 /* Adjust EEE LED frequency */
5132 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5133
5134 rtl_w1w0_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x02, ERIAR_EXGMAC);
5135}
5136
Francois Romieu07ce4062007-02-23 23:36:39 +01005137static void rtl_hw_start_8168(struct net_device *dev)
5138{
Francois Romieu2dd99532007-06-11 23:22:52 +02005139 struct rtl8169_private *tp = netdev_priv(dev);
5140 void __iomem *ioaddr = tp->mmio_addr;
5141
5142 RTL_W8(Cfg9346, Cfg9346_Unlock);
5143
françois romieuf0298f82011-01-03 15:07:42 +00005144 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02005145
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005146 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02005147
Francois Romieu0e485152007-02-20 00:00:26 +01005148 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02005149
5150 RTL_W16(CPlusCmd, tp->cp_cmd);
5151
Francois Romieu0e485152007-02-20 00:00:26 +01005152 RTL_W16(IntrMitigate, 0x5151);
5153
5154 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00005155 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01005156 tp->event_slow |= RxFIFOOver | PCSTimeout;
5157 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01005158 }
Francois Romieu2dd99532007-06-11 23:22:52 +02005159
5160 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5161
Francois Romieub8363902008-06-01 12:31:57 +02005162 rtl_set_rx_mode(dev);
5163
5164 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
5165 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02005166
5167 RTL_R8(IntrMask);
5168
Francois Romieu219a1e92008-06-28 11:58:39 +02005169 switch (tp->mac_version) {
5170 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005171 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005172 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005173
5174 case RTL_GIGA_MAC_VER_12:
5175 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005176 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005177 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005178
5179 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005180 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005181 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005182
5183 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005184 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005185 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005186
5187 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005188 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005189 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005190
Francois Romieu197ff762008-06-28 13:16:02 +02005191 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005192 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005193 break;
Francois Romieu197ff762008-06-28 13:16:02 +02005194
Francois Romieu6fb07052008-06-29 11:54:28 +02005195 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005196 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005197 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02005198
Francois Romieuef3386f2008-06-29 12:24:30 +02005199 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005200 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005201 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02005202
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005203 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005204 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005205 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005206
Francois Romieu5b538df2008-07-20 16:22:45 +02005207 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00005208 case RTL_GIGA_MAC_VER_26:
5209 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005210 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005211 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02005212
françois romieue6de30d2011-01-03 15:08:37 +00005213 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005214 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005215 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02005216
hayeswang4804b3b2011-03-21 01:50:29 +00005217 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005218 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005219 break;
5220
hayeswang01dc7fe2011-03-21 01:50:28 +00005221 case RTL_GIGA_MAC_VER_32:
5222 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005223 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005224 break;
5225 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005226 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005227 break;
françois romieue6de30d2011-01-03 15:08:37 +00005228
Hayes Wangc2218922011-09-06 16:55:18 +08005229 case RTL_GIGA_MAC_VER_35:
5230 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005231 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005232 break;
5233
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005234 case RTL_GIGA_MAC_VER_38:
5235 rtl_hw_start_8411(tp);
5236 break;
5237
Hayes Wangc5583862012-07-02 17:23:22 +08005238 case RTL_GIGA_MAC_VER_40:
5239 case RTL_GIGA_MAC_VER_41:
5240 rtl_hw_start_8168g_1(tp);
5241 break;
5242
Francois Romieu219a1e92008-06-28 11:58:39 +02005243 default:
5244 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
5245 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00005246 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005247 }
Francois Romieu2dd99532007-06-11 23:22:52 +02005248
Francois Romieu0e485152007-02-20 00:00:26 +01005249 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5250
Francois Romieub8363902008-06-01 12:31:57 +02005251 RTL_W8(Cfg9346, Cfg9346_Lock);
5252
Francois Romieu2dd99532007-06-11 23:22:52 +02005253 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005254}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255
Francois Romieu2857ffb2008-08-02 21:08:49 +02005256#define R810X_CPCMD_QUIRK_MASK (\
5257 EnableBist | \
5258 Mac_dbgo_oe | \
5259 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00005260 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02005261 Force_txflow_en | \
5262 Cxpl_dbg_sel | \
5263 ASF | \
5264 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005265 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005266
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005267static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005268{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005269 void __iomem *ioaddr = tp->mmio_addr;
5270 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005271 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02005272 { 0x01, 0, 0x6e65 },
5273 { 0x02, 0, 0x091f },
5274 { 0x03, 0, 0xc2f9 },
5275 { 0x06, 0, 0xafb5 },
5276 { 0x07, 0, 0x0e00 },
5277 { 0x19, 0, 0xec80 },
5278 { 0x01, 0, 0x2e65 },
5279 { 0x01, 0, 0x6e65 }
5280 };
5281 u8 cfg1;
5282
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005283 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005284
5285 RTL_W8(DBG_REG, FIX_NAK_1);
5286
5287 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5288
5289 RTL_W8(Config1,
5290 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
5291 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5292
5293 cfg1 = RTL_R8(Config1);
5294 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
5295 RTL_W8(Config1, cfg1 & ~LEDS0);
5296
Francois Romieufdf6fc02012-07-06 22:40:38 +02005297 rtl_ephy_init(tp, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
Francois Romieu2857ffb2008-08-02 21:08:49 +02005298}
5299
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005300static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005301{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005302 void __iomem *ioaddr = tp->mmio_addr;
5303 struct pci_dev *pdev = tp->pci_dev;
5304
5305 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005306
5307 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5308
5309 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
5310 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005311}
5312
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005313static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005314{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005315 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005316
Francois Romieufdf6fc02012-07-06 22:40:38 +02005317 rtl_ephy_write(tp, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005318}
5319
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005320static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005321{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005322 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005323 static const struct ephy_info e_info_8105e_1[] = {
5324 { 0x07, 0, 0x4000 },
5325 { 0x19, 0, 0x0200 },
5326 { 0x19, 0, 0x0020 },
5327 { 0x1e, 0, 0x2000 },
5328 { 0x03, 0, 0x0001 },
5329 { 0x19, 0, 0x0100 },
5330 { 0x19, 0, 0x0004 },
5331 { 0x0a, 0, 0x0020 }
5332 };
5333
Francois Romieucecb5fd2011-04-01 10:21:07 +02005334 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005335 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5336
Francois Romieucecb5fd2011-04-01 10:21:07 +02005337 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005338 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
5339
5340 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e2011-07-06 15:58:02 +08005341 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005342
Francois Romieufdf6fc02012-07-06 22:40:38 +02005343 rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
Hayes Wang5a5e4442011-02-22 17:26:21 +08005344}
5345
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005346static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005347{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005348 rtl_hw_start_8105e_1(tp);
Francois Romieufdf6fc02012-07-06 22:40:38 +02005349 rtl_ephy_write(tp, 0x1e, rtl_ephy_read(tp, 0x1e) | 0x8000);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005350}
5351
Hayes Wang7e18dca2012-03-30 14:33:02 +08005352static void rtl_hw_start_8402(struct rtl8169_private *tp)
5353{
5354 void __iomem *ioaddr = tp->mmio_addr;
5355 static const struct ephy_info e_info_8402[] = {
5356 { 0x19, 0xffff, 0xff64 },
5357 { 0x1e, 0, 0x4000 }
5358 };
5359
5360 rtl_csi_access_enable_2(tp);
5361
5362 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5363 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5364
5365 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5366 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5367
Francois Romieufdf6fc02012-07-06 22:40:38 +02005368 rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402));
Hayes Wang7e18dca2012-03-30 14:33:02 +08005369
5370 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
5371
Francois Romieufdf6fc02012-07-06 22:40:38 +02005372 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
5373 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
5374 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5375 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5376 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5377 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5378 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08005379}
5380
Hayes Wang5598bfe2012-07-02 17:23:21 +08005381static void rtl_hw_start_8106(struct rtl8169_private *tp)
5382{
5383 void __iomem *ioaddr = tp->mmio_addr;
5384
5385 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5386 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5387
Francois Romieu4521e1a92012-11-01 16:46:28 +00005388 RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN);
Hayes Wang5598bfe2012-07-02 17:23:21 +08005389 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
5390 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
5391}
5392
Francois Romieu07ce4062007-02-23 23:36:39 +01005393static void rtl_hw_start_8101(struct net_device *dev)
5394{
Francois Romieucdf1a602007-06-11 23:29:50 +02005395 struct rtl8169_private *tp = netdev_priv(dev);
5396 void __iomem *ioaddr = tp->mmio_addr;
5397 struct pci_dev *pdev = tp->pci_dev;
5398
Francois Romieuda78dbf2012-01-26 14:18:23 +01005399 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
5400 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00005401
Francois Romieucecb5fd2011-04-01 10:21:07 +02005402 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
Jiang Liu7d7903b2012-07-24 17:20:16 +08005403 tp->mac_version == RTL_GIGA_MAC_VER_16)
Bjorn Helgaas8200bc72012-08-22 10:29:42 -06005404 pcie_capability_set_word(pdev, PCI_EXP_DEVCTL,
5405 PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieucdf1a602007-06-11 23:29:50 +02005406
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005407 RTL_W8(Cfg9346, Cfg9346_Unlock);
5408
Francois Romieu2857ffb2008-08-02 21:08:49 +02005409 switch (tp->mac_version) {
5410 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005411 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005412 break;
5413
5414 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005415 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005416 break;
5417
5418 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005419 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005420 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005421
5422 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005423 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005424 break;
5425 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005426 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005427 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005428
5429 case RTL_GIGA_MAC_VER_37:
5430 rtl_hw_start_8402(tp);
5431 break;
Hayes Wang5598bfe2012-07-02 17:23:21 +08005432
5433 case RTL_GIGA_MAC_VER_39:
5434 rtl_hw_start_8106(tp);
5435 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02005436 }
5437
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005438 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02005439
françois romieuf0298f82011-01-03 15:07:42 +00005440 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02005441
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005442 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02005443
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005444 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02005445 RTL_W16(CPlusCmd, tp->cp_cmd);
5446
5447 RTL_W16(IntrMitigate, 0x0000);
5448
5449 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5450
5451 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5452 rtl_set_rx_tx_config_registers(tp);
5453
Francois Romieucdf1a602007-06-11 23:29:50 +02005454 RTL_R8(IntrMask);
5455
Francois Romieucdf1a602007-06-11 23:29:50 +02005456 rtl_set_rx_mode(dev);
5457
5458 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459}
5460
5461static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
5462{
Francois Romieud58d46b2011-05-03 16:38:29 +02005463 struct rtl8169_private *tp = netdev_priv(dev);
5464
5465 if (new_mtu < ETH_ZLEN ||
5466 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467 return -EINVAL;
5468
Francois Romieud58d46b2011-05-03 16:38:29 +02005469 if (new_mtu > ETH_DATA_LEN)
5470 rtl_hw_jumbo_enable(tp);
5471 else
5472 rtl_hw_jumbo_disable(tp);
5473
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00005475 netdev_update_features(dev);
5476
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005477 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478}
5479
5480static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
5481{
Al Viro95e09182007-12-22 18:55:39 +00005482 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
5484}
5485
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005486static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
5487 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005489 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005490 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005491
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005492 kfree(*data_buff);
5493 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494 rtl8169_make_unusable_by_asic(desc);
5495}
5496
5497static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
5498{
5499 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
5500
5501 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
5502}
5503
5504static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
5505 u32 rx_buf_sz)
5506{
5507 desc->addr = cpu_to_le64(mapping);
5508 wmb();
5509 rtl8169_mark_to_asic(desc, rx_buf_sz);
5510}
5511
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005512static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005514 return (void *)ALIGN((long)data, 16);
5515}
5516
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005517static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
5518 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005519{
5520 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005522 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005523 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005524 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005526 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
5527 if (!data)
5528 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01005529
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005530 if (rtl8169_align(data) != data) {
5531 kfree(data);
5532 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
5533 if (!data)
5534 return NULL;
5535 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005536
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005537 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005538 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005539 if (unlikely(dma_mapping_error(d, mapping))) {
5540 if (net_ratelimit())
5541 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005542 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544
5545 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005546 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005547
5548err_out:
5549 kfree(data);
5550 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551}
5552
5553static void rtl8169_rx_clear(struct rtl8169_private *tp)
5554{
Francois Romieu07d3f512007-02-21 22:40:46 +01005555 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556
5557 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005558 if (tp->Rx_databuff[i]) {
5559 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560 tp->RxDescArray + i);
5561 }
5562 }
5563}
5564
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005565static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005567 desc->opts1 |= cpu_to_le32(RingEnd);
5568}
Francois Romieu5b0384f2006-08-16 16:00:01 +02005569
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005570static int rtl8169_rx_fill(struct rtl8169_private *tp)
5571{
5572 unsigned int i;
5573
5574 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005575 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02005576
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005577 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005579
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005580 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005581 if (!data) {
5582 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005583 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005584 }
5585 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005588 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
5589 return 0;
5590
5591err_out:
5592 rtl8169_rx_clear(tp);
5593 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594}
5595
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596static int rtl8169_init_ring(struct net_device *dev)
5597{
5598 struct rtl8169_private *tp = netdev_priv(dev);
5599
5600 rtl8169_init_ring_indexes(tp);
5601
5602 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005603 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005605 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606}
5607
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005608static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609 struct TxDesc *desc)
5610{
5611 unsigned int len = tx_skb->len;
5612
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005613 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
5614
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615 desc->opts1 = 0x00;
5616 desc->opts2 = 0x00;
5617 desc->addr = 0x00;
5618 tx_skb->len = 0;
5619}
5620
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005621static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
5622 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623{
5624 unsigned int i;
5625
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005626 for (i = 0; i < n; i++) {
5627 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628 struct ring_info *tx_skb = tp->tx_skb + entry;
5629 unsigned int len = tx_skb->len;
5630
5631 if (len) {
5632 struct sk_buff *skb = tx_skb->skb;
5633
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005634 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 tp->TxDescArray + entry);
5636 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00005637 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638 dev_kfree_skb(skb);
5639 tx_skb->skb = NULL;
5640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641 }
5642 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005643}
5644
5645static void rtl8169_tx_clear(struct rtl8169_private *tp)
5646{
5647 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 tp->cur_tx = tp->dirty_tx = 0;
5649}
5650
Francois Romieu4422bcd2012-01-26 11:23:32 +01005651static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652{
David Howellsc4028952006-11-22 14:57:56 +00005653 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01005654 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655
Francois Romieuda78dbf2012-01-26 14:18:23 +01005656 napi_disable(&tp->napi);
5657 netif_stop_queue(dev);
5658 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659
françois romieuc7c2c392011-12-04 20:30:52 +00005660 rtl8169_hw_reset(tp);
5661
Francois Romieu56de4142011-03-15 17:29:31 +01005662 for (i = 0; i < NUM_RX_DESC; i++)
5663 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
5664
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00005666 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667
Francois Romieuda78dbf2012-01-26 14:18:23 +01005668 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01005669 rtl_hw_start(dev);
5670 netif_wake_queue(dev);
5671 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672}
5673
5674static void rtl8169_tx_timeout(struct net_device *dev)
5675{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005676 struct rtl8169_private *tp = netdev_priv(dev);
5677
5678 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679}
5680
5681static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07005682 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683{
5684 struct skb_shared_info *info = skb_shinfo(skb);
5685 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04005686 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005687 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
5689 entry = tp->cur_tx;
5690 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00005691 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692 dma_addr_t mapping;
5693 u32 status, len;
5694 void *addr;
5695
5696 entry = (entry + 1) % NUM_TX_DESC;
5697
5698 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00005699 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00005700 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005701 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005702 if (unlikely(dma_mapping_error(d, mapping))) {
5703 if (net_ratelimit())
5704 netif_err(tp, drv, tp->dev,
5705 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005706 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708
Francois Romieucecb5fd2011-04-01 10:21:07 +02005709 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005710 status = opts[0] | len |
5711 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712
5713 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07005714 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715 txd->addr = cpu_to_le64(mapping);
5716
5717 tp->tx_skb[entry].len = len;
5718 }
5719
5720 if (cur_frag) {
5721 tp->tx_skb[entry].skb = skb;
5722 txd->opts1 |= cpu_to_le32(LastFrag);
5723 }
5724
5725 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005726
5727err_out:
5728 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
5729 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730}
5731
Francois Romieu2b7b4312011-04-18 22:53:24 -07005732static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
5733 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734{
Francois Romieu2b7b4312011-04-18 22:53:24 -07005735 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00005736 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005737 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738
Francois Romieu2b7b4312011-04-18 22:53:24 -07005739 if (mss) {
5740 opts[0] |= TD_LSO;
5741 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
5742 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005743 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744
5745 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005746 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005748 opts[offset] |= info->checksum.udp;
5749 else
5750 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752}
5753
Stephen Hemminger613573252009-08-31 19:50:58 +00005754static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
5755 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756{
5757 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005758 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759 struct TxDesc *txd = tp->TxDescArray + entry;
5760 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005761 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762 dma_addr_t mapping;
5763 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005764 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005765 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02005766
Julien Ducourthial477206a2012-05-09 00:00:06 +02005767 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005768 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005769 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770 }
5771
5772 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005773 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005775 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005776 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005777 if (unlikely(dma_mapping_error(d, mapping))) {
5778 if (net_ratelimit())
5779 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005780 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782
5783 tp->tx_skb[entry].len = len;
5784 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785
Kirill Smelkov810f4892012-11-10 21:11:02 +04005786 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb));
Francois Romieu2b7b4312011-04-18 22:53:24 -07005787 opts[0] = DescOwn;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005788
Francois Romieu2b7b4312011-04-18 22:53:24 -07005789 rtl8169_tso_csum(tp, skb, opts);
5790
5791 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005792 if (frags < 0)
5793 goto err_dma_1;
5794 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005795 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005796 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07005797 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005798 tp->tx_skb[entry].skb = skb;
5799 }
5800
Francois Romieu2b7b4312011-04-18 22:53:24 -07005801 txd->opts2 = cpu_to_le32(opts[1]);
5802
Richard Cochran5047fb52012-03-10 07:29:42 +00005803 skb_tx_timestamp(skb);
5804
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805 wmb();
5806
Francois Romieucecb5fd2011-04-01 10:21:07 +02005807 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005808 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809 txd->opts1 = cpu_to_le32(status);
5810
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 tp->cur_tx += frags + 1;
5812
David Dillow4c020a92010-03-03 16:33:10 +00005813 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814
Francois Romieucecb5fd2011-04-01 10:21:07 +02005815 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816
Francois Romieuda78dbf2012-01-26 14:18:23 +01005817 mmiowb();
5818
Julien Ducourthial477206a2012-05-09 00:00:06 +02005819 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01005820 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
5821 * not miss a ring update when it notices a stopped queue.
5822 */
5823 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01005825 /* Sync with rtl_tx:
5826 * - publish queue status and cur_tx ring index (write barrier)
5827 * - refresh dirty_tx ring index (read barrier).
5828 * May the current thread have a pessimistic view of the ring
5829 * status and forget to wake up queue, a racing rtl_tx thread
5830 * can't.
5831 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005832 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02005833 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834 netif_wake_queue(dev);
5835 }
5836
Stephen Hemminger613573252009-08-31 19:50:58 +00005837 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005839err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005840 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005841err_dma_0:
5842 dev_kfree_skb(skb);
5843 dev->stats.tx_dropped++;
5844 return NETDEV_TX_OK;
5845
5846err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005848 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00005849 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850}
5851
5852static void rtl8169_pcierr_interrupt(struct net_device *dev)
5853{
5854 struct rtl8169_private *tp = netdev_priv(dev);
5855 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856 u16 pci_status, pci_cmd;
5857
5858 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
5859 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
5860
Joe Perchesbf82c182010-02-09 11:49:50 +00005861 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
5862 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863
5864 /*
5865 * The recovery sequence below admits a very elaborated explanation:
5866 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01005867 * - I did not see what else could be done;
5868 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869 *
5870 * Feel free to adjust to your needs.
5871 */
Francois Romieua27993f2006-12-18 00:04:19 +01005872 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01005873 pci_cmd &= ~PCI_COMMAND_PARITY;
5874 else
5875 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
5876
5877 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878
5879 pci_write_config_word(pdev, PCI_STATUS,
5880 pci_status & (PCI_STATUS_DETECTED_PARITY |
5881 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
5882 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
5883
5884 /* The infamous DAC f*ckup only happens at boot time */
Timo Teräs9fba0812013-01-15 21:01:24 +00005885 if ((tp->cp_cmd & PCIDAC) && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00005886 void __iomem *ioaddr = tp->mmio_addr;
5887
Joe Perchesbf82c182010-02-09 11:49:50 +00005888 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889 tp->cp_cmd &= ~PCIDAC;
5890 RTL_W16(CPlusCmd, tp->cp_cmd);
5891 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892 }
5893
françois romieue6de30d2011-01-03 15:08:37 +00005894 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01005895
Francois Romieu98ddf982012-01-31 10:47:34 +01005896 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897}
5898
Francois Romieuda78dbf2012-01-26 14:18:23 +01005899static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900{
5901 unsigned int dirty_tx, tx_left;
5902
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903 dirty_tx = tp->dirty_tx;
5904 smp_rmb();
5905 tx_left = tp->cur_tx - dirty_tx;
5906
5907 while (tx_left > 0) {
5908 unsigned int entry = dirty_tx % NUM_TX_DESC;
5909 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910 u32 status;
5911
5912 rmb();
5913 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
5914 if (status & DescOwn)
5915 break;
5916
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005917 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
5918 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919 if (status & LastFrag) {
Francois Romieu17bcb682012-07-23 22:55:55 +02005920 u64_stats_update_begin(&tp->tx_stats.syncp);
5921 tp->tx_stats.packets++;
5922 tp->tx_stats.bytes += tx_skb->skb->len;
5923 u64_stats_update_end(&tp->tx_stats.syncp);
5924 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925 tx_skb->skb = NULL;
5926 }
5927 dirty_tx++;
5928 tx_left--;
5929 }
5930
5931 if (tp->dirty_tx != dirty_tx) {
5932 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01005933 /* Sync with rtl8169_start_xmit:
5934 * - publish dirty_tx ring index (write barrier)
5935 * - refresh cur_tx ring index and queue status (read barrier)
5936 * May the current thread miss the stopped queue condition,
5937 * a racing xmit thread can only have a right view of the
5938 * ring status.
5939 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005940 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02005942 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943 netif_wake_queue(dev);
5944 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02005945 /*
5946 * 8168 hack: TxPoll requests are lost when the Tx packets are
5947 * too close. Let's kick an extra TxPoll request when a burst
5948 * of start_xmit activity is detected (if it is not detected,
5949 * it is slow enough). -- FR
5950 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005951 if (tp->cur_tx != dirty_tx) {
5952 void __iomem *ioaddr = tp->mmio_addr;
5953
Francois Romieud78ae2d2007-08-26 20:08:19 +02005954 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956 }
5957}
5958
Francois Romieu126fa4b2005-05-12 20:09:17 -04005959static inline int rtl8169_fragmented_frame(u32 status)
5960{
5961 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
5962}
5963
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005964static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966 u32 status = opts1 & RxProtoMask;
5967
5968 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00005969 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970 skb->ip_summed = CHECKSUM_UNNECESSARY;
5971 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005972 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973}
5974
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005975static struct sk_buff *rtl8169_try_rx_copy(void *data,
5976 struct rtl8169_private *tp,
5977 int pkt_size,
5978 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02005980 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005981 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005983 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005984 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005985 prefetch(data);
5986 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
5987 if (skb)
5988 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005989 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
5990
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005991 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992}
5993
Francois Romieuda78dbf2012-01-26 14:18:23 +01005994static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995{
5996 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005997 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999 cur_rx = tp->cur_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000
Timo Teräs9fba0812013-01-15 21:01:24 +00006001 for (rx_left = min(budget, NUM_RX_DESC); rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04006003 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004 u32 status;
6005
6006 rmb();
David S. Miller8decf862011-09-22 03:23:13 -04006007 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008
6009 if (status & DescOwn)
6010 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02006011 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00006012 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
6013 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02006014 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02006016 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02006018 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02006019 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01006020 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02006021 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02006022 }
Ben Greear6bbe0212012-02-10 15:04:33 +00006023 if ((status & (RxRUNT | RxCRC)) &&
6024 !(status & (RxRWT | RxFOVF)) &&
6025 (dev->features & NETIF_F_RXALL))
6026 goto process_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006028 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00006029 dma_addr_t addr;
6030 int pkt_size;
6031
6032process_pkt:
6033 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00006034 if (likely(!(dev->features & NETIF_F_RXFCS)))
6035 pkt_size = (status & 0x00003fff) - 4;
6036 else
6037 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038
Francois Romieu126fa4b2005-05-12 20:09:17 -04006039 /*
6040 * The driver does not support incoming fragmented
6041 * frames. They are seen as a symptom of over-mtu
6042 * sized frames.
6043 */
6044 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02006045 dev->stats.rx_dropped++;
6046 dev->stats.rx_length_errors++;
françois romieuce11ff52013-01-24 13:30:06 +00006047 goto release_descriptor;
Francois Romieu126fa4b2005-05-12 20:09:17 -04006048 }
6049
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006050 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
6051 tp, pkt_size, addr);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006052 if (!skb) {
6053 dev->stats.rx_dropped++;
françois romieuce11ff52013-01-24 13:30:06 +00006054 goto release_descriptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055 }
6056
Eric Dumazetadea1ac72010-09-05 20:04:05 -07006057 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058 skb_put(skb, pkt_size);
6059 skb->protocol = eth_type_trans(skb, dev);
6060
Francois Romieu7a8fc772011-03-01 17:18:33 +01006061 rtl8169_rx_vlan_tag(desc, skb);
6062
Francois Romieu56de4142011-03-15 17:29:31 +01006063 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064
Junchang Wang8027aa22012-03-04 23:30:32 +01006065 u64_stats_update_begin(&tp->rx_stats.syncp);
6066 tp->rx_stats.packets++;
6067 tp->rx_stats.bytes += pkt_size;
6068 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069 }
françois romieuce11ff52013-01-24 13:30:06 +00006070release_descriptor:
6071 desc->opts2 = 0;
6072 wmb();
6073 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074 }
6075
6076 count = cur_rx - tp->cur_rx;
6077 tp->cur_rx = cur_rx;
6078
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079 return count;
6080}
6081
Francois Romieu07d3f512007-02-21 22:40:46 +01006082static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083{
Francois Romieu07d3f512007-02-21 22:40:46 +01006084 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01006087 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088
Francois Romieu9085cdfa2012-01-26 12:59:08 +01006089 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006090 if (status && status != 0xffff) {
6091 status &= RTL_EVENT_NAPI | tp->event_slow;
6092 if (status) {
6093 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00006094
Francois Romieuda78dbf2012-01-26 14:18:23 +01006095 rtl_irq_disable(tp);
6096 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099 return IRQ_RETVAL(handled);
6100}
6101
Francois Romieuda78dbf2012-01-26 14:18:23 +01006102/*
6103 * Workqueue context.
6104 */
6105static void rtl_slow_event_work(struct rtl8169_private *tp)
6106{
6107 struct net_device *dev = tp->dev;
6108 u16 status;
6109
6110 status = rtl_get_events(tp) & tp->event_slow;
6111 rtl_ack_events(tp, status);
6112
6113 if (unlikely(status & RxFIFOOver)) {
6114 switch (tp->mac_version) {
6115 /* Work around for rx fifo overflow */
6116 case RTL_GIGA_MAC_VER_11:
6117 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01006118 /* XXX - Hack alert. See rtl_task(). */
6119 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006120 default:
6121 break;
6122 }
6123 }
6124
6125 if (unlikely(status & SYSErr))
6126 rtl8169_pcierr_interrupt(dev);
6127
6128 if (status & LinkChg)
6129 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
6130
françois romieu7dbb4912012-06-09 10:53:16 +00006131 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006132}
6133
Francois Romieu4422bcd2012-01-26 11:23:32 +01006134static void rtl_task(struct work_struct *work)
6135{
Francois Romieuda78dbf2012-01-26 14:18:23 +01006136 static const struct {
6137 int bitnr;
6138 void (*action)(struct rtl8169_private *);
6139 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01006140 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006141 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
6142 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
6143 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
6144 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01006145 struct rtl8169_private *tp =
6146 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006147 struct net_device *dev = tp->dev;
6148 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01006149
Francois Romieuda78dbf2012-01-26 14:18:23 +01006150 rtl_lock_work(tp);
6151
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006152 if (!netif_running(dev) ||
6153 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01006154 goto out_unlock;
6155
6156 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
6157 bool pending;
6158
Francois Romieuda78dbf2012-01-26 14:18:23 +01006159 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006160 if (pending)
6161 rtl_work[i].action(tp);
6162 }
6163
6164out_unlock:
6165 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01006166}
6167
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006168static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006170 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
6171 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006172 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
6173 int work_done= 0;
6174 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175
Francois Romieuda78dbf2012-01-26 14:18:23 +01006176 status = rtl_get_events(tp);
6177 rtl_ack_events(tp, status & ~tp->event_slow);
6178
6179 if (status & RTL_EVENT_NAPI_RX)
6180 work_done = rtl_rx(dev, tp, (u32) budget);
6181
6182 if (status & RTL_EVENT_NAPI_TX)
6183 rtl_tx(dev, tp);
6184
6185 if (status & tp->event_slow) {
6186 enable_mask &= ~tp->event_slow;
6187
6188 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
6189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006191 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006192 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00006193
Francois Romieuda78dbf2012-01-26 14:18:23 +01006194 rtl_irq_enable(tp, enable_mask);
6195 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196 }
6197
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006198 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
Francois Romieu523a6092008-09-10 22:28:56 +02006201static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
6202{
6203 struct rtl8169_private *tp = netdev_priv(dev);
6204
6205 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
6206 return;
6207
6208 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
6209 RTL_W32(RxMissed, 0);
6210}
6211
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212static void rtl8169_down(struct net_device *dev)
6213{
6214 struct rtl8169_private *tp = netdev_priv(dev);
6215 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216
Francois Romieu4876cc12011-03-11 21:07:11 +01006217 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01006219 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006220 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221
Hayes Wang92fc43b2011-07-06 15:58:03 +08006222 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006223 /*
6224 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01006225 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
6226 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006227 */
Francois Romieu523a6092008-09-10 22:28:56 +02006228 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006231 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233 rtl8169_tx_clear(tp);
6234
6235 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00006236
6237 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238}
6239
6240static int rtl8169_close(struct net_device *dev)
6241{
6242 struct rtl8169_private *tp = netdev_priv(dev);
6243 struct pci_dev *pdev = tp->pci_dev;
6244
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006245 pm_runtime_get_sync(&pdev->dev);
6246
Francois Romieucecb5fd2011-04-01 10:21:07 +02006247 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08006248 rtl8169_update_counters(dev);
6249
Francois Romieuda78dbf2012-01-26 14:18:23 +01006250 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006251 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006252
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006254 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006256 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00006258 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6259 tp->RxPhyAddr);
6260 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6261 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262 tp->TxDescArray = NULL;
6263 tp->RxDescArray = NULL;
6264
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006265 pm_runtime_put_sync(&pdev->dev);
6266
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267 return 0;
6268}
6269
Francois Romieudc1c00c2012-03-08 10:06:18 +01006270#ifdef CONFIG_NET_POLL_CONTROLLER
6271static void rtl8169_netpoll(struct net_device *dev)
6272{
6273 struct rtl8169_private *tp = netdev_priv(dev);
6274
6275 rtl8169_interrupt(tp->pci_dev->irq, dev);
6276}
6277#endif
6278
Francois Romieudf43ac72012-03-08 09:48:40 +01006279static int rtl_open(struct net_device *dev)
6280{
6281 struct rtl8169_private *tp = netdev_priv(dev);
6282 void __iomem *ioaddr = tp->mmio_addr;
6283 struct pci_dev *pdev = tp->pci_dev;
6284 int retval = -ENOMEM;
6285
6286 pm_runtime_get_sync(&pdev->dev);
6287
6288 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02006289 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01006290 * dma_alloc_coherent provides more.
6291 */
6292 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
6293 &tp->TxPhyAddr, GFP_KERNEL);
6294 if (!tp->TxDescArray)
6295 goto err_pm_runtime_put;
6296
6297 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
6298 &tp->RxPhyAddr, GFP_KERNEL);
6299 if (!tp->RxDescArray)
6300 goto err_free_tx_0;
6301
6302 retval = rtl8169_init_ring(dev);
6303 if (retval < 0)
6304 goto err_free_rx_1;
6305
6306 INIT_WORK(&tp->wk.work, rtl_task);
6307
6308 smp_mb();
6309
6310 rtl_request_firmware(tp);
6311
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006312 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01006313 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
6314 dev->name, dev);
6315 if (retval < 0)
6316 goto err_release_fw_2;
6317
6318 rtl_lock_work(tp);
6319
6320 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
6321
6322 napi_enable(&tp->napi);
6323
6324 rtl8169_init_phy(dev, tp);
6325
6326 __rtl8169_set_features(dev, dev->features);
6327
6328 rtl_pll_power_up(tp);
6329
6330 rtl_hw_start(dev);
6331
6332 netif_start_queue(dev);
6333
6334 rtl_unlock_work(tp);
6335
6336 tp->saved_wolopts = 0;
6337 pm_runtime_put_noidle(&pdev->dev);
6338
6339 rtl8169_check_link_status(dev, tp, ioaddr);
6340out:
6341 return retval;
6342
6343err_release_fw_2:
6344 rtl_release_firmware(tp);
6345 rtl8169_rx_clear(tp);
6346err_free_rx_1:
6347 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6348 tp->RxPhyAddr);
6349 tp->RxDescArray = NULL;
6350err_free_tx_0:
6351 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6352 tp->TxPhyAddr);
6353 tp->TxDescArray = NULL;
6354err_pm_runtime_put:
6355 pm_runtime_put_noidle(&pdev->dev);
6356 goto out;
6357}
6358
Junchang Wang8027aa22012-03-04 23:30:32 +01006359static struct rtnl_link_stats64 *
6360rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361{
6362 struct rtl8169_private *tp = netdev_priv(dev);
6363 void __iomem *ioaddr = tp->mmio_addr;
Junchang Wang8027aa22012-03-04 23:30:32 +01006364 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365
Francois Romieuda78dbf2012-01-26 14:18:23 +01006366 if (netif_running(dev))
Francois Romieu523a6092008-09-10 22:28:56 +02006367 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02006368
Junchang Wang8027aa22012-03-04 23:30:32 +01006369 do {
6370 start = u64_stats_fetch_begin_bh(&tp->rx_stats.syncp);
6371 stats->rx_packets = tp->rx_stats.packets;
6372 stats->rx_bytes = tp->rx_stats.bytes;
6373 } while (u64_stats_fetch_retry_bh(&tp->rx_stats.syncp, start));
6374
6375
6376 do {
6377 start = u64_stats_fetch_begin_bh(&tp->tx_stats.syncp);
6378 stats->tx_packets = tp->tx_stats.packets;
6379 stats->tx_bytes = tp->tx_stats.bytes;
6380 } while (u64_stats_fetch_retry_bh(&tp->tx_stats.syncp, start));
6381
6382 stats->rx_dropped = dev->stats.rx_dropped;
6383 stats->tx_dropped = dev->stats.tx_dropped;
6384 stats->rx_length_errors = dev->stats.rx_length_errors;
6385 stats->rx_errors = dev->stats.rx_errors;
6386 stats->rx_crc_errors = dev->stats.rx_crc_errors;
6387 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
6388 stats->rx_missed_errors = dev->stats.rx_missed_errors;
6389
6390 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006391}
6392
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006393static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01006394{
françois romieu065c27c2011-01-03 15:08:12 +00006395 struct rtl8169_private *tp = netdev_priv(dev);
6396
Francois Romieu5d06a992006-02-23 00:47:58 +01006397 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006398 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01006399
6400 netif_device_detach(dev);
6401 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006402
6403 rtl_lock_work(tp);
6404 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006405 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006406 rtl_unlock_work(tp);
6407
6408 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006409}
Francois Romieu5d06a992006-02-23 00:47:58 +01006410
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006411#ifdef CONFIG_PM
6412
6413static int rtl8169_suspend(struct device *device)
6414{
6415 struct pci_dev *pdev = to_pci_dev(device);
6416 struct net_device *dev = pci_get_drvdata(pdev);
6417
6418 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02006419
Francois Romieu5d06a992006-02-23 00:47:58 +01006420 return 0;
6421}
6422
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006423static void __rtl8169_resume(struct net_device *dev)
6424{
françois romieu065c27c2011-01-03 15:08:12 +00006425 struct rtl8169_private *tp = netdev_priv(dev);
6426
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006427 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00006428
6429 rtl_pll_power_up(tp);
6430
Artem Savkovcff4c162012-04-03 10:29:11 +00006431 rtl_lock_work(tp);
6432 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006433 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00006434 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006435
Francois Romieu98ddf982012-01-31 10:47:34 +01006436 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006437}
6438
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006439static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01006440{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006441 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01006442 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006443 struct rtl8169_private *tp = netdev_priv(dev);
6444
6445 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01006446
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006447 if (netif_running(dev))
6448 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01006449
Francois Romieu5d06a992006-02-23 00:47:58 +01006450 return 0;
6451}
6452
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006453static int rtl8169_runtime_suspend(struct device *device)
6454{
6455 struct pci_dev *pdev = to_pci_dev(device);
6456 struct net_device *dev = pci_get_drvdata(pdev);
6457 struct rtl8169_private *tp = netdev_priv(dev);
6458
6459 if (!tp->TxDescArray)
6460 return 0;
6461
Francois Romieuda78dbf2012-01-26 14:18:23 +01006462 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006463 tp->saved_wolopts = __rtl8169_get_wol(tp);
6464 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006465 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006466
6467 rtl8169_net_suspend(dev);
6468
6469 return 0;
6470}
6471
6472static int rtl8169_runtime_resume(struct device *device)
6473{
6474 struct pci_dev *pdev = to_pci_dev(device);
6475 struct net_device *dev = pci_get_drvdata(pdev);
6476 struct rtl8169_private *tp = netdev_priv(dev);
6477
6478 if (!tp->TxDescArray)
6479 return 0;
6480
Francois Romieuda78dbf2012-01-26 14:18:23 +01006481 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006482 __rtl8169_set_wol(tp, tp->saved_wolopts);
6483 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006484 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006485
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006486 rtl8169_init_phy(dev, tp);
6487
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006488 __rtl8169_resume(dev);
6489
6490 return 0;
6491}
6492
6493static int rtl8169_runtime_idle(struct device *device)
6494{
6495 struct pci_dev *pdev = to_pci_dev(device);
6496 struct net_device *dev = pci_get_drvdata(pdev);
6497 struct rtl8169_private *tp = netdev_priv(dev);
6498
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00006499 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006500}
6501
Alexey Dobriyan47145212009-12-14 18:00:08 -08006502static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02006503 .suspend = rtl8169_suspend,
6504 .resume = rtl8169_resume,
6505 .freeze = rtl8169_suspend,
6506 .thaw = rtl8169_resume,
6507 .poweroff = rtl8169_suspend,
6508 .restore = rtl8169_resume,
6509 .runtime_suspend = rtl8169_runtime_suspend,
6510 .runtime_resume = rtl8169_runtime_resume,
6511 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006512};
6513
6514#define RTL8169_PM_OPS (&rtl8169_pm_ops)
6515
6516#else /* !CONFIG_PM */
6517
6518#define RTL8169_PM_OPS NULL
6519
6520#endif /* !CONFIG_PM */
6521
David S. Miller1805b2f2011-10-24 18:18:09 -04006522static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
6523{
6524 void __iomem *ioaddr = tp->mmio_addr;
6525
6526 /* WoL fails with 8168b when the receiver is disabled. */
6527 switch (tp->mac_version) {
6528 case RTL_GIGA_MAC_VER_11:
6529 case RTL_GIGA_MAC_VER_12:
6530 case RTL_GIGA_MAC_VER_17:
6531 pci_clear_master(tp->pci_dev);
6532
6533 RTL_W8(ChipCmd, CmdRxEnb);
6534 /* PCI commit */
6535 RTL_R8(ChipCmd);
6536 break;
6537 default:
6538 break;
6539 }
6540}
6541
Francois Romieu1765f952008-09-13 17:21:40 +02006542static void rtl_shutdown(struct pci_dev *pdev)
6543{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006544 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00006545 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00006546 struct device *d = &pdev->dev;
6547
6548 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02006549
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006550 rtl8169_net_suspend(dev);
6551
Francois Romieucecb5fd2011-04-01 10:21:07 +02006552 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08006553 rtl_rar_set(tp, dev->perm_addr);
6554
Hayes Wang92fc43b2011-07-06 15:58:03 +08006555 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00006556
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006557 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04006558 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
6559 rtl_wol_suspend_quirk(tp);
6560 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00006561 }
6562
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006563 pci_wake_from_d3(pdev, true);
6564 pci_set_power_state(pdev, PCI_D3hot);
6565 }
françois romieu2a15cd22012-03-06 01:14:12 +00006566
6567 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006568}
Francois Romieu5d06a992006-02-23 00:47:58 +01006569
Bill Pembertonbaf63292012-12-03 09:23:28 -05006570static void rtl_remove_one(struct pci_dev *pdev)
Francois Romieue27566e2012-03-08 09:54:01 +01006571{
6572 struct net_device *dev = pci_get_drvdata(pdev);
6573 struct rtl8169_private *tp = netdev_priv(dev);
6574
6575 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6576 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6577 tp->mac_version == RTL_GIGA_MAC_VER_31) {
6578 rtl8168_driver_stop(tp);
6579 }
6580
6581 cancel_work_sync(&tp->wk.work);
6582
Devendra Nagaad1be8d2012-05-31 01:51:20 +00006583 netif_napi_del(&tp->napi);
6584
Francois Romieue27566e2012-03-08 09:54:01 +01006585 unregister_netdev(dev);
6586
6587 rtl_release_firmware(tp);
6588
6589 if (pci_dev_run_wake(pdev))
6590 pm_runtime_get_noresume(&pdev->dev);
6591
6592 /* restore original MAC address */
6593 rtl_rar_set(tp, dev->perm_addr);
6594
6595 rtl_disable_msi(pdev, tp);
6596 rtl8169_release_board(pdev, dev, tp->mmio_addr);
6597 pci_set_drvdata(pdev, NULL);
6598}
6599
Francois Romieufa9c3852012-03-08 10:01:50 +01006600static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01006601 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01006602 .ndo_stop = rtl8169_close,
6603 .ndo_get_stats64 = rtl8169_get_stats64,
6604 .ndo_start_xmit = rtl8169_start_xmit,
6605 .ndo_tx_timeout = rtl8169_tx_timeout,
6606 .ndo_validate_addr = eth_validate_addr,
6607 .ndo_change_mtu = rtl8169_change_mtu,
6608 .ndo_fix_features = rtl8169_fix_features,
6609 .ndo_set_features = rtl8169_set_features,
6610 .ndo_set_mac_address = rtl_set_mac_address,
6611 .ndo_do_ioctl = rtl8169_ioctl,
6612 .ndo_set_rx_mode = rtl_set_rx_mode,
6613#ifdef CONFIG_NET_POLL_CONTROLLER
6614 .ndo_poll_controller = rtl8169_netpoll,
6615#endif
6616
6617};
6618
Francois Romieu31fa8b12012-03-08 10:09:40 +01006619static const struct rtl_cfg_info {
6620 void (*hw_start)(struct net_device *);
6621 unsigned int region;
6622 unsigned int align;
6623 u16 event_slow;
6624 unsigned features;
6625 u8 default_ver;
6626} rtl_cfg_infos [] = {
6627 [RTL_CFG_0] = {
6628 .hw_start = rtl_hw_start_8169,
6629 .region = 1,
6630 .align = 0,
6631 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
6632 .features = RTL_FEATURE_GMII,
6633 .default_ver = RTL_GIGA_MAC_VER_01,
6634 },
6635 [RTL_CFG_1] = {
6636 .hw_start = rtl_hw_start_8168,
6637 .region = 2,
6638 .align = 8,
6639 .event_slow = SYSErr | LinkChg | RxOverflow,
6640 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
6641 .default_ver = RTL_GIGA_MAC_VER_11,
6642 },
6643 [RTL_CFG_2] = {
6644 .hw_start = rtl_hw_start_8101,
6645 .region = 2,
6646 .align = 8,
6647 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
6648 PCSTimeout,
6649 .features = RTL_FEATURE_MSI,
6650 .default_ver = RTL_GIGA_MAC_VER_13,
6651 }
6652};
6653
6654/* Cfg9346_Unlock assumed. */
6655static unsigned rtl_try_msi(struct rtl8169_private *tp,
6656 const struct rtl_cfg_info *cfg)
6657{
6658 void __iomem *ioaddr = tp->mmio_addr;
6659 unsigned msi = 0;
6660 u8 cfg2;
6661
6662 cfg2 = RTL_R8(Config2) & ~MSIEnable;
6663 if (cfg->features & RTL_FEATURE_MSI) {
6664 if (pci_enable_msi(tp->pci_dev)) {
6665 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
6666 } else {
6667 cfg2 |= MSIEnable;
6668 msi = RTL_FEATURE_MSI;
6669 }
6670 }
6671 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
6672 RTL_W8(Config2, cfg2);
6673 return msi;
6674}
6675
Hayes Wangc5583862012-07-02 17:23:22 +08006676DECLARE_RTL_COND(rtl_link_list_ready_cond)
6677{
6678 void __iomem *ioaddr = tp->mmio_addr;
6679
6680 return RTL_R8(MCU) & LINK_LIST_RDY;
6681}
6682
6683DECLARE_RTL_COND(rtl_rxtx_empty_cond)
6684{
6685 void __iomem *ioaddr = tp->mmio_addr;
6686
6687 return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
6688}
6689
Bill Pembertonbaf63292012-12-03 09:23:28 -05006690static void rtl_hw_init_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006691{
6692 void __iomem *ioaddr = tp->mmio_addr;
6693 u32 data;
6694
6695 tp->ocp_base = OCP_STD_PHY_BASE;
6696
6697 RTL_W32(MISC, RTL_R32(MISC) | RXDV_GATED_EN);
6698
6699 if (!rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 42))
6700 return;
6701
6702 if (!rtl_udelay_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42))
6703 return;
6704
6705 RTL_W8(ChipCmd, RTL_R8(ChipCmd) & ~(CmdTxEnb | CmdRxEnb));
6706 msleep(1);
6707 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6708
Hayes Wang5f8bcce2012-07-10 08:47:05 +02006709 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08006710 data &= ~(1 << 14);
6711 r8168_mac_ocp_write(tp, 0xe8de, data);
6712
6713 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
6714 return;
6715
Hayes Wang5f8bcce2012-07-10 08:47:05 +02006716 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08006717 data |= (1 << 15);
6718 r8168_mac_ocp_write(tp, 0xe8de, data);
6719
6720 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
6721 return;
6722}
6723
Bill Pembertonbaf63292012-12-03 09:23:28 -05006724static void rtl_hw_initialize(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006725{
6726 switch (tp->mac_version) {
6727 case RTL_GIGA_MAC_VER_40:
6728 case RTL_GIGA_MAC_VER_41:
6729 rtl_hw_init_8168g(tp);
6730 break;
6731
6732 default:
6733 break;
6734 }
6735}
6736
Bill Pembertonbaf63292012-12-03 09:23:28 -05006737static int
Francois Romieu3b6cf252012-03-08 09:59:04 +01006738rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
6739{
6740 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
6741 const unsigned int region = cfg->region;
6742 struct rtl8169_private *tp;
6743 struct mii_if_info *mii;
6744 struct net_device *dev;
6745 void __iomem *ioaddr;
6746 int chipset, i;
6747 int rc;
6748
6749 if (netif_msg_drv(&debug)) {
6750 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
6751 MODULENAME, RTL8169_VERSION);
6752 }
6753
6754 dev = alloc_etherdev(sizeof (*tp));
6755 if (!dev) {
6756 rc = -ENOMEM;
6757 goto out;
6758 }
6759
6760 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01006761 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006762 tp = netdev_priv(dev);
6763 tp->dev = dev;
6764 tp->pci_dev = pdev;
6765 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
6766
6767 mii = &tp->mii;
6768 mii->dev = dev;
6769 mii->mdio_read = rtl_mdio_read;
6770 mii->mdio_write = rtl_mdio_write;
6771 mii->phy_id_mask = 0x1f;
6772 mii->reg_num_mask = 0x1f;
6773 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
6774
6775 /* disable ASPM completely as that cause random device stop working
6776 * problems as well as full system hangs for some PCIe devices users */
6777 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6778 PCIE_LINK_STATE_CLKPM);
6779
6780 /* enable device (incl. PCI PM wakeup and hotplug setup) */
6781 rc = pci_enable_device(pdev);
6782 if (rc < 0) {
6783 netif_err(tp, probe, dev, "enable failure\n");
6784 goto err_out_free_dev_1;
6785 }
6786
6787 if (pci_set_mwi(pdev) < 0)
6788 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
6789
6790 /* make sure PCI base addr 1 is MMIO */
6791 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
6792 netif_err(tp, probe, dev,
6793 "region #%d not an MMIO resource, aborting\n",
6794 region);
6795 rc = -ENODEV;
6796 goto err_out_mwi_2;
6797 }
6798
6799 /* check for weird/broken PCI region reporting */
6800 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
6801 netif_err(tp, probe, dev,
6802 "Invalid PCI region size(s), aborting\n");
6803 rc = -ENODEV;
6804 goto err_out_mwi_2;
6805 }
6806
6807 rc = pci_request_regions(pdev, MODULENAME);
6808 if (rc < 0) {
6809 netif_err(tp, probe, dev, "could not request regions\n");
6810 goto err_out_mwi_2;
6811 }
6812
6813 tp->cp_cmd = RxChkSum;
6814
6815 if ((sizeof(dma_addr_t) > 4) &&
6816 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
6817 tp->cp_cmd |= PCIDAC;
6818 dev->features |= NETIF_F_HIGHDMA;
6819 } else {
6820 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6821 if (rc < 0) {
6822 netif_err(tp, probe, dev, "DMA configuration failed\n");
6823 goto err_out_free_res_3;
6824 }
6825 }
6826
6827 /* ioremap MMIO region */
6828 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
6829 if (!ioaddr) {
6830 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
6831 rc = -EIO;
6832 goto err_out_free_res_3;
6833 }
6834 tp->mmio_addr = ioaddr;
6835
6836 if (!pci_is_pcie(pdev))
6837 netif_info(tp, probe, dev, "not PCI Express\n");
6838
6839 /* Identify chip attached to board */
6840 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
6841
6842 rtl_init_rxcfg(tp);
6843
6844 rtl_irq_disable(tp);
6845
Hayes Wangc5583862012-07-02 17:23:22 +08006846 rtl_hw_initialize(tp);
6847
Francois Romieu3b6cf252012-03-08 09:59:04 +01006848 rtl_hw_reset(tp);
6849
6850 rtl_ack_events(tp, 0xffff);
6851
6852 pci_set_master(pdev);
6853
6854 /*
6855 * Pretend we are using VLANs; This bypasses a nasty bug where
6856 * Interrupts stop flowing on high load on 8110SCd controllers.
6857 */
6858 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
6859 tp->cp_cmd |= RxVlan;
6860
6861 rtl_init_mdio_ops(tp);
6862 rtl_init_pll_power_ops(tp);
6863 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006864 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006865
6866 rtl8169_print_mac_version(tp);
6867
6868 chipset = tp->mac_version;
6869 tp->txd_version = rtl_chip_infos[chipset].txd_version;
6870
6871 RTL_W8(Cfg9346, Cfg9346_Unlock);
6872 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
6873 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
6874 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
6875 tp->features |= RTL_FEATURE_WOL;
6876 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
6877 tp->features |= RTL_FEATURE_WOL;
6878 tp->features |= rtl_try_msi(tp, cfg);
6879 RTL_W8(Cfg9346, Cfg9346_Lock);
6880
6881 if (rtl_tbi_enabled(tp)) {
6882 tp->set_speed = rtl8169_set_speed_tbi;
6883 tp->get_settings = rtl8169_gset_tbi;
6884 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
6885 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
6886 tp->link_ok = rtl8169_tbi_link_ok;
6887 tp->do_ioctl = rtl_tbi_ioctl;
6888 } else {
6889 tp->set_speed = rtl8169_set_speed_xmii;
6890 tp->get_settings = rtl8169_gset_xmii;
6891 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
6892 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
6893 tp->link_ok = rtl8169_xmii_link_ok;
6894 tp->do_ioctl = rtl_xmii_ioctl;
6895 }
6896
6897 mutex_init(&tp->wk.mutex);
6898
6899 /* Get MAC address */
6900 for (i = 0; i < ETH_ALEN; i++)
6901 dev->dev_addr[i] = RTL_R8(MAC0 + i);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006902
6903 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
6904 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006905
6906 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
6907
6908 /* don't enable SG, IP_CSUM and TSO by default - it might not work
6909 * properly for all devices */
6910 dev->features |= NETIF_F_RXCSUM |
6911 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
6912
6913 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6914 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
6915 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6916 NETIF_F_HIGHDMA;
6917
6918 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
6919 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
6920 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
6921
6922 dev->hw_features |= NETIF_F_RXALL;
6923 dev->hw_features |= NETIF_F_RXFCS;
6924
6925 tp->hw_start = cfg->hw_start;
6926 tp->event_slow = cfg->event_slow;
6927
6928 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
6929 ~(RxBOVF | RxFOVF) : ~0;
6930
6931 init_timer(&tp->timer);
6932 tp->timer.data = (unsigned long) dev;
6933 tp->timer.function = rtl8169_phy_timer;
6934
6935 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
6936
6937 rc = register_netdev(dev);
6938 if (rc < 0)
6939 goto err_out_msi_4;
6940
6941 pci_set_drvdata(pdev, dev);
6942
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006943 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
6944 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
6945 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006946 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
6947 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
6948 "tx checksumming: %s]\n",
6949 rtl_chip_infos[chipset].jumbo_max,
6950 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
6951 }
6952
6953 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6954 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6955 tp->mac_version == RTL_GIGA_MAC_VER_31) {
6956 rtl8168_driver_start(tp);
6957 }
6958
6959 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
6960
6961 if (pci_dev_run_wake(pdev))
6962 pm_runtime_put_noidle(&pdev->dev);
6963
6964 netif_carrier_off(dev);
6965
6966out:
6967 return rc;
6968
6969err_out_msi_4:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00006970 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006971 rtl_disable_msi(pdev, tp);
6972 iounmap(ioaddr);
6973err_out_free_res_3:
6974 pci_release_regions(pdev);
6975err_out_mwi_2:
6976 pci_clear_mwi(pdev);
6977 pci_disable_device(pdev);
6978err_out_free_dev_1:
6979 free_netdev(dev);
6980 goto out;
6981}
6982
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983static struct pci_driver rtl8169_pci_driver = {
6984 .name = MODULENAME,
6985 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01006986 .probe = rtl_init_one,
Bill Pembertonbaf63292012-12-03 09:23:28 -05006987 .remove = rtl_remove_one,
Francois Romieu1765f952008-09-13 17:21:40 +02006988 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006989 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990};
6991
Devendra Naga3eeb7da2012-10-26 09:27:42 +00006992module_pci_driver(rtl8169_pci_driver);