blob: 573b693cb10e62adfffbfc5d8575027eae06223a [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"
hayeswangbeb330a2013-04-01 22:23:39 +000050#define FIRMWARE_8168G_2 "rtl_nic/rtl8168g-2.fw"
hayeswang57538c42013-04-01 22:23:40 +000051#define FIRMWARE_8168G_3 "rtl_nic/rtl8168g-3.fw"
françois romieubca03d52011-01-03 15:07:31 +000052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#ifdef RTL8169_DEBUG
54#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020055 if (!(expr)) { \
56 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070057 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020058 }
Joe Perches06fa7352007-10-18 21:15:00 +020059#define dprintk(fmt, args...) \
60 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#else
62#define assert(expr) do {} while (0)
63#define dprintk(fmt, args...) do {} while (0)
64#endif /* RTL8169_DEBUG */
65
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020066#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070067 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020068
Julien Ducourthial477206a2012-05-09 00:00:06 +020069#define TX_SLOTS_AVAIL(tp) \
70 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
71
72/* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
73#define TX_FRAGS_READY_FOR(tp,nr_frags) \
74 (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
77 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050078static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Francois Romieu9c14cea2008-07-05 00:21:15 +020080#define MAX_READ_REQUEST_SHIFT 12
Michal Schmidtaee77e42012-09-09 13:55:26 +000081#define TX_DMA_BURST 7 /* Maximum PCI burst, '7' is unlimited */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
83
84#define R8169_REGS_SIZE 256
85#define R8169_NAPI_WEIGHT 64
86#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
Timo Teräs9fba0812013-01-15 21:01:24 +000087#define NUM_RX_DESC 256U /* Number of Rx descriptor registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
89#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
90
91#define RTL8169_TX_TIMEOUT (6*HZ)
92#define RTL8169_PHY_TIMEOUT (10*HZ)
93
94/* write/read MMIO register */
95#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
96#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
97#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
98#define RTL_R8(reg) readb (ioaddr + (reg))
99#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +0000100#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102enum mac_version {
Francois Romieu85bffe62011-04-27 08:22:39 +0200103 RTL_GIGA_MAC_VER_01 = 0,
104 RTL_GIGA_MAC_VER_02,
105 RTL_GIGA_MAC_VER_03,
106 RTL_GIGA_MAC_VER_04,
107 RTL_GIGA_MAC_VER_05,
108 RTL_GIGA_MAC_VER_06,
109 RTL_GIGA_MAC_VER_07,
110 RTL_GIGA_MAC_VER_08,
111 RTL_GIGA_MAC_VER_09,
112 RTL_GIGA_MAC_VER_10,
113 RTL_GIGA_MAC_VER_11,
114 RTL_GIGA_MAC_VER_12,
115 RTL_GIGA_MAC_VER_13,
116 RTL_GIGA_MAC_VER_14,
117 RTL_GIGA_MAC_VER_15,
118 RTL_GIGA_MAC_VER_16,
119 RTL_GIGA_MAC_VER_17,
120 RTL_GIGA_MAC_VER_18,
121 RTL_GIGA_MAC_VER_19,
122 RTL_GIGA_MAC_VER_20,
123 RTL_GIGA_MAC_VER_21,
124 RTL_GIGA_MAC_VER_22,
125 RTL_GIGA_MAC_VER_23,
126 RTL_GIGA_MAC_VER_24,
127 RTL_GIGA_MAC_VER_25,
128 RTL_GIGA_MAC_VER_26,
129 RTL_GIGA_MAC_VER_27,
130 RTL_GIGA_MAC_VER_28,
131 RTL_GIGA_MAC_VER_29,
132 RTL_GIGA_MAC_VER_30,
133 RTL_GIGA_MAC_VER_31,
134 RTL_GIGA_MAC_VER_32,
135 RTL_GIGA_MAC_VER_33,
Hayes Wang70090422011-07-06 15:58:06 +0800136 RTL_GIGA_MAC_VER_34,
Hayes Wangc2218922011-09-06 16:55:18 +0800137 RTL_GIGA_MAC_VER_35,
138 RTL_GIGA_MAC_VER_36,
Hayes Wang7e18dca2012-03-30 14:33:02 +0800139 RTL_GIGA_MAC_VER_37,
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800140 RTL_GIGA_MAC_VER_38,
Hayes Wang5598bfe2012-07-02 17:23:21 +0800141 RTL_GIGA_MAC_VER_39,
Hayes Wangc5583862012-07-02 17:23:22 +0800142 RTL_GIGA_MAC_VER_40,
143 RTL_GIGA_MAC_VER_41,
hayeswang57538c42013-04-01 22:23:40 +0000144 RTL_GIGA_MAC_VER_42,
Francois Romieu85bffe62011-04-27 08:22:39 +0200145 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
Francois Romieu2b7b4312011-04-18 22:53:24 -0700148enum rtl_tx_desc_version {
149 RTL_TD_0 = 0,
150 RTL_TD_1 = 1,
151};
152
Francois Romieud58d46b2011-05-03 16:38:29 +0200153#define JUMBO_1K ETH_DATA_LEN
154#define JUMBO_4K (4*1024 - ETH_HLEN - 2)
155#define JUMBO_6K (6*1024 - ETH_HLEN - 2)
156#define JUMBO_7K (7*1024 - ETH_HLEN - 2)
157#define JUMBO_9K (9*1024 - ETH_HLEN - 2)
158
159#define _R(NAME,TD,FW,SZ,B) { \
160 .name = NAME, \
161 .txd_version = TD, \
162 .fw_name = FW, \
163 .jumbo_max = SZ, \
164 .jumbo_tx_csum = B \
165}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800167static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700169 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200170 const char *fw_name;
Francois Romieud58d46b2011-05-03 16:38:29 +0200171 u16 jumbo_max;
172 bool jumbo_tx_csum;
Francois Romieu85bffe62011-04-27 08:22:39 +0200173} rtl_chip_infos[] = {
174 /* PCI devices. */
175 [RTL_GIGA_MAC_VER_01] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200176 _R("RTL8169", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200177 [RTL_GIGA_MAC_VER_02] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200178 _R("RTL8169s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200179 [RTL_GIGA_MAC_VER_03] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200180 _R("RTL8110s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200181 [RTL_GIGA_MAC_VER_04] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200182 _R("RTL8169sb/8110sb", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200183 [RTL_GIGA_MAC_VER_05] =
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 [RTL_GIGA_MAC_VER_06] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200186 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200187 /* PCI-E devices. */
188 [RTL_GIGA_MAC_VER_07] =
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_08] =
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_09] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200193 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200194 [RTL_GIGA_MAC_VER_10] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200195 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200196 [RTL_GIGA_MAC_VER_11] =
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_12] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200199 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200200 [RTL_GIGA_MAC_VER_13] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200201 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200202 [RTL_GIGA_MAC_VER_14] =
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_15] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200205 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200206 [RTL_GIGA_MAC_VER_16] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200207 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200208 [RTL_GIGA_MAC_VER_17] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200209 _R("RTL8168b/8111b", RTL_TD_1, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200210 [RTL_GIGA_MAC_VER_18] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200211 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200212 [RTL_GIGA_MAC_VER_19] =
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_20] =
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_21] =
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_22] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200219 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200220 [RTL_GIGA_MAC_VER_23] =
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_24] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200223 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200224 [RTL_GIGA_MAC_VER_25] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200225 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1,
226 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200227 [RTL_GIGA_MAC_VER_26] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200228 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2,
229 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200230 [RTL_GIGA_MAC_VER_27] =
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_28] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200233 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200234 [RTL_GIGA_MAC_VER_29] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200235 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
236 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200237 [RTL_GIGA_MAC_VER_30] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200238 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
239 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200240 [RTL_GIGA_MAC_VER_31] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200241 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200242 [RTL_GIGA_MAC_VER_32] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200243 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1,
244 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200245 [RTL_GIGA_MAC_VER_33] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200246 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2,
247 JUMBO_9K, false),
Hayes Wang70090422011-07-06 15:58:06 +0800248 [RTL_GIGA_MAC_VER_34] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200249 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3,
250 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800251 [RTL_GIGA_MAC_VER_35] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200252 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_1,
253 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800254 [RTL_GIGA_MAC_VER_36] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200255 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_2,
256 JUMBO_9K, false),
Hayes Wang7e18dca2012-03-30 14:33:02 +0800257 [RTL_GIGA_MAC_VER_37] =
258 _R("RTL8402", RTL_TD_1, FIRMWARE_8402_1,
259 JUMBO_1K, true),
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800260 [RTL_GIGA_MAC_VER_38] =
261 _R("RTL8411", RTL_TD_1, FIRMWARE_8411_1,
262 JUMBO_9K, false),
Hayes Wang5598bfe2012-07-02 17:23:21 +0800263 [RTL_GIGA_MAC_VER_39] =
264 _R("RTL8106e", RTL_TD_1, FIRMWARE_8106E_1,
265 JUMBO_1K, true),
Hayes Wangc5583862012-07-02 17:23:22 +0800266 [RTL_GIGA_MAC_VER_40] =
hayeswangbeb330a2013-04-01 22:23:39 +0000267 _R("RTL8168g/8111g", RTL_TD_1, FIRMWARE_8168G_2,
Hayes Wangc5583862012-07-02 17:23:22 +0800268 JUMBO_9K, false),
269 [RTL_GIGA_MAC_VER_41] =
270 _R("RTL8168g/8111g", RTL_TD_1, NULL, JUMBO_9K, false),
hayeswang57538c42013-04-01 22:23:40 +0000271 [RTL_GIGA_MAC_VER_42] =
272 _R("RTL8168g/8111g", RTL_TD_1, FIRMWARE_8168G_3,
273 JUMBO_9K, false),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275#undef _R
276
Francois Romieubcf0bf92006-07-26 23:14:13 +0200277enum cfg_version {
278 RTL_CFG_0 = 0x00,
279 RTL_CFG_1,
280 RTL_CFG_2
281};
282
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000283static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200284 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200285 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200286 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100287 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200288 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
Francois Romieu2a35cfa2012-08-31 23:06:17 +0200289 { PCI_VENDOR_ID_DLINK, 0x4300,
290 PCI_VENDOR_ID_DLINK, 0x4b10, 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200291 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000292 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200293 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200294 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
295 { PCI_VENDOR_ID_LINKSYS, 0x1032,
296 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100297 { 0x0001, 0x8168,
298 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 {0,},
300};
301
302MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
303
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000304static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700305static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200306static struct {
307 u32 msg_enable;
308} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Francois Romieu07d3f512007-02-21 22:40:46 +0100310enum rtl_registers {
311 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100312 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100313 MAR0 = 8, /* Multicast filter. */
314 CounterAddrLow = 0x10,
315 CounterAddrHigh = 0x14,
316 TxDescStartAddrLow = 0x20,
317 TxDescStartAddrHigh = 0x24,
318 TxHDescStartAddrLow = 0x28,
319 TxHDescStartAddrHigh = 0x2c,
320 FLASH = 0x30,
321 ERSR = 0x36,
322 ChipCmd = 0x37,
323 TxPoll = 0x38,
324 IntrMask = 0x3c,
325 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700326
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800327 TxConfig = 0x40,
328#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
329#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
330
331 RxConfig = 0x44,
332#define RX128_INT_EN (1 << 15) /* 8111c and later */
333#define RX_MULTI_EN (1 << 14) /* 8111c only */
334#define RXCFG_FIFO_SHIFT 13
335 /* No threshold before first PCI xfer */
336#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
hayeswangbeb330a2013-04-01 22:23:39 +0000337#define RX_EARLY_OFF (1 << 11)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800338#define RXCFG_DMA_SHIFT 8
339 /* Unlimited maximum PCI burst. */
340#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700341
Francois Romieu07d3f512007-02-21 22:40:46 +0100342 RxMissed = 0x4c,
343 Cfg9346 = 0x50,
344 Config0 = 0x51,
345 Config1 = 0x52,
346 Config2 = 0x53,
Francois Romieud387b422012-04-17 11:12:01 +0200347#define PME_SIGNAL (1 << 5) /* 8168c and later */
348
Francois Romieu07d3f512007-02-21 22:40:46 +0100349 Config3 = 0x54,
350 Config4 = 0x55,
351 Config5 = 0x56,
352 MultiIntr = 0x5c,
353 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100354 PHYstatus = 0x6c,
355 RxMaxSize = 0xda,
356 CPlusCmd = 0xe0,
357 IntrMitigate = 0xe2,
358 RxDescAddrLow = 0xe4,
359 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000360 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
361
362#define NoEarlyTx 0x3f /* Max value : no early transmit. */
363
364 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
365
366#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800367#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000368
Francois Romieu07d3f512007-02-21 22:40:46 +0100369 FuncEvent = 0xf0,
370 FuncEventMask = 0xf4,
371 FuncPresetState = 0xf8,
372 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373};
374
Francois Romieuf162a5d2008-06-01 22:37:49 +0200375enum rtl8110_registers {
376 TBICSR = 0x64,
377 TBI_ANAR = 0x68,
378 TBI_LPAR = 0x6a,
379};
380
381enum rtl8168_8101_registers {
382 CSIDR = 0x64,
383 CSIAR = 0x68,
384#define CSIAR_FLAG 0x80000000
385#define CSIAR_WRITE_CMD 0x80000000
386#define CSIAR_BYTE_ENABLE 0x0f
387#define CSIAR_BYTE_ENABLE_SHIFT 12
388#define CSIAR_ADDR_MASK 0x0fff
Hayes Wang7e18dca2012-03-30 14:33:02 +0800389#define CSIAR_FUNC_CARD 0x00000000
390#define CSIAR_FUNC_SDIO 0x00010000
391#define CSIAR_FUNC_NIC 0x00020000
françois romieu065c27c2011-01-03 15:08:12 +0000392 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200393 EPHYAR = 0x80,
394#define EPHYAR_FLAG 0x80000000
395#define EPHYAR_WRITE_CMD 0x80000000
396#define EPHYAR_REG_MASK 0x1f
397#define EPHYAR_REG_SHIFT 16
398#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800399 DLLPR = 0xd0,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800400#define PFM_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200401 DBG_REG = 0xd1,
402#define FIX_NAK_1 (1 << 4)
403#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800404 TWSI = 0xd2,
405 MCU = 0xd3,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800406#define NOW_IS_OOB (1 << 7)
Hayes Wangc5583862012-07-02 17:23:22 +0800407#define TX_EMPTY (1 << 5)
408#define RX_EMPTY (1 << 4)
409#define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800410#define EN_NDP (1 << 3)
411#define EN_OOB_RESET (1 << 2)
Hayes Wangc5583862012-07-02 17:23:22 +0800412#define LINK_LIST_RDY (1 << 1)
françois romieudaf9df62009-10-07 12:44:20 +0000413 EFUSEAR = 0xdc,
414#define EFUSEAR_FLAG 0x80000000
415#define EFUSEAR_WRITE_CMD 0x80000000
416#define EFUSEAR_READ_CMD 0x00000000
417#define EFUSEAR_REG_MASK 0x03ff
418#define EFUSEAR_REG_SHIFT 8
419#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200420};
421
françois romieuc0e45c12011-01-03 15:08:04 +0000422enum rtl8168_registers {
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800423 LED_FREQ = 0x1a,
424 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000425 ERIDR = 0x70,
426 ERIAR = 0x74,
427#define ERIAR_FLAG 0x80000000
428#define ERIAR_WRITE_CMD 0x80000000
429#define ERIAR_READ_CMD 0x00000000
430#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000431#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800432#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
433#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
434#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
435#define ERIAR_MASK_SHIFT 12
436#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
437#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
Hayes Wangc5583862012-07-02 17:23:22 +0800438#define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800439#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000440 EPHY_RXER_NUM = 0x7c,
441 OCPDR = 0xb0, /* OCP GPHY access */
442#define OCPDR_WRITE_CMD 0x80000000
443#define OCPDR_READ_CMD 0x00000000
444#define OCPDR_REG_MASK 0x7f
445#define OCPDR_GPHY_REG_SHIFT 16
446#define OCPDR_DATA_MASK 0xffff
447 OCPAR = 0xb4,
448#define OCPAR_FLAG 0x80000000
449#define OCPAR_GPHY_WRITE_CMD 0x8000f060
450#define OCPAR_GPHY_READ_CMD 0x0000f060
Hayes Wangc5583862012-07-02 17:23:22 +0800451 GPHY_OCP = 0xb8,
hayeswang01dc7fe2011-03-21 01:50:28 +0000452 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
453 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200454#define TXPLA_RST (1 << 29)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800455#define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800456#define PWM_EN (1 << 22)
Hayes Wangc5583862012-07-02 17:23:22 +0800457#define RXDV_GATED_EN (1 << 19)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800458#define EARLY_TALLY_EN (1 << 16)
françois romieuc0e45c12011-01-03 15:08:04 +0000459};
460
Francois Romieu07d3f512007-02-21 22:40:46 +0100461enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100463 SYSErr = 0x8000,
464 PCSTimeout = 0x4000,
465 SWInt = 0x0100,
466 TxDescUnavail = 0x0080,
467 RxFIFOOver = 0x0040,
468 LinkChg = 0x0020,
469 RxOverflow = 0x0010,
470 TxErr = 0x0008,
471 TxOK = 0x0004,
472 RxErr = 0x0002,
473 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400476 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200477 RxFOVF = (1 << 23),
478 RxRWT = (1 << 22),
479 RxRES = (1 << 21),
480 RxRUNT = (1 << 20),
481 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /* ChipCmdBits */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800484 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100485 CmdReset = 0x10,
486 CmdRxEnb = 0x08,
487 CmdTxEnb = 0x04,
488 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Francois Romieu275391a2007-02-23 23:50:28 +0100490 /* TXPoll register p.5 */
491 HPQ = 0x80, /* Poll cmd on the high prio queue */
492 NPQ = 0x40, /* Poll cmd on the low prio queue */
493 FSWInt = 0x01, /* Forced software interrupt */
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100496 Cfg9346_Lock = 0x00,
497 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100500 AcceptErr = 0x20,
501 AcceptRunt = 0x10,
502 AcceptBroadcast = 0x08,
503 AcceptMulticast = 0x04,
504 AcceptMyPhys = 0x02,
505 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200506#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /* TxConfigBits */
509 TxInterFrameGapShift = 24,
510 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
511
Francois Romieu5d06a992006-02-23 00:47:58 +0100512 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200513 LEDS1 = (1 << 7),
514 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200515 Speed_down = (1 << 4),
516 MEMMAP = (1 << 3),
517 IOMAP = (1 << 2),
518 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100519 PMEnable = (1 << 0), /* Power Management Enable */
520
Francois Romieu6dccd162007-02-13 23:38:05 +0100521 /* Config2 register p. 25 */
hayeswang57538c42013-04-01 22:23:40 +0000522 ClkReqEn = (1 << 7), /* Clock Request Enable */
françois romieu2ca6cf02011-12-15 08:37:43 +0000523 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100524 PCI_Clock_66MHz = 0x01,
525 PCI_Clock_33MHz = 0x00,
526
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100527 /* Config3 register p.25 */
528 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
529 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200530 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200531 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100532
Francois Romieud58d46b2011-05-03 16:38:29 +0200533 /* Config4 register */
534 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
535
Francois Romieu5d06a992006-02-23 00:47:58 +0100536 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100537 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
538 MWF = (1 << 5), /* Accept Multicast wakeup frame */
539 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200540 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100541 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100542 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
hayeswang57538c42013-04-01 22:23:40 +0000543 ASPM_en = (1 << 0), /* ASPM enable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /* TBICSR p.28 */
546 TBIReset = 0x80000000,
547 TBILoopback = 0x40000000,
548 TBINwEnable = 0x20000000,
549 TBINwRestart = 0x10000000,
550 TBILinkOk = 0x02000000,
551 TBINwComplete = 0x01000000,
552
553 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200554 EnableBist = (1 << 15), // 8168 8101
555 Mac_dbgo_oe = (1 << 14), // 8168 8101
556 Normal_mode = (1 << 13), // unused
557 Force_half_dup = (1 << 12), // 8168 8101
558 Force_rxflow_en = (1 << 11), // 8168 8101
559 Force_txflow_en = (1 << 10), // 8168 8101
560 Cxpl_dbg_sel = (1 << 9), // 8168 8101
561 ASF = (1 << 8), // 8168 8101
562 PktCntrDisable = (1 << 7), // 8168 8101
563 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 RxVlan = (1 << 6),
565 RxChkSum = (1 << 5),
566 PCIDAC = (1 << 4),
567 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100568 INTT_0 = 0x0000, // 8168
569 INTT_1 = 0x0001, // 8168
570 INTT_2 = 0x0002, // 8168
571 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100574 TBI_Enable = 0x80,
575 TxFlowCtrl = 0x40,
576 RxFlowCtrl = 0x20,
577 _1000bpsF = 0x10,
578 _100bps = 0x08,
579 _10bps = 0x04,
580 LinkStatus = 0x02,
581 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100584 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200585
586 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100587 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588};
589
Francois Romieu2b7b4312011-04-18 22:53:24 -0700590enum rtl_desc_bit {
591 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
593 RingEnd = (1 << 30), /* End of descriptor ring */
594 FirstFrag = (1 << 29), /* First segment of a packet */
595 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700596};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Francois Romieu2b7b4312011-04-18 22:53:24 -0700598/* Generic case. */
599enum rtl_tx_desc_bit {
600 /* First doubleword. */
601 TD_LSO = (1 << 27), /* Large Send Offload */
602#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Francois Romieu2b7b4312011-04-18 22:53:24 -0700604 /* Second doubleword. */
605 TxVlanTag = (1 << 17), /* Add VLAN tag */
606};
607
608/* 8169, 8168b and 810x except 8102e. */
609enum rtl_tx_desc_bit_0 {
610 /* First doubleword. */
611#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
612 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
613 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
614 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
615};
616
617/* 8102e, 8168c and beyond. */
618enum rtl_tx_desc_bit_1 {
619 /* Second doubleword. */
620#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
621 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
622 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
623 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
624};
625
626static const struct rtl_tx_desc_info {
627 struct {
628 u32 udp;
629 u32 tcp;
630 } checksum;
631 u16 mss_shift;
632 u16 opts_offset;
633} tx_desc_info [] = {
634 [RTL_TD_0] = {
635 .checksum = {
636 .udp = TD0_IP_CS | TD0_UDP_CS,
637 .tcp = TD0_IP_CS | TD0_TCP_CS
638 },
639 .mss_shift = TD0_MSS_SHIFT,
640 .opts_offset = 0
641 },
642 [RTL_TD_1] = {
643 .checksum = {
644 .udp = TD1_IP_CS | TD1_UDP_CS,
645 .tcp = TD1_IP_CS | TD1_TCP_CS
646 },
647 .mss_shift = TD1_MSS_SHIFT,
648 .opts_offset = 1
649 }
650};
651
652enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* Rx private */
654 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
655 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
656
657#define RxProtoUDP (PID1)
658#define RxProtoTCP (PID0)
659#define RxProtoIP (PID1 | PID0)
660#define RxProtoMask RxProtoIP
661
662 IPFail = (1 << 16), /* IP checksum failed */
663 UDPFail = (1 << 15), /* UDP/IP checksum failed */
664 TCPFail = (1 << 14), /* TCP/IP checksum failed */
665 RxVlanTag = (1 << 16), /* VLAN tag available */
666};
667
668#define RsvdMask 0x3fffc000
669
670struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200671 __le32 opts1;
672 __le32 opts2;
673 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674};
675
676struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200677 __le32 opts1;
678 __le32 opts2;
679 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680};
681
682struct ring_info {
683 struct sk_buff *skb;
684 u32 len;
685 u8 __pad[sizeof(void *) - sizeof(u32)];
686};
687
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200688enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200689 RTL_FEATURE_WOL = (1 << 0),
690 RTL_FEATURE_MSI = (1 << 1),
691 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200692};
693
Ivan Vecera355423d2009-02-06 21:49:57 -0800694struct rtl8169_counters {
695 __le64 tx_packets;
696 __le64 rx_packets;
697 __le64 tx_errors;
698 __le32 rx_errors;
699 __le16 rx_missed;
700 __le16 align_errors;
701 __le32 tx_one_collision;
702 __le32 tx_multi_collision;
703 __le64 rx_unicast;
704 __le64 rx_broadcast;
705 __le32 rx_multicast;
706 __le16 tx_aborted;
707 __le16 tx_underun;
708};
709
Francois Romieuda78dbf2012-01-26 14:18:23 +0100710enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100711 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100712 RTL_FLAG_TASK_SLOW_PENDING,
713 RTL_FLAG_TASK_RESET_PENDING,
714 RTL_FLAG_TASK_PHY_PENDING,
715 RTL_FLAG_MAX
716};
717
Junchang Wang8027aa22012-03-04 23:30:32 +0100718struct rtl8169_stats {
719 u64 packets;
720 u64 bytes;
721 struct u64_stats_sync syncp;
722};
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724struct rtl8169_private {
725 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200726 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000727 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700728 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200729 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700730 u16 txd_version;
731 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
733 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100735 struct rtl8169_stats rx_stats;
736 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
738 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
739 dma_addr_t TxPhyAddr;
740 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000741 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 struct timer_list timer;
744 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100745
746 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000747
748 struct mdio_ops {
Francois Romieu24192212012-07-06 20:19:42 +0200749 void (*write)(struct rtl8169_private *, int, int);
750 int (*read)(struct rtl8169_private *, int);
françois romieuc0e45c12011-01-03 15:08:04 +0000751 } mdio_ops;
752
françois romieu065c27c2011-01-03 15:08:12 +0000753 struct pll_power_ops {
754 void (*down)(struct rtl8169_private *);
755 void (*up)(struct rtl8169_private *);
756 } pll_power_ops;
757
Francois Romieud58d46b2011-05-03 16:38:29 +0200758 struct jumbo_ops {
759 void (*enable)(struct rtl8169_private *);
760 void (*disable)(struct rtl8169_private *);
761 } jumbo_ops;
762
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800763 struct csi_ops {
Francois Romieu52989f02012-07-06 13:37:00 +0200764 void (*write)(struct rtl8169_private *, int, int);
765 u32 (*read)(struct rtl8169_private *, int);
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800766 } csi_ops;
767
Oliver Neukum54405cd2011-01-06 21:55:13 +0100768 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200769 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000770 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100771 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000772 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800774 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100775
776 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100777 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
778 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100779 struct work_struct work;
780 } wk;
781
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200782 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200783
784 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800785 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000786 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400787 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000788
Francois Romieub6ffd972011-06-17 17:00:05 +0200789 struct rtl_fw {
790 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200791
792#define RTL_VER_SIZE 32
793
794 char version[RTL_VER_SIZE];
795
796 struct rtl_fw_phy_action {
797 __le32 *code;
798 size_t size;
799 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200800 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300801#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Hayes Wangc5583862012-07-02 17:23:22 +0800802
803 u32 ocp_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804};
805
Ralf Baechle979b6c12005-06-13 14:30:40 -0700806MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700809MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200810module_param_named(debug, debug.msg_enable, int, 0);
811MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812MODULE_LICENSE("GPL");
813MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000814MODULE_FIRMWARE(FIRMWARE_8168D_1);
815MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000816MODULE_FIRMWARE(FIRMWARE_8168E_1);
817MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400818MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800819MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800820MODULE_FIRMWARE(FIRMWARE_8168F_1);
821MODULE_FIRMWARE(FIRMWARE_8168F_2);
Hayes Wang7e18dca2012-03-30 14:33:02 +0800822MODULE_FIRMWARE(FIRMWARE_8402_1);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800823MODULE_FIRMWARE(FIRMWARE_8411_1);
Hayes Wang5598bfe2012-07-02 17:23:21 +0800824MODULE_FIRMWARE(FIRMWARE_8106E_1);
hayeswangbeb330a2013-04-01 22:23:39 +0000825MODULE_FIRMWARE(FIRMWARE_8168G_2);
hayeswang57538c42013-04-01 22:23:40 +0000826MODULE_FIRMWARE(FIRMWARE_8168G_3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Francois Romieuda78dbf2012-01-26 14:18:23 +0100828static void rtl_lock_work(struct rtl8169_private *tp)
829{
830 mutex_lock(&tp->wk.mutex);
831}
832
833static void rtl_unlock_work(struct rtl8169_private *tp)
834{
835 mutex_unlock(&tp->wk.mutex);
836}
837
Francois Romieud58d46b2011-05-03 16:38:29 +0200838static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
839{
Jiang Liu7d7903b2012-07-24 17:20:16 +0800840 pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
841 PCI_EXP_DEVCTL_READRQ, force);
Francois Romieud58d46b2011-05-03 16:38:29 +0200842}
843
Francois Romieuffc46952012-07-06 14:19:23 +0200844struct rtl_cond {
845 bool (*check)(struct rtl8169_private *);
846 const char *msg;
847};
848
849static void rtl_udelay(unsigned int d)
850{
851 udelay(d);
852}
853
854static bool rtl_loop_wait(struct rtl8169_private *tp, const struct rtl_cond *c,
855 void (*delay)(unsigned int), unsigned int d, int n,
856 bool high)
857{
858 int i;
859
860 for (i = 0; i < n; i++) {
861 delay(d);
862 if (c->check(tp) == high)
863 return true;
864 }
Francois Romieu82e316e2012-07-11 23:39:51 +0200865 netif_err(tp, drv, tp->dev, "%s == %d (loop: %d, delay: %d).\n",
866 c->msg, !high, n, d);
Francois Romieuffc46952012-07-06 14:19:23 +0200867 return false;
868}
869
870static bool rtl_udelay_loop_wait_high(struct rtl8169_private *tp,
871 const struct rtl_cond *c,
872 unsigned int d, int n)
873{
874 return rtl_loop_wait(tp, c, rtl_udelay, d, n, true);
875}
876
877static bool rtl_udelay_loop_wait_low(struct rtl8169_private *tp,
878 const struct rtl_cond *c,
879 unsigned int d, int n)
880{
881 return rtl_loop_wait(tp, c, rtl_udelay, d, n, false);
882}
883
884static bool rtl_msleep_loop_wait_high(struct rtl8169_private *tp,
885 const struct rtl_cond *c,
886 unsigned int d, int n)
887{
888 return rtl_loop_wait(tp, c, msleep, d, n, true);
889}
890
891static bool rtl_msleep_loop_wait_low(struct rtl8169_private *tp,
892 const struct rtl_cond *c,
893 unsigned int d, int n)
894{
895 return rtl_loop_wait(tp, c, msleep, d, n, false);
896}
897
898#define DECLARE_RTL_COND(name) \
899static bool name ## _check(struct rtl8169_private *); \
900 \
901static const struct rtl_cond name = { \
902 .check = name ## _check, \
903 .msg = #name \
904}; \
905 \
906static bool name ## _check(struct rtl8169_private *tp)
907
908DECLARE_RTL_COND(rtl_ocpar_cond)
909{
910 void __iomem *ioaddr = tp->mmio_addr;
911
912 return RTL_R32(OCPAR) & OCPAR_FLAG;
913}
914
françois romieub646d902011-01-03 15:08:21 +0000915static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
916{
917 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000918
919 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
Francois Romieuffc46952012-07-06 14:19:23 +0200920
921 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 100, 20) ?
922 RTL_R32(OCPDR) : ~0;
françois romieub646d902011-01-03 15:08:21 +0000923}
924
925static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
926{
927 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000928
929 RTL_W32(OCPDR, data);
930 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
Francois Romieuffc46952012-07-06 14:19:23 +0200931
932 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 100, 20);
933}
934
935DECLARE_RTL_COND(rtl_eriar_cond)
936{
937 void __iomem *ioaddr = tp->mmio_addr;
938
939 return RTL_R32(ERIAR) & ERIAR_FLAG;
françois romieub646d902011-01-03 15:08:21 +0000940}
941
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800942static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000943{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800944 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000945
946 RTL_W8(ERIDR, cmd);
947 RTL_W32(ERIAR, 0x800010e8);
948 msleep(2);
Francois Romieuffc46952012-07-06 14:19:23 +0200949
950 if (!rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 5))
951 return;
françois romieub646d902011-01-03 15:08:21 +0000952
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800953 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000954}
955
956#define OOB_CMD_RESET 0x00
957#define OOB_CMD_DRIVER_START 0x05
958#define OOB_CMD_DRIVER_STOP 0x06
959
Francois Romieucecb5fd2011-04-01 10:21:07 +0200960static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
961{
962 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
963}
964
Francois Romieuffc46952012-07-06 14:19:23 +0200965DECLARE_RTL_COND(rtl_ocp_read_cond)
françois romieub646d902011-01-03 15:08:21 +0000966{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200967 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000968
Francois Romieucecb5fd2011-04-01 10:21:07 +0200969 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000970
Francois Romieuffc46952012-07-06 14:19:23 +0200971 return ocp_read(tp, 0x0f, reg) & 0x00000800;
972}
973
974static void rtl8168_driver_start(struct rtl8169_private *tp)
975{
976 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
977
978 rtl_msleep_loop_wait_high(tp, &rtl_ocp_read_cond, 10, 10);
françois romieub646d902011-01-03 15:08:21 +0000979}
980
981static void rtl8168_driver_stop(struct rtl8169_private *tp)
982{
françois romieub646d902011-01-03 15:08:21 +0000983 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
984
Francois Romieuffc46952012-07-06 14:19:23 +0200985 rtl_msleep_loop_wait_low(tp, &rtl_ocp_read_cond, 10, 10);
françois romieub646d902011-01-03 15:08:21 +0000986}
987
hayeswang4804b3b2011-03-21 01:50:29 +0000988static int r8168dp_check_dash(struct rtl8169_private *tp)
989{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200990 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000991
Francois Romieucecb5fd2011-04-01 10:21:07 +0200992 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +0000993}
françois romieub646d902011-01-03 15:08:21 +0000994
Hayes Wangc5583862012-07-02 17:23:22 +0800995static bool rtl_ocp_reg_failure(struct rtl8169_private *tp, u32 reg)
996{
997 if (reg & 0xffff0001) {
998 netif_err(tp, drv, tp->dev, "Invalid ocp reg %x!\n", reg);
999 return true;
1000 }
1001 return false;
1002}
1003
1004DECLARE_RTL_COND(rtl_ocp_gphy_cond)
1005{
1006 void __iomem *ioaddr = tp->mmio_addr;
1007
1008 return RTL_R32(GPHY_OCP) & OCPAR_FLAG;
1009}
1010
1011static void r8168_phy_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1012{
1013 void __iomem *ioaddr = tp->mmio_addr;
1014
1015 if (rtl_ocp_reg_failure(tp, reg))
1016 return;
1017
1018 RTL_W32(GPHY_OCP, OCPAR_FLAG | (reg << 15) | data);
1019
1020 rtl_udelay_loop_wait_low(tp, &rtl_ocp_gphy_cond, 25, 10);
1021}
1022
1023static u16 r8168_phy_ocp_read(struct rtl8169_private *tp, u32 reg)
1024{
1025 void __iomem *ioaddr = tp->mmio_addr;
1026
1027 if (rtl_ocp_reg_failure(tp, reg))
1028 return 0;
1029
1030 RTL_W32(GPHY_OCP, reg << 15);
1031
1032 return rtl_udelay_loop_wait_high(tp, &rtl_ocp_gphy_cond, 25, 10) ?
1033 (RTL_R32(GPHY_OCP) & 0xffff) : ~0;
1034}
1035
Hayes Wangc5583862012-07-02 17:23:22 +08001036static void r8168_mac_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1037{
1038 void __iomem *ioaddr = tp->mmio_addr;
1039
1040 if (rtl_ocp_reg_failure(tp, reg))
1041 return;
1042
1043 RTL_W32(OCPDR, OCPAR_FLAG | (reg << 15) | data);
Hayes Wangc5583862012-07-02 17:23:22 +08001044}
1045
1046static u16 r8168_mac_ocp_read(struct rtl8169_private *tp, u32 reg)
1047{
1048 void __iomem *ioaddr = tp->mmio_addr;
1049
1050 if (rtl_ocp_reg_failure(tp, reg))
1051 return 0;
1052
1053 RTL_W32(OCPDR, reg << 15);
1054
Hayes Wang3a83ad12012-07-11 20:31:56 +08001055 return RTL_R32(OCPDR);
Hayes Wangc5583862012-07-02 17:23:22 +08001056}
1057
1058#define OCP_STD_PHY_BASE 0xa400
1059
1060static void r8168g_mdio_write(struct rtl8169_private *tp, int reg, int value)
1061{
1062 if (reg == 0x1f) {
1063 tp->ocp_base = value ? value << 4 : OCP_STD_PHY_BASE;
1064 return;
1065 }
1066
1067 if (tp->ocp_base != OCP_STD_PHY_BASE)
1068 reg -= 0x10;
1069
1070 r8168_phy_ocp_write(tp, tp->ocp_base + reg * 2, value);
1071}
1072
1073static int r8168g_mdio_read(struct rtl8169_private *tp, int reg)
1074{
1075 if (tp->ocp_base != OCP_STD_PHY_BASE)
1076 reg -= 0x10;
1077
1078 return r8168_phy_ocp_read(tp, tp->ocp_base + reg * 2);
1079}
1080
hayeswangeee37862013-04-01 22:23:38 +00001081static void mac_mcu_write(struct rtl8169_private *tp, int reg, int value)
1082{
1083 if (reg == 0x1f) {
1084 tp->ocp_base = value << 4;
1085 return;
1086 }
1087
1088 r8168_mac_ocp_write(tp, tp->ocp_base + reg, value);
1089}
1090
1091static int mac_mcu_read(struct rtl8169_private *tp, int reg)
1092{
1093 return r8168_mac_ocp_read(tp, tp->ocp_base + reg);
1094}
1095
Francois Romieuffc46952012-07-06 14:19:23 +02001096DECLARE_RTL_COND(rtl_phyar_cond)
1097{
1098 void __iomem *ioaddr = tp->mmio_addr;
1099
1100 return RTL_R32(PHYAR) & 0x80000000;
1101}
1102
Francois Romieu24192212012-07-06 20:19:42 +02001103static void r8169_mdio_write(struct rtl8169_private *tp, int reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Francois Romieu24192212012-07-06 20:19:42 +02001105 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Francois Romieu24192212012-07-06 20:19:42 +02001107 RTL_W32(PHYAR, 0x80000000 | (reg & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Francois Romieuffc46952012-07-06 14:19:23 +02001109 rtl_udelay_loop_wait_low(tp, &rtl_phyar_cond, 25, 20);
Timo Teräs024a07b2010-06-06 15:38:47 -07001110 /*
Timo Teräs81a95f02010-06-09 17:31:48 -07001111 * According to hardware specs a 20us delay is required after write
1112 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -07001113 */
Timo Teräs81a95f02010-06-09 17:31:48 -07001114 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
Francois Romieu24192212012-07-06 20:19:42 +02001117static int r8169_mdio_read(struct rtl8169_private *tp, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Francois Romieu24192212012-07-06 20:19:42 +02001119 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieuffc46952012-07-06 14:19:23 +02001120 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Francois Romieu24192212012-07-06 20:19:42 +02001122 RTL_W32(PHYAR, 0x0 | (reg & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Francois Romieuffc46952012-07-06 14:19:23 +02001124 value = rtl_udelay_loop_wait_high(tp, &rtl_phyar_cond, 25, 20) ?
1125 RTL_R32(PHYAR) & 0xffff : ~0;
1126
Timo Teräs81a95f02010-06-09 17:31:48 -07001127 /*
1128 * According to hardware specs a 20us delay is required after read
1129 * complete indication, but before sending next command.
1130 */
1131 udelay(20);
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return value;
1134}
1135
Francois Romieu24192212012-07-06 20:19:42 +02001136static void r8168dp_1_mdio_access(struct rtl8169_private *tp, int reg, u32 data)
françois romieuc0e45c12011-01-03 15:08:04 +00001137{
Francois Romieu24192212012-07-06 20:19:42 +02001138 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001139
Francois Romieu24192212012-07-06 20:19:42 +02001140 RTL_W32(OCPDR, data | ((reg & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
françois romieuc0e45c12011-01-03 15:08:04 +00001141 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
1142 RTL_W32(EPHY_RXER_NUM, 0);
1143
Francois Romieuffc46952012-07-06 14:19:23 +02001144 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 1000, 100);
françois romieuc0e45c12011-01-03 15:08:04 +00001145}
1146
Francois Romieu24192212012-07-06 20:19:42 +02001147static void r8168dp_1_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieuc0e45c12011-01-03 15:08:04 +00001148{
Francois Romieu24192212012-07-06 20:19:42 +02001149 r8168dp_1_mdio_access(tp, reg,
1150 OCPDR_WRITE_CMD | (value & OCPDR_DATA_MASK));
françois romieuc0e45c12011-01-03 15:08:04 +00001151}
1152
Francois Romieu24192212012-07-06 20:19:42 +02001153static int r8168dp_1_mdio_read(struct rtl8169_private *tp, int reg)
françois romieuc0e45c12011-01-03 15:08:04 +00001154{
Francois Romieu24192212012-07-06 20:19:42 +02001155 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001156
Francois Romieu24192212012-07-06 20:19:42 +02001157 r8168dp_1_mdio_access(tp, reg, OCPDR_READ_CMD);
françois romieuc0e45c12011-01-03 15:08:04 +00001158
1159 mdelay(1);
1160 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
1161 RTL_W32(EPHY_RXER_NUM, 0);
1162
Francois Romieuffc46952012-07-06 14:19:23 +02001163 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 1000, 100) ?
1164 RTL_R32(OCPDR) & OCPDR_DATA_MASK : ~0;
françois romieuc0e45c12011-01-03 15:08:04 +00001165}
1166
françois romieue6de30d2011-01-03 15:08:37 +00001167#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1168
1169static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1170{
1171 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1172}
1173
1174static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1175{
1176 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1177}
1178
Francois Romieu24192212012-07-06 20:19:42 +02001179static void r8168dp_2_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieue6de30d2011-01-03 15:08:37 +00001180{
Francois Romieu24192212012-07-06 20:19:42 +02001181 void __iomem *ioaddr = tp->mmio_addr;
1182
françois romieue6de30d2011-01-03 15:08:37 +00001183 r8168dp_2_mdio_start(ioaddr);
1184
Francois Romieu24192212012-07-06 20:19:42 +02001185 r8169_mdio_write(tp, reg, value);
françois romieue6de30d2011-01-03 15:08:37 +00001186
1187 r8168dp_2_mdio_stop(ioaddr);
1188}
1189
Francois Romieu24192212012-07-06 20:19:42 +02001190static int r8168dp_2_mdio_read(struct rtl8169_private *tp, int reg)
françois romieue6de30d2011-01-03 15:08:37 +00001191{
Francois Romieu24192212012-07-06 20:19:42 +02001192 void __iomem *ioaddr = tp->mmio_addr;
françois romieue6de30d2011-01-03 15:08:37 +00001193 int value;
1194
1195 r8168dp_2_mdio_start(ioaddr);
1196
Francois Romieu24192212012-07-06 20:19:42 +02001197 value = r8169_mdio_read(tp, reg);
françois romieue6de30d2011-01-03 15:08:37 +00001198
1199 r8168dp_2_mdio_stop(ioaddr);
1200
1201 return value;
1202}
1203
françois romieu4da19632011-01-03 15:07:55 +00001204static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001205{
Francois Romieu24192212012-07-06 20:19:42 +02001206 tp->mdio_ops.write(tp, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001207}
1208
françois romieu4da19632011-01-03 15:07:55 +00001209static int rtl_readphy(struct rtl8169_private *tp, int location)
1210{
Francois Romieu24192212012-07-06 20:19:42 +02001211 return tp->mdio_ops.read(tp, location);
françois romieu4da19632011-01-03 15:07:55 +00001212}
1213
1214static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1215{
1216 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1217}
1218
1219static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001220{
1221 int val;
1222
françois romieu4da19632011-01-03 15:07:55 +00001223 val = rtl_readphy(tp, reg_addr);
1224 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +00001225}
1226
Francois Romieuccdffb92008-07-26 14:26:06 +02001227static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1228 int val)
1229{
1230 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001231
françois romieu4da19632011-01-03 15:07:55 +00001232 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001233}
1234
1235static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1236{
1237 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001238
françois romieu4da19632011-01-03 15:07:55 +00001239 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001240}
1241
Francois Romieuffc46952012-07-06 14:19:23 +02001242DECLARE_RTL_COND(rtl_ephyar_cond)
1243{
1244 void __iomem *ioaddr = tp->mmio_addr;
1245
1246 return RTL_R32(EPHYAR) & EPHYAR_FLAG;
1247}
1248
Francois Romieufdf6fc02012-07-06 22:40:38 +02001249static void rtl_ephy_write(struct rtl8169_private *tp, int reg_addr, int value)
Francois Romieudacf8152008-08-02 20:44:13 +02001250{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001251 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001252
1253 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1254 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1255
Francois Romieuffc46952012-07-06 14:19:23 +02001256 rtl_udelay_loop_wait_low(tp, &rtl_ephyar_cond, 10, 100);
1257
1258 udelay(10);
Francois Romieudacf8152008-08-02 20:44:13 +02001259}
1260
Francois Romieufdf6fc02012-07-06 22:40:38 +02001261static u16 rtl_ephy_read(struct rtl8169_private *tp, int reg_addr)
Francois Romieudacf8152008-08-02 20:44:13 +02001262{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001263 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001264
1265 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1266
Francois Romieuffc46952012-07-06 14:19:23 +02001267 return rtl_udelay_loop_wait_high(tp, &rtl_ephyar_cond, 10, 100) ?
1268 RTL_R32(EPHYAR) & EPHYAR_DATA_MASK : ~0;
Francois Romieudacf8152008-08-02 20:44:13 +02001269}
1270
Francois Romieufdf6fc02012-07-06 22:40:38 +02001271static void rtl_eri_write(struct rtl8169_private *tp, int addr, u32 mask,
1272 u32 val, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001273{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001274 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001275
1276 BUG_ON((addr & 3) || (mask == 0));
1277 RTL_W32(ERIDR, val);
1278 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1279
Francois Romieuffc46952012-07-06 14:19:23 +02001280 rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 100);
Hayes Wang133ac402011-07-06 15:58:05 +08001281}
1282
Francois Romieufdf6fc02012-07-06 22:40:38 +02001283static u32 rtl_eri_read(struct rtl8169_private *tp, int addr, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001284{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001285 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001286
1287 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1288
Francois Romieuffc46952012-07-06 14:19:23 +02001289 return rtl_udelay_loop_wait_high(tp, &rtl_eriar_cond, 100, 100) ?
1290 RTL_R32(ERIDR) : ~0;
Hayes Wang133ac402011-07-06 15:58:05 +08001291}
1292
Francois Romieufdf6fc02012-07-06 22:40:38 +02001293static void rtl_w1w0_eri(struct rtl8169_private *tp, int addr, u32 mask, u32 p,
1294 u32 m, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001295{
1296 u32 val;
1297
Francois Romieufdf6fc02012-07-06 22:40:38 +02001298 val = rtl_eri_read(tp, addr, type);
1299 rtl_eri_write(tp, addr, mask, (val & ~m) | p, type);
Hayes Wang133ac402011-07-06 15:58:05 +08001300}
1301
françois romieuc28aa382011-08-02 03:53:43 +00001302struct exgmac_reg {
1303 u16 addr;
1304 u16 mask;
1305 u32 val;
1306};
1307
Francois Romieufdf6fc02012-07-06 22:40:38 +02001308static void rtl_write_exgmac_batch(struct rtl8169_private *tp,
françois romieuc28aa382011-08-02 03:53:43 +00001309 const struct exgmac_reg *r, int len)
1310{
1311 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001312 rtl_eri_write(tp, r->addr, r->mask, r->val, ERIAR_EXGMAC);
françois romieuc28aa382011-08-02 03:53:43 +00001313 r++;
1314 }
1315}
1316
Francois Romieuffc46952012-07-06 14:19:23 +02001317DECLARE_RTL_COND(rtl_efusear_cond)
1318{
1319 void __iomem *ioaddr = tp->mmio_addr;
1320
1321 return RTL_R32(EFUSEAR) & EFUSEAR_FLAG;
1322}
1323
Francois Romieufdf6fc02012-07-06 22:40:38 +02001324static u8 rtl8168d_efuse_read(struct rtl8169_private *tp, int reg_addr)
françois romieudaf9df62009-10-07 12:44:20 +00001325{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001326 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00001327
1328 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1329
Francois Romieuffc46952012-07-06 14:19:23 +02001330 return rtl_udelay_loop_wait_high(tp, &rtl_efusear_cond, 100, 300) ?
1331 RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK : ~0;
françois romieudaf9df62009-10-07 12:44:20 +00001332}
1333
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001334static u16 rtl_get_events(struct rtl8169_private *tp)
1335{
1336 void __iomem *ioaddr = tp->mmio_addr;
1337
1338 return RTL_R16(IntrStatus);
1339}
1340
1341static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1342{
1343 void __iomem *ioaddr = tp->mmio_addr;
1344
1345 RTL_W16(IntrStatus, bits);
1346 mmiowb();
1347}
1348
1349static void rtl_irq_disable(struct rtl8169_private *tp)
1350{
1351 void __iomem *ioaddr = tp->mmio_addr;
1352
1353 RTL_W16(IntrMask, 0);
1354 mmiowb();
1355}
1356
Francois Romieu3e990ff2012-01-26 12:50:01 +01001357static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1358{
1359 void __iomem *ioaddr = tp->mmio_addr;
1360
1361 RTL_W16(IntrMask, bits);
1362}
1363
Francois Romieuda78dbf2012-01-26 14:18:23 +01001364#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1365#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1366#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1367
1368static void rtl_irq_enable_all(struct rtl8169_private *tp)
1369{
1370 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1371}
1372
françois romieu811fd302011-12-04 20:30:45 +00001373static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
françois romieu811fd302011-12-04 20:30:45 +00001375 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001377 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001378 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001379 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
françois romieu4da19632011-01-03 15:07:55 +00001382static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
françois romieu4da19632011-01-03 15:07:55 +00001384 void __iomem *ioaddr = tp->mmio_addr;
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 return RTL_R32(TBICSR) & TBIReset;
1387}
1388
françois romieu4da19632011-01-03 15:07:55 +00001389static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
françois romieu4da19632011-01-03 15:07:55 +00001391 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
1394static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1395{
1396 return RTL_R32(TBICSR) & TBILinkOk;
1397}
1398
1399static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1400{
1401 return RTL_R8(PHYstatus) & LinkStatus;
1402}
1403
françois romieu4da19632011-01-03 15:07:55 +00001404static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
françois romieu4da19632011-01-03 15:07:55 +00001406 void __iomem *ioaddr = tp->mmio_addr;
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1409}
1410
françois romieu4da19632011-01-03 15:07:55 +00001411static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
1413 unsigned int val;
1414
françois romieu4da19632011-01-03 15:07:55 +00001415 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1416 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
1418
Hayes Wang70090422011-07-06 15:58:06 +08001419static void rtl_link_chg_patch(struct rtl8169_private *tp)
1420{
1421 void __iomem *ioaddr = tp->mmio_addr;
1422 struct net_device *dev = tp->dev;
1423
1424 if (!netif_running(dev))
1425 return;
1426
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001427 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1428 tp->mac_version == RTL_GIGA_MAC_VER_38) {
Hayes Wang70090422011-07-06 15:58:06 +08001429 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001430 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1431 ERIAR_EXGMAC);
1432 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1433 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001434 } else if (RTL_R8(PHYstatus) & _100bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001435 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1436 ERIAR_EXGMAC);
1437 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1438 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001439 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001440 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1441 ERIAR_EXGMAC);
1442 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1443 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001444 }
1445 /* Reset packet filter */
Francois Romieufdf6fc02012-07-06 22:40:38 +02001446 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
Hayes Wang70090422011-07-06 15:58:06 +08001447 ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02001448 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
Hayes Wang70090422011-07-06 15:58:06 +08001449 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001450 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1451 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1452 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001453 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1454 ERIAR_EXGMAC);
1455 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1456 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001457 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001458 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1459 ERIAR_EXGMAC);
1460 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1461 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001462 }
Hayes Wang7e18dca2012-03-30 14:33:02 +08001463 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1464 if (RTL_R8(PHYstatus) & _10bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001465 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x4d02,
1466 ERIAR_EXGMAC);
1467 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_0011, 0x0060,
1468 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001469 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001470 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000,
1471 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001472 }
Hayes Wang70090422011-07-06 15:58:06 +08001473 }
1474}
1475
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001476static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001477 struct rtl8169_private *tp,
1478 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001481 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001482 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001483 if (pm)
1484 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001486 if (net_ratelimit())
1487 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001488 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001490 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001491 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001492 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001496static void rtl8169_check_link_status(struct net_device *dev,
1497 struct rtl8169_private *tp,
1498 void __iomem *ioaddr)
1499{
1500 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1501}
1502
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001503#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1504
1505static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1506{
1507 void __iomem *ioaddr = tp->mmio_addr;
1508 u8 options;
1509 u32 wolopts = 0;
1510
1511 options = RTL_R8(Config1);
1512 if (!(options & PMEnable))
1513 return 0;
1514
1515 options = RTL_R8(Config3);
1516 if (options & LinkUp)
1517 wolopts |= WAKE_PHY;
1518 if (options & MagicPacket)
1519 wolopts |= WAKE_MAGIC;
1520
1521 options = RTL_R8(Config5);
1522 if (options & UWF)
1523 wolopts |= WAKE_UCAST;
1524 if (options & BWF)
1525 wolopts |= WAKE_BCAST;
1526 if (options & MWF)
1527 wolopts |= WAKE_MCAST;
1528
1529 return wolopts;
1530}
1531
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001532static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1533{
1534 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001535
Francois Romieuda78dbf2012-01-26 14:18:23 +01001536 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001537
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001538 wol->supported = WAKE_ANY;
1539 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001540
Francois Romieuda78dbf2012-01-26 14:18:23 +01001541 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001542}
1543
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001544static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001545{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001546 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001547 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001548 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001549 u32 opt;
1550 u16 reg;
1551 u8 mask;
1552 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001553 { WAKE_PHY, Config3, LinkUp },
1554 { WAKE_MAGIC, Config3, MagicPacket },
1555 { WAKE_UCAST, Config5, UWF },
1556 { WAKE_BCAST, Config5, BWF },
1557 { WAKE_MCAST, Config5, MWF },
1558 { WAKE_ANY, Config5, LanWake }
1559 };
Francois Romieu851e6022012-04-17 11:10:11 +02001560 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001561
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001562 RTL_W8(Cfg9346, Cfg9346_Unlock);
1563
1564 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
Francois Romieu851e6022012-04-17 11:10:11 +02001565 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001566 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001567 options |= cfg[i].mask;
1568 RTL_W8(cfg[i].reg, options);
1569 }
1570
Francois Romieu851e6022012-04-17 11:10:11 +02001571 switch (tp->mac_version) {
1572 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1573 options = RTL_R8(Config1) & ~PMEnable;
1574 if (wolopts)
1575 options |= PMEnable;
1576 RTL_W8(Config1, options);
1577 break;
1578 default:
Francois Romieud387b422012-04-17 11:12:01 +02001579 options = RTL_R8(Config2) & ~PME_SIGNAL;
1580 if (wolopts)
1581 options |= PME_SIGNAL;
1582 RTL_W8(Config2, options);
Francois Romieu851e6022012-04-17 11:10:11 +02001583 break;
1584 }
1585
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001586 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001587}
1588
1589static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1590{
1591 struct rtl8169_private *tp = netdev_priv(dev);
1592
Francois Romieuda78dbf2012-01-26 14:18:23 +01001593 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001594
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001595 if (wol->wolopts)
1596 tp->features |= RTL_FEATURE_WOL;
1597 else
1598 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001599 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001600
1601 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001602
françois romieuea809072010-11-08 13:23:58 +00001603 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1604
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001605 return 0;
1606}
1607
Francois Romieu31bd2042011-04-26 18:58:59 +02001608static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1609{
Francois Romieu85bffe62011-04-27 08:22:39 +02001610 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001611}
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613static void rtl8169_get_drvinfo(struct net_device *dev,
1614 struct ethtool_drvinfo *info)
1615{
1616 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001617 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Rick Jones68aad782011-11-07 13:29:27 +00001619 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1620 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1621 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001622 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001623 if (!IS_ERR_OR_NULL(rtl_fw))
1624 strlcpy(info->fw_version, rtl_fw->version,
1625 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
1628static int rtl8169_get_regs_len(struct net_device *dev)
1629{
1630 return R8169_REGS_SIZE;
1631}
1632
1633static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001634 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
1636 struct rtl8169_private *tp = netdev_priv(dev);
1637 void __iomem *ioaddr = tp->mmio_addr;
1638 int ret = 0;
1639 u32 reg;
1640
1641 reg = RTL_R32(TBICSR);
1642 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1643 (duplex == DUPLEX_FULL)) {
1644 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1645 } else if (autoneg == AUTONEG_ENABLE)
1646 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1647 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001648 netif_warn(tp, link, dev,
1649 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 ret = -EOPNOTSUPP;
1651 }
1652
1653 return ret;
1654}
1655
1656static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001657 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001660 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001661 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Hayes Wang716b50a2011-02-22 17:26:18 +08001663 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001666 int auto_nego;
1667
françois romieu4da19632011-01-03 15:07:55 +00001668 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001669 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1670 ADVERTISE_100HALF | ADVERTISE_100FULL);
1671
1672 if (adv & ADVERTISED_10baseT_Half)
1673 auto_nego |= ADVERTISE_10HALF;
1674 if (adv & ADVERTISED_10baseT_Full)
1675 auto_nego |= ADVERTISE_10FULL;
1676 if (adv & ADVERTISED_100baseT_Half)
1677 auto_nego |= ADVERTISE_100HALF;
1678 if (adv & ADVERTISED_100baseT_Full)
1679 auto_nego |= ADVERTISE_100FULL;
1680
françois romieu3577aa12009-05-19 10:46:48 +00001681 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1682
françois romieu4da19632011-01-03 15:07:55 +00001683 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001684 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1685
1686 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001687 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001688 if (adv & ADVERTISED_1000baseT_Half)
1689 giga_ctrl |= ADVERTISE_1000HALF;
1690 if (adv & ADVERTISED_1000baseT_Full)
1691 giga_ctrl |= ADVERTISE_1000FULL;
1692 } else if (adv & (ADVERTISED_1000baseT_Half |
1693 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001694 netif_info(tp, link, dev,
1695 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001696 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
françois romieu3577aa12009-05-19 10:46:48 +00001699 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001700
françois romieu4da19632011-01-03 15:07:55 +00001701 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1702 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001703 } else {
1704 giga_ctrl = 0;
1705
1706 if (speed == SPEED_10)
1707 bmcr = 0;
1708 else if (speed == SPEED_100)
1709 bmcr = BMCR_SPEED100;
1710 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001711 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001712
1713 if (duplex == DUPLEX_FULL)
1714 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001715 }
1716
françois romieu4da19632011-01-03 15:07:55 +00001717 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001718
Francois Romieucecb5fd2011-04-01 10:21:07 +02001719 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1720 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001721 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001722 rtl_writephy(tp, 0x17, 0x2138);
1723 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001724 } else {
françois romieu4da19632011-01-03 15:07:55 +00001725 rtl_writephy(tp, 0x17, 0x2108);
1726 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001727 }
1728 }
1729
Oliver Neukum54405cd2011-01-06 21:55:13 +01001730 rc = 0;
1731out:
1732 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
1735static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001736 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
1738 struct rtl8169_private *tp = netdev_priv(dev);
1739 int ret;
1740
Oliver Neukum54405cd2011-01-06 21:55:13 +01001741 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001742 if (ret < 0)
1743 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Francois Romieu4876cc12011-03-11 21:07:11 +01001745 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1746 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001748 }
1749out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 return ret;
1751}
1752
1753static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1754{
1755 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 int ret;
1757
Francois Romieu4876cc12011-03-11 21:07:11 +01001758 del_timer_sync(&tp->timer);
1759
Francois Romieuda78dbf2012-01-26 14:18:23 +01001760 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001761 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001762 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001763 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 return ret;
1766}
1767
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001768static netdev_features_t rtl8169_fix_features(struct net_device *dev,
1769 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
Francois Romieud58d46b2011-05-03 16:38:29 +02001771 struct rtl8169_private *tp = netdev_priv(dev);
1772
Francois Romieu2b7b4312011-04-18 22:53:24 -07001773 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001774 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Francois Romieud58d46b2011-05-03 16:38:29 +02001776 if (dev->mtu > JUMBO_1K &&
1777 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
1778 features &= ~NETIF_F_IP_CSUM;
1779
Michał Mirosław350fb322011-04-08 06:35:56 +00001780 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
1782
Francois Romieuda78dbf2012-01-26 14:18:23 +01001783static void __rtl8169_set_features(struct net_device *dev,
1784 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
1786 struct rtl8169_private *tp = netdev_priv(dev);
Ben Greear6bbe0212012-02-10 15:04:33 +00001787 netdev_features_t changed = features ^ dev->features;
Francois Romieuda78dbf2012-01-26 14:18:23 +01001788 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Ben Greear6bbe0212012-02-10 15:04:33 +00001790 if (!(changed & (NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)))
1791 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Ben Greear6bbe0212012-02-10 15:04:33 +00001793 if (changed & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)) {
1794 if (features & NETIF_F_RXCSUM)
1795 tp->cp_cmd |= RxChkSum;
1796 else
1797 tp->cp_cmd &= ~RxChkSum;
Michał Mirosław350fb322011-04-08 06:35:56 +00001798
Ben Greear6bbe0212012-02-10 15:04:33 +00001799 if (dev->features & NETIF_F_HW_VLAN_RX)
1800 tp->cp_cmd |= RxVlan;
1801 else
1802 tp->cp_cmd &= ~RxVlan;
1803
1804 RTL_W16(CPlusCmd, tp->cp_cmd);
1805 RTL_R16(CPlusCmd);
1806 }
1807 if (changed & NETIF_F_RXALL) {
1808 int tmp = (RTL_R32(RxConfig) & ~(AcceptErr | AcceptRunt));
1809 if (features & NETIF_F_RXALL)
1810 tmp |= (AcceptErr | AcceptRunt);
1811 RTL_W32(RxConfig, tmp);
1812 }
Francois Romieuda78dbf2012-01-26 14:18:23 +01001813}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Francois Romieuda78dbf2012-01-26 14:18:23 +01001815static int rtl8169_set_features(struct net_device *dev,
1816 netdev_features_t features)
1817{
1818 struct rtl8169_private *tp = netdev_priv(dev);
1819
1820 rtl_lock_work(tp);
1821 __rtl8169_set_features(dev, features);
1822 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 return 0;
1825}
1826
Francois Romieuda78dbf2012-01-26 14:18:23 +01001827
Kirill Smelkov810f4892012-11-10 21:11:02 +04001828static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Jesse Grosseab6d182010-10-20 13:56:03 +00001830 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1832}
1833
Francois Romieu7a8fc772011-03-01 17:18:33 +01001834static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
1836 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Francois Romieu7a8fc772011-03-01 17:18:33 +01001838 if (opts2 & RxVlanTag)
1839 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
Francois Romieuccdffb92008-07-26 14:26:06 +02001842static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
1844 struct rtl8169_private *tp = netdev_priv(dev);
1845 void __iomem *ioaddr = tp->mmio_addr;
1846 u32 status;
1847
1848 cmd->supported =
1849 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1850 cmd->port = PORT_FIBRE;
1851 cmd->transceiver = XCVR_INTERNAL;
1852
1853 status = RTL_R32(TBICSR);
1854 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1855 cmd->autoneg = !!(status & TBINwEnable);
1856
David Decotigny70739492011-04-27 18:32:40 +00001857 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001859
1860 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861}
1862
Francois Romieuccdffb92008-07-26 14:26:06 +02001863static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
1865 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Francois Romieuccdffb92008-07-26 14:26:06 +02001867 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
1869
1870static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1871{
1872 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001873 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Francois Romieuda78dbf2012-01-26 14:18:23 +01001875 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02001876 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001877 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Francois Romieuccdffb92008-07-26 14:26:06 +02001879 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
1882static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1883 void *p)
1884{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001885 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Francois Romieu5b0384f2006-08-16 16:00:01 +02001887 if (regs->len > R8169_REGS_SIZE)
1888 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Francois Romieuda78dbf2012-01-26 14:18:23 +01001890 rtl_lock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001891 memcpy_fromio(p, tp->mmio_addr, regs->len);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001892 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001895static u32 rtl8169_get_msglevel(struct net_device *dev)
1896{
1897 struct rtl8169_private *tp = netdev_priv(dev);
1898
1899 return tp->msg_enable;
1900}
1901
1902static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1903{
1904 struct rtl8169_private *tp = netdev_priv(dev);
1905
1906 tp->msg_enable = value;
1907}
1908
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001909static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1910 "tx_packets",
1911 "rx_packets",
1912 "tx_errors",
1913 "rx_errors",
1914 "rx_missed",
1915 "align_errors",
1916 "tx_single_collisions",
1917 "tx_multi_collisions",
1918 "unicast",
1919 "broadcast",
1920 "multicast",
1921 "tx_aborted",
1922 "tx_underrun",
1923};
1924
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001925static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001926{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001927 switch (sset) {
1928 case ETH_SS_STATS:
1929 return ARRAY_SIZE(rtl8169_gstrings);
1930 default:
1931 return -EOPNOTSUPP;
1932 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001933}
1934
Francois Romieuffc46952012-07-06 14:19:23 +02001935DECLARE_RTL_COND(rtl_counters_cond)
1936{
1937 void __iomem *ioaddr = tp->mmio_addr;
1938
1939 return RTL_R32(CounterAddrLow) & CounterDump;
1940}
1941
Ivan Vecera355423d2009-02-06 21:49:57 -08001942static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001943{
1944 struct rtl8169_private *tp = netdev_priv(dev);
1945 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001946 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001947 struct rtl8169_counters *counters;
1948 dma_addr_t paddr;
1949 u32 cmd;
1950
Ivan Vecera355423d2009-02-06 21:49:57 -08001951 /*
1952 * Some chips are unable to dump tally counters when the receiver
1953 * is disabled.
1954 */
1955 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1956 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001957
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001958 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001959 if (!counters)
1960 return;
1961
1962 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001963 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001964 RTL_W32(CounterAddrLow, cmd);
1965 RTL_W32(CounterAddrLow, cmd | CounterDump);
1966
Francois Romieuffc46952012-07-06 14:19:23 +02001967 if (rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000))
1968 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001969
1970 RTL_W32(CounterAddrLow, 0);
1971 RTL_W32(CounterAddrHigh, 0);
1972
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001973 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001974}
1975
Ivan Vecera355423d2009-02-06 21:49:57 -08001976static void rtl8169_get_ethtool_stats(struct net_device *dev,
1977 struct ethtool_stats *stats, u64 *data)
1978{
1979 struct rtl8169_private *tp = netdev_priv(dev);
1980
1981 ASSERT_RTNL();
1982
1983 rtl8169_update_counters(dev);
1984
1985 data[0] = le64_to_cpu(tp->counters.tx_packets);
1986 data[1] = le64_to_cpu(tp->counters.rx_packets);
1987 data[2] = le64_to_cpu(tp->counters.tx_errors);
1988 data[3] = le32_to_cpu(tp->counters.rx_errors);
1989 data[4] = le16_to_cpu(tp->counters.rx_missed);
1990 data[5] = le16_to_cpu(tp->counters.align_errors);
1991 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1992 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1993 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1994 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1995 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1996 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1997 data[12] = le16_to_cpu(tp->counters.tx_underun);
1998}
1999
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002000static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2001{
2002 switch(stringset) {
2003 case ETH_SS_STATS:
2004 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
2005 break;
2006 }
2007}
2008
Jeff Garzik7282d492006-09-13 14:30:00 -04002009static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 .get_drvinfo = rtl8169_get_drvinfo,
2011 .get_regs_len = rtl8169_get_regs_len,
2012 .get_link = ethtool_op_get_link,
2013 .get_settings = rtl8169_get_settings,
2014 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002015 .get_msglevel = rtl8169_get_msglevel,
2016 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002018 .get_wol = rtl8169_get_wol,
2019 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002020 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002021 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002022 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00002023 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024};
2025
Francois Romieu07d3f512007-02-21 22:40:46 +01002026static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02002027 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
Francois Romieu5d320a22011-05-08 17:47:36 +02002029 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002030 /*
2031 * The driver currently handles the 8168Bf and the 8168Be identically
2032 * but they can be identified more specifically through the test below
2033 * if needed:
2034 *
2035 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01002036 *
2037 * Same thing for the 8101Eb and the 8101Ec:
2038 *
2039 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01002040 */
Francois Romieu37441002011-06-17 22:58:54 +02002041 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002043 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 int mac_version;
2045 } mac_info[] = {
Hayes Wangc5583862012-07-02 17:23:22 +08002046 /* 8168G family. */
hayeswang57538c42013-04-01 22:23:40 +00002047 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42 },
Hayes Wangc5583862012-07-02 17:23:22 +08002048 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2049 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2050
Hayes Wangc2218922011-09-06 16:55:18 +08002051 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08002052 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08002053 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2054 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2055
hayeswang01dc7fe2011-03-21 01:50:28 +00002056 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08002057 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00002058 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
2059 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2060 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2061
Francois Romieu5b538df2008-07-20 16:22:45 +02002062 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00002063 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
2064 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00002065 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002066
françois romieue6de30d2011-01-03 15:08:37 +00002067 /* 8168DP family. */
2068 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2069 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00002070 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00002071
Francois Romieuef808d52008-06-29 13:10:54 +02002072 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07002073 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02002074 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02002075 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002076 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002077 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2078 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02002079 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02002080 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02002081 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002082
2083 /* 8168B family. */
2084 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2085 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
2086 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2087 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2088
2089 /* 8101 family. */
Hayes Wang5598bfe2012-07-02 17:23:21 +08002090 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39 },
2091 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
Hayes Wang7e18dca2012-03-30 14:33:02 +08002092 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00002093 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08002094 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
2095 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2096 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002097 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
2098 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
2099 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2100 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2101 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2102 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002103 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002104 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002105 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002106 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2107 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002108 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2109 /* FIXME: where did these entries come from ? -- FR */
2110 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2111 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2112
2113 /* 8110 family. */
2114 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2115 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2116 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2117 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2118 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2119 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2120
Jean Delvaref21b75e2009-05-26 20:54:48 -07002121 /* Catch-all */
2122 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02002123 };
2124 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 u32 reg;
2126
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002127 reg = RTL_R32(TxConfig);
2128 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 p++;
2130 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02002131
2132 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2133 netif_notice(tp, probe, dev,
2134 "unknown MAC, using family default\n");
2135 tp->mac_version = default_version;
2136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138
2139static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2140{
Francois Romieubcf0bf92006-07-26 23:14:13 +02002141 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142}
2143
Francois Romieu867763c2007-08-17 18:21:58 +02002144struct phy_reg {
2145 u16 reg;
2146 u16 val;
2147};
2148
françois romieu4da19632011-01-03 15:07:55 +00002149static void rtl_writephy_batch(struct rtl8169_private *tp,
2150 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02002151{
2152 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00002153 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02002154 regs++;
2155 }
2156}
2157
françois romieubca03d52011-01-03 15:07:31 +00002158#define PHY_READ 0x00000000
2159#define PHY_DATA_OR 0x10000000
2160#define PHY_DATA_AND 0x20000000
2161#define PHY_BJMPN 0x30000000
hayeswangeee37862013-04-01 22:23:38 +00002162#define PHY_MDIO_CHG 0x40000000
françois romieubca03d52011-01-03 15:07:31 +00002163#define PHY_CLEAR_READCOUNT 0x70000000
2164#define PHY_WRITE 0x80000000
2165#define PHY_READCOUNT_EQ_SKIP 0x90000000
2166#define PHY_COMP_EQ_SKIPN 0xa0000000
2167#define PHY_COMP_NEQ_SKIPN 0xb0000000
2168#define PHY_WRITE_PREVIOUS 0xc0000000
2169#define PHY_SKIPN 0xd0000000
2170#define PHY_DELAY_MS 0xe0000000
françois romieubca03d52011-01-03 15:07:31 +00002171
Hayes Wang960aee62011-06-18 11:37:48 +02002172struct fw_info {
2173 u32 magic;
2174 char version[RTL_VER_SIZE];
2175 __le32 fw_start;
2176 __le32 fw_len;
2177 u8 chksum;
2178} __packed;
2179
Francois Romieu1c361ef2011-06-17 17:16:24 +02002180#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2181
2182static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002183{
Francois Romieub6ffd972011-06-17 17:00:05 +02002184 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002185 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002186 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2187 char *version = rtl_fw->version;
2188 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002189
Francois Romieu1c361ef2011-06-17 17:16:24 +02002190 if (fw->size < FW_OPCODE_SIZE)
2191 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002192
2193 if (!fw_info->magic) {
2194 size_t i, size, start;
2195 u8 checksum = 0;
2196
2197 if (fw->size < sizeof(*fw_info))
2198 goto out;
2199
2200 for (i = 0; i < fw->size; i++)
2201 checksum += fw->data[i];
2202 if (checksum != 0)
2203 goto out;
2204
2205 start = le32_to_cpu(fw_info->fw_start);
2206 if (start > fw->size)
2207 goto out;
2208
2209 size = le32_to_cpu(fw_info->fw_len);
2210 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2211 goto out;
2212
2213 memcpy(version, fw_info->version, RTL_VER_SIZE);
2214
2215 pa->code = (__le32 *)(fw->data + start);
2216 pa->size = size;
2217 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002218 if (fw->size % FW_OPCODE_SIZE)
2219 goto out;
2220
2221 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2222
2223 pa->code = (__le32 *)fw->data;
2224 pa->size = fw->size / FW_OPCODE_SIZE;
2225 }
2226 version[RTL_VER_SIZE - 1] = 0;
2227
2228 rc = true;
2229out:
2230 return rc;
2231}
2232
Francois Romieufd112f22011-06-18 00:10:29 +02002233static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2234 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002235{
Francois Romieufd112f22011-06-18 00:10:29 +02002236 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002237 size_t index;
2238
Francois Romieu1c361ef2011-06-17 17:16:24 +02002239 for (index = 0; index < pa->size; index++) {
2240 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002241 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002242
hayeswang42b82dc2011-01-10 02:07:25 +00002243 switch(action & 0xf0000000) {
2244 case PHY_READ:
2245 case PHY_DATA_OR:
2246 case PHY_DATA_AND:
hayeswangeee37862013-04-01 22:23:38 +00002247 case PHY_MDIO_CHG:
hayeswang42b82dc2011-01-10 02:07:25 +00002248 case PHY_CLEAR_READCOUNT:
2249 case PHY_WRITE:
2250 case PHY_WRITE_PREVIOUS:
2251 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002252 break;
2253
hayeswang42b82dc2011-01-10 02:07:25 +00002254 case PHY_BJMPN:
2255 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002256 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002257 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002258 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002259 }
2260 break;
2261 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002262 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002263 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002264 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002265 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002266 }
2267 break;
2268 case PHY_COMP_EQ_SKIPN:
2269 case PHY_COMP_NEQ_SKIPN:
2270 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002271 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002272 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002273 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002274 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002275 }
2276 break;
2277
hayeswang42b82dc2011-01-10 02:07:25 +00002278 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002279 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002280 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002281 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002282 }
2283 }
Francois Romieufd112f22011-06-18 00:10:29 +02002284 rc = true;
2285out:
2286 return rc;
2287}
françois romieubca03d52011-01-03 15:07:31 +00002288
Francois Romieufd112f22011-06-18 00:10:29 +02002289static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2290{
2291 struct net_device *dev = tp->dev;
2292 int rc = -EINVAL;
2293
2294 if (!rtl_fw_format_ok(tp, rtl_fw)) {
2295 netif_err(tp, ifup, dev, "invalid firwmare\n");
2296 goto out;
2297 }
2298
2299 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2300 rc = 0;
2301out:
2302 return rc;
2303}
2304
2305static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2306{
2307 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
hayeswangeee37862013-04-01 22:23:38 +00002308 struct mdio_ops org, *ops = &tp->mdio_ops;
Francois Romieufd112f22011-06-18 00:10:29 +02002309 u32 predata, count;
2310 size_t index;
2311
2312 predata = count = 0;
hayeswangeee37862013-04-01 22:23:38 +00002313 org.write = ops->write;
2314 org.read = ops->read;
hayeswang42b82dc2011-01-10 02:07:25 +00002315
Francois Romieu1c361ef2011-06-17 17:16:24 +02002316 for (index = 0; index < pa->size; ) {
2317 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002318 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002319 u32 regno = (action & 0x0fff0000) >> 16;
2320
2321 if (!action)
2322 break;
françois romieubca03d52011-01-03 15:07:31 +00002323
2324 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002325 case PHY_READ:
2326 predata = rtl_readphy(tp, regno);
2327 count++;
2328 index++;
françois romieubca03d52011-01-03 15:07:31 +00002329 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002330 case PHY_DATA_OR:
2331 predata |= data;
2332 index++;
2333 break;
2334 case PHY_DATA_AND:
2335 predata &= data;
2336 index++;
2337 break;
2338 case PHY_BJMPN:
2339 index -= regno;
2340 break;
hayeswangeee37862013-04-01 22:23:38 +00002341 case PHY_MDIO_CHG:
2342 if (data == 0) {
2343 ops->write = org.write;
2344 ops->read = org.read;
2345 } else if (data == 1) {
2346 ops->write = mac_mcu_write;
2347 ops->read = mac_mcu_read;
2348 }
2349
hayeswang42b82dc2011-01-10 02:07:25 +00002350 index++;
2351 break;
2352 case PHY_CLEAR_READCOUNT:
2353 count = 0;
2354 index++;
2355 break;
2356 case PHY_WRITE:
2357 rtl_writephy(tp, regno, data);
2358 index++;
2359 break;
2360 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002361 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002362 break;
2363 case PHY_COMP_EQ_SKIPN:
2364 if (predata == data)
2365 index += regno;
2366 index++;
2367 break;
2368 case PHY_COMP_NEQ_SKIPN:
2369 if (predata != data)
2370 index += regno;
2371 index++;
2372 break;
2373 case PHY_WRITE_PREVIOUS:
2374 rtl_writephy(tp, regno, predata);
2375 index++;
2376 break;
2377 case PHY_SKIPN:
2378 index += regno + 1;
2379 break;
2380 case PHY_DELAY_MS:
2381 mdelay(data);
2382 index++;
2383 break;
2384
françois romieubca03d52011-01-03 15:07:31 +00002385 default:
2386 BUG();
2387 }
2388 }
hayeswangeee37862013-04-01 22:23:38 +00002389
2390 ops->write = org.write;
2391 ops->read = org.read;
françois romieubca03d52011-01-03 15:07:31 +00002392}
2393
françois romieuf1e02ed2011-01-13 13:07:53 +00002394static void rtl_release_firmware(struct rtl8169_private *tp)
2395{
Francois Romieub6ffd972011-06-17 17:00:05 +02002396 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2397 release_firmware(tp->rtl_fw->fw);
2398 kfree(tp->rtl_fw);
2399 }
2400 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002401}
2402
François Romieu953a12c2011-04-24 17:38:48 +02002403static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002404{
Francois Romieub6ffd972011-06-17 17:00:05 +02002405 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002406
2407 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieueef63cc2013-02-08 23:43:20 +01002408 if (!IS_ERR_OR_NULL(rtl_fw))
Francois Romieub6ffd972011-06-17 17:00:05 +02002409 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002410}
2411
2412static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2413{
2414 if (rtl_readphy(tp, reg) != val)
2415 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2416 else
2417 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002418}
2419
françois romieu4da19632011-01-03 15:07:55 +00002420static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002422 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002423 { 0x1f, 0x0001 },
2424 { 0x06, 0x006e },
2425 { 0x08, 0x0708 },
2426 { 0x15, 0x4000 },
2427 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
françois romieu0b9b5712009-08-10 19:44:56 +00002429 { 0x1f, 0x0001 },
2430 { 0x03, 0x00a1 },
2431 { 0x02, 0x0008 },
2432 { 0x01, 0x0120 },
2433 { 0x00, 0x1000 },
2434 { 0x04, 0x0800 },
2435 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
françois romieu0b9b5712009-08-10 19:44:56 +00002437 { 0x03, 0xff41 },
2438 { 0x02, 0xdf60 },
2439 { 0x01, 0x0140 },
2440 { 0x00, 0x0077 },
2441 { 0x04, 0x7800 },
2442 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
françois romieu0b9b5712009-08-10 19:44:56 +00002444 { 0x03, 0x802f },
2445 { 0x02, 0x4f02 },
2446 { 0x01, 0x0409 },
2447 { 0x00, 0xf0f9 },
2448 { 0x04, 0x9800 },
2449 { 0x04, 0x9000 },
2450
2451 { 0x03, 0xdf01 },
2452 { 0x02, 0xdf20 },
2453 { 0x01, 0xff95 },
2454 { 0x00, 0xba00 },
2455 { 0x04, 0xa800 },
2456 { 0x04, 0xa000 },
2457
2458 { 0x03, 0xff41 },
2459 { 0x02, 0xdf20 },
2460 { 0x01, 0x0140 },
2461 { 0x00, 0x00bb },
2462 { 0x04, 0xb800 },
2463 { 0x04, 0xb000 },
2464
2465 { 0x03, 0xdf41 },
2466 { 0x02, 0xdc60 },
2467 { 0x01, 0x6340 },
2468 { 0x00, 0x007d },
2469 { 0x04, 0xd800 },
2470 { 0x04, 0xd000 },
2471
2472 { 0x03, 0xdf01 },
2473 { 0x02, 0xdf20 },
2474 { 0x01, 0x100a },
2475 { 0x00, 0xa0ff },
2476 { 0x04, 0xf800 },
2477 { 0x04, 0xf000 },
2478
2479 { 0x1f, 0x0000 },
2480 { 0x0b, 0x0000 },
2481 { 0x00, 0x9200 }
2482 };
2483
françois romieu4da19632011-01-03 15:07:55 +00002484 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485}
2486
françois romieu4da19632011-01-03 15:07:55 +00002487static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002488{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002489 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002490 { 0x1f, 0x0002 },
2491 { 0x01, 0x90d0 },
2492 { 0x1f, 0x0000 }
2493 };
2494
françois romieu4da19632011-01-03 15:07:55 +00002495 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002496}
2497
françois romieu4da19632011-01-03 15:07:55 +00002498static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002499{
2500 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002501
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002502 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2503 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002504 return;
2505
françois romieu4da19632011-01-03 15:07:55 +00002506 rtl_writephy(tp, 0x1f, 0x0001);
2507 rtl_writephy(tp, 0x10, 0xf01b);
2508 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002509}
2510
françois romieu4da19632011-01-03 15:07:55 +00002511static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002512{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002513 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002514 { 0x1f, 0x0001 },
2515 { 0x04, 0x0000 },
2516 { 0x03, 0x00a1 },
2517 { 0x02, 0x0008 },
2518 { 0x01, 0x0120 },
2519 { 0x00, 0x1000 },
2520 { 0x04, 0x0800 },
2521 { 0x04, 0x9000 },
2522 { 0x03, 0x802f },
2523 { 0x02, 0x4f02 },
2524 { 0x01, 0x0409 },
2525 { 0x00, 0xf099 },
2526 { 0x04, 0x9800 },
2527 { 0x04, 0xa000 },
2528 { 0x03, 0xdf01 },
2529 { 0x02, 0xdf20 },
2530 { 0x01, 0xff95 },
2531 { 0x00, 0xba00 },
2532 { 0x04, 0xa800 },
2533 { 0x04, 0xf000 },
2534 { 0x03, 0xdf01 },
2535 { 0x02, 0xdf20 },
2536 { 0x01, 0x101a },
2537 { 0x00, 0xa0ff },
2538 { 0x04, 0xf800 },
2539 { 0x04, 0x0000 },
2540 { 0x1f, 0x0000 },
2541
2542 { 0x1f, 0x0001 },
2543 { 0x10, 0xf41b },
2544 { 0x14, 0xfb54 },
2545 { 0x18, 0xf5c7 },
2546 { 0x1f, 0x0000 },
2547
2548 { 0x1f, 0x0001 },
2549 { 0x17, 0x0cc0 },
2550 { 0x1f, 0x0000 }
2551 };
2552
françois romieu4da19632011-01-03 15:07:55 +00002553 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002554
françois romieu4da19632011-01-03 15:07:55 +00002555 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002556}
2557
françois romieu4da19632011-01-03 15:07:55 +00002558static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002559{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002560 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002561 { 0x1f, 0x0001 },
2562 { 0x04, 0x0000 },
2563 { 0x03, 0x00a1 },
2564 { 0x02, 0x0008 },
2565 { 0x01, 0x0120 },
2566 { 0x00, 0x1000 },
2567 { 0x04, 0x0800 },
2568 { 0x04, 0x9000 },
2569 { 0x03, 0x802f },
2570 { 0x02, 0x4f02 },
2571 { 0x01, 0x0409 },
2572 { 0x00, 0xf099 },
2573 { 0x04, 0x9800 },
2574 { 0x04, 0xa000 },
2575 { 0x03, 0xdf01 },
2576 { 0x02, 0xdf20 },
2577 { 0x01, 0xff95 },
2578 { 0x00, 0xba00 },
2579 { 0x04, 0xa800 },
2580 { 0x04, 0xf000 },
2581 { 0x03, 0xdf01 },
2582 { 0x02, 0xdf20 },
2583 { 0x01, 0x101a },
2584 { 0x00, 0xa0ff },
2585 { 0x04, 0xf800 },
2586 { 0x04, 0x0000 },
2587 { 0x1f, 0x0000 },
2588
2589 { 0x1f, 0x0001 },
2590 { 0x0b, 0x8480 },
2591 { 0x1f, 0x0000 },
2592
2593 { 0x1f, 0x0001 },
2594 { 0x18, 0x67c7 },
2595 { 0x04, 0x2000 },
2596 { 0x03, 0x002f },
2597 { 0x02, 0x4360 },
2598 { 0x01, 0x0109 },
2599 { 0x00, 0x3022 },
2600 { 0x04, 0x2800 },
2601 { 0x1f, 0x0000 },
2602
2603 { 0x1f, 0x0001 },
2604 { 0x17, 0x0cc0 },
2605 { 0x1f, 0x0000 }
2606 };
2607
françois romieu4da19632011-01-03 15:07:55 +00002608 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002609}
2610
françois romieu4da19632011-01-03 15:07:55 +00002611static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002612{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002613 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002614 { 0x10, 0xf41b },
2615 { 0x1f, 0x0000 }
2616 };
2617
françois romieu4da19632011-01-03 15:07:55 +00002618 rtl_writephy(tp, 0x1f, 0x0001);
2619 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002620
françois romieu4da19632011-01-03 15:07:55 +00002621 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002622}
2623
françois romieu4da19632011-01-03 15:07:55 +00002624static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002625{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002626 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002627 { 0x1f, 0x0001 },
2628 { 0x10, 0xf41b },
2629 { 0x1f, 0x0000 }
2630 };
2631
françois romieu4da19632011-01-03 15:07:55 +00002632 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002633}
2634
françois romieu4da19632011-01-03 15:07:55 +00002635static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002636{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002637 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002638 { 0x1f, 0x0000 },
2639 { 0x1d, 0x0f00 },
2640 { 0x1f, 0x0002 },
2641 { 0x0c, 0x1ec8 },
2642 { 0x1f, 0x0000 }
2643 };
2644
françois romieu4da19632011-01-03 15:07:55 +00002645 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002646}
2647
françois romieu4da19632011-01-03 15:07:55 +00002648static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002649{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002650 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002651 { 0x1f, 0x0001 },
2652 { 0x1d, 0x3d98 },
2653 { 0x1f, 0x0000 }
2654 };
2655
françois romieu4da19632011-01-03 15:07:55 +00002656 rtl_writephy(tp, 0x1f, 0x0000);
2657 rtl_patchphy(tp, 0x14, 1 << 5);
2658 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002659
françois romieu4da19632011-01-03 15:07:55 +00002660 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002661}
2662
françois romieu4da19632011-01-03 15:07:55 +00002663static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002664{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002665 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002666 { 0x1f, 0x0001 },
2667 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002668 { 0x1f, 0x0002 },
2669 { 0x00, 0x88d4 },
2670 { 0x01, 0x82b1 },
2671 { 0x03, 0x7002 },
2672 { 0x08, 0x9e30 },
2673 { 0x09, 0x01f0 },
2674 { 0x0a, 0x5500 },
2675 { 0x0c, 0x00c8 },
2676 { 0x1f, 0x0003 },
2677 { 0x12, 0xc096 },
2678 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002679 { 0x1f, 0x0000 },
2680 { 0x1f, 0x0000 },
2681 { 0x09, 0x2000 },
2682 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002683 };
2684
françois romieu4da19632011-01-03 15:07:55 +00002685 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002686
françois romieu4da19632011-01-03 15:07:55 +00002687 rtl_patchphy(tp, 0x14, 1 << 5);
2688 rtl_patchphy(tp, 0x0d, 1 << 5);
2689 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002690}
2691
françois romieu4da19632011-01-03 15:07:55 +00002692static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002693{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002694 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002695 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002696 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002697 { 0x03, 0x802f },
2698 { 0x02, 0x4f02 },
2699 { 0x01, 0x0409 },
2700 { 0x00, 0xf099 },
2701 { 0x04, 0x9800 },
2702 { 0x04, 0x9000 },
2703 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002704 { 0x1f, 0x0002 },
2705 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002706 { 0x06, 0x0761 },
2707 { 0x1f, 0x0003 },
2708 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002709 { 0x1f, 0x0000 }
2710 };
2711
françois romieu4da19632011-01-03 15:07:55 +00002712 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002713
françois romieu4da19632011-01-03 15:07:55 +00002714 rtl_patchphy(tp, 0x16, 1 << 0);
2715 rtl_patchphy(tp, 0x14, 1 << 5);
2716 rtl_patchphy(tp, 0x0d, 1 << 5);
2717 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002718}
2719
françois romieu4da19632011-01-03 15:07:55 +00002720static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002721{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002722 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002723 { 0x1f, 0x0001 },
2724 { 0x12, 0x2300 },
2725 { 0x1d, 0x3d98 },
2726 { 0x1f, 0x0002 },
2727 { 0x0c, 0x7eb8 },
2728 { 0x06, 0x5461 },
2729 { 0x1f, 0x0003 },
2730 { 0x16, 0x0f0a },
2731 { 0x1f, 0x0000 }
2732 };
2733
françois romieu4da19632011-01-03 15:07:55 +00002734 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002735
françois romieu4da19632011-01-03 15:07:55 +00002736 rtl_patchphy(tp, 0x16, 1 << 0);
2737 rtl_patchphy(tp, 0x14, 1 << 5);
2738 rtl_patchphy(tp, 0x0d, 1 << 5);
2739 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002740}
2741
françois romieu4da19632011-01-03 15:07:55 +00002742static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002743{
françois romieu4da19632011-01-03 15:07:55 +00002744 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002745}
2746
françois romieubca03d52011-01-03 15:07:31 +00002747static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002748{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002749 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002750 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002751 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002752 { 0x06, 0x4064 },
2753 { 0x07, 0x2863 },
2754 { 0x08, 0x059c },
2755 { 0x09, 0x26b4 },
2756 { 0x0a, 0x6a19 },
2757 { 0x0b, 0xdcc8 },
2758 { 0x10, 0xf06d },
2759 { 0x14, 0x7f68 },
2760 { 0x18, 0x7fd9 },
2761 { 0x1c, 0xf0ff },
2762 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002763 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002764 { 0x12, 0xf49f },
2765 { 0x13, 0x070b },
2766 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002767 { 0x14, 0x94c0 },
2768
2769 /*
2770 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002771 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002772 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002773 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002774 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002775 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002776 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002777 { 0x06, 0x5561 },
2778
2779 /*
2780 * Can not link to 1Gbps with bad cable
2781 * Decrease SNR threshold form 21.07dB to 19.04dB
2782 */
2783 { 0x1f, 0x0001 },
2784 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002785
2786 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002787 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002788 };
2789
françois romieu4da19632011-01-03 15:07:55 +00002790 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002791
françois romieubca03d52011-01-03 15:07:31 +00002792 /*
2793 * Rx Error Issue
2794 * Fine Tune Switching regulator parameter
2795 */
françois romieu4da19632011-01-03 15:07:55 +00002796 rtl_writephy(tp, 0x1f, 0x0002);
2797 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2798 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002799
Francois Romieufdf6fc02012-07-06 22:40:38 +02002800 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002801 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002802 { 0x1f, 0x0002 },
2803 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002804 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002805 { 0x05, 0x8330 },
2806 { 0x06, 0x669a },
2807 { 0x1f, 0x0002 }
2808 };
2809 int val;
2810
françois romieu4da19632011-01-03 15:07:55 +00002811 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002812
françois romieu4da19632011-01-03 15:07:55 +00002813 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002814
2815 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002816 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002817 0x0065, 0x0066, 0x0067, 0x0068,
2818 0x0069, 0x006a, 0x006b, 0x006c
2819 };
2820 int i;
2821
françois romieu4da19632011-01-03 15:07:55 +00002822 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002823
2824 val &= 0xff00;
2825 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002826 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002827 }
2828 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002829 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002830 { 0x1f, 0x0002 },
2831 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002832 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002833 { 0x05, 0x8330 },
2834 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002835 };
2836
françois romieu4da19632011-01-03 15:07:55 +00002837 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002838 }
2839
françois romieubca03d52011-01-03 15:07:31 +00002840 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002841 rtl_writephy(tp, 0x1f, 0x0002);
2842 rtl_patchphy(tp, 0x0d, 0x0300);
2843 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002844
françois romieubca03d52011-01-03 15:07:31 +00002845 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002846 rtl_writephy(tp, 0x1f, 0x0002);
2847 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2848 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002849
françois romieu4da19632011-01-03 15:07:55 +00002850 rtl_writephy(tp, 0x1f, 0x0005);
2851 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002852
2853 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002854
françois romieu4da19632011-01-03 15:07:55 +00002855 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002856}
2857
françois romieubca03d52011-01-03 15:07:31 +00002858static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002859{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002860 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002861 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002862 { 0x1f, 0x0001 },
2863 { 0x06, 0x4064 },
2864 { 0x07, 0x2863 },
2865 { 0x08, 0x059c },
2866 { 0x09, 0x26b4 },
2867 { 0x0a, 0x6a19 },
2868 { 0x0b, 0xdcc8 },
2869 { 0x10, 0xf06d },
2870 { 0x14, 0x7f68 },
2871 { 0x18, 0x7fd9 },
2872 { 0x1c, 0xf0ff },
2873 { 0x1d, 0x3d9c },
2874 { 0x1f, 0x0003 },
2875 { 0x12, 0xf49f },
2876 { 0x13, 0x070b },
2877 { 0x1a, 0x05ad },
2878 { 0x14, 0x94c0 },
2879
françois romieubca03d52011-01-03 15:07:31 +00002880 /*
2881 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002882 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002883 */
françois romieudaf9df62009-10-07 12:44:20 +00002884 { 0x1f, 0x0002 },
2885 { 0x06, 0x5561 },
2886 { 0x1f, 0x0005 },
2887 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002888 { 0x06, 0x5561 },
2889
2890 /*
2891 * Can not link to 1Gbps with bad cable
2892 * Decrease SNR threshold form 21.07dB to 19.04dB
2893 */
2894 { 0x1f, 0x0001 },
2895 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002896
2897 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002898 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002899 };
2900
françois romieu4da19632011-01-03 15:07:55 +00002901 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002902
Francois Romieufdf6fc02012-07-06 22:40:38 +02002903 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002904 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002905 { 0x1f, 0x0002 },
2906 { 0x05, 0x669a },
2907 { 0x1f, 0x0005 },
2908 { 0x05, 0x8330 },
2909 { 0x06, 0x669a },
2910
2911 { 0x1f, 0x0002 }
2912 };
2913 int val;
2914
françois romieu4da19632011-01-03 15:07:55 +00002915 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002916
françois romieu4da19632011-01-03 15:07:55 +00002917 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002918 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002919 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002920 0x0065, 0x0066, 0x0067, 0x0068,
2921 0x0069, 0x006a, 0x006b, 0x006c
2922 };
2923 int i;
2924
françois romieu4da19632011-01-03 15:07:55 +00002925 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002926
2927 val &= 0xff00;
2928 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002929 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002930 }
2931 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002932 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002933 { 0x1f, 0x0002 },
2934 { 0x05, 0x2642 },
2935 { 0x1f, 0x0005 },
2936 { 0x05, 0x8330 },
2937 { 0x06, 0x2642 }
2938 };
2939
françois romieu4da19632011-01-03 15:07:55 +00002940 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002941 }
2942
françois romieubca03d52011-01-03 15:07:31 +00002943 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002944 rtl_writephy(tp, 0x1f, 0x0002);
2945 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2946 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002947
françois romieubca03d52011-01-03 15:07:31 +00002948 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002949 rtl_writephy(tp, 0x1f, 0x0002);
2950 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002951
françois romieu4da19632011-01-03 15:07:55 +00002952 rtl_writephy(tp, 0x1f, 0x0005);
2953 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002954
2955 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002956
françois romieu4da19632011-01-03 15:07:55 +00002957 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002958}
2959
françois romieu4da19632011-01-03 15:07:55 +00002960static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002961{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002962 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002963 { 0x1f, 0x0002 },
2964 { 0x10, 0x0008 },
2965 { 0x0d, 0x006c },
2966
2967 { 0x1f, 0x0000 },
2968 { 0x0d, 0xf880 },
2969
2970 { 0x1f, 0x0001 },
2971 { 0x17, 0x0cc0 },
2972
2973 { 0x1f, 0x0001 },
2974 { 0x0b, 0xa4d8 },
2975 { 0x09, 0x281c },
2976 { 0x07, 0x2883 },
2977 { 0x0a, 0x6b35 },
2978 { 0x1d, 0x3da4 },
2979 { 0x1c, 0xeffd },
2980 { 0x14, 0x7f52 },
2981 { 0x18, 0x7fc6 },
2982 { 0x08, 0x0601 },
2983 { 0x06, 0x4063 },
2984 { 0x10, 0xf074 },
2985 { 0x1f, 0x0003 },
2986 { 0x13, 0x0789 },
2987 { 0x12, 0xf4bd },
2988 { 0x1a, 0x04fd },
2989 { 0x14, 0x84b0 },
2990 { 0x1f, 0x0000 },
2991 { 0x00, 0x9200 },
2992
2993 { 0x1f, 0x0005 },
2994 { 0x01, 0x0340 },
2995 { 0x1f, 0x0001 },
2996 { 0x04, 0x4000 },
2997 { 0x03, 0x1d21 },
2998 { 0x02, 0x0c32 },
2999 { 0x01, 0x0200 },
3000 { 0x00, 0x5554 },
3001 { 0x04, 0x4800 },
3002 { 0x04, 0x4000 },
3003 { 0x04, 0xf000 },
3004 { 0x03, 0xdf01 },
3005 { 0x02, 0xdf20 },
3006 { 0x01, 0x101a },
3007 { 0x00, 0xa0ff },
3008 { 0x04, 0xf800 },
3009 { 0x04, 0xf000 },
3010 { 0x1f, 0x0000 },
3011
3012 { 0x1f, 0x0007 },
3013 { 0x1e, 0x0023 },
3014 { 0x16, 0x0000 },
3015 { 0x1f, 0x0000 }
3016 };
3017
françois romieu4da19632011-01-03 15:07:55 +00003018 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003019}
3020
françois romieue6de30d2011-01-03 15:08:37 +00003021static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
3022{
3023 static const struct phy_reg phy_reg_init[] = {
3024 { 0x1f, 0x0001 },
3025 { 0x17, 0x0cc0 },
3026
3027 { 0x1f, 0x0007 },
3028 { 0x1e, 0x002d },
3029 { 0x18, 0x0040 },
3030 { 0x1f, 0x0000 }
3031 };
3032
3033 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3034 rtl_patchphy(tp, 0x0d, 1 << 5);
3035}
3036
Hayes Wang70090422011-07-06 15:58:06 +08003037static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00003038{
3039 static const struct phy_reg phy_reg_init[] = {
3040 /* Enable Delay cap */
3041 { 0x1f, 0x0005 },
3042 { 0x05, 0x8b80 },
3043 { 0x06, 0xc896 },
3044 { 0x1f, 0x0000 },
3045
3046 /* Channel estimation fine tune */
3047 { 0x1f, 0x0001 },
3048 { 0x0b, 0x6c20 },
3049 { 0x07, 0x2872 },
3050 { 0x1c, 0xefff },
3051 { 0x1f, 0x0003 },
3052 { 0x14, 0x6420 },
3053 { 0x1f, 0x0000 },
3054
3055 /* Update PFM & 10M TX idle timer */
3056 { 0x1f, 0x0007 },
3057 { 0x1e, 0x002f },
3058 { 0x15, 0x1919 },
3059 { 0x1f, 0x0000 },
3060
3061 { 0x1f, 0x0007 },
3062 { 0x1e, 0x00ac },
3063 { 0x18, 0x0006 },
3064 { 0x1f, 0x0000 }
3065 };
3066
Francois Romieu15ecd032011-04-27 13:52:22 -07003067 rtl_apply_firmware(tp);
3068
hayeswang01dc7fe2011-03-21 01:50:28 +00003069 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3070
3071 /* DCO enable for 10M IDLE Power */
3072 rtl_writephy(tp, 0x1f, 0x0007);
3073 rtl_writephy(tp, 0x1e, 0x0023);
3074 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
3075 rtl_writephy(tp, 0x1f, 0x0000);
3076
3077 /* For impedance matching */
3078 rtl_writephy(tp, 0x1f, 0x0002);
3079 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003080 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003081
3082 /* PHY auto speed down */
3083 rtl_writephy(tp, 0x1f, 0x0007);
3084 rtl_writephy(tp, 0x1e, 0x002d);
3085 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
3086 rtl_writephy(tp, 0x1f, 0x0000);
3087 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3088
3089 rtl_writephy(tp, 0x1f, 0x0005);
3090 rtl_writephy(tp, 0x05, 0x8b86);
3091 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3092 rtl_writephy(tp, 0x1f, 0x0000);
3093
3094 rtl_writephy(tp, 0x1f, 0x0005);
3095 rtl_writephy(tp, 0x05, 0x8b85);
3096 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3097 rtl_writephy(tp, 0x1f, 0x0007);
3098 rtl_writephy(tp, 0x1e, 0x0020);
3099 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
3100 rtl_writephy(tp, 0x1f, 0x0006);
3101 rtl_writephy(tp, 0x00, 0x5a00);
3102 rtl_writephy(tp, 0x1f, 0x0000);
3103 rtl_writephy(tp, 0x0d, 0x0007);
3104 rtl_writephy(tp, 0x0e, 0x003c);
3105 rtl_writephy(tp, 0x0d, 0x4007);
3106 rtl_writephy(tp, 0x0e, 0x0000);
3107 rtl_writephy(tp, 0x0d, 0x0000);
3108}
3109
françois romieu9ecb9aa2012-12-07 11:20:21 +00003110static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3111{
3112 const u16 w[] = {
3113 addr[0] | (addr[1] << 8),
3114 addr[2] | (addr[3] << 8),
3115 addr[4] | (addr[5] << 8)
3116 };
3117 const struct exgmac_reg e[] = {
3118 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3119 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3120 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3121 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3122 };
3123
3124 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3125}
3126
Hayes Wang70090422011-07-06 15:58:06 +08003127static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3128{
3129 static const struct phy_reg phy_reg_init[] = {
3130 /* Enable Delay cap */
3131 { 0x1f, 0x0004 },
3132 { 0x1f, 0x0007 },
3133 { 0x1e, 0x00ac },
3134 { 0x18, 0x0006 },
3135 { 0x1f, 0x0002 },
3136 { 0x1f, 0x0000 },
3137 { 0x1f, 0x0000 },
3138
3139 /* Channel estimation fine tune */
3140 { 0x1f, 0x0003 },
3141 { 0x09, 0xa20f },
3142 { 0x1f, 0x0000 },
3143 { 0x1f, 0x0000 },
3144
3145 /* Green Setting */
3146 { 0x1f, 0x0005 },
3147 { 0x05, 0x8b5b },
3148 { 0x06, 0x9222 },
3149 { 0x05, 0x8b6d },
3150 { 0x06, 0x8000 },
3151 { 0x05, 0x8b76 },
3152 { 0x06, 0x8000 },
3153 { 0x1f, 0x0000 }
3154 };
3155
3156 rtl_apply_firmware(tp);
3157
3158 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3159
3160 /* For 4-corner performance improve */
3161 rtl_writephy(tp, 0x1f, 0x0005);
3162 rtl_writephy(tp, 0x05, 0x8b80);
3163 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
3164 rtl_writephy(tp, 0x1f, 0x0000);
3165
3166 /* PHY auto speed down */
3167 rtl_writephy(tp, 0x1f, 0x0004);
3168 rtl_writephy(tp, 0x1f, 0x0007);
3169 rtl_writephy(tp, 0x1e, 0x002d);
3170 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3171 rtl_writephy(tp, 0x1f, 0x0002);
3172 rtl_writephy(tp, 0x1f, 0x0000);
3173 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3174
3175 /* improve 10M EEE waveform */
3176 rtl_writephy(tp, 0x1f, 0x0005);
3177 rtl_writephy(tp, 0x05, 0x8b86);
3178 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3179 rtl_writephy(tp, 0x1f, 0x0000);
3180
3181 /* Improve 2-pair detection performance */
3182 rtl_writephy(tp, 0x1f, 0x0005);
3183 rtl_writephy(tp, 0x05, 0x8b85);
3184 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3185 rtl_writephy(tp, 0x1f, 0x0000);
3186
3187 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003188 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08003189 rtl_writephy(tp, 0x1f, 0x0005);
3190 rtl_writephy(tp, 0x05, 0x8b85);
3191 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3192 rtl_writephy(tp, 0x1f, 0x0004);
3193 rtl_writephy(tp, 0x1f, 0x0007);
3194 rtl_writephy(tp, 0x1e, 0x0020);
David S. Miller1805b2f2011-10-24 18:18:09 -04003195 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003196 rtl_writephy(tp, 0x1f, 0x0002);
3197 rtl_writephy(tp, 0x1f, 0x0000);
3198 rtl_writephy(tp, 0x0d, 0x0007);
3199 rtl_writephy(tp, 0x0e, 0x003c);
3200 rtl_writephy(tp, 0x0d, 0x4007);
3201 rtl_writephy(tp, 0x0e, 0x0000);
3202 rtl_writephy(tp, 0x0d, 0x0000);
3203
3204 /* Green feature */
3205 rtl_writephy(tp, 0x1f, 0x0003);
3206 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3207 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3208 rtl_writephy(tp, 0x1f, 0x0000);
hayeswange0c07552012-10-23 20:24:03 +00003209
françois romieu9ecb9aa2012-12-07 11:20:21 +00003210 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3211 rtl_rar_exgmac_set(tp, tp->dev->dev_addr);
Hayes Wang70090422011-07-06 15:58:06 +08003212}
3213
Hayes Wang5f886e02012-03-30 14:33:03 +08003214static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3215{
3216 /* For 4-corner performance improve */
3217 rtl_writephy(tp, 0x1f, 0x0005);
3218 rtl_writephy(tp, 0x05, 0x8b80);
3219 rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3220 rtl_writephy(tp, 0x1f, 0x0000);
3221
3222 /* PHY auto speed down */
3223 rtl_writephy(tp, 0x1f, 0x0007);
3224 rtl_writephy(tp, 0x1e, 0x002d);
3225 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3226 rtl_writephy(tp, 0x1f, 0x0000);
3227 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3228
3229 /* Improve 10M EEE waveform */
3230 rtl_writephy(tp, 0x1f, 0x0005);
3231 rtl_writephy(tp, 0x05, 0x8b86);
3232 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3233 rtl_writephy(tp, 0x1f, 0x0000);
3234}
3235
Hayes Wangc2218922011-09-06 16:55:18 +08003236static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3237{
3238 static const struct phy_reg phy_reg_init[] = {
3239 /* Channel estimation fine tune */
3240 { 0x1f, 0x0003 },
3241 { 0x09, 0xa20f },
3242 { 0x1f, 0x0000 },
3243
3244 /* Modify green table for giga & fnet */
3245 { 0x1f, 0x0005 },
3246 { 0x05, 0x8b55 },
3247 { 0x06, 0x0000 },
3248 { 0x05, 0x8b5e },
3249 { 0x06, 0x0000 },
3250 { 0x05, 0x8b67 },
3251 { 0x06, 0x0000 },
3252 { 0x05, 0x8b70 },
3253 { 0x06, 0x0000 },
3254 { 0x1f, 0x0000 },
3255 { 0x1f, 0x0007 },
3256 { 0x1e, 0x0078 },
3257 { 0x17, 0x0000 },
3258 { 0x19, 0x00fb },
3259 { 0x1f, 0x0000 },
3260
3261 /* Modify green table for 10M */
3262 { 0x1f, 0x0005 },
3263 { 0x05, 0x8b79 },
3264 { 0x06, 0xaa00 },
3265 { 0x1f, 0x0000 },
3266
3267 /* Disable hiimpedance detection (RTCT) */
3268 { 0x1f, 0x0003 },
3269 { 0x01, 0x328a },
3270 { 0x1f, 0x0000 }
3271 };
3272
3273 rtl_apply_firmware(tp);
3274
3275 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3276
Hayes Wang5f886e02012-03-30 14:33:03 +08003277 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003278
3279 /* Improve 2-pair detection performance */
3280 rtl_writephy(tp, 0x1f, 0x0005);
3281 rtl_writephy(tp, 0x05, 0x8b85);
3282 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3283 rtl_writephy(tp, 0x1f, 0x0000);
3284}
3285
3286static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3287{
3288 rtl_apply_firmware(tp);
3289
Hayes Wang5f886e02012-03-30 14:33:03 +08003290 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003291}
3292
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003293static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3294{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003295 static const struct phy_reg phy_reg_init[] = {
3296 /* Channel estimation fine tune */
3297 { 0x1f, 0x0003 },
3298 { 0x09, 0xa20f },
3299 { 0x1f, 0x0000 },
3300
3301 /* Modify green table for giga & fnet */
3302 { 0x1f, 0x0005 },
3303 { 0x05, 0x8b55 },
3304 { 0x06, 0x0000 },
3305 { 0x05, 0x8b5e },
3306 { 0x06, 0x0000 },
3307 { 0x05, 0x8b67 },
3308 { 0x06, 0x0000 },
3309 { 0x05, 0x8b70 },
3310 { 0x06, 0x0000 },
3311 { 0x1f, 0x0000 },
3312 { 0x1f, 0x0007 },
3313 { 0x1e, 0x0078 },
3314 { 0x17, 0x0000 },
3315 { 0x19, 0x00aa },
3316 { 0x1f, 0x0000 },
3317
3318 /* Modify green table for 10M */
3319 { 0x1f, 0x0005 },
3320 { 0x05, 0x8b79 },
3321 { 0x06, 0xaa00 },
3322 { 0x1f, 0x0000 },
3323
3324 /* Disable hiimpedance detection (RTCT) */
3325 { 0x1f, 0x0003 },
3326 { 0x01, 0x328a },
3327 { 0x1f, 0x0000 }
3328 };
3329
3330
3331 rtl_apply_firmware(tp);
3332
3333 rtl8168f_hw_phy_config(tp);
3334
3335 /* Improve 2-pair detection performance */
3336 rtl_writephy(tp, 0x1f, 0x0005);
3337 rtl_writephy(tp, 0x05, 0x8b85);
3338 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3339 rtl_writephy(tp, 0x1f, 0x0000);
3340
3341 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3342
3343 /* Modify green table for giga */
3344 rtl_writephy(tp, 0x1f, 0x0005);
3345 rtl_writephy(tp, 0x05, 0x8b54);
3346 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3347 rtl_writephy(tp, 0x05, 0x8b5d);
3348 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3349 rtl_writephy(tp, 0x05, 0x8a7c);
3350 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3351 rtl_writephy(tp, 0x05, 0x8a7f);
3352 rtl_w1w0_phy(tp, 0x06, 0x0100, 0x0000);
3353 rtl_writephy(tp, 0x05, 0x8a82);
3354 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3355 rtl_writephy(tp, 0x05, 0x8a85);
3356 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3357 rtl_writephy(tp, 0x05, 0x8a88);
3358 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3359 rtl_writephy(tp, 0x1f, 0x0000);
3360
3361 /* uc same-seed solution */
3362 rtl_writephy(tp, 0x1f, 0x0005);
3363 rtl_writephy(tp, 0x05, 0x8b85);
3364 rtl_w1w0_phy(tp, 0x06, 0x8000, 0x0000);
3365 rtl_writephy(tp, 0x1f, 0x0000);
3366
3367 /* eee setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003368 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003369 rtl_writephy(tp, 0x1f, 0x0005);
3370 rtl_writephy(tp, 0x05, 0x8b85);
3371 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3372 rtl_writephy(tp, 0x1f, 0x0004);
3373 rtl_writephy(tp, 0x1f, 0x0007);
3374 rtl_writephy(tp, 0x1e, 0x0020);
3375 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
3376 rtl_writephy(tp, 0x1f, 0x0000);
3377 rtl_writephy(tp, 0x0d, 0x0007);
3378 rtl_writephy(tp, 0x0e, 0x003c);
3379 rtl_writephy(tp, 0x0d, 0x4007);
3380 rtl_writephy(tp, 0x0e, 0x0000);
3381 rtl_writephy(tp, 0x0d, 0x0000);
3382
3383 /* Green feature */
3384 rtl_writephy(tp, 0x1f, 0x0003);
3385 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3386 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3387 rtl_writephy(tp, 0x1f, 0x0000);
3388}
3389
Hayes Wangc5583862012-07-02 17:23:22 +08003390static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp)
3391{
Hayes Wangc5583862012-07-02 17:23:22 +08003392 rtl_apply_firmware(tp);
3393
hayeswang41f44d12013-04-01 22:23:36 +00003394 rtl_writephy(tp, 0x1f, 0x0a46);
3395 if (rtl_readphy(tp, 0x10) & 0x0100) {
3396 rtl_writephy(tp, 0x1f, 0x0bcc);
3397 rtl_w1w0_phy(tp, 0x12, 0x0000, 0x8000);
3398 } else {
3399 rtl_writephy(tp, 0x1f, 0x0bcc);
3400 rtl_w1w0_phy(tp, 0x12, 0x8000, 0x0000);
3401 }
Hayes Wangc5583862012-07-02 17:23:22 +08003402
hayeswang41f44d12013-04-01 22:23:36 +00003403 rtl_writephy(tp, 0x1f, 0x0a46);
3404 if (rtl_readphy(tp, 0x13) & 0x0100) {
3405 rtl_writephy(tp, 0x1f, 0x0c41);
3406 rtl_w1w0_phy(tp, 0x15, 0x0002, 0x0000);
3407 } else {
hayeswangfe7524c2013-04-01 22:23:37 +00003408 rtl_writephy(tp, 0x1f, 0x0c41);
3409 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0002);
hayeswang41f44d12013-04-01 22:23:36 +00003410 }
Hayes Wangc5583862012-07-02 17:23:22 +08003411
hayeswang41f44d12013-04-01 22:23:36 +00003412 /* Enable PHY auto speed down */
3413 rtl_writephy(tp, 0x1f, 0x0a44);
3414 rtl_w1w0_phy(tp, 0x11, 0x000c, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003415
hayeswangfe7524c2013-04-01 22:23:37 +00003416 rtl_writephy(tp, 0x1f, 0x0bcc);
3417 rtl_w1w0_phy(tp, 0x14, 0x0100, 0x0000);
3418 rtl_writephy(tp, 0x1f, 0x0a44);
3419 rtl_w1w0_phy(tp, 0x11, 0x00c0, 0x0000);
3420 rtl_writephy(tp, 0x1f, 0x0a43);
3421 rtl_writephy(tp, 0x13, 0x8084);
3422 rtl_w1w0_phy(tp, 0x14, 0x0000, 0x6000);
3423 rtl_w1w0_phy(tp, 0x10, 0x1003, 0x0000);
3424
hayeswang41f44d12013-04-01 22:23:36 +00003425 /* EEE auto-fallback function */
3426 rtl_writephy(tp, 0x1f, 0x0a4b);
3427 rtl_w1w0_phy(tp, 0x11, 0x0004, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003428
hayeswang41f44d12013-04-01 22:23:36 +00003429 /* Enable UC LPF tune function */
3430 rtl_writephy(tp, 0x1f, 0x0a43);
3431 rtl_writephy(tp, 0x13, 0x8012);
3432 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3433
3434 rtl_writephy(tp, 0x1f, 0x0c42);
3435 rtl_w1w0_phy(tp, 0x11, 0x4000, 0x2000);
3436
hayeswangfe7524c2013-04-01 22:23:37 +00003437 /* Improve SWR Efficiency */
3438 rtl_writephy(tp, 0x1f, 0x0bcd);
3439 rtl_writephy(tp, 0x14, 0x5065);
3440 rtl_writephy(tp, 0x14, 0xd065);
3441 rtl_writephy(tp, 0x1f, 0x0bc8);
3442 rtl_writephy(tp, 0x11, 0x5655);
3443 rtl_writephy(tp, 0x1f, 0x0bcd);
3444 rtl_writephy(tp, 0x14, 0x1065);
3445 rtl_writephy(tp, 0x14, 0x9065);
3446 rtl_writephy(tp, 0x14, 0x1065);
3447
hayeswang41f44d12013-04-01 22:23:36 +00003448 rtl_writephy(tp, 0x1f, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003449}
3450
hayeswang57538c42013-04-01 22:23:40 +00003451static void rtl8168g_2_hw_phy_config(struct rtl8169_private *tp)
3452{
3453 rtl_apply_firmware(tp);
3454}
3455
françois romieu4da19632011-01-03 15:07:55 +00003456static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02003457{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003458 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003459 { 0x1f, 0x0003 },
3460 { 0x08, 0x441d },
3461 { 0x01, 0x9100 },
3462 { 0x1f, 0x0000 }
3463 };
3464
françois romieu4da19632011-01-03 15:07:55 +00003465 rtl_writephy(tp, 0x1f, 0x0000);
3466 rtl_patchphy(tp, 0x11, 1 << 12);
3467 rtl_patchphy(tp, 0x19, 1 << 13);
3468 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003469
françois romieu4da19632011-01-03 15:07:55 +00003470 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02003471}
3472
Hayes Wang5a5e4442011-02-22 17:26:21 +08003473static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
3474{
3475 static const struct phy_reg phy_reg_init[] = {
3476 { 0x1f, 0x0005 },
3477 { 0x1a, 0x0000 },
3478 { 0x1f, 0x0000 },
3479
3480 { 0x1f, 0x0004 },
3481 { 0x1c, 0x0000 },
3482 { 0x1f, 0x0000 },
3483
3484 { 0x1f, 0x0001 },
3485 { 0x15, 0x7701 },
3486 { 0x1f, 0x0000 }
3487 };
3488
3489 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01003490 rtl_writephy(tp, 0x1f, 0x0000);
3491 rtl_writephy(tp, 0x18, 0x0310);
3492 msleep(100);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003493
François Romieu953a12c2011-04-24 17:38:48 +02003494 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003495
3496 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3497}
3498
Hayes Wang7e18dca2012-03-30 14:33:02 +08003499static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
3500{
Hayes Wang7e18dca2012-03-30 14:33:02 +08003501 /* Disable ALDPS before setting firmware */
Francois Romieueef63cc2013-02-08 23:43:20 +01003502 rtl_writephy(tp, 0x1f, 0x0000);
3503 rtl_writephy(tp, 0x18, 0x0310);
3504 msleep(20);
Hayes Wang7e18dca2012-03-30 14:33:02 +08003505
3506 rtl_apply_firmware(tp);
3507
3508 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003509 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08003510 rtl_writephy(tp, 0x1f, 0x0004);
3511 rtl_writephy(tp, 0x10, 0x401f);
3512 rtl_writephy(tp, 0x19, 0x7030);
3513 rtl_writephy(tp, 0x1f, 0x0000);
3514}
3515
Hayes Wang5598bfe2012-07-02 17:23:21 +08003516static void rtl8106e_hw_phy_config(struct rtl8169_private *tp)
3517{
Hayes Wang5598bfe2012-07-02 17:23:21 +08003518 static const struct phy_reg phy_reg_init[] = {
3519 { 0x1f, 0x0004 },
3520 { 0x10, 0xc07f },
3521 { 0x19, 0x7030 },
3522 { 0x1f, 0x0000 }
3523 };
3524
3525 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01003526 rtl_writephy(tp, 0x1f, 0x0000);
3527 rtl_writephy(tp, 0x18, 0x0310);
3528 msleep(100);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003529
3530 rtl_apply_firmware(tp);
3531
Francois Romieufdf6fc02012-07-06 22:40:38 +02003532 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003533 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3534
Francois Romieufdf6fc02012-07-06 22:40:38 +02003535 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003536}
3537
Francois Romieu5615d9f2007-08-17 17:50:46 +02003538static void rtl_hw_phy_config(struct net_device *dev)
3539{
3540 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003541
3542 rtl8169_print_mac_version(tp);
3543
3544 switch (tp->mac_version) {
3545 case RTL_GIGA_MAC_VER_01:
3546 break;
3547 case RTL_GIGA_MAC_VER_02:
3548 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00003549 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003550 break;
3551 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00003552 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003553 break;
françois romieu2e9558562009-08-10 19:44:19 +00003554 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00003555 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00003556 break;
françois romieu8c7006a2009-08-10 19:43:29 +00003557 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00003558 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00003559 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02003560 case RTL_GIGA_MAC_VER_07:
3561 case RTL_GIGA_MAC_VER_08:
3562 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00003563 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003564 break;
Francois Romieu236b8082008-05-30 16:11:48 +02003565 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00003566 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003567 break;
3568 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00003569 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003570 break;
3571 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00003572 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003573 break;
Francois Romieu867763c2007-08-17 18:21:58 +02003574 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00003575 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003576 break;
3577 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00003578 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003579 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02003580 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00003581 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003582 break;
Francois Romieu197ff762008-06-28 13:16:02 +02003583 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00003584 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02003585 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02003586 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00003587 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003588 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003589 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003590 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00003591 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02003592 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02003593 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00003594 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003595 break;
3596 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00003597 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003598 break;
3599 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00003600 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02003601 break;
françois romieue6de30d2011-01-03 15:08:37 +00003602 case RTL_GIGA_MAC_VER_28:
3603 rtl8168d_4_hw_phy_config(tp);
3604 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08003605 case RTL_GIGA_MAC_VER_29:
3606 case RTL_GIGA_MAC_VER_30:
3607 rtl8105e_hw_phy_config(tp);
3608 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02003609 case RTL_GIGA_MAC_VER_31:
3610 /* None. */
3611 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00003612 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00003613 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003614 rtl8168e_1_hw_phy_config(tp);
3615 break;
3616 case RTL_GIGA_MAC_VER_34:
3617 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00003618 break;
Hayes Wangc2218922011-09-06 16:55:18 +08003619 case RTL_GIGA_MAC_VER_35:
3620 rtl8168f_1_hw_phy_config(tp);
3621 break;
3622 case RTL_GIGA_MAC_VER_36:
3623 rtl8168f_2_hw_phy_config(tp);
3624 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003625
Hayes Wang7e18dca2012-03-30 14:33:02 +08003626 case RTL_GIGA_MAC_VER_37:
3627 rtl8402_hw_phy_config(tp);
3628 break;
3629
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003630 case RTL_GIGA_MAC_VER_38:
3631 rtl8411_hw_phy_config(tp);
3632 break;
3633
Hayes Wang5598bfe2012-07-02 17:23:21 +08003634 case RTL_GIGA_MAC_VER_39:
3635 rtl8106e_hw_phy_config(tp);
3636 break;
3637
Hayes Wangc5583862012-07-02 17:23:22 +08003638 case RTL_GIGA_MAC_VER_40:
3639 rtl8168g_1_hw_phy_config(tp);
3640 break;
hayeswang57538c42013-04-01 22:23:40 +00003641 case RTL_GIGA_MAC_VER_42:
3642 rtl8168g_2_hw_phy_config(tp);
3643 break;
Hayes Wangc5583862012-07-02 17:23:22 +08003644
3645 case RTL_GIGA_MAC_VER_41:
Francois Romieu5615d9f2007-08-17 17:50:46 +02003646 default:
3647 break;
3648 }
3649}
3650
Francois Romieuda78dbf2012-01-26 14:18:23 +01003651static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 struct timer_list *timer = &tp->timer;
3654 void __iomem *ioaddr = tp->mmio_addr;
3655 unsigned long timeout = RTL8169_PHY_TIMEOUT;
3656
Francois Romieubcf0bf92006-07-26 23:14:13 +02003657 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
françois romieu4da19632011-01-03 15:07:55 +00003659 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02003660 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 * A busy loop could burn quite a few cycles on nowadays CPU.
3662 * Let's delay the execution of the timer for a few ticks.
3663 */
3664 timeout = HZ/10;
3665 goto out_mod_timer;
3666 }
3667
3668 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01003669 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
Francois Romieuda78dbf2012-01-26 14:18:23 +01003671 netif_warn(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
françois romieu4da19632011-01-03 15:07:55 +00003673 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
3675out_mod_timer:
3676 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003677}
3678
3679static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
3680{
Francois Romieuda78dbf2012-01-26 14:18:23 +01003681 if (!test_and_set_bit(flag, tp->wk.flags))
3682 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003683}
3684
3685static void rtl8169_phy_timer(unsigned long __opaque)
3686{
3687 struct net_device *dev = (struct net_device *)__opaque;
3688 struct rtl8169_private *tp = netdev_priv(dev);
3689
Francois Romieu98ddf982012-01-31 10:47:34 +01003690 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691}
3692
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
3694 void __iomem *ioaddr)
3695{
3696 iounmap(ioaddr);
3697 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003698 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 pci_disable_device(pdev);
3700 free_netdev(dev);
3701}
3702
Francois Romieuffc46952012-07-06 14:19:23 +02003703DECLARE_RTL_COND(rtl_phy_reset_cond)
3704{
3705 return tp->phy_reset_pending(tp);
3706}
3707
Francois Romieubf793292006-11-01 00:53:05 +01003708static void rtl8169_phy_reset(struct net_device *dev,
3709 struct rtl8169_private *tp)
3710{
françois romieu4da19632011-01-03 15:07:55 +00003711 tp->phy_reset_enable(tp);
Francois Romieuffc46952012-07-06 14:19:23 +02003712 rtl_msleep_loop_wait_low(tp, &rtl_phy_reset_cond, 1, 100);
Francois Romieubf793292006-11-01 00:53:05 +01003713}
3714
David S. Miller8decf862011-09-22 03:23:13 -04003715static bool rtl_tbi_enabled(struct rtl8169_private *tp)
3716{
3717 void __iomem *ioaddr = tp->mmio_addr;
3718
3719 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
3720 (RTL_R8(PHYstatus) & TBI_Enable);
3721}
3722
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003723static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003725 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003726
Francois Romieu5615d9f2007-08-17 17:50:46 +02003727 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003728
Marcus Sundberg773328942008-07-10 21:28:08 +02003729 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
3730 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3731 RTL_W8(0x82, 0x01);
3732 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003733
Francois Romieu6dccd162007-02-13 23:38:05 +01003734 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
3735
3736 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3737 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003738
Francois Romieubcf0bf92006-07-26 23:14:13 +02003739 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003740 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3741 RTL_W8(0x82, 0x01);
3742 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00003743 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003744 }
3745
Francois Romieubf793292006-11-01 00:53:05 +01003746 rtl8169_phy_reset(dev, tp);
3747
Oliver Neukum54405cd2011-01-06 21:55:13 +01003748 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02003749 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3750 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3751 (tp->mii.supports_gmii ?
3752 ADVERTISED_1000baseT_Half |
3753 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003754
David S. Miller8decf862011-09-22 03:23:13 -04003755 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00003756 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003757}
3758
Francois Romieu773d2022007-01-31 23:47:43 +01003759static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
3760{
3761 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu773d2022007-01-31 23:47:43 +01003762
Francois Romieuda78dbf2012-01-26 14:18:23 +01003763 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003764
3765 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00003766
françois romieu9ecb9aa2012-12-07 11:20:21 +00003767 RTL_W32(MAC4, addr[4] | addr[5] << 8);
françois romieu908ba2b2010-04-26 11:42:58 +00003768 RTL_R32(MAC4);
3769
françois romieu9ecb9aa2012-12-07 11:20:21 +00003770 RTL_W32(MAC0, addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
françois romieu908ba2b2010-04-26 11:42:58 +00003771 RTL_R32(MAC0);
3772
françois romieu9ecb9aa2012-12-07 11:20:21 +00003773 if (tp->mac_version == RTL_GIGA_MAC_VER_34)
3774 rtl_rar_exgmac_set(tp, addr);
françois romieuc28aa382011-08-02 03:53:43 +00003775
Francois Romieu773d2022007-01-31 23:47:43 +01003776 RTL_W8(Cfg9346, Cfg9346_Lock);
3777
Francois Romieuda78dbf2012-01-26 14:18:23 +01003778 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003779}
3780
3781static int rtl_set_mac_address(struct net_device *dev, void *p)
3782{
3783 struct rtl8169_private *tp = netdev_priv(dev);
3784 struct sockaddr *addr = p;
3785
3786 if (!is_valid_ether_addr(addr->sa_data))
3787 return -EADDRNOTAVAIL;
3788
3789 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3790
3791 rtl_rar_set(tp, dev->dev_addr);
3792
3793 return 0;
3794}
3795
Francois Romieu5f787a12006-08-17 13:02:36 +02003796static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3797{
3798 struct rtl8169_private *tp = netdev_priv(dev);
3799 struct mii_ioctl_data *data = if_mii(ifr);
3800
Francois Romieu8b4ab282008-11-19 22:05:25 -08003801 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
3802}
Francois Romieu5f787a12006-08-17 13:02:36 +02003803
Francois Romieucecb5fd2011-04-01 10:21:07 +02003804static int rtl_xmii_ioctl(struct rtl8169_private *tp,
3805 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08003806{
Francois Romieu5f787a12006-08-17 13:02:36 +02003807 switch (cmd) {
3808 case SIOCGMIIPHY:
3809 data->phy_id = 32; /* Internal PHY */
3810 return 0;
3811
3812 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003813 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02003814 return 0;
3815
3816 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003817 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02003818 return 0;
3819 }
3820 return -EOPNOTSUPP;
3821}
3822
Francois Romieu8b4ab282008-11-19 22:05:25 -08003823static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3824{
3825 return -EOPNOTSUPP;
3826}
3827
Francois Romieufbac58f2007-10-04 22:51:38 +02003828static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3829{
3830 if (tp->features & RTL_FEATURE_MSI) {
3831 pci_disable_msi(pdev);
3832 tp->features &= ~RTL_FEATURE_MSI;
3833 }
3834}
3835
Bill Pembertonbaf63292012-12-03 09:23:28 -05003836static void rtl_init_mdio_ops(struct rtl8169_private *tp)
françois romieuc0e45c12011-01-03 15:08:04 +00003837{
3838 struct mdio_ops *ops = &tp->mdio_ops;
3839
3840 switch (tp->mac_version) {
3841 case RTL_GIGA_MAC_VER_27:
3842 ops->write = r8168dp_1_mdio_write;
3843 ops->read = r8168dp_1_mdio_read;
3844 break;
françois romieue6de30d2011-01-03 15:08:37 +00003845 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003846 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003847 ops->write = r8168dp_2_mdio_write;
3848 ops->read = r8168dp_2_mdio_read;
3849 break;
Hayes Wangc5583862012-07-02 17:23:22 +08003850 case RTL_GIGA_MAC_VER_40:
3851 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00003852 case RTL_GIGA_MAC_VER_42:
Hayes Wangc5583862012-07-02 17:23:22 +08003853 ops->write = r8168g_mdio_write;
3854 ops->read = r8168g_mdio_read;
3855 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003856 default:
3857 ops->write = r8169_mdio_write;
3858 ops->read = r8169_mdio_read;
3859 break;
3860 }
3861}
3862
David S. Miller1805b2f2011-10-24 18:18:09 -04003863static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
3864{
3865 void __iomem *ioaddr = tp->mmio_addr;
3866
3867 switch (tp->mac_version) {
Cyril Bruleboisb00e69d2012-10-31 14:00:46 +00003868 case RTL_GIGA_MAC_VER_25:
3869 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04003870 case RTL_GIGA_MAC_VER_29:
3871 case RTL_GIGA_MAC_VER_30:
3872 case RTL_GIGA_MAC_VER_32:
3873 case RTL_GIGA_MAC_VER_33:
3874 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08003875 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003876 case RTL_GIGA_MAC_VER_38:
Hayes Wang5598bfe2012-07-02 17:23:21 +08003877 case RTL_GIGA_MAC_VER_39:
Hayes Wangc5583862012-07-02 17:23:22 +08003878 case RTL_GIGA_MAC_VER_40:
3879 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00003880 case RTL_GIGA_MAC_VER_42:
David S. Miller1805b2f2011-10-24 18:18:09 -04003881 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3882 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3883 break;
3884 default:
3885 break;
3886 }
3887}
3888
3889static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
3890{
3891 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
3892 return false;
3893
3894 rtl_writephy(tp, 0x1f, 0x0000);
3895 rtl_writephy(tp, MII_BMCR, 0x0000);
3896
3897 rtl_wol_suspend_quirk(tp);
3898
3899 return true;
3900}
3901
françois romieu065c27c2011-01-03 15:08:12 +00003902static void r810x_phy_power_down(struct rtl8169_private *tp)
3903{
3904 rtl_writephy(tp, 0x1f, 0x0000);
3905 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3906}
3907
3908static void r810x_phy_power_up(struct rtl8169_private *tp)
3909{
3910 rtl_writephy(tp, 0x1f, 0x0000);
3911 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3912}
3913
3914static void r810x_pll_power_down(struct rtl8169_private *tp)
3915{
Hayes Wang00042992012-03-30 14:33:00 +08003916 void __iomem *ioaddr = tp->mmio_addr;
3917
David S. Miller1805b2f2011-10-24 18:18:09 -04003918 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003919 return;
françois romieu065c27c2011-01-03 15:08:12 +00003920
3921 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003922
3923 switch (tp->mac_version) {
3924 case RTL_GIGA_MAC_VER_07:
3925 case RTL_GIGA_MAC_VER_08:
3926 case RTL_GIGA_MAC_VER_09:
3927 case RTL_GIGA_MAC_VER_10:
3928 case RTL_GIGA_MAC_VER_13:
3929 case RTL_GIGA_MAC_VER_16:
3930 break;
3931 default:
3932 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3933 break;
3934 }
françois romieu065c27c2011-01-03 15:08:12 +00003935}
3936
3937static void r810x_pll_power_up(struct rtl8169_private *tp)
3938{
Hayes Wang00042992012-03-30 14:33:00 +08003939 void __iomem *ioaddr = tp->mmio_addr;
3940
françois romieu065c27c2011-01-03 15:08:12 +00003941 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003942
3943 switch (tp->mac_version) {
3944 case RTL_GIGA_MAC_VER_07:
3945 case RTL_GIGA_MAC_VER_08:
3946 case RTL_GIGA_MAC_VER_09:
3947 case RTL_GIGA_MAC_VER_10:
3948 case RTL_GIGA_MAC_VER_13:
3949 case RTL_GIGA_MAC_VER_16:
3950 break;
3951 default:
3952 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3953 break;
3954 }
françois romieu065c27c2011-01-03 15:08:12 +00003955}
3956
3957static void r8168_phy_power_up(struct rtl8169_private *tp)
3958{
3959 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003960 switch (tp->mac_version) {
3961 case RTL_GIGA_MAC_VER_11:
3962 case RTL_GIGA_MAC_VER_12:
3963 case RTL_GIGA_MAC_VER_17:
3964 case RTL_GIGA_MAC_VER_18:
3965 case RTL_GIGA_MAC_VER_19:
3966 case RTL_GIGA_MAC_VER_20:
3967 case RTL_GIGA_MAC_VER_21:
3968 case RTL_GIGA_MAC_VER_22:
3969 case RTL_GIGA_MAC_VER_23:
3970 case RTL_GIGA_MAC_VER_24:
3971 case RTL_GIGA_MAC_VER_25:
3972 case RTL_GIGA_MAC_VER_26:
3973 case RTL_GIGA_MAC_VER_27:
3974 case RTL_GIGA_MAC_VER_28:
3975 case RTL_GIGA_MAC_VER_31:
3976 rtl_writephy(tp, 0x0e, 0x0000);
3977 break;
3978 default:
3979 break;
3980 }
françois romieu065c27c2011-01-03 15:08:12 +00003981 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3982}
3983
3984static void r8168_phy_power_down(struct rtl8169_private *tp)
3985{
3986 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003987 switch (tp->mac_version) {
3988 case RTL_GIGA_MAC_VER_32:
3989 case RTL_GIGA_MAC_VER_33:
hayeswangbeb330a2013-04-01 22:23:39 +00003990 case RTL_GIGA_MAC_VER_40:
3991 case RTL_GIGA_MAC_VER_41:
hayeswang01dc7fe2011-03-21 01:50:28 +00003992 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3993 break;
3994
3995 case RTL_GIGA_MAC_VER_11:
3996 case RTL_GIGA_MAC_VER_12:
3997 case RTL_GIGA_MAC_VER_17:
3998 case RTL_GIGA_MAC_VER_18:
3999 case RTL_GIGA_MAC_VER_19:
4000 case RTL_GIGA_MAC_VER_20:
4001 case RTL_GIGA_MAC_VER_21:
4002 case RTL_GIGA_MAC_VER_22:
4003 case RTL_GIGA_MAC_VER_23:
4004 case RTL_GIGA_MAC_VER_24:
4005 case RTL_GIGA_MAC_VER_25:
4006 case RTL_GIGA_MAC_VER_26:
4007 case RTL_GIGA_MAC_VER_27:
4008 case RTL_GIGA_MAC_VER_28:
4009 case RTL_GIGA_MAC_VER_31:
4010 rtl_writephy(tp, 0x0e, 0x0200);
4011 default:
4012 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4013 break;
4014 }
françois romieu065c27c2011-01-03 15:08:12 +00004015}
4016
4017static void r8168_pll_power_down(struct rtl8169_private *tp)
4018{
4019 void __iomem *ioaddr = tp->mmio_addr;
4020
Francois Romieucecb5fd2011-04-01 10:21:07 +02004021 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4022 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4023 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00004024 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00004025 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08004026 }
françois romieu065c27c2011-01-03 15:08:12 +00004027
Francois Romieucecb5fd2011-04-01 10:21:07 +02004028 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
4029 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00004030 (RTL_R16(CPlusCmd) & ASF)) {
4031 return;
4032 }
4033
hayeswang01dc7fe2011-03-21 01:50:28 +00004034 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
4035 tp->mac_version == RTL_GIGA_MAC_VER_33)
Francois Romieufdf6fc02012-07-06 22:40:38 +02004036 rtl_ephy_write(tp, 0x19, 0xff64);
hayeswang01dc7fe2011-03-21 01:50:28 +00004037
David S. Miller1805b2f2011-10-24 18:18:09 -04004038 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004039 return;
françois romieu065c27c2011-01-03 15:08:12 +00004040
4041 r8168_phy_power_down(tp);
4042
4043 switch (tp->mac_version) {
4044 case RTL_GIGA_MAC_VER_25:
4045 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004046 case RTL_GIGA_MAC_VER_27:
4047 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004048 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004049 case RTL_GIGA_MAC_VER_32:
4050 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004051 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4052 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004053 case RTL_GIGA_MAC_VER_40:
4054 case RTL_GIGA_MAC_VER_41:
4055 rtl_w1w0_eri(tp, 0x1a8, ERIAR_MASK_1111, 0x00000000,
4056 0xfc000000, ERIAR_EXGMAC);
4057 break;
françois romieu065c27c2011-01-03 15:08:12 +00004058 }
4059}
4060
4061static void r8168_pll_power_up(struct rtl8169_private *tp)
4062{
4063 void __iomem *ioaddr = tp->mmio_addr;
4064
françois romieu065c27c2011-01-03 15:08:12 +00004065 switch (tp->mac_version) {
4066 case RTL_GIGA_MAC_VER_25:
4067 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004068 case RTL_GIGA_MAC_VER_27:
4069 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004070 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004071 case RTL_GIGA_MAC_VER_32:
4072 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004073 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4074 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004075 case RTL_GIGA_MAC_VER_40:
4076 case RTL_GIGA_MAC_VER_41:
4077 rtl_w1w0_eri(tp, 0x1a8, ERIAR_MASK_1111, 0xfc000000,
4078 0x00000000, ERIAR_EXGMAC);
4079 break;
françois romieu065c27c2011-01-03 15:08:12 +00004080 }
4081
4082 r8168_phy_power_up(tp);
4083}
4084
Francois Romieud58d46b2011-05-03 16:38:29 +02004085static void rtl_generic_op(struct rtl8169_private *tp,
4086 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00004087{
4088 if (op)
4089 op(tp);
4090}
4091
4092static void rtl_pll_power_down(struct rtl8169_private *tp)
4093{
Francois Romieud58d46b2011-05-03 16:38:29 +02004094 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00004095}
4096
4097static void rtl_pll_power_up(struct rtl8169_private *tp)
4098{
Francois Romieud58d46b2011-05-03 16:38:29 +02004099 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00004100}
4101
Bill Pembertonbaf63292012-12-03 09:23:28 -05004102static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
françois romieu065c27c2011-01-03 15:08:12 +00004103{
4104 struct pll_power_ops *ops = &tp->pll_power_ops;
4105
4106 switch (tp->mac_version) {
4107 case RTL_GIGA_MAC_VER_07:
4108 case RTL_GIGA_MAC_VER_08:
4109 case RTL_GIGA_MAC_VER_09:
4110 case RTL_GIGA_MAC_VER_10:
4111 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08004112 case RTL_GIGA_MAC_VER_29:
4113 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004114 case RTL_GIGA_MAC_VER_37:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004115 case RTL_GIGA_MAC_VER_39:
françois romieu065c27c2011-01-03 15:08:12 +00004116 ops->down = r810x_pll_power_down;
4117 ops->up = r810x_pll_power_up;
4118 break;
4119
4120 case RTL_GIGA_MAC_VER_11:
4121 case RTL_GIGA_MAC_VER_12:
4122 case RTL_GIGA_MAC_VER_17:
4123 case RTL_GIGA_MAC_VER_18:
4124 case RTL_GIGA_MAC_VER_19:
4125 case RTL_GIGA_MAC_VER_20:
4126 case RTL_GIGA_MAC_VER_21:
4127 case RTL_GIGA_MAC_VER_22:
4128 case RTL_GIGA_MAC_VER_23:
4129 case RTL_GIGA_MAC_VER_24:
4130 case RTL_GIGA_MAC_VER_25:
4131 case RTL_GIGA_MAC_VER_26:
4132 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00004133 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004134 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004135 case RTL_GIGA_MAC_VER_32:
4136 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004137 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08004138 case RTL_GIGA_MAC_VER_35:
4139 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004140 case RTL_GIGA_MAC_VER_38:
Hayes Wangc5583862012-07-02 17:23:22 +08004141 case RTL_GIGA_MAC_VER_40:
4142 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004143 case RTL_GIGA_MAC_VER_42:
françois romieu065c27c2011-01-03 15:08:12 +00004144 ops->down = r8168_pll_power_down;
4145 ops->up = r8168_pll_power_up;
4146 break;
4147
4148 default:
4149 ops->down = NULL;
4150 ops->up = NULL;
4151 break;
4152 }
4153}
4154
Hayes Wange542a222011-07-06 15:58:04 +08004155static void rtl_init_rxcfg(struct rtl8169_private *tp)
4156{
4157 void __iomem *ioaddr = tp->mmio_addr;
4158
4159 switch (tp->mac_version) {
4160 case RTL_GIGA_MAC_VER_01:
4161 case RTL_GIGA_MAC_VER_02:
4162 case RTL_GIGA_MAC_VER_03:
4163 case RTL_GIGA_MAC_VER_04:
4164 case RTL_GIGA_MAC_VER_05:
4165 case RTL_GIGA_MAC_VER_06:
4166 case RTL_GIGA_MAC_VER_10:
4167 case RTL_GIGA_MAC_VER_11:
4168 case RTL_GIGA_MAC_VER_12:
4169 case RTL_GIGA_MAC_VER_13:
4170 case RTL_GIGA_MAC_VER_14:
4171 case RTL_GIGA_MAC_VER_15:
4172 case RTL_GIGA_MAC_VER_16:
4173 case RTL_GIGA_MAC_VER_17:
4174 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
4175 break;
4176 case RTL_GIGA_MAC_VER_18:
4177 case RTL_GIGA_MAC_VER_19:
4178 case RTL_GIGA_MAC_VER_20:
4179 case RTL_GIGA_MAC_VER_21:
4180 case RTL_GIGA_MAC_VER_22:
4181 case RTL_GIGA_MAC_VER_23:
4182 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00004183 case RTL_GIGA_MAC_VER_34:
Hayes Wange542a222011-07-06 15:58:04 +08004184 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
4185 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004186 case RTL_GIGA_MAC_VER_40:
4187 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004188 case RTL_GIGA_MAC_VER_42:
hayeswangbeb330a2013-04-01 22:23:39 +00004189 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST | RX_EARLY_OFF);
4190 break;
Hayes Wange542a222011-07-06 15:58:04 +08004191 default:
4192 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
4193 break;
4194 }
4195}
4196
Hayes Wang92fc43b2011-07-06 15:58:03 +08004197static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4198{
Timo Teräs9fba0812013-01-15 21:01:24 +00004199 tp->dirty_tx = tp->cur_tx = tp->cur_rx = 0;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004200}
4201
Francois Romieud58d46b2011-05-03 16:38:29 +02004202static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
4203{
françois romieu9c5028e2012-03-02 04:43:14 +00004204 void __iomem *ioaddr = tp->mmio_addr;
4205
4206 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004207 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00004208 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004209}
4210
4211static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
4212{
françois romieu9c5028e2012-03-02 04:43:14 +00004213 void __iomem *ioaddr = tp->mmio_addr;
4214
4215 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004216 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00004217 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004218}
4219
4220static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
4221{
4222 void __iomem *ioaddr = tp->mmio_addr;
4223
4224 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4225 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
4226 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
4227}
4228
4229static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
4230{
4231 void __iomem *ioaddr = tp->mmio_addr;
4232
4233 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4234 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
4235 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
4236}
4237
4238static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
4239{
4240 void __iomem *ioaddr = tp->mmio_addr;
4241
4242 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4243}
4244
4245static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
4246{
4247 void __iomem *ioaddr = tp->mmio_addr;
4248
4249 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4250}
4251
4252static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
4253{
4254 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02004255
4256 RTL_W8(MaxTxPacketSize, 0x3f);
4257 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4258 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01004259 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02004260}
4261
4262static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
4263{
4264 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02004265
4266 RTL_W8(MaxTxPacketSize, 0x0c);
4267 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4268 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01004269 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02004270}
4271
4272static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
4273{
4274 rtl_tx_performance_tweak(tp->pci_dev,
4275 (0x2 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
4276}
4277
4278static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
4279{
4280 rtl_tx_performance_tweak(tp->pci_dev,
4281 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
4282}
4283
4284static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
4285{
4286 void __iomem *ioaddr = tp->mmio_addr;
4287
4288 r8168b_0_hw_jumbo_enable(tp);
4289
4290 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
4291}
4292
4293static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
4294{
4295 void __iomem *ioaddr = tp->mmio_addr;
4296
4297 r8168b_0_hw_jumbo_disable(tp);
4298
4299 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
4300}
4301
Bill Pembertonbaf63292012-12-03 09:23:28 -05004302static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
Francois Romieud58d46b2011-05-03 16:38:29 +02004303{
4304 struct jumbo_ops *ops = &tp->jumbo_ops;
4305
4306 switch (tp->mac_version) {
4307 case RTL_GIGA_MAC_VER_11:
4308 ops->disable = r8168b_0_hw_jumbo_disable;
4309 ops->enable = r8168b_0_hw_jumbo_enable;
4310 break;
4311 case RTL_GIGA_MAC_VER_12:
4312 case RTL_GIGA_MAC_VER_17:
4313 ops->disable = r8168b_1_hw_jumbo_disable;
4314 ops->enable = r8168b_1_hw_jumbo_enable;
4315 break;
4316 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
4317 case RTL_GIGA_MAC_VER_19:
4318 case RTL_GIGA_MAC_VER_20:
4319 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
4320 case RTL_GIGA_MAC_VER_22:
4321 case RTL_GIGA_MAC_VER_23:
4322 case RTL_GIGA_MAC_VER_24:
4323 case RTL_GIGA_MAC_VER_25:
4324 case RTL_GIGA_MAC_VER_26:
4325 ops->disable = r8168c_hw_jumbo_disable;
4326 ops->enable = r8168c_hw_jumbo_enable;
4327 break;
4328 case RTL_GIGA_MAC_VER_27:
4329 case RTL_GIGA_MAC_VER_28:
4330 ops->disable = r8168dp_hw_jumbo_disable;
4331 ops->enable = r8168dp_hw_jumbo_enable;
4332 break;
4333 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
4334 case RTL_GIGA_MAC_VER_32:
4335 case RTL_GIGA_MAC_VER_33:
4336 case RTL_GIGA_MAC_VER_34:
4337 ops->disable = r8168e_hw_jumbo_disable;
4338 ops->enable = r8168e_hw_jumbo_enable;
4339 break;
4340
4341 /*
4342 * No action needed for jumbo frames with 8169.
4343 * No jumbo for 810x at all.
4344 */
Hayes Wangc5583862012-07-02 17:23:22 +08004345 case RTL_GIGA_MAC_VER_40:
4346 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004347 case RTL_GIGA_MAC_VER_42:
Francois Romieud58d46b2011-05-03 16:38:29 +02004348 default:
4349 ops->disable = NULL;
4350 ops->enable = NULL;
4351 break;
4352 }
4353}
4354
Francois Romieuffc46952012-07-06 14:19:23 +02004355DECLARE_RTL_COND(rtl_chipcmd_cond)
4356{
4357 void __iomem *ioaddr = tp->mmio_addr;
4358
4359 return RTL_R8(ChipCmd) & CmdReset;
4360}
4361
Francois Romieu6f43adc2011-04-29 15:05:51 +02004362static void rtl_hw_reset(struct rtl8169_private *tp)
4363{
4364 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu6f43adc2011-04-29 15:05:51 +02004365
Francois Romieu6f43adc2011-04-29 15:05:51 +02004366 RTL_W8(ChipCmd, CmdReset);
4367
Francois Romieuffc46952012-07-06 14:19:23 +02004368 rtl_udelay_loop_wait_low(tp, &rtl_chipcmd_cond, 100, 100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02004369}
4370
Francois Romieub6ffd972011-06-17 17:00:05 +02004371static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
4372{
4373 struct rtl_fw *rtl_fw;
4374 const char *name;
4375 int rc = -ENOMEM;
4376
4377 name = rtl_lookup_firmware_name(tp);
4378 if (!name)
4379 goto out_no_firmware;
4380
4381 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
4382 if (!rtl_fw)
4383 goto err_warn;
4384
4385 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
4386 if (rc < 0)
4387 goto err_free;
4388
Francois Romieufd112f22011-06-18 00:10:29 +02004389 rc = rtl_check_firmware(tp, rtl_fw);
4390 if (rc < 0)
4391 goto err_release_firmware;
4392
Francois Romieub6ffd972011-06-17 17:00:05 +02004393 tp->rtl_fw = rtl_fw;
4394out:
4395 return;
4396
Francois Romieufd112f22011-06-18 00:10:29 +02004397err_release_firmware:
4398 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02004399err_free:
4400 kfree(rtl_fw);
4401err_warn:
4402 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
4403 name, rc);
4404out_no_firmware:
4405 tp->rtl_fw = NULL;
4406 goto out;
4407}
4408
François Romieu953a12c2011-04-24 17:38:48 +02004409static void rtl_request_firmware(struct rtl8169_private *tp)
4410{
Francois Romieub6ffd972011-06-17 17:00:05 +02004411 if (IS_ERR(tp->rtl_fw))
4412 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02004413}
4414
Hayes Wang92fc43b2011-07-06 15:58:03 +08004415static void rtl_rx_close(struct rtl8169_private *tp)
4416{
4417 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004418
Francois Romieu1687b562011-07-19 17:21:29 +02004419 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004420}
4421
Francois Romieuffc46952012-07-06 14:19:23 +02004422DECLARE_RTL_COND(rtl_npq_cond)
4423{
4424 void __iomem *ioaddr = tp->mmio_addr;
4425
4426 return RTL_R8(TxPoll) & NPQ;
4427}
4428
4429DECLARE_RTL_COND(rtl_txcfg_empty_cond)
4430{
4431 void __iomem *ioaddr = tp->mmio_addr;
4432
4433 return RTL_R32(TxConfig) & TXCFG_EMPTY;
4434}
4435
françois romieue6de30d2011-01-03 15:08:37 +00004436static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437{
françois romieue6de30d2011-01-03 15:08:37 +00004438 void __iomem *ioaddr = tp->mmio_addr;
4439
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00004441 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
Hayes Wang92fc43b2011-07-06 15:58:03 +08004443 rtl_rx_close(tp);
4444
Hayes Wang5d2e1952011-02-22 17:26:22 +08004445 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00004446 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4447 tp->mac_version == RTL_GIGA_MAC_VER_31) {
Francois Romieuffc46952012-07-06 14:19:23 +02004448 rtl_udelay_loop_wait_low(tp, &rtl_npq_cond, 20, 42*42);
Hayes Wangc2218922011-09-06 16:55:18 +08004449 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
4450 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
Hayes Wang7e18dca2012-03-30 14:33:02 +08004451 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004452 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
Hayes Wangc5583862012-07-02 17:23:22 +08004453 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
4454 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
hayeswang57538c42013-04-01 22:23:40 +00004455 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004456 tp->mac_version == RTL_GIGA_MAC_VER_38) {
David S. Miller8decf862011-09-22 03:23:13 -04004457 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Francois Romieuffc46952012-07-06 14:19:23 +02004458 rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004459 } else {
4460 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
4461 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00004462 }
4463
Hayes Wang92fc43b2011-07-06 15:58:03 +08004464 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465}
4466
Francois Romieu7f796d832007-06-11 23:04:41 +02004467static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004468{
4469 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01004470
4471 /* Set DMA burst size and Interframe Gap Time */
4472 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4473 (InterFrameGap << TxInterFrameGapShift));
4474}
4475
Francois Romieu07ce4062007-02-23 23:36:39 +01004476static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477{
4478 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Francois Romieu07ce4062007-02-23 23:36:39 +01004480 tp->hw_start(dev);
4481
Francois Romieuda78dbf2012-01-26 14:18:23 +01004482 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004483}
4484
Francois Romieu7f796d832007-06-11 23:04:41 +02004485static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
4486 void __iomem *ioaddr)
4487{
4488 /*
4489 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
4490 * register to be written before TxDescAddrLow to work.
4491 * Switching from MMIO to I/O access fixes the issue as well.
4492 */
4493 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004494 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004495 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004496 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004497}
4498
4499static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
4500{
4501 u16 cmd;
4502
4503 cmd = RTL_R16(CPlusCmd);
4504 RTL_W16(CPlusCmd, cmd);
4505 return cmd;
4506}
4507
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07004508static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02004509{
4510 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00004511 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02004512}
4513
Francois Romieu6dccd162007-02-13 23:38:05 +01004514static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
4515{
Francois Romieu37441002011-06-17 22:58:54 +02004516 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01004517 u32 mac_version;
4518 u32 clk;
4519 u32 val;
4520 } cfg2_info [] = {
4521 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
4522 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
4523 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
4524 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02004525 };
4526 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01004527 unsigned int i;
4528 u32 clk;
4529
4530 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01004531 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01004532 if ((p->mac_version == mac_version) && (p->clk == clk)) {
4533 RTL_W32(0x7c, p->val);
4534 break;
4535 }
4536 }
4537}
4538
Francois Romieue6b763e2012-03-08 09:35:39 +01004539static void rtl_set_rx_mode(struct net_device *dev)
4540{
4541 struct rtl8169_private *tp = netdev_priv(dev);
4542 void __iomem *ioaddr = tp->mmio_addr;
4543 u32 mc_filter[2]; /* Multicast hash filter */
4544 int rx_mode;
4545 u32 tmp = 0;
4546
4547 if (dev->flags & IFF_PROMISC) {
4548 /* Unconditionally log net taps. */
4549 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
4550 rx_mode =
4551 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4552 AcceptAllPhys;
4553 mc_filter[1] = mc_filter[0] = 0xffffffff;
4554 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
4555 (dev->flags & IFF_ALLMULTI)) {
4556 /* Too many to filter perfectly -- accept all multicasts. */
4557 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4558 mc_filter[1] = mc_filter[0] = 0xffffffff;
4559 } else {
4560 struct netdev_hw_addr *ha;
4561
4562 rx_mode = AcceptBroadcast | AcceptMyPhys;
4563 mc_filter[1] = mc_filter[0] = 0;
4564 netdev_for_each_mc_addr(ha, dev) {
4565 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
4566 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4567 rx_mode |= AcceptMulticast;
4568 }
4569 }
4570
4571 if (dev->features & NETIF_F_RXALL)
4572 rx_mode |= (AcceptErr | AcceptRunt);
4573
4574 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
4575
4576 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
4577 u32 data = mc_filter[0];
4578
4579 mc_filter[0] = swab32(mc_filter[1]);
4580 mc_filter[1] = swab32(data);
4581 }
4582
Nathan Walp04817762012-11-01 12:08:47 +00004583 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
4584 mc_filter[1] = mc_filter[0] = 0xffffffff;
4585
Francois Romieue6b763e2012-03-08 09:35:39 +01004586 RTL_W32(MAR0 + 4, mc_filter[1]);
4587 RTL_W32(MAR0 + 0, mc_filter[0]);
4588
4589 RTL_W32(RxConfig, tmp);
4590}
4591
Francois Romieu07ce4062007-02-23 23:36:39 +01004592static void rtl_hw_start_8169(struct net_device *dev)
4593{
4594 struct rtl8169_private *tp = netdev_priv(dev);
4595 void __iomem *ioaddr = tp->mmio_addr;
4596 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01004597
Francois Romieu9cb427b2006-11-02 00:10:16 +01004598 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
4599 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
4600 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4601 }
4602
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02004604 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4605 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4606 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4607 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004608 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4609
Hayes Wange542a222011-07-06 15:58:04 +08004610 rtl_init_rxcfg(tp);
4611
françois romieuf0298f82011-01-03 15:07:42 +00004612 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004614 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615
Francois Romieucecb5fd2011-04-01 10:21:07 +02004616 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4617 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4618 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4619 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02004620 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
Francois Romieu7f796d832007-06-11 23:04:41 +02004622 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004623
Francois Romieucecb5fd2011-04-01 10:21:07 +02004624 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4625 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02004626 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02004628 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 }
4630
Francois Romieubcf0bf92006-07-26 23:14:13 +02004631 RTL_W16(CPlusCmd, tp->cp_cmd);
4632
Francois Romieu6dccd162007-02-13 23:38:05 +01004633 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
4634
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 /*
4636 * Undocumented corner. Supposedly:
4637 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4638 */
4639 RTL_W16(IntrMitigate, 0x0000);
4640
Francois Romieu7f796d832007-06-11 23:04:41 +02004641 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01004642
Francois Romieucecb5fd2011-04-01 10:21:07 +02004643 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
4644 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
4645 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
4646 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02004647 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4648 rtl_set_rx_tx_config_registers(tp);
4649 }
4650
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02004652
4653 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4654 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
4656 RTL_W32(RxMissed, 0);
4657
Francois Romieu07ce4062007-02-23 23:36:39 +01004658 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
4660 /* no early-rx interrupts */
4661 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01004662}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004664static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
4665{
4666 if (tp->csi_ops.write)
Francois Romieu52989f02012-07-06 13:37:00 +02004667 tp->csi_ops.write(tp, addr, value);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004668}
4669
4670static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
4671{
Francois Romieu52989f02012-07-06 13:37:00 +02004672 return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004673}
4674
4675static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02004676{
4677 u32 csi;
4678
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004679 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
4680 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00004681}
4682
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004683static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00004684{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004685 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00004686}
4687
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004688static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00004689{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004690 rtl_csi_access_enable(tp, 0x27000000);
4691}
4692
Francois Romieuffc46952012-07-06 14:19:23 +02004693DECLARE_RTL_COND(rtl_csiar_cond)
4694{
4695 void __iomem *ioaddr = tp->mmio_addr;
4696
4697 return RTL_R32(CSIAR) & CSIAR_FLAG;
4698}
4699
Francois Romieu52989f02012-07-06 13:37:00 +02004700static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004701{
Francois Romieu52989f02012-07-06 13:37:00 +02004702 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004703
4704 RTL_W32(CSIDR, value);
4705 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4706 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4707
Francois Romieuffc46952012-07-06 14:19:23 +02004708 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004709}
4710
Francois Romieu52989f02012-07-06 13:37:00 +02004711static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004712{
Francois Romieu52989f02012-07-06 13:37:00 +02004713 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004714
4715 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
4716 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4717
Francois Romieuffc46952012-07-06 14:19:23 +02004718 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
4719 RTL_R32(CSIDR) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004720}
4721
Francois Romieu52989f02012-07-06 13:37:00 +02004722static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wang7e18dca2012-03-30 14:33:02 +08004723{
Francois Romieu52989f02012-07-06 13:37:00 +02004724 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004725
4726 RTL_W32(CSIDR, value);
4727 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4728 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
4729 CSIAR_FUNC_NIC);
4730
Francois Romieuffc46952012-07-06 14:19:23 +02004731 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004732}
4733
Francois Romieu52989f02012-07-06 13:37:00 +02004734static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wang7e18dca2012-03-30 14:33:02 +08004735{
Francois Romieu52989f02012-07-06 13:37:00 +02004736 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004737
4738 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
4739 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4740
Francois Romieuffc46952012-07-06 14:19:23 +02004741 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
4742 RTL_R32(CSIDR) : ~0;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004743}
4744
Bill Pembertonbaf63292012-12-03 09:23:28 -05004745static void rtl_init_csi_ops(struct rtl8169_private *tp)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004746{
4747 struct csi_ops *ops = &tp->csi_ops;
4748
4749 switch (tp->mac_version) {
4750 case RTL_GIGA_MAC_VER_01:
4751 case RTL_GIGA_MAC_VER_02:
4752 case RTL_GIGA_MAC_VER_03:
4753 case RTL_GIGA_MAC_VER_04:
4754 case RTL_GIGA_MAC_VER_05:
4755 case RTL_GIGA_MAC_VER_06:
4756 case RTL_GIGA_MAC_VER_10:
4757 case RTL_GIGA_MAC_VER_11:
4758 case RTL_GIGA_MAC_VER_12:
4759 case RTL_GIGA_MAC_VER_13:
4760 case RTL_GIGA_MAC_VER_14:
4761 case RTL_GIGA_MAC_VER_15:
4762 case RTL_GIGA_MAC_VER_16:
4763 case RTL_GIGA_MAC_VER_17:
4764 ops->write = NULL;
4765 ops->read = NULL;
4766 break;
4767
Hayes Wang7e18dca2012-03-30 14:33:02 +08004768 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004769 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004770 ops->write = r8402_csi_write;
4771 ops->read = r8402_csi_read;
4772 break;
4773
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004774 default:
4775 ops->write = r8169_csi_write;
4776 ops->read = r8169_csi_read;
4777 break;
4778 }
Francois Romieudacf8152008-08-02 20:44:13 +02004779}
4780
4781struct ephy_info {
4782 unsigned int offset;
4783 u16 mask;
4784 u16 bits;
4785};
4786
Francois Romieufdf6fc02012-07-06 22:40:38 +02004787static void rtl_ephy_init(struct rtl8169_private *tp, const struct ephy_info *e,
4788 int len)
Francois Romieudacf8152008-08-02 20:44:13 +02004789{
4790 u16 w;
4791
4792 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02004793 w = (rtl_ephy_read(tp, e->offset) & ~e->mask) | e->bits;
4794 rtl_ephy_write(tp, e->offset, w);
Francois Romieudacf8152008-08-02 20:44:13 +02004795 e++;
4796 }
4797}
4798
Francois Romieub726e492008-06-28 12:22:59 +02004799static void rtl_disable_clock_request(struct pci_dev *pdev)
4800{
Jiang Liu7d7903b2012-07-24 17:20:16 +08004801 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL,
4802 PCI_EXP_LNKCTL_CLKREQ_EN);
Francois Romieub726e492008-06-28 12:22:59 +02004803}
4804
françois romieue6de30d2011-01-03 15:08:37 +00004805static void rtl_enable_clock_request(struct pci_dev *pdev)
4806{
Jiang Liu7d7903b2012-07-24 17:20:16 +08004807 pcie_capability_set_word(pdev, PCI_EXP_LNKCTL,
4808 PCI_EXP_LNKCTL_CLKREQ_EN);
françois romieue6de30d2011-01-03 15:08:37 +00004809}
4810
Francois Romieub726e492008-06-28 12:22:59 +02004811#define R8168_CPCMD_QUIRK_MASK (\
4812 EnableBist | \
4813 Mac_dbgo_oe | \
4814 Force_half_dup | \
4815 Force_rxflow_en | \
4816 Force_txflow_en | \
4817 Cxpl_dbg_sel | \
4818 ASF | \
4819 PktCntrDisable | \
4820 Mac_dbgo_sel)
4821
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004822static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004823{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004824 void __iomem *ioaddr = tp->mmio_addr;
4825 struct pci_dev *pdev = tp->pci_dev;
4826
Francois Romieub726e492008-06-28 12:22:59 +02004827 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4828
4829 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4830
françois romieufaf1e782013-02-27 13:01:57 +00004831 if (tp->dev->mtu <= ETH_DATA_LEN) {
4832 rtl_tx_performance_tweak(pdev, (0x5 << MAX_READ_REQUEST_SHIFT) |
4833 PCI_EXP_DEVCTL_NOSNOOP_EN);
4834 }
Francois Romieu219a1e92008-06-28 11:58:39 +02004835}
4836
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004837static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004838{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004839 void __iomem *ioaddr = tp->mmio_addr;
4840
4841 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004842
françois romieuf0298f82011-01-03 15:07:42 +00004843 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02004844
4845 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02004846}
4847
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004848static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004849{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004850 void __iomem *ioaddr = tp->mmio_addr;
4851 struct pci_dev *pdev = tp->pci_dev;
4852
Francois Romieub726e492008-06-28 12:22:59 +02004853 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4854
4855 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4856
françois romieufaf1e782013-02-27 13:01:57 +00004857 if (tp->dev->mtu <= ETH_DATA_LEN)
4858 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02004859
4860 rtl_disable_clock_request(pdev);
4861
4862 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02004863}
4864
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004865static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004866{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004867 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004868 { 0x01, 0, 0x0001 },
4869 { 0x02, 0x0800, 0x1000 },
4870 { 0x03, 0, 0x0042 },
4871 { 0x06, 0x0080, 0x0000 },
4872 { 0x07, 0, 0x2000 }
4873 };
4874
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004875 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004876
Francois Romieufdf6fc02012-07-06 22:40:38 +02004877 rtl_ephy_init(tp, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
Francois Romieub726e492008-06-28 12:22:59 +02004878
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004879 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004880}
4881
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004882static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02004883{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004884 void __iomem *ioaddr = tp->mmio_addr;
4885 struct pci_dev *pdev = tp->pci_dev;
4886
4887 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004888
4889 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4890
françois romieufaf1e782013-02-27 13:01:57 +00004891 if (tp->dev->mtu <= ETH_DATA_LEN)
4892 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieuef3386f2008-06-29 12:24:30 +02004893
4894 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4895}
4896
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004897static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004898{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004899 void __iomem *ioaddr = tp->mmio_addr;
4900 struct pci_dev *pdev = tp->pci_dev;
4901
4902 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004903
4904 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4905
4906 /* Magic. */
4907 RTL_W8(DBG_REG, 0x20);
4908
françois romieuf0298f82011-01-03 15:07:42 +00004909 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004910
françois romieufaf1e782013-02-27 13:01:57 +00004911 if (tp->dev->mtu <= ETH_DATA_LEN)
4912 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004913
4914 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4915}
4916
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004917static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004918{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004919 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004920 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004921 { 0x02, 0x0800, 0x1000 },
4922 { 0x03, 0, 0x0002 },
4923 { 0x06, 0x0080, 0x0000 }
4924 };
4925
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004926 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004927
4928 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
4929
Francois Romieufdf6fc02012-07-06 22:40:38 +02004930 rtl_ephy_init(tp, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
Francois Romieub726e492008-06-28 12:22:59 +02004931
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004932 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004933}
4934
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004935static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004936{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004937 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004938 { 0x01, 0, 0x0001 },
4939 { 0x03, 0x0400, 0x0220 }
4940 };
4941
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004942 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004943
Francois Romieufdf6fc02012-07-06 22:40:38 +02004944 rtl_ephy_init(tp, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
Francois Romieub726e492008-06-28 12:22:59 +02004945
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004946 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004947}
4948
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004949static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02004950{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004951 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02004952}
4953
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004954static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02004955{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004956 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004957
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004958 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004959}
4960
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004961static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02004962{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004963 void __iomem *ioaddr = tp->mmio_addr;
4964 struct pci_dev *pdev = tp->pci_dev;
4965
4966 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02004967
4968 rtl_disable_clock_request(pdev);
4969
françois romieuf0298f82011-01-03 15:07:42 +00004970 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02004971
françois romieufaf1e782013-02-27 13:01:57 +00004972 if (tp->dev->mtu <= ETH_DATA_LEN)
4973 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu5b538df2008-07-20 16:22:45 +02004974
4975 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4976}
4977
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004978static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00004979{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004980 void __iomem *ioaddr = tp->mmio_addr;
4981 struct pci_dev *pdev = tp->pci_dev;
4982
4983 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004984
françois romieufaf1e782013-02-27 13:01:57 +00004985 if (tp->dev->mtu <= ETH_DATA_LEN)
4986 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang4804b3b2011-03-21 01:50:29 +00004987
4988 RTL_W8(MaxTxPacketSize, TxPacketMax);
4989
4990 rtl_disable_clock_request(pdev);
4991}
4992
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004993static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00004994{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004995 void __iomem *ioaddr = tp->mmio_addr;
4996 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00004997 static const struct ephy_info e_info_8168d_4[] = {
4998 { 0x0b, ~0, 0x48 },
4999 { 0x19, 0x20, 0x50 },
5000 { 0x0c, ~0, 0x20 }
5001 };
5002 int i;
5003
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005004 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00005005
5006 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5007
5008 RTL_W8(MaxTxPacketSize, TxPacketMax);
5009
5010 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
5011 const struct ephy_info *e = e_info_8168d_4 + i;
5012 u16 w;
5013
Francois Romieufdf6fc02012-07-06 22:40:38 +02005014 w = rtl_ephy_read(tp, e->offset);
5015 rtl_ephy_write(tp, 0x03, (w & e->mask) | e->bits);
françois romieue6de30d2011-01-03 15:08:37 +00005016 }
5017
5018 rtl_enable_clock_request(pdev);
5019}
5020
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005021static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00005022{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005023 void __iomem *ioaddr = tp->mmio_addr;
5024 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005025 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00005026 { 0x00, 0x0200, 0x0100 },
5027 { 0x00, 0x0000, 0x0004 },
5028 { 0x06, 0x0002, 0x0001 },
5029 { 0x06, 0x0000, 0x0030 },
5030 { 0x07, 0x0000, 0x2000 },
5031 { 0x00, 0x0000, 0x0020 },
5032 { 0x03, 0x5800, 0x2000 },
5033 { 0x03, 0x0000, 0x0001 },
5034 { 0x01, 0x0800, 0x1000 },
5035 { 0x07, 0x0000, 0x4000 },
5036 { 0x1e, 0x0000, 0x2000 },
5037 { 0x19, 0xffff, 0xfe6c },
5038 { 0x0a, 0x0000, 0x0040 }
5039 };
5040
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005041 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005042
Francois Romieufdf6fc02012-07-06 22:40:38 +02005043 rtl_ephy_init(tp, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00005044
françois romieufaf1e782013-02-27 13:01:57 +00005045 if (tp->dev->mtu <= ETH_DATA_LEN)
5046 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang01dc7fe2011-03-21 01:50:28 +00005047
5048 RTL_W8(MaxTxPacketSize, TxPacketMax);
5049
5050 rtl_disable_clock_request(pdev);
5051
5052 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02005053 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
5054 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00005055
Francois Romieucecb5fd2011-04-01 10:21:07 +02005056 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00005057}
5058
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005059static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08005060{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005061 void __iomem *ioaddr = tp->mmio_addr;
5062 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005063 static const struct ephy_info e_info_8168e_2[] = {
5064 { 0x09, 0x0000, 0x0080 },
5065 { 0x19, 0x0000, 0x0224 }
5066 };
5067
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005068 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005069
Francois Romieufdf6fc02012-07-06 22:40:38 +02005070 rtl_ephy_init(tp, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
Hayes Wang70090422011-07-06 15:58:06 +08005071
françois romieufaf1e782013-02-27 13:01:57 +00005072 if (tp->dev->mtu <= ETH_DATA_LEN)
5073 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Hayes Wang70090422011-07-06 15:58:06 +08005074
Francois Romieufdf6fc02012-07-06 22:40:38 +02005075 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5076 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5077 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5078 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5079 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5080 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
5081 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5082 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08005083
Hayes Wang3090bd92011-09-06 16:55:15 +08005084 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08005085
Francois Romieu4521e1a92012-11-01 16:46:28 +00005086 rtl_disable_clock_request(pdev);
5087
Hayes Wang70090422011-07-06 15:58:06 +08005088 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5089 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5090
5091 /* Adjust EEE LED frequency */
5092 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5093
5094 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
5095 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005096 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wang70090422011-07-06 15:58:06 +08005097}
5098
Hayes Wang5f886e02012-03-30 14:33:03 +08005099static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08005100{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005101 void __iomem *ioaddr = tp->mmio_addr;
5102 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08005103
Hayes Wang5f886e02012-03-30 14:33:03 +08005104 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005105
5106 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5107
Francois Romieufdf6fc02012-07-06 22:40:38 +02005108 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5109 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5110 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5111 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5112 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5113 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5114 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5115 rtl_w1w0_eri(tp, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5116 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5117 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08005118
5119 RTL_W8(MaxTxPacketSize, EarlySize);
5120
Francois Romieu4521e1a92012-11-01 16:46:28 +00005121 rtl_disable_clock_request(pdev);
5122
Hayes Wangc2218922011-09-06 16:55:18 +08005123 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5124 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08005125 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005126 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
5127 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wangc2218922011-09-06 16:55:18 +08005128}
5129
Hayes Wang5f886e02012-03-30 14:33:03 +08005130static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
5131{
5132 void __iomem *ioaddr = tp->mmio_addr;
5133 static const struct ephy_info e_info_8168f_1[] = {
5134 { 0x06, 0x00c0, 0x0020 },
5135 { 0x08, 0x0001, 0x0002 },
5136 { 0x09, 0x0000, 0x0080 },
5137 { 0x19, 0x0000, 0x0224 }
5138 };
5139
5140 rtl_hw_start_8168f(tp);
5141
Francois Romieufdf6fc02012-07-06 22:40:38 +02005142 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wang5f886e02012-03-30 14:33:03 +08005143
Francois Romieufdf6fc02012-07-06 22:40:38 +02005144 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang5f886e02012-03-30 14:33:03 +08005145
5146 /* Adjust EEE LED frequency */
5147 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5148}
5149
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005150static void rtl_hw_start_8411(struct rtl8169_private *tp)
5151{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005152 static const struct ephy_info e_info_8168f_1[] = {
5153 { 0x06, 0x00c0, 0x0020 },
5154 { 0x0f, 0xffff, 0x5200 },
5155 { 0x1e, 0x0000, 0x4000 },
5156 { 0x19, 0x0000, 0x0224 }
5157 };
5158
5159 rtl_hw_start_8168f(tp);
5160
Francois Romieufdf6fc02012-07-06 22:40:38 +02005161 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005162
Francois Romieufdf6fc02012-07-06 22:40:38 +02005163 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005164}
5165
Hayes Wangc5583862012-07-02 17:23:22 +08005166static void rtl_hw_start_8168g_1(struct rtl8169_private *tp)
5167{
5168 void __iomem *ioaddr = tp->mmio_addr;
5169 struct pci_dev *pdev = tp->pci_dev;
5170
hayeswangbeb330a2013-04-01 22:23:39 +00005171 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5172
Hayes Wangc5583862012-07-02 17:23:22 +08005173 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x080002, ERIAR_EXGMAC);
5174 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
5175 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
5176 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5177
5178 rtl_csi_access_enable_1(tp);
5179
5180 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5181
5182 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5183 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
hayeswangbeb330a2013-04-01 22:23:39 +00005184 rtl_eri_write(tp, 0x2f8, ERIAR_MASK_0011, 0x1d8f, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08005185
5186 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005187 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
Hayes Wangc5583862012-07-02 17:23:22 +08005188 RTL_W8(MaxTxPacketSize, EarlySize);
5189
5190 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5191 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5192
5193 /* Adjust EEE LED frequency */
5194 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5195
hayeswangbeb330a2013-04-01 22:23:39 +00005196 rtl_w1w0_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
5197 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08005198}
5199
hayeswang57538c42013-04-01 22:23:40 +00005200static void rtl_hw_start_8168g_2(struct rtl8169_private *tp)
5201{
5202 void __iomem *ioaddr = tp->mmio_addr;
5203 static const struct ephy_info e_info_8168g_2[] = {
5204 { 0x00, 0x0000, 0x0008 },
5205 { 0x0c, 0x3df0, 0x0200 },
5206 { 0x19, 0xffff, 0xfc00 },
5207 { 0x1e, 0xffff, 0x20eb }
5208 };
5209
5210 rtl_hw_start_8168g_1(tp);
5211
5212 /* disable aspm and clock request before access ephy */
5213 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
5214 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
5215 rtl_ephy_init(tp, e_info_8168g_2, ARRAY_SIZE(e_info_8168g_2));
5216}
5217
Francois Romieu07ce4062007-02-23 23:36:39 +01005218static void rtl_hw_start_8168(struct net_device *dev)
5219{
Francois Romieu2dd99532007-06-11 23:22:52 +02005220 struct rtl8169_private *tp = netdev_priv(dev);
5221 void __iomem *ioaddr = tp->mmio_addr;
5222
5223 RTL_W8(Cfg9346, Cfg9346_Unlock);
5224
françois romieuf0298f82011-01-03 15:07:42 +00005225 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02005226
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005227 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02005228
Francois Romieu0e485152007-02-20 00:00:26 +01005229 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02005230
5231 RTL_W16(CPlusCmd, tp->cp_cmd);
5232
Francois Romieu0e485152007-02-20 00:00:26 +01005233 RTL_W16(IntrMitigate, 0x5151);
5234
5235 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00005236 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01005237 tp->event_slow |= RxFIFOOver | PCSTimeout;
5238 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01005239 }
Francois Romieu2dd99532007-06-11 23:22:52 +02005240
5241 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5242
Francois Romieub8363902008-06-01 12:31:57 +02005243 rtl_set_rx_mode(dev);
5244
5245 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
5246 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02005247
5248 RTL_R8(IntrMask);
5249
Francois Romieu219a1e92008-06-28 11:58:39 +02005250 switch (tp->mac_version) {
5251 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005252 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005253 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005254
5255 case RTL_GIGA_MAC_VER_12:
5256 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005257 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005258 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005259
5260 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005261 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005262 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005263
5264 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005265 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005266 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005267
5268 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005269 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005270 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005271
Francois Romieu197ff762008-06-28 13:16:02 +02005272 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005273 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005274 break;
Francois Romieu197ff762008-06-28 13:16:02 +02005275
Francois Romieu6fb07052008-06-29 11:54:28 +02005276 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005277 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005278 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02005279
Francois Romieuef3386f2008-06-29 12:24:30 +02005280 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005281 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005282 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02005283
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005284 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005285 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005286 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005287
Francois Romieu5b538df2008-07-20 16:22:45 +02005288 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00005289 case RTL_GIGA_MAC_VER_26:
5290 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005291 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005292 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02005293
françois romieue6de30d2011-01-03 15:08:37 +00005294 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005295 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005296 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02005297
hayeswang4804b3b2011-03-21 01:50:29 +00005298 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005299 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005300 break;
5301
hayeswang01dc7fe2011-03-21 01:50:28 +00005302 case RTL_GIGA_MAC_VER_32:
5303 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005304 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005305 break;
5306 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005307 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005308 break;
françois romieue6de30d2011-01-03 15:08:37 +00005309
Hayes Wangc2218922011-09-06 16:55:18 +08005310 case RTL_GIGA_MAC_VER_35:
5311 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005312 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005313 break;
5314
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005315 case RTL_GIGA_MAC_VER_38:
5316 rtl_hw_start_8411(tp);
5317 break;
5318
Hayes Wangc5583862012-07-02 17:23:22 +08005319 case RTL_GIGA_MAC_VER_40:
5320 case RTL_GIGA_MAC_VER_41:
5321 rtl_hw_start_8168g_1(tp);
5322 break;
hayeswang57538c42013-04-01 22:23:40 +00005323 case RTL_GIGA_MAC_VER_42:
5324 rtl_hw_start_8168g_2(tp);
5325 break;
Hayes Wangc5583862012-07-02 17:23:22 +08005326
Francois Romieu219a1e92008-06-28 11:58:39 +02005327 default:
5328 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
5329 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00005330 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005331 }
Francois Romieu2dd99532007-06-11 23:22:52 +02005332
Francois Romieu0e485152007-02-20 00:00:26 +01005333 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5334
Francois Romieub8363902008-06-01 12:31:57 +02005335 RTL_W8(Cfg9346, Cfg9346_Lock);
5336
Francois Romieu2dd99532007-06-11 23:22:52 +02005337 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005338}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339
Francois Romieu2857ffb2008-08-02 21:08:49 +02005340#define R810X_CPCMD_QUIRK_MASK (\
5341 EnableBist | \
5342 Mac_dbgo_oe | \
5343 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00005344 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02005345 Force_txflow_en | \
5346 Cxpl_dbg_sel | \
5347 ASF | \
5348 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005349 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005350
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005351static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005352{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005353 void __iomem *ioaddr = tp->mmio_addr;
5354 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005355 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02005356 { 0x01, 0, 0x6e65 },
5357 { 0x02, 0, 0x091f },
5358 { 0x03, 0, 0xc2f9 },
5359 { 0x06, 0, 0xafb5 },
5360 { 0x07, 0, 0x0e00 },
5361 { 0x19, 0, 0xec80 },
5362 { 0x01, 0, 0x2e65 },
5363 { 0x01, 0, 0x6e65 }
5364 };
5365 u8 cfg1;
5366
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005367 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005368
5369 RTL_W8(DBG_REG, FIX_NAK_1);
5370
5371 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5372
5373 RTL_W8(Config1,
5374 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
5375 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5376
5377 cfg1 = RTL_R8(Config1);
5378 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
5379 RTL_W8(Config1, cfg1 & ~LEDS0);
5380
Francois Romieufdf6fc02012-07-06 22:40:38 +02005381 rtl_ephy_init(tp, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
Francois Romieu2857ffb2008-08-02 21:08:49 +02005382}
5383
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005384static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005385{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005386 void __iomem *ioaddr = tp->mmio_addr;
5387 struct pci_dev *pdev = tp->pci_dev;
5388
5389 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005390
5391 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5392
5393 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
5394 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005395}
5396
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005397static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005398{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005399 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005400
Francois Romieufdf6fc02012-07-06 22:40:38 +02005401 rtl_ephy_write(tp, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005402}
5403
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005404static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005405{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005406 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005407 static const struct ephy_info e_info_8105e_1[] = {
5408 { 0x07, 0, 0x4000 },
5409 { 0x19, 0, 0x0200 },
5410 { 0x19, 0, 0x0020 },
5411 { 0x1e, 0, 0x2000 },
5412 { 0x03, 0, 0x0001 },
5413 { 0x19, 0, 0x0100 },
5414 { 0x19, 0, 0x0004 },
5415 { 0x0a, 0, 0x0020 }
5416 };
5417
Francois Romieucecb5fd2011-04-01 10:21:07 +02005418 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005419 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5420
Francois Romieucecb5fd2011-04-01 10:21:07 +02005421 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005422 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
5423
5424 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08005425 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005426
Francois Romieufdf6fc02012-07-06 22:40:38 +02005427 rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
Hayes Wang5a5e4442011-02-22 17:26:21 +08005428}
5429
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005430static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005431{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005432 rtl_hw_start_8105e_1(tp);
Francois Romieufdf6fc02012-07-06 22:40:38 +02005433 rtl_ephy_write(tp, 0x1e, rtl_ephy_read(tp, 0x1e) | 0x8000);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005434}
5435
Hayes Wang7e18dca2012-03-30 14:33:02 +08005436static void rtl_hw_start_8402(struct rtl8169_private *tp)
5437{
5438 void __iomem *ioaddr = tp->mmio_addr;
5439 static const struct ephy_info e_info_8402[] = {
5440 { 0x19, 0xffff, 0xff64 },
5441 { 0x1e, 0, 0x4000 }
5442 };
5443
5444 rtl_csi_access_enable_2(tp);
5445
5446 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5447 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5448
5449 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5450 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5451
Francois Romieufdf6fc02012-07-06 22:40:38 +02005452 rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402));
Hayes Wang7e18dca2012-03-30 14:33:02 +08005453
5454 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
5455
Francois Romieufdf6fc02012-07-06 22:40:38 +02005456 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
5457 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
5458 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5459 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5460 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5461 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5462 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08005463}
5464
Hayes Wang5598bfe2012-07-02 17:23:21 +08005465static void rtl_hw_start_8106(struct rtl8169_private *tp)
5466{
5467 void __iomem *ioaddr = tp->mmio_addr;
5468
5469 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5470 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5471
Francois Romieu4521e1a92012-11-01 16:46:28 +00005472 RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN);
Hayes Wang5598bfe2012-07-02 17:23:21 +08005473 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
5474 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
5475}
5476
Francois Romieu07ce4062007-02-23 23:36:39 +01005477static void rtl_hw_start_8101(struct net_device *dev)
5478{
Francois Romieucdf1a602007-06-11 23:29:50 +02005479 struct rtl8169_private *tp = netdev_priv(dev);
5480 void __iomem *ioaddr = tp->mmio_addr;
5481 struct pci_dev *pdev = tp->pci_dev;
5482
Francois Romieuda78dbf2012-01-26 14:18:23 +01005483 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
5484 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00005485
Francois Romieucecb5fd2011-04-01 10:21:07 +02005486 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
Jiang Liu7d7903b2012-07-24 17:20:16 +08005487 tp->mac_version == RTL_GIGA_MAC_VER_16)
Bjorn Helgaas8200bc72012-08-22 10:29:42 -06005488 pcie_capability_set_word(pdev, PCI_EXP_DEVCTL,
5489 PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieucdf1a602007-06-11 23:29:50 +02005490
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005491 RTL_W8(Cfg9346, Cfg9346_Unlock);
5492
Francois Romieu2857ffb2008-08-02 21:08:49 +02005493 switch (tp->mac_version) {
5494 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005495 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005496 break;
5497
5498 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005499 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005500 break;
5501
5502 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005503 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005504 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005505
5506 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005507 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005508 break;
5509 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005510 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005511 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005512
5513 case RTL_GIGA_MAC_VER_37:
5514 rtl_hw_start_8402(tp);
5515 break;
Hayes Wang5598bfe2012-07-02 17:23:21 +08005516
5517 case RTL_GIGA_MAC_VER_39:
5518 rtl_hw_start_8106(tp);
5519 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02005520 }
5521
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005522 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02005523
françois romieuf0298f82011-01-03 15:07:42 +00005524 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02005525
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005526 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02005527
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005528 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02005529 RTL_W16(CPlusCmd, tp->cp_cmd);
5530
5531 RTL_W16(IntrMitigate, 0x0000);
5532
5533 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5534
5535 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5536 rtl_set_rx_tx_config_registers(tp);
5537
Francois Romieucdf1a602007-06-11 23:29:50 +02005538 RTL_R8(IntrMask);
5539
Francois Romieucdf1a602007-06-11 23:29:50 +02005540 rtl_set_rx_mode(dev);
5541
5542 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543}
5544
5545static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
5546{
Francois Romieud58d46b2011-05-03 16:38:29 +02005547 struct rtl8169_private *tp = netdev_priv(dev);
5548
5549 if (new_mtu < ETH_ZLEN ||
5550 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 return -EINVAL;
5552
Francois Romieud58d46b2011-05-03 16:38:29 +02005553 if (new_mtu > ETH_DATA_LEN)
5554 rtl_hw_jumbo_enable(tp);
5555 else
5556 rtl_hw_jumbo_disable(tp);
5557
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00005559 netdev_update_features(dev);
5560
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005561 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562}
5563
5564static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
5565{
Al Viro95e09182007-12-22 18:55:39 +00005566 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
5568}
5569
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005570static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
5571 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005573 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005574 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005575
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005576 kfree(*data_buff);
5577 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 rtl8169_make_unusable_by_asic(desc);
5579}
5580
5581static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
5582{
5583 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
5584
5585 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
5586}
5587
5588static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
5589 u32 rx_buf_sz)
5590{
5591 desc->addr = cpu_to_le64(mapping);
5592 wmb();
5593 rtl8169_mark_to_asic(desc, rx_buf_sz);
5594}
5595
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005596static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005598 return (void *)ALIGN((long)data, 16);
5599}
5600
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005601static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
5602 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005603{
5604 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005606 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005607 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005608 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005610 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
5611 if (!data)
5612 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01005613
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005614 if (rtl8169_align(data) != data) {
5615 kfree(data);
5616 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
5617 if (!data)
5618 return NULL;
5619 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005620
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005621 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005622 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005623 if (unlikely(dma_mapping_error(d, mapping))) {
5624 if (net_ratelimit())
5625 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005626 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628
5629 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005630 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005631
5632err_out:
5633 kfree(data);
5634 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635}
5636
5637static void rtl8169_rx_clear(struct rtl8169_private *tp)
5638{
Francois Romieu07d3f512007-02-21 22:40:46 +01005639 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640
5641 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005642 if (tp->Rx_databuff[i]) {
5643 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644 tp->RxDescArray + i);
5645 }
5646 }
5647}
5648
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005649static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005651 desc->opts1 |= cpu_to_le32(RingEnd);
5652}
Francois Romieu5b0384f2006-08-16 16:00:01 +02005653
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005654static int rtl8169_rx_fill(struct rtl8169_private *tp)
5655{
5656 unsigned int i;
5657
5658 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005659 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02005660
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005661 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005663
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005664 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005665 if (!data) {
5666 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005667 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005668 }
5669 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005672 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
5673 return 0;
5674
5675err_out:
5676 rtl8169_rx_clear(tp);
5677 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678}
5679
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680static int rtl8169_init_ring(struct net_device *dev)
5681{
5682 struct rtl8169_private *tp = netdev_priv(dev);
5683
5684 rtl8169_init_ring_indexes(tp);
5685
5686 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005687 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005689 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690}
5691
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005692static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693 struct TxDesc *desc)
5694{
5695 unsigned int len = tx_skb->len;
5696
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005697 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
5698
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699 desc->opts1 = 0x00;
5700 desc->opts2 = 0x00;
5701 desc->addr = 0x00;
5702 tx_skb->len = 0;
5703}
5704
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005705static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
5706 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707{
5708 unsigned int i;
5709
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005710 for (i = 0; i < n; i++) {
5711 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712 struct ring_info *tx_skb = tp->tx_skb + entry;
5713 unsigned int len = tx_skb->len;
5714
5715 if (len) {
5716 struct sk_buff *skb = tx_skb->skb;
5717
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005718 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719 tp->TxDescArray + entry);
5720 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00005721 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722 dev_kfree_skb(skb);
5723 tx_skb->skb = NULL;
5724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725 }
5726 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005727}
5728
5729static void rtl8169_tx_clear(struct rtl8169_private *tp)
5730{
5731 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 tp->cur_tx = tp->dirty_tx = 0;
5733}
5734
Francois Romieu4422bcd2012-01-26 11:23:32 +01005735static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736{
David Howellsc4028952006-11-22 14:57:56 +00005737 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01005738 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
Francois Romieuda78dbf2012-01-26 14:18:23 +01005740 napi_disable(&tp->napi);
5741 netif_stop_queue(dev);
5742 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743
françois romieuc7c2c392011-12-04 20:30:52 +00005744 rtl8169_hw_reset(tp);
5745
Francois Romieu56de4142011-03-15 17:29:31 +01005746 for (i = 0; i < NUM_RX_DESC; i++)
5747 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
5748
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00005750 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751
Francois Romieuda78dbf2012-01-26 14:18:23 +01005752 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01005753 rtl_hw_start(dev);
5754 netif_wake_queue(dev);
5755 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756}
5757
5758static void rtl8169_tx_timeout(struct net_device *dev)
5759{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005760 struct rtl8169_private *tp = netdev_priv(dev);
5761
5762 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763}
5764
5765static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07005766 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767{
5768 struct skb_shared_info *info = skb_shinfo(skb);
5769 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04005770 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005771 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772
5773 entry = tp->cur_tx;
5774 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00005775 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776 dma_addr_t mapping;
5777 u32 status, len;
5778 void *addr;
5779
5780 entry = (entry + 1) % NUM_TX_DESC;
5781
5782 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00005783 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00005784 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005785 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005786 if (unlikely(dma_mapping_error(d, mapping))) {
5787 if (net_ratelimit())
5788 netif_err(tp, drv, tp->dev,
5789 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005790 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792
Francois Romieucecb5fd2011-04-01 10:21:07 +02005793 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005794 status = opts[0] | len |
5795 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796
5797 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07005798 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799 txd->addr = cpu_to_le64(mapping);
5800
5801 tp->tx_skb[entry].len = len;
5802 }
5803
5804 if (cur_frag) {
5805 tp->tx_skb[entry].skb = skb;
5806 txd->opts1 |= cpu_to_le32(LastFrag);
5807 }
5808
5809 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005810
5811err_out:
5812 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
5813 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814}
5815
Francois Romieu2b7b4312011-04-18 22:53:24 -07005816static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
5817 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818{
Francois Romieu2b7b4312011-04-18 22:53:24 -07005819 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00005820 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005821 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822
Francois Romieu2b7b4312011-04-18 22:53:24 -07005823 if (mss) {
5824 opts[0] |= TD_LSO;
5825 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
5826 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005827 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828
5829 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005830 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005832 opts[offset] |= info->checksum.udp;
5833 else
5834 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836}
5837
Stephen Hemminger613573252009-08-31 19:50:58 +00005838static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
5839 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840{
5841 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005842 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843 struct TxDesc *txd = tp->TxDescArray + entry;
5844 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005845 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 dma_addr_t mapping;
5847 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005848 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005849 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02005850
Julien Ducourthial477206a2012-05-09 00:00:06 +02005851 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005852 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005853 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854 }
5855
5856 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005857 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005859 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005860 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005861 if (unlikely(dma_mapping_error(d, mapping))) {
5862 if (net_ratelimit())
5863 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005864 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
5867 tp->tx_skb[entry].len = len;
5868 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869
Kirill Smelkov810f4892012-11-10 21:11:02 +04005870 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb));
Francois Romieu2b7b4312011-04-18 22:53:24 -07005871 opts[0] = DescOwn;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005872
Francois Romieu2b7b4312011-04-18 22:53:24 -07005873 rtl8169_tso_csum(tp, skb, opts);
5874
5875 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005876 if (frags < 0)
5877 goto err_dma_1;
5878 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005879 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005880 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07005881 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005882 tp->tx_skb[entry].skb = skb;
5883 }
5884
Francois Romieu2b7b4312011-04-18 22:53:24 -07005885 txd->opts2 = cpu_to_le32(opts[1]);
5886
Richard Cochran5047fb52012-03-10 07:29:42 +00005887 skb_tx_timestamp(skb);
5888
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889 wmb();
5890
Francois Romieucecb5fd2011-04-01 10:21:07 +02005891 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005892 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893 txd->opts1 = cpu_to_le32(status);
5894
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895 tp->cur_tx += frags + 1;
5896
David Dillow4c020a92010-03-03 16:33:10 +00005897 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898
Francois Romieucecb5fd2011-04-01 10:21:07 +02005899 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900
Francois Romieuda78dbf2012-01-26 14:18:23 +01005901 mmiowb();
5902
Julien Ducourthial477206a2012-05-09 00:00:06 +02005903 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01005904 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
5905 * not miss a ring update when it notices a stopped queue.
5906 */
5907 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01005909 /* Sync with rtl_tx:
5910 * - publish queue status and cur_tx ring index (write barrier)
5911 * - refresh dirty_tx ring index (read barrier).
5912 * May the current thread have a pessimistic view of the ring
5913 * status and forget to wake up queue, a racing rtl_tx thread
5914 * can't.
5915 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005916 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02005917 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 netif_wake_queue(dev);
5919 }
5920
Stephen Hemminger613573252009-08-31 19:50:58 +00005921 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005923err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005924 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005925err_dma_0:
5926 dev_kfree_skb(skb);
5927 dev->stats.tx_dropped++;
5928 return NETDEV_TX_OK;
5929
5930err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005932 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00005933 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934}
5935
5936static void rtl8169_pcierr_interrupt(struct net_device *dev)
5937{
5938 struct rtl8169_private *tp = netdev_priv(dev);
5939 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940 u16 pci_status, pci_cmd;
5941
5942 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
5943 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
5944
Joe Perchesbf82c182010-02-09 11:49:50 +00005945 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
5946 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947
5948 /*
5949 * The recovery sequence below admits a very elaborated explanation:
5950 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01005951 * - I did not see what else could be done;
5952 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 *
5954 * Feel free to adjust to your needs.
5955 */
Francois Romieua27993f2006-12-18 00:04:19 +01005956 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01005957 pci_cmd &= ~PCI_COMMAND_PARITY;
5958 else
5959 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
5960
5961 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962
5963 pci_write_config_word(pdev, PCI_STATUS,
5964 pci_status & (PCI_STATUS_DETECTED_PARITY |
5965 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
5966 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
5967
5968 /* The infamous DAC f*ckup only happens at boot time */
Timo Teräs9fba0812013-01-15 21:01:24 +00005969 if ((tp->cp_cmd & PCIDAC) && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00005970 void __iomem *ioaddr = tp->mmio_addr;
5971
Joe Perchesbf82c182010-02-09 11:49:50 +00005972 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973 tp->cp_cmd &= ~PCIDAC;
5974 RTL_W16(CPlusCmd, tp->cp_cmd);
5975 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 }
5977
françois romieue6de30d2011-01-03 15:08:37 +00005978 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01005979
Francois Romieu98ddf982012-01-31 10:47:34 +01005980 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981}
5982
Francois Romieuda78dbf2012-01-26 14:18:23 +01005983static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984{
5985 unsigned int dirty_tx, tx_left;
5986
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 dirty_tx = tp->dirty_tx;
5988 smp_rmb();
5989 tx_left = tp->cur_tx - dirty_tx;
5990
5991 while (tx_left > 0) {
5992 unsigned int entry = dirty_tx % NUM_TX_DESC;
5993 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994 u32 status;
5995
5996 rmb();
5997 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
5998 if (status & DescOwn)
5999 break;
6000
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006001 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
6002 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003 if (status & LastFrag) {
Francois Romieu17bcb682012-07-23 22:55:55 +02006004 u64_stats_update_begin(&tp->tx_stats.syncp);
6005 tp->tx_stats.packets++;
6006 tp->tx_stats.bytes += tx_skb->skb->len;
6007 u64_stats_update_end(&tp->tx_stats.syncp);
6008 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009 tx_skb->skb = NULL;
6010 }
6011 dirty_tx++;
6012 tx_left--;
6013 }
6014
6015 if (tp->dirty_tx != dirty_tx) {
6016 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01006017 /* Sync with rtl8169_start_xmit:
6018 * - publish dirty_tx ring index (write barrier)
6019 * - refresh cur_tx ring index and queue status (read barrier)
6020 * May the current thread miss the stopped queue condition,
6021 * a racing xmit thread can only have a right view of the
6022 * ring status.
6023 */
Francois Romieu1e874e02012-01-27 15:05:38 +01006024 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02006026 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027 netif_wake_queue(dev);
6028 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02006029 /*
6030 * 8168 hack: TxPoll requests are lost when the Tx packets are
6031 * too close. Let's kick an extra TxPoll request when a burst
6032 * of start_xmit activity is detected (if it is not detected,
6033 * it is slow enough). -- FR
6034 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006035 if (tp->cur_tx != dirty_tx) {
6036 void __iomem *ioaddr = tp->mmio_addr;
6037
Francois Romieud78ae2d2007-08-26 20:08:19 +02006038 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040 }
6041}
6042
Francois Romieu126fa4b2005-05-12 20:09:17 -04006043static inline int rtl8169_fragmented_frame(u32 status)
6044{
6045 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
6046}
6047
Eric Dumazetadea1ac72010-09-05 20:04:05 -07006048static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050 u32 status = opts1 & RxProtoMask;
6051
6052 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00006053 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054 skb->ip_summed = CHECKSUM_UNNECESSARY;
6055 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006056 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057}
6058
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006059static struct sk_buff *rtl8169_try_rx_copy(void *data,
6060 struct rtl8169_private *tp,
6061 int pkt_size,
6062 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02006064 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006065 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006067 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006068 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006069 prefetch(data);
6070 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
6071 if (skb)
6072 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006073 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
6074
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006075 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076}
6077
Francois Romieuda78dbf2012-01-26 14:18:23 +01006078static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079{
6080 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006081 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083 cur_rx = tp->cur_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084
Timo Teräs9fba0812013-01-15 21:01:24 +00006085 for (rx_left = min(budget, NUM_RX_DESC); rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04006087 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 u32 status;
6089
6090 rmb();
David S. Miller8decf862011-09-22 03:23:13 -04006091 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092
6093 if (status & DescOwn)
6094 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02006095 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00006096 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
6097 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02006098 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02006100 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02006102 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02006103 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01006104 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02006105 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02006106 }
Ben Greear6bbe0212012-02-10 15:04:33 +00006107 if ((status & (RxRUNT | RxCRC)) &&
6108 !(status & (RxRWT | RxFOVF)) &&
6109 (dev->features & NETIF_F_RXALL))
6110 goto process_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006112 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00006113 dma_addr_t addr;
6114 int pkt_size;
6115
6116process_pkt:
6117 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00006118 if (likely(!(dev->features & NETIF_F_RXFCS)))
6119 pkt_size = (status & 0x00003fff) - 4;
6120 else
6121 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122
Francois Romieu126fa4b2005-05-12 20:09:17 -04006123 /*
6124 * The driver does not support incoming fragmented
6125 * frames. They are seen as a symptom of over-mtu
6126 * sized frames.
6127 */
6128 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02006129 dev->stats.rx_dropped++;
6130 dev->stats.rx_length_errors++;
françois romieuce11ff52013-01-24 13:30:06 +00006131 goto release_descriptor;
Francois Romieu126fa4b2005-05-12 20:09:17 -04006132 }
6133
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006134 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
6135 tp, pkt_size, addr);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006136 if (!skb) {
6137 dev->stats.rx_dropped++;
françois romieuce11ff52013-01-24 13:30:06 +00006138 goto release_descriptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 }
6140
Eric Dumazetadea1ac72010-09-05 20:04:05 -07006141 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142 skb_put(skb, pkt_size);
6143 skb->protocol = eth_type_trans(skb, dev);
6144
Francois Romieu7a8fc772011-03-01 17:18:33 +01006145 rtl8169_rx_vlan_tag(desc, skb);
6146
Francois Romieu56de4142011-03-15 17:29:31 +01006147 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
Junchang Wang8027aa22012-03-04 23:30:32 +01006149 u64_stats_update_begin(&tp->rx_stats.syncp);
6150 tp->rx_stats.packets++;
6151 tp->rx_stats.bytes += pkt_size;
6152 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153 }
françois romieuce11ff52013-01-24 13:30:06 +00006154release_descriptor:
6155 desc->opts2 = 0;
6156 wmb();
6157 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158 }
6159
6160 count = cur_rx - tp->cur_rx;
6161 tp->cur_rx = cur_rx;
6162
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163 return count;
6164}
6165
Francois Romieu07d3f512007-02-21 22:40:46 +01006166static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167{
Francois Romieu07d3f512007-02-21 22:40:46 +01006168 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01006171 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172
Francois Romieu9085cdfa2012-01-26 12:59:08 +01006173 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006174 if (status && status != 0xffff) {
6175 status &= RTL_EVENT_NAPI | tp->event_slow;
6176 if (status) {
6177 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00006178
Francois Romieuda78dbf2012-01-26 14:18:23 +01006179 rtl_irq_disable(tp);
6180 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183 return IRQ_RETVAL(handled);
6184}
6185
Francois Romieuda78dbf2012-01-26 14:18:23 +01006186/*
6187 * Workqueue context.
6188 */
6189static void rtl_slow_event_work(struct rtl8169_private *tp)
6190{
6191 struct net_device *dev = tp->dev;
6192 u16 status;
6193
6194 status = rtl_get_events(tp) & tp->event_slow;
6195 rtl_ack_events(tp, status);
6196
6197 if (unlikely(status & RxFIFOOver)) {
6198 switch (tp->mac_version) {
6199 /* Work around for rx fifo overflow */
6200 case RTL_GIGA_MAC_VER_11:
6201 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01006202 /* XXX - Hack alert. See rtl_task(). */
6203 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006204 default:
6205 break;
6206 }
6207 }
6208
6209 if (unlikely(status & SYSErr))
6210 rtl8169_pcierr_interrupt(dev);
6211
6212 if (status & LinkChg)
6213 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
6214
françois romieu7dbb4912012-06-09 10:53:16 +00006215 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006216}
6217
Francois Romieu4422bcd2012-01-26 11:23:32 +01006218static void rtl_task(struct work_struct *work)
6219{
Francois Romieuda78dbf2012-01-26 14:18:23 +01006220 static const struct {
6221 int bitnr;
6222 void (*action)(struct rtl8169_private *);
6223 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01006224 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006225 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
6226 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
6227 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
6228 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01006229 struct rtl8169_private *tp =
6230 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006231 struct net_device *dev = tp->dev;
6232 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01006233
Francois Romieuda78dbf2012-01-26 14:18:23 +01006234 rtl_lock_work(tp);
6235
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006236 if (!netif_running(dev) ||
6237 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01006238 goto out_unlock;
6239
6240 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
6241 bool pending;
6242
Francois Romieuda78dbf2012-01-26 14:18:23 +01006243 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006244 if (pending)
6245 rtl_work[i].action(tp);
6246 }
6247
6248out_unlock:
6249 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01006250}
6251
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006252static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006254 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
6255 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006256 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
6257 int work_done= 0;
6258 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259
Francois Romieuda78dbf2012-01-26 14:18:23 +01006260 status = rtl_get_events(tp);
6261 rtl_ack_events(tp, status & ~tp->event_slow);
6262
6263 if (status & RTL_EVENT_NAPI_RX)
6264 work_done = rtl_rx(dev, tp, (u32) budget);
6265
6266 if (status & RTL_EVENT_NAPI_TX)
6267 rtl_tx(dev, tp);
6268
6269 if (status & tp->event_slow) {
6270 enable_mask &= ~tp->event_slow;
6271
6272 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
6273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006275 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006276 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00006277
Francois Romieuda78dbf2012-01-26 14:18:23 +01006278 rtl_irq_enable(tp, enable_mask);
6279 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280 }
6281
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006282 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
Francois Romieu523a6092008-09-10 22:28:56 +02006285static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
6286{
6287 struct rtl8169_private *tp = netdev_priv(dev);
6288
6289 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
6290 return;
6291
6292 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
6293 RTL_W32(RxMissed, 0);
6294}
6295
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296static void rtl8169_down(struct net_device *dev)
6297{
6298 struct rtl8169_private *tp = netdev_priv(dev);
6299 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300
Francois Romieu4876cc12011-03-11 21:07:11 +01006301 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01006303 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006304 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305
Hayes Wang92fc43b2011-07-06 15:58:03 +08006306 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006307 /*
6308 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01006309 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
6310 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006311 */
Francois Romieu523a6092008-09-10 22:28:56 +02006312 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006315 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317 rtl8169_tx_clear(tp);
6318
6319 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00006320
6321 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322}
6323
6324static int rtl8169_close(struct net_device *dev)
6325{
6326 struct rtl8169_private *tp = netdev_priv(dev);
6327 struct pci_dev *pdev = tp->pci_dev;
6328
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006329 pm_runtime_get_sync(&pdev->dev);
6330
Francois Romieucecb5fd2011-04-01 10:21:07 +02006331 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08006332 rtl8169_update_counters(dev);
6333
Francois Romieuda78dbf2012-01-26 14:18:23 +01006334 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006335 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006336
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006338 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006340 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00006342 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6343 tp->RxPhyAddr);
6344 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6345 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346 tp->TxDescArray = NULL;
6347 tp->RxDescArray = NULL;
6348
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006349 pm_runtime_put_sync(&pdev->dev);
6350
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351 return 0;
6352}
6353
Francois Romieudc1c00c2012-03-08 10:06:18 +01006354#ifdef CONFIG_NET_POLL_CONTROLLER
6355static void rtl8169_netpoll(struct net_device *dev)
6356{
6357 struct rtl8169_private *tp = netdev_priv(dev);
6358
6359 rtl8169_interrupt(tp->pci_dev->irq, dev);
6360}
6361#endif
6362
Francois Romieudf43ac72012-03-08 09:48:40 +01006363static int rtl_open(struct net_device *dev)
6364{
6365 struct rtl8169_private *tp = netdev_priv(dev);
6366 void __iomem *ioaddr = tp->mmio_addr;
6367 struct pci_dev *pdev = tp->pci_dev;
6368 int retval = -ENOMEM;
6369
6370 pm_runtime_get_sync(&pdev->dev);
6371
6372 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02006373 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01006374 * dma_alloc_coherent provides more.
6375 */
6376 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
6377 &tp->TxPhyAddr, GFP_KERNEL);
6378 if (!tp->TxDescArray)
6379 goto err_pm_runtime_put;
6380
6381 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
6382 &tp->RxPhyAddr, GFP_KERNEL);
6383 if (!tp->RxDescArray)
6384 goto err_free_tx_0;
6385
6386 retval = rtl8169_init_ring(dev);
6387 if (retval < 0)
6388 goto err_free_rx_1;
6389
6390 INIT_WORK(&tp->wk.work, rtl_task);
6391
6392 smp_mb();
6393
6394 rtl_request_firmware(tp);
6395
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006396 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01006397 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
6398 dev->name, dev);
6399 if (retval < 0)
6400 goto err_release_fw_2;
6401
6402 rtl_lock_work(tp);
6403
6404 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
6405
6406 napi_enable(&tp->napi);
6407
6408 rtl8169_init_phy(dev, tp);
6409
6410 __rtl8169_set_features(dev, dev->features);
6411
6412 rtl_pll_power_up(tp);
6413
6414 rtl_hw_start(dev);
6415
6416 netif_start_queue(dev);
6417
6418 rtl_unlock_work(tp);
6419
6420 tp->saved_wolopts = 0;
6421 pm_runtime_put_noidle(&pdev->dev);
6422
6423 rtl8169_check_link_status(dev, tp, ioaddr);
6424out:
6425 return retval;
6426
6427err_release_fw_2:
6428 rtl_release_firmware(tp);
6429 rtl8169_rx_clear(tp);
6430err_free_rx_1:
6431 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6432 tp->RxPhyAddr);
6433 tp->RxDescArray = NULL;
6434err_free_tx_0:
6435 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6436 tp->TxPhyAddr);
6437 tp->TxDescArray = NULL;
6438err_pm_runtime_put:
6439 pm_runtime_put_noidle(&pdev->dev);
6440 goto out;
6441}
6442
Junchang Wang8027aa22012-03-04 23:30:32 +01006443static struct rtnl_link_stats64 *
6444rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445{
6446 struct rtl8169_private *tp = netdev_priv(dev);
6447 void __iomem *ioaddr = tp->mmio_addr;
Junchang Wang8027aa22012-03-04 23:30:32 +01006448 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449
Francois Romieuda78dbf2012-01-26 14:18:23 +01006450 if (netif_running(dev))
Francois Romieu523a6092008-09-10 22:28:56 +02006451 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02006452
Junchang Wang8027aa22012-03-04 23:30:32 +01006453 do {
6454 start = u64_stats_fetch_begin_bh(&tp->rx_stats.syncp);
6455 stats->rx_packets = tp->rx_stats.packets;
6456 stats->rx_bytes = tp->rx_stats.bytes;
6457 } while (u64_stats_fetch_retry_bh(&tp->rx_stats.syncp, start));
6458
6459
6460 do {
6461 start = u64_stats_fetch_begin_bh(&tp->tx_stats.syncp);
6462 stats->tx_packets = tp->tx_stats.packets;
6463 stats->tx_bytes = tp->tx_stats.bytes;
6464 } while (u64_stats_fetch_retry_bh(&tp->tx_stats.syncp, start));
6465
6466 stats->rx_dropped = dev->stats.rx_dropped;
6467 stats->tx_dropped = dev->stats.tx_dropped;
6468 stats->rx_length_errors = dev->stats.rx_length_errors;
6469 stats->rx_errors = dev->stats.rx_errors;
6470 stats->rx_crc_errors = dev->stats.rx_crc_errors;
6471 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
6472 stats->rx_missed_errors = dev->stats.rx_missed_errors;
6473
6474 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475}
6476
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006477static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01006478{
françois romieu065c27c2011-01-03 15:08:12 +00006479 struct rtl8169_private *tp = netdev_priv(dev);
6480
Francois Romieu5d06a992006-02-23 00:47:58 +01006481 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006482 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01006483
6484 netif_device_detach(dev);
6485 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006486
6487 rtl_lock_work(tp);
6488 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006489 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006490 rtl_unlock_work(tp);
6491
6492 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006493}
Francois Romieu5d06a992006-02-23 00:47:58 +01006494
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006495#ifdef CONFIG_PM
6496
6497static int rtl8169_suspend(struct device *device)
6498{
6499 struct pci_dev *pdev = to_pci_dev(device);
6500 struct net_device *dev = pci_get_drvdata(pdev);
6501
6502 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02006503
Francois Romieu5d06a992006-02-23 00:47:58 +01006504 return 0;
6505}
6506
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006507static void __rtl8169_resume(struct net_device *dev)
6508{
françois romieu065c27c2011-01-03 15:08:12 +00006509 struct rtl8169_private *tp = netdev_priv(dev);
6510
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006511 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00006512
6513 rtl_pll_power_up(tp);
6514
Artem Savkovcff4c162012-04-03 10:29:11 +00006515 rtl_lock_work(tp);
6516 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006517 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00006518 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006519
Francois Romieu98ddf982012-01-31 10:47:34 +01006520 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006521}
6522
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006523static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01006524{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006525 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01006526 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006527 struct rtl8169_private *tp = netdev_priv(dev);
6528
6529 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01006530
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006531 if (netif_running(dev))
6532 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01006533
Francois Romieu5d06a992006-02-23 00:47:58 +01006534 return 0;
6535}
6536
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006537static int rtl8169_runtime_suspend(struct device *device)
6538{
6539 struct pci_dev *pdev = to_pci_dev(device);
6540 struct net_device *dev = pci_get_drvdata(pdev);
6541 struct rtl8169_private *tp = netdev_priv(dev);
6542
6543 if (!tp->TxDescArray)
6544 return 0;
6545
Francois Romieuda78dbf2012-01-26 14:18:23 +01006546 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006547 tp->saved_wolopts = __rtl8169_get_wol(tp);
6548 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006549 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006550
6551 rtl8169_net_suspend(dev);
6552
6553 return 0;
6554}
6555
6556static int rtl8169_runtime_resume(struct device *device)
6557{
6558 struct pci_dev *pdev = to_pci_dev(device);
6559 struct net_device *dev = pci_get_drvdata(pdev);
6560 struct rtl8169_private *tp = netdev_priv(dev);
6561
6562 if (!tp->TxDescArray)
6563 return 0;
6564
Francois Romieuda78dbf2012-01-26 14:18:23 +01006565 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006566 __rtl8169_set_wol(tp, tp->saved_wolopts);
6567 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006568 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006569
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006570 rtl8169_init_phy(dev, tp);
6571
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006572 __rtl8169_resume(dev);
6573
6574 return 0;
6575}
6576
6577static int rtl8169_runtime_idle(struct device *device)
6578{
6579 struct pci_dev *pdev = to_pci_dev(device);
6580 struct net_device *dev = pci_get_drvdata(pdev);
6581 struct rtl8169_private *tp = netdev_priv(dev);
6582
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00006583 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006584}
6585
Alexey Dobriyan47145212009-12-14 18:00:08 -08006586static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02006587 .suspend = rtl8169_suspend,
6588 .resume = rtl8169_resume,
6589 .freeze = rtl8169_suspend,
6590 .thaw = rtl8169_resume,
6591 .poweroff = rtl8169_suspend,
6592 .restore = rtl8169_resume,
6593 .runtime_suspend = rtl8169_runtime_suspend,
6594 .runtime_resume = rtl8169_runtime_resume,
6595 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006596};
6597
6598#define RTL8169_PM_OPS (&rtl8169_pm_ops)
6599
6600#else /* !CONFIG_PM */
6601
6602#define RTL8169_PM_OPS NULL
6603
6604#endif /* !CONFIG_PM */
6605
David S. Miller1805b2f2011-10-24 18:18:09 -04006606static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
6607{
6608 void __iomem *ioaddr = tp->mmio_addr;
6609
6610 /* WoL fails with 8168b when the receiver is disabled. */
6611 switch (tp->mac_version) {
6612 case RTL_GIGA_MAC_VER_11:
6613 case RTL_GIGA_MAC_VER_12:
6614 case RTL_GIGA_MAC_VER_17:
6615 pci_clear_master(tp->pci_dev);
6616
6617 RTL_W8(ChipCmd, CmdRxEnb);
6618 /* PCI commit */
6619 RTL_R8(ChipCmd);
6620 break;
6621 default:
6622 break;
6623 }
6624}
6625
Francois Romieu1765f952008-09-13 17:21:40 +02006626static void rtl_shutdown(struct pci_dev *pdev)
6627{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006628 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00006629 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00006630 struct device *d = &pdev->dev;
6631
6632 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02006633
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006634 rtl8169_net_suspend(dev);
6635
Francois Romieucecb5fd2011-04-01 10:21:07 +02006636 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08006637 rtl_rar_set(tp, dev->perm_addr);
6638
Hayes Wang92fc43b2011-07-06 15:58:03 +08006639 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00006640
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006641 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04006642 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
6643 rtl_wol_suspend_quirk(tp);
6644 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00006645 }
6646
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006647 pci_wake_from_d3(pdev, true);
6648 pci_set_power_state(pdev, PCI_D3hot);
6649 }
françois romieu2a15cd22012-03-06 01:14:12 +00006650
6651 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006652}
Francois Romieu5d06a992006-02-23 00:47:58 +01006653
Bill Pembertonbaf63292012-12-03 09:23:28 -05006654static void rtl_remove_one(struct pci_dev *pdev)
Francois Romieue27566e2012-03-08 09:54:01 +01006655{
6656 struct net_device *dev = pci_get_drvdata(pdev);
6657 struct rtl8169_private *tp = netdev_priv(dev);
6658
6659 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6660 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6661 tp->mac_version == RTL_GIGA_MAC_VER_31) {
6662 rtl8168_driver_stop(tp);
6663 }
6664
6665 cancel_work_sync(&tp->wk.work);
6666
Devendra Nagaad1be8d2012-05-31 01:51:20 +00006667 netif_napi_del(&tp->napi);
6668
Francois Romieue27566e2012-03-08 09:54:01 +01006669 unregister_netdev(dev);
6670
6671 rtl_release_firmware(tp);
6672
6673 if (pci_dev_run_wake(pdev))
6674 pm_runtime_get_noresume(&pdev->dev);
6675
6676 /* restore original MAC address */
6677 rtl_rar_set(tp, dev->perm_addr);
6678
6679 rtl_disable_msi(pdev, tp);
6680 rtl8169_release_board(pdev, dev, tp->mmio_addr);
6681 pci_set_drvdata(pdev, NULL);
6682}
6683
Francois Romieufa9c3852012-03-08 10:01:50 +01006684static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01006685 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01006686 .ndo_stop = rtl8169_close,
6687 .ndo_get_stats64 = rtl8169_get_stats64,
6688 .ndo_start_xmit = rtl8169_start_xmit,
6689 .ndo_tx_timeout = rtl8169_tx_timeout,
6690 .ndo_validate_addr = eth_validate_addr,
6691 .ndo_change_mtu = rtl8169_change_mtu,
6692 .ndo_fix_features = rtl8169_fix_features,
6693 .ndo_set_features = rtl8169_set_features,
6694 .ndo_set_mac_address = rtl_set_mac_address,
6695 .ndo_do_ioctl = rtl8169_ioctl,
6696 .ndo_set_rx_mode = rtl_set_rx_mode,
6697#ifdef CONFIG_NET_POLL_CONTROLLER
6698 .ndo_poll_controller = rtl8169_netpoll,
6699#endif
6700
6701};
6702
Francois Romieu31fa8b12012-03-08 10:09:40 +01006703static const struct rtl_cfg_info {
6704 void (*hw_start)(struct net_device *);
6705 unsigned int region;
6706 unsigned int align;
6707 u16 event_slow;
6708 unsigned features;
6709 u8 default_ver;
6710} rtl_cfg_infos [] = {
6711 [RTL_CFG_0] = {
6712 .hw_start = rtl_hw_start_8169,
6713 .region = 1,
6714 .align = 0,
6715 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
6716 .features = RTL_FEATURE_GMII,
6717 .default_ver = RTL_GIGA_MAC_VER_01,
6718 },
6719 [RTL_CFG_1] = {
6720 .hw_start = rtl_hw_start_8168,
6721 .region = 2,
6722 .align = 8,
6723 .event_slow = SYSErr | LinkChg | RxOverflow,
6724 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
6725 .default_ver = RTL_GIGA_MAC_VER_11,
6726 },
6727 [RTL_CFG_2] = {
6728 .hw_start = rtl_hw_start_8101,
6729 .region = 2,
6730 .align = 8,
6731 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
6732 PCSTimeout,
6733 .features = RTL_FEATURE_MSI,
6734 .default_ver = RTL_GIGA_MAC_VER_13,
6735 }
6736};
6737
6738/* Cfg9346_Unlock assumed. */
6739static unsigned rtl_try_msi(struct rtl8169_private *tp,
6740 const struct rtl_cfg_info *cfg)
6741{
6742 void __iomem *ioaddr = tp->mmio_addr;
6743 unsigned msi = 0;
6744 u8 cfg2;
6745
6746 cfg2 = RTL_R8(Config2) & ~MSIEnable;
6747 if (cfg->features & RTL_FEATURE_MSI) {
6748 if (pci_enable_msi(tp->pci_dev)) {
6749 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
6750 } else {
6751 cfg2 |= MSIEnable;
6752 msi = RTL_FEATURE_MSI;
6753 }
6754 }
6755 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
6756 RTL_W8(Config2, cfg2);
6757 return msi;
6758}
6759
Hayes Wangc5583862012-07-02 17:23:22 +08006760DECLARE_RTL_COND(rtl_link_list_ready_cond)
6761{
6762 void __iomem *ioaddr = tp->mmio_addr;
6763
6764 return RTL_R8(MCU) & LINK_LIST_RDY;
6765}
6766
6767DECLARE_RTL_COND(rtl_rxtx_empty_cond)
6768{
6769 void __iomem *ioaddr = tp->mmio_addr;
6770
6771 return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
6772}
6773
Bill Pembertonbaf63292012-12-03 09:23:28 -05006774static void rtl_hw_init_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006775{
6776 void __iomem *ioaddr = tp->mmio_addr;
6777 u32 data;
6778
6779 tp->ocp_base = OCP_STD_PHY_BASE;
6780
6781 RTL_W32(MISC, RTL_R32(MISC) | RXDV_GATED_EN);
6782
6783 if (!rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 42))
6784 return;
6785
6786 if (!rtl_udelay_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42))
6787 return;
6788
6789 RTL_W8(ChipCmd, RTL_R8(ChipCmd) & ~(CmdTxEnb | CmdRxEnb));
6790 msleep(1);
6791 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6792
Hayes Wang5f8bcce2012-07-10 08:47:05 +02006793 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08006794 data &= ~(1 << 14);
6795 r8168_mac_ocp_write(tp, 0xe8de, data);
6796
6797 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
6798 return;
6799
Hayes Wang5f8bcce2012-07-10 08:47:05 +02006800 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08006801 data |= (1 << 15);
6802 r8168_mac_ocp_write(tp, 0xe8de, data);
6803
6804 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
6805 return;
6806}
6807
Bill Pembertonbaf63292012-12-03 09:23:28 -05006808static void rtl_hw_initialize(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006809{
6810 switch (tp->mac_version) {
6811 case RTL_GIGA_MAC_VER_40:
6812 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00006813 case RTL_GIGA_MAC_VER_42:
Hayes Wangc5583862012-07-02 17:23:22 +08006814 rtl_hw_init_8168g(tp);
6815 break;
6816
6817 default:
6818 break;
6819 }
6820}
6821
Bill Pembertonbaf63292012-12-03 09:23:28 -05006822static int
Francois Romieu3b6cf252012-03-08 09:59:04 +01006823rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
6824{
6825 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
6826 const unsigned int region = cfg->region;
6827 struct rtl8169_private *tp;
6828 struct mii_if_info *mii;
6829 struct net_device *dev;
6830 void __iomem *ioaddr;
6831 int chipset, i;
6832 int rc;
6833
6834 if (netif_msg_drv(&debug)) {
6835 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
6836 MODULENAME, RTL8169_VERSION);
6837 }
6838
6839 dev = alloc_etherdev(sizeof (*tp));
6840 if (!dev) {
6841 rc = -ENOMEM;
6842 goto out;
6843 }
6844
6845 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01006846 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006847 tp = netdev_priv(dev);
6848 tp->dev = dev;
6849 tp->pci_dev = pdev;
6850 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
6851
6852 mii = &tp->mii;
6853 mii->dev = dev;
6854 mii->mdio_read = rtl_mdio_read;
6855 mii->mdio_write = rtl_mdio_write;
6856 mii->phy_id_mask = 0x1f;
6857 mii->reg_num_mask = 0x1f;
6858 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
6859
6860 /* disable ASPM completely as that cause random device stop working
6861 * problems as well as full system hangs for some PCIe devices users */
6862 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6863 PCIE_LINK_STATE_CLKPM);
6864
6865 /* enable device (incl. PCI PM wakeup and hotplug setup) */
6866 rc = pci_enable_device(pdev);
6867 if (rc < 0) {
6868 netif_err(tp, probe, dev, "enable failure\n");
6869 goto err_out_free_dev_1;
6870 }
6871
6872 if (pci_set_mwi(pdev) < 0)
6873 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
6874
6875 /* make sure PCI base addr 1 is MMIO */
6876 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
6877 netif_err(tp, probe, dev,
6878 "region #%d not an MMIO resource, aborting\n",
6879 region);
6880 rc = -ENODEV;
6881 goto err_out_mwi_2;
6882 }
6883
6884 /* check for weird/broken PCI region reporting */
6885 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
6886 netif_err(tp, probe, dev,
6887 "Invalid PCI region size(s), aborting\n");
6888 rc = -ENODEV;
6889 goto err_out_mwi_2;
6890 }
6891
6892 rc = pci_request_regions(pdev, MODULENAME);
6893 if (rc < 0) {
6894 netif_err(tp, probe, dev, "could not request regions\n");
6895 goto err_out_mwi_2;
6896 }
6897
6898 tp->cp_cmd = RxChkSum;
6899
6900 if ((sizeof(dma_addr_t) > 4) &&
6901 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
6902 tp->cp_cmd |= PCIDAC;
6903 dev->features |= NETIF_F_HIGHDMA;
6904 } else {
6905 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6906 if (rc < 0) {
6907 netif_err(tp, probe, dev, "DMA configuration failed\n");
6908 goto err_out_free_res_3;
6909 }
6910 }
6911
6912 /* ioremap MMIO region */
6913 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
6914 if (!ioaddr) {
6915 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
6916 rc = -EIO;
6917 goto err_out_free_res_3;
6918 }
6919 tp->mmio_addr = ioaddr;
6920
6921 if (!pci_is_pcie(pdev))
6922 netif_info(tp, probe, dev, "not PCI Express\n");
6923
6924 /* Identify chip attached to board */
6925 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
6926
6927 rtl_init_rxcfg(tp);
6928
6929 rtl_irq_disable(tp);
6930
Hayes Wangc5583862012-07-02 17:23:22 +08006931 rtl_hw_initialize(tp);
6932
Francois Romieu3b6cf252012-03-08 09:59:04 +01006933 rtl_hw_reset(tp);
6934
6935 rtl_ack_events(tp, 0xffff);
6936
6937 pci_set_master(pdev);
6938
6939 /*
6940 * Pretend we are using VLANs; This bypasses a nasty bug where
6941 * Interrupts stop flowing on high load on 8110SCd controllers.
6942 */
6943 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
6944 tp->cp_cmd |= RxVlan;
6945
6946 rtl_init_mdio_ops(tp);
6947 rtl_init_pll_power_ops(tp);
6948 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006949 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006950
6951 rtl8169_print_mac_version(tp);
6952
6953 chipset = tp->mac_version;
6954 tp->txd_version = rtl_chip_infos[chipset].txd_version;
6955
6956 RTL_W8(Cfg9346, Cfg9346_Unlock);
6957 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
6958 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
6959 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
6960 tp->features |= RTL_FEATURE_WOL;
6961 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
6962 tp->features |= RTL_FEATURE_WOL;
6963 tp->features |= rtl_try_msi(tp, cfg);
6964 RTL_W8(Cfg9346, Cfg9346_Lock);
6965
6966 if (rtl_tbi_enabled(tp)) {
6967 tp->set_speed = rtl8169_set_speed_tbi;
6968 tp->get_settings = rtl8169_gset_tbi;
6969 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
6970 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
6971 tp->link_ok = rtl8169_tbi_link_ok;
6972 tp->do_ioctl = rtl_tbi_ioctl;
6973 } else {
6974 tp->set_speed = rtl8169_set_speed_xmii;
6975 tp->get_settings = rtl8169_gset_xmii;
6976 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
6977 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
6978 tp->link_ok = rtl8169_xmii_link_ok;
6979 tp->do_ioctl = rtl_xmii_ioctl;
6980 }
6981
6982 mutex_init(&tp->wk.mutex);
6983
6984 /* Get MAC address */
6985 for (i = 0; i < ETH_ALEN; i++)
6986 dev->dev_addr[i] = RTL_R8(MAC0 + i);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006987
6988 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
6989 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006990
6991 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
6992
6993 /* don't enable SG, IP_CSUM and TSO by default - it might not work
6994 * properly for all devices */
6995 dev->features |= NETIF_F_RXCSUM |
6996 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
6997
6998 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6999 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
7000 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
7001 NETIF_F_HIGHDMA;
7002
7003 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
7004 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
7005 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
7006
7007 dev->hw_features |= NETIF_F_RXALL;
7008 dev->hw_features |= NETIF_F_RXFCS;
7009
7010 tp->hw_start = cfg->hw_start;
7011 tp->event_slow = cfg->event_slow;
7012
7013 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
7014 ~(RxBOVF | RxFOVF) : ~0;
7015
7016 init_timer(&tp->timer);
7017 tp->timer.data = (unsigned long) dev;
7018 tp->timer.function = rtl8169_phy_timer;
7019
7020 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
7021
7022 rc = register_netdev(dev);
7023 if (rc < 0)
7024 goto err_out_msi_4;
7025
7026 pci_set_drvdata(pdev, dev);
7027
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007028 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
7029 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
7030 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007031 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
7032 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
7033 "tx checksumming: %s]\n",
7034 rtl_chip_infos[chipset].jumbo_max,
7035 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
7036 }
7037
7038 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
7039 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
7040 tp->mac_version == RTL_GIGA_MAC_VER_31) {
7041 rtl8168_driver_start(tp);
7042 }
7043
7044 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
7045
7046 if (pci_dev_run_wake(pdev))
7047 pm_runtime_put_noidle(&pdev->dev);
7048
7049 netif_carrier_off(dev);
7050
7051out:
7052 return rc;
7053
7054err_out_msi_4:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00007055 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007056 rtl_disable_msi(pdev, tp);
7057 iounmap(ioaddr);
7058err_out_free_res_3:
7059 pci_release_regions(pdev);
7060err_out_mwi_2:
7061 pci_clear_mwi(pdev);
7062 pci_disable_device(pdev);
7063err_out_free_dev_1:
7064 free_netdev(dev);
7065 goto out;
7066}
7067
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068static struct pci_driver rtl8169_pci_driver = {
7069 .name = MODULENAME,
7070 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01007071 .probe = rtl_init_one,
Bill Pembertonbaf63292012-12-03 09:23:28 -05007072 .remove = rtl_remove_one,
Francois Romieu1765f952008-09-13 17:21:40 +02007073 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007074 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075};
7076
Devendra Naga3eeb7da2012-10-26 09:27:42 +00007077module_pci_driver(rtl8169_pci_driver);