blob: 3ff7bc3e7a23ba419c9957917a9471a939db54f2 [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>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000024#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/dma-mapping.h>
Rafael J. Wysockie1759442010-03-14 14:33:51 +000026#include <linux/pm_runtime.h>
françois romieubca03d52011-01-03 15:07:31 +000027#include <linux/firmware.h>
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +000028#include <linux/pci-aspm.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040029#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/io.h>
32#include <asm/irq.h>
33
Francois Romieu865c6522008-05-11 14:51:00 +020034#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define MODULENAME "r8169"
36#define PFX MODULENAME ": "
37
françois romieubca03d52011-01-03 15:07:31 +000038#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
39#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
hayeswang01dc7fe2011-03-21 01:50:28 +000040#define FIRMWARE_8168E_1 "rtl_nic/rtl8168e-1.fw"
41#define FIRMWARE_8168E_2 "rtl_nic/rtl8168e-2.fw"
Hayes Wang70090422011-07-06 15:58:06 +080042#define FIRMWARE_8168E_3 "rtl_nic/rtl8168e-3.fw"
Hayes Wangc2218922011-09-06 16:55:18 +080043#define FIRMWARE_8168F_1 "rtl_nic/rtl8168f-1.fw"
44#define FIRMWARE_8168F_2 "rtl_nic/rtl8168f-2.fw"
Hayes Wang5a5e4442011-02-22 17:26:21 +080045#define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
Hayes Wang7e18dca2012-03-30 14:33:02 +080046#define FIRMWARE_8402_1 "rtl_nic/rtl8402-1.fw"
Hayes Wangb3d7b2f2012-03-30 14:48:06 +080047#define FIRMWARE_8411_1 "rtl_nic/rtl8411-1.fw"
hayeswang45dd95c2013-07-08 17:09:01 +080048#define FIRMWARE_8411_2 "rtl_nic/rtl8411-2.fw"
Hayes Wang5598bfe2012-07-02 17:23:21 +080049#define FIRMWARE_8106E_1 "rtl_nic/rtl8106e-1.fw"
hayeswang58152cd2013-04-01 22:23:42 +000050#define FIRMWARE_8106E_2 "rtl_nic/rtl8106e-2.fw"
hayeswangbeb330a2013-04-01 22:23:39 +000051#define FIRMWARE_8168G_2 "rtl_nic/rtl8168g-2.fw"
hayeswang57538c42013-04-01 22:23:40 +000052#define FIRMWARE_8168G_3 "rtl_nic/rtl8168g-3.fw"
françois romieubca03d52011-01-03 15:07:31 +000053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#ifdef RTL8169_DEBUG
55#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020056 if (!(expr)) { \
57 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070058 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020059 }
Joe Perches06fa7352007-10-18 21:15:00 +020060#define dprintk(fmt, args...) \
61 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#else
63#define assert(expr) do {} while (0)
64#define dprintk(fmt, args...) do {} while (0)
65#endif /* RTL8169_DEBUG */
66
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020067#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070068 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020069
Julien Ducourthial477206a2012-05-09 00:00:06 +020070#define TX_SLOTS_AVAIL(tp) \
71 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
72
73/* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
74#define TX_FRAGS_READY_FOR(tp,nr_frags) \
75 (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
78 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050079static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Francois Romieu9c14cea2008-07-05 00:21:15 +020081#define MAX_READ_REQUEST_SHIFT 12
Michal Schmidtaee77e42012-09-09 13:55:26 +000082#define TX_DMA_BURST 7 /* Maximum PCI burst, '7' is unlimited */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
84
85#define R8169_REGS_SIZE 256
86#define R8169_NAPI_WEIGHT 64
87#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
Timo Teräs9fba0812013-01-15 21:01:24 +000088#define NUM_RX_DESC 256U /* Number of Rx descriptor registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
90#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
91
92#define RTL8169_TX_TIMEOUT (6*HZ)
93#define RTL8169_PHY_TIMEOUT (10*HZ)
94
95/* write/read MMIO register */
96#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
97#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
98#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
99#define RTL_R8(reg) readb (ioaddr + (reg))
100#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +0000101#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103enum mac_version {
Francois Romieu85bffe62011-04-27 08:22:39 +0200104 RTL_GIGA_MAC_VER_01 = 0,
105 RTL_GIGA_MAC_VER_02,
106 RTL_GIGA_MAC_VER_03,
107 RTL_GIGA_MAC_VER_04,
108 RTL_GIGA_MAC_VER_05,
109 RTL_GIGA_MAC_VER_06,
110 RTL_GIGA_MAC_VER_07,
111 RTL_GIGA_MAC_VER_08,
112 RTL_GIGA_MAC_VER_09,
113 RTL_GIGA_MAC_VER_10,
114 RTL_GIGA_MAC_VER_11,
115 RTL_GIGA_MAC_VER_12,
116 RTL_GIGA_MAC_VER_13,
117 RTL_GIGA_MAC_VER_14,
118 RTL_GIGA_MAC_VER_15,
119 RTL_GIGA_MAC_VER_16,
120 RTL_GIGA_MAC_VER_17,
121 RTL_GIGA_MAC_VER_18,
122 RTL_GIGA_MAC_VER_19,
123 RTL_GIGA_MAC_VER_20,
124 RTL_GIGA_MAC_VER_21,
125 RTL_GIGA_MAC_VER_22,
126 RTL_GIGA_MAC_VER_23,
127 RTL_GIGA_MAC_VER_24,
128 RTL_GIGA_MAC_VER_25,
129 RTL_GIGA_MAC_VER_26,
130 RTL_GIGA_MAC_VER_27,
131 RTL_GIGA_MAC_VER_28,
132 RTL_GIGA_MAC_VER_29,
133 RTL_GIGA_MAC_VER_30,
134 RTL_GIGA_MAC_VER_31,
135 RTL_GIGA_MAC_VER_32,
136 RTL_GIGA_MAC_VER_33,
Hayes Wang70090422011-07-06 15:58:06 +0800137 RTL_GIGA_MAC_VER_34,
Hayes Wangc2218922011-09-06 16:55:18 +0800138 RTL_GIGA_MAC_VER_35,
139 RTL_GIGA_MAC_VER_36,
Hayes Wang7e18dca2012-03-30 14:33:02 +0800140 RTL_GIGA_MAC_VER_37,
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800141 RTL_GIGA_MAC_VER_38,
Hayes Wang5598bfe2012-07-02 17:23:21 +0800142 RTL_GIGA_MAC_VER_39,
Hayes Wangc5583862012-07-02 17:23:22 +0800143 RTL_GIGA_MAC_VER_40,
144 RTL_GIGA_MAC_VER_41,
hayeswang57538c42013-04-01 22:23:40 +0000145 RTL_GIGA_MAC_VER_42,
hayeswang58152cd2013-04-01 22:23:42 +0000146 RTL_GIGA_MAC_VER_43,
hayeswang45dd95c2013-07-08 17:09:01 +0800147 RTL_GIGA_MAC_VER_44,
Francois Romieu85bffe62011-04-27 08:22:39 +0200148 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150
Francois Romieu2b7b4312011-04-18 22:53:24 -0700151enum rtl_tx_desc_version {
152 RTL_TD_0 = 0,
153 RTL_TD_1 = 1,
154};
155
Francois Romieud58d46b2011-05-03 16:38:29 +0200156#define JUMBO_1K ETH_DATA_LEN
157#define JUMBO_4K (4*1024 - ETH_HLEN - 2)
158#define JUMBO_6K (6*1024 - ETH_HLEN - 2)
159#define JUMBO_7K (7*1024 - ETH_HLEN - 2)
160#define JUMBO_9K (9*1024 - ETH_HLEN - 2)
161
162#define _R(NAME,TD,FW,SZ,B) { \
163 .name = NAME, \
164 .txd_version = TD, \
165 .fw_name = FW, \
166 .jumbo_max = SZ, \
167 .jumbo_tx_csum = B \
168}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800170static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700172 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200173 const char *fw_name;
Francois Romieud58d46b2011-05-03 16:38:29 +0200174 u16 jumbo_max;
175 bool jumbo_tx_csum;
Francois Romieu85bffe62011-04-27 08:22:39 +0200176} rtl_chip_infos[] = {
177 /* PCI devices. */
178 [RTL_GIGA_MAC_VER_01] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200179 _R("RTL8169", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200180 [RTL_GIGA_MAC_VER_02] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200181 _R("RTL8169s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200182 [RTL_GIGA_MAC_VER_03] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200183 _R("RTL8110s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200184 [RTL_GIGA_MAC_VER_04] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200185 _R("RTL8169sb/8110sb", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200186 [RTL_GIGA_MAC_VER_05] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200187 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200188 [RTL_GIGA_MAC_VER_06] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200189 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200190 /* PCI-E devices. */
191 [RTL_GIGA_MAC_VER_07] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200192 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200193 [RTL_GIGA_MAC_VER_08] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200194 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200195 [RTL_GIGA_MAC_VER_09] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200196 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200197 [RTL_GIGA_MAC_VER_10] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200198 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200199 [RTL_GIGA_MAC_VER_11] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200200 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200201 [RTL_GIGA_MAC_VER_12] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200202 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200203 [RTL_GIGA_MAC_VER_13] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200204 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200205 [RTL_GIGA_MAC_VER_14] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200206 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200207 [RTL_GIGA_MAC_VER_15] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200208 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200209 [RTL_GIGA_MAC_VER_16] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200210 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200211 [RTL_GIGA_MAC_VER_17] =
hayeswangf75761b2014-03-11 15:11:59 +0800212 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200213 [RTL_GIGA_MAC_VER_18] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200214 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200215 [RTL_GIGA_MAC_VER_19] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200216 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200217 [RTL_GIGA_MAC_VER_20] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200218 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200219 [RTL_GIGA_MAC_VER_21] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200220 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200221 [RTL_GIGA_MAC_VER_22] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200222 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200223 [RTL_GIGA_MAC_VER_23] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200224 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200225 [RTL_GIGA_MAC_VER_24] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200226 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200227 [RTL_GIGA_MAC_VER_25] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200228 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1,
229 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200230 [RTL_GIGA_MAC_VER_26] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200231 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2,
232 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200233 [RTL_GIGA_MAC_VER_27] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200234 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200235 [RTL_GIGA_MAC_VER_28] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200236 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200237 [RTL_GIGA_MAC_VER_29] =
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_30] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200241 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
242 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200243 [RTL_GIGA_MAC_VER_31] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200244 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200245 [RTL_GIGA_MAC_VER_32] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200246 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1,
247 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200248 [RTL_GIGA_MAC_VER_33] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200249 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2,
250 JUMBO_9K, false),
Hayes Wang70090422011-07-06 15:58:06 +0800251 [RTL_GIGA_MAC_VER_34] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200252 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3,
253 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800254 [RTL_GIGA_MAC_VER_35] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200255 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_1,
256 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800257 [RTL_GIGA_MAC_VER_36] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200258 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_2,
259 JUMBO_9K, false),
Hayes Wang7e18dca2012-03-30 14:33:02 +0800260 [RTL_GIGA_MAC_VER_37] =
261 _R("RTL8402", RTL_TD_1, FIRMWARE_8402_1,
262 JUMBO_1K, true),
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800263 [RTL_GIGA_MAC_VER_38] =
264 _R("RTL8411", RTL_TD_1, FIRMWARE_8411_1,
265 JUMBO_9K, false),
Hayes Wang5598bfe2012-07-02 17:23:21 +0800266 [RTL_GIGA_MAC_VER_39] =
267 _R("RTL8106e", RTL_TD_1, FIRMWARE_8106E_1,
268 JUMBO_1K, true),
Hayes Wangc5583862012-07-02 17:23:22 +0800269 [RTL_GIGA_MAC_VER_40] =
hayeswangbeb330a2013-04-01 22:23:39 +0000270 _R("RTL8168g/8111g", RTL_TD_1, FIRMWARE_8168G_2,
Hayes Wangc5583862012-07-02 17:23:22 +0800271 JUMBO_9K, false),
272 [RTL_GIGA_MAC_VER_41] =
273 _R("RTL8168g/8111g", RTL_TD_1, NULL, JUMBO_9K, false),
hayeswang57538c42013-04-01 22:23:40 +0000274 [RTL_GIGA_MAC_VER_42] =
275 _R("RTL8168g/8111g", RTL_TD_1, FIRMWARE_8168G_3,
276 JUMBO_9K, false),
hayeswang58152cd2013-04-01 22:23:42 +0000277 [RTL_GIGA_MAC_VER_43] =
278 _R("RTL8106e", RTL_TD_1, FIRMWARE_8106E_2,
279 JUMBO_1K, true),
hayeswang45dd95c2013-07-08 17:09:01 +0800280 [RTL_GIGA_MAC_VER_44] =
281 _R("RTL8411", RTL_TD_1, FIRMWARE_8411_2,
282 JUMBO_9K, false),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283};
284#undef _R
285
Francois Romieubcf0bf92006-07-26 23:14:13 +0200286enum cfg_version {
287 RTL_CFG_0 = 0x00,
288 RTL_CFG_1,
289 RTL_CFG_2
290};
291
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000292static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200293 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200294 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200295 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100296 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200297 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
Francois Romieu2a35cfa2012-08-31 23:06:17 +0200298 { PCI_VENDOR_ID_DLINK, 0x4300,
299 PCI_VENDOR_ID_DLINK, 0x4b10, 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200300 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000301 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200302 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200303 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
304 { PCI_VENDOR_ID_LINKSYS, 0x1032,
305 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100306 { 0x0001, 0x8168,
307 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 {0,},
309};
310
311MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
312
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000313static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700314static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200315static struct {
316 u32 msg_enable;
317} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Francois Romieu07d3f512007-02-21 22:40:46 +0100319enum rtl_registers {
320 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100321 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100322 MAR0 = 8, /* Multicast filter. */
323 CounterAddrLow = 0x10,
324 CounterAddrHigh = 0x14,
325 TxDescStartAddrLow = 0x20,
326 TxDescStartAddrHigh = 0x24,
327 TxHDescStartAddrLow = 0x28,
328 TxHDescStartAddrHigh = 0x2c,
329 FLASH = 0x30,
330 ERSR = 0x36,
331 ChipCmd = 0x37,
332 TxPoll = 0x38,
333 IntrMask = 0x3c,
334 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700335
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800336 TxConfig = 0x40,
337#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
338#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
339
340 RxConfig = 0x44,
341#define RX128_INT_EN (1 << 15) /* 8111c and later */
342#define RX_MULTI_EN (1 << 14) /* 8111c only */
343#define RXCFG_FIFO_SHIFT 13
344 /* No threshold before first PCI xfer */
345#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
hayeswangbeb330a2013-04-01 22:23:39 +0000346#define RX_EARLY_OFF (1 << 11)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800347#define RXCFG_DMA_SHIFT 8
348 /* Unlimited maximum PCI burst. */
349#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700350
Francois Romieu07d3f512007-02-21 22:40:46 +0100351 RxMissed = 0x4c,
352 Cfg9346 = 0x50,
353 Config0 = 0x51,
354 Config1 = 0x52,
355 Config2 = 0x53,
Francois Romieud387b422012-04-17 11:12:01 +0200356#define PME_SIGNAL (1 << 5) /* 8168c and later */
357
Francois Romieu07d3f512007-02-21 22:40:46 +0100358 Config3 = 0x54,
359 Config4 = 0x55,
360 Config5 = 0x56,
361 MultiIntr = 0x5c,
362 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100363 PHYstatus = 0x6c,
364 RxMaxSize = 0xda,
365 CPlusCmd = 0xe0,
366 IntrMitigate = 0xe2,
367 RxDescAddrLow = 0xe4,
368 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000369 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
370
371#define NoEarlyTx 0x3f /* Max value : no early transmit. */
372
373 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
374
375#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800376#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000377
Francois Romieu07d3f512007-02-21 22:40:46 +0100378 FuncEvent = 0xf0,
379 FuncEventMask = 0xf4,
380 FuncPresetState = 0xf8,
381 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382};
383
Francois Romieuf162a5d2008-06-01 22:37:49 +0200384enum rtl8110_registers {
385 TBICSR = 0x64,
386 TBI_ANAR = 0x68,
387 TBI_LPAR = 0x6a,
388};
389
390enum rtl8168_8101_registers {
391 CSIDR = 0x64,
392 CSIAR = 0x68,
393#define CSIAR_FLAG 0x80000000
394#define CSIAR_WRITE_CMD 0x80000000
395#define CSIAR_BYTE_ENABLE 0x0f
396#define CSIAR_BYTE_ENABLE_SHIFT 12
397#define CSIAR_ADDR_MASK 0x0fff
Hayes Wang7e18dca2012-03-30 14:33:02 +0800398#define CSIAR_FUNC_CARD 0x00000000
399#define CSIAR_FUNC_SDIO 0x00010000
400#define CSIAR_FUNC_NIC 0x00020000
hayeswang45dd95c2013-07-08 17:09:01 +0800401#define CSIAR_FUNC_NIC2 0x00010000
françois romieu065c27c2011-01-03 15:08:12 +0000402 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200403 EPHYAR = 0x80,
404#define EPHYAR_FLAG 0x80000000
405#define EPHYAR_WRITE_CMD 0x80000000
406#define EPHYAR_REG_MASK 0x1f
407#define EPHYAR_REG_SHIFT 16
408#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800409 DLLPR = 0xd0,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800410#define PFM_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200411 DBG_REG = 0xd1,
412#define FIX_NAK_1 (1 << 4)
413#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800414 TWSI = 0xd2,
415 MCU = 0xd3,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800416#define NOW_IS_OOB (1 << 7)
Hayes Wangc5583862012-07-02 17:23:22 +0800417#define TX_EMPTY (1 << 5)
418#define RX_EMPTY (1 << 4)
419#define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800420#define EN_NDP (1 << 3)
421#define EN_OOB_RESET (1 << 2)
Hayes Wangc5583862012-07-02 17:23:22 +0800422#define LINK_LIST_RDY (1 << 1)
françois romieudaf9df62009-10-07 12:44:20 +0000423 EFUSEAR = 0xdc,
424#define EFUSEAR_FLAG 0x80000000
425#define EFUSEAR_WRITE_CMD 0x80000000
426#define EFUSEAR_READ_CMD 0x00000000
427#define EFUSEAR_REG_MASK 0x03ff
428#define EFUSEAR_REG_SHIFT 8
429#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200430};
431
françois romieuc0e45c12011-01-03 15:08:04 +0000432enum rtl8168_registers {
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800433 LED_FREQ = 0x1a,
434 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000435 ERIDR = 0x70,
436 ERIAR = 0x74,
437#define ERIAR_FLAG 0x80000000
438#define ERIAR_WRITE_CMD 0x80000000
439#define ERIAR_READ_CMD 0x00000000
440#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000441#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800442#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
443#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
444#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
445#define ERIAR_MASK_SHIFT 12
446#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
447#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
Hayes Wangc5583862012-07-02 17:23:22 +0800448#define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800449#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000450 EPHY_RXER_NUM = 0x7c,
451 OCPDR = 0xb0, /* OCP GPHY access */
452#define OCPDR_WRITE_CMD 0x80000000
453#define OCPDR_READ_CMD 0x00000000
454#define OCPDR_REG_MASK 0x7f
455#define OCPDR_GPHY_REG_SHIFT 16
456#define OCPDR_DATA_MASK 0xffff
457 OCPAR = 0xb4,
458#define OCPAR_FLAG 0x80000000
459#define OCPAR_GPHY_WRITE_CMD 0x8000f060
460#define OCPAR_GPHY_READ_CMD 0x0000f060
Hayes Wangc5583862012-07-02 17:23:22 +0800461 GPHY_OCP = 0xb8,
hayeswang01dc7fe2011-03-21 01:50:28 +0000462 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
463 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200464#define TXPLA_RST (1 << 29)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800465#define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800466#define PWM_EN (1 << 22)
Hayes Wangc5583862012-07-02 17:23:22 +0800467#define RXDV_GATED_EN (1 << 19)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800468#define EARLY_TALLY_EN (1 << 16)
françois romieuc0e45c12011-01-03 15:08:04 +0000469};
470
Francois Romieu07d3f512007-02-21 22:40:46 +0100471enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100473 SYSErr = 0x8000,
474 PCSTimeout = 0x4000,
475 SWInt = 0x0100,
476 TxDescUnavail = 0x0080,
477 RxFIFOOver = 0x0040,
478 LinkChg = 0x0020,
479 RxOverflow = 0x0010,
480 TxErr = 0x0008,
481 TxOK = 0x0004,
482 RxErr = 0x0002,
483 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400486 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200487 RxFOVF = (1 << 23),
488 RxRWT = (1 << 22),
489 RxRES = (1 << 21),
490 RxRUNT = (1 << 20),
491 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 /* ChipCmdBits */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800494 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100495 CmdReset = 0x10,
496 CmdRxEnb = 0x08,
497 CmdTxEnb = 0x04,
498 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Francois Romieu275391a2007-02-23 23:50:28 +0100500 /* TXPoll register p.5 */
501 HPQ = 0x80, /* Poll cmd on the high prio queue */
502 NPQ = 0x40, /* Poll cmd on the low prio queue */
503 FSWInt = 0x01, /* Forced software interrupt */
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100506 Cfg9346_Lock = 0x00,
507 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100510 AcceptErr = 0x20,
511 AcceptRunt = 0x10,
512 AcceptBroadcast = 0x08,
513 AcceptMulticast = 0x04,
514 AcceptMyPhys = 0x02,
515 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200516#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* TxConfigBits */
519 TxInterFrameGapShift = 24,
520 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
521
Francois Romieu5d06a992006-02-23 00:47:58 +0100522 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200523 LEDS1 = (1 << 7),
524 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200525 Speed_down = (1 << 4),
526 MEMMAP = (1 << 3),
527 IOMAP = (1 << 2),
528 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100529 PMEnable = (1 << 0), /* Power Management Enable */
530
Francois Romieu6dccd162007-02-13 23:38:05 +0100531 /* Config2 register p. 25 */
hayeswang57538c42013-04-01 22:23:40 +0000532 ClkReqEn = (1 << 7), /* Clock Request Enable */
françois romieu2ca6cf02011-12-15 08:37:43 +0000533 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100534 PCI_Clock_66MHz = 0x01,
535 PCI_Clock_33MHz = 0x00,
536
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100537 /* Config3 register p.25 */
538 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
539 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200540 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200541 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100542
Francois Romieud58d46b2011-05-03 16:38:29 +0200543 /* Config4 register */
544 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
545
Francois Romieu5d06a992006-02-23 00:47:58 +0100546 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100547 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
548 MWF = (1 << 5), /* Accept Multicast wakeup frame */
549 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200550 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100551 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100552 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
hayeswang57538c42013-04-01 22:23:40 +0000553 ASPM_en = (1 << 0), /* ASPM enable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /* TBICSR p.28 */
556 TBIReset = 0x80000000,
557 TBILoopback = 0x40000000,
558 TBINwEnable = 0x20000000,
559 TBINwRestart = 0x10000000,
560 TBILinkOk = 0x02000000,
561 TBINwComplete = 0x01000000,
562
563 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200564 EnableBist = (1 << 15), // 8168 8101
565 Mac_dbgo_oe = (1 << 14), // 8168 8101
566 Normal_mode = (1 << 13), // unused
567 Force_half_dup = (1 << 12), // 8168 8101
568 Force_rxflow_en = (1 << 11), // 8168 8101
569 Force_txflow_en = (1 << 10), // 8168 8101
570 Cxpl_dbg_sel = (1 << 9), // 8168 8101
571 ASF = (1 << 8), // 8168 8101
572 PktCntrDisable = (1 << 7), // 8168 8101
573 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 RxVlan = (1 << 6),
575 RxChkSum = (1 << 5),
576 PCIDAC = (1 << 4),
577 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100578 INTT_0 = 0x0000, // 8168
579 INTT_1 = 0x0001, // 8168
580 INTT_2 = 0x0002, // 8168
581 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100584 TBI_Enable = 0x80,
585 TxFlowCtrl = 0x40,
586 RxFlowCtrl = 0x20,
587 _1000bpsF = 0x10,
588 _100bps = 0x08,
589 _10bps = 0x04,
590 LinkStatus = 0x02,
591 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100594 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200595
596 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100597 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598};
599
Francois Romieu2b7b4312011-04-18 22:53:24 -0700600enum rtl_desc_bit {
601 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
603 RingEnd = (1 << 30), /* End of descriptor ring */
604 FirstFrag = (1 << 29), /* First segment of a packet */
605 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700606};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Francois Romieu2b7b4312011-04-18 22:53:24 -0700608/* Generic case. */
609enum rtl_tx_desc_bit {
610 /* First doubleword. */
611 TD_LSO = (1 << 27), /* Large Send Offload */
612#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Francois Romieu2b7b4312011-04-18 22:53:24 -0700614 /* Second doubleword. */
615 TxVlanTag = (1 << 17), /* Add VLAN tag */
616};
617
618/* 8169, 8168b and 810x except 8102e. */
619enum rtl_tx_desc_bit_0 {
620 /* First doubleword. */
621#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
622 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
623 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
624 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
625};
626
627/* 8102e, 8168c and beyond. */
628enum rtl_tx_desc_bit_1 {
629 /* Second doubleword. */
630#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
631 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
632 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
633 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
634};
635
636static const struct rtl_tx_desc_info {
637 struct {
638 u32 udp;
639 u32 tcp;
640 } checksum;
641 u16 mss_shift;
642 u16 opts_offset;
643} tx_desc_info [] = {
644 [RTL_TD_0] = {
645 .checksum = {
646 .udp = TD0_IP_CS | TD0_UDP_CS,
647 .tcp = TD0_IP_CS | TD0_TCP_CS
648 },
649 .mss_shift = TD0_MSS_SHIFT,
650 .opts_offset = 0
651 },
652 [RTL_TD_1] = {
653 .checksum = {
654 .udp = TD1_IP_CS | TD1_UDP_CS,
655 .tcp = TD1_IP_CS | TD1_TCP_CS
656 },
657 .mss_shift = TD1_MSS_SHIFT,
658 .opts_offset = 1
659 }
660};
661
662enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 /* Rx private */
664 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
665 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
666
667#define RxProtoUDP (PID1)
668#define RxProtoTCP (PID0)
669#define RxProtoIP (PID1 | PID0)
670#define RxProtoMask RxProtoIP
671
672 IPFail = (1 << 16), /* IP checksum failed */
673 UDPFail = (1 << 15), /* UDP/IP checksum failed */
674 TCPFail = (1 << 14), /* TCP/IP checksum failed */
675 RxVlanTag = (1 << 16), /* VLAN tag available */
676};
677
678#define RsvdMask 0x3fffc000
679
680struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200681 __le32 opts1;
682 __le32 opts2;
683 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684};
685
686struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200687 __le32 opts1;
688 __le32 opts2;
689 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690};
691
692struct ring_info {
693 struct sk_buff *skb;
694 u32 len;
695 u8 __pad[sizeof(void *) - sizeof(u32)];
696};
697
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200698enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200699 RTL_FEATURE_WOL = (1 << 0),
700 RTL_FEATURE_MSI = (1 << 1),
701 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200702};
703
Ivan Vecera355423d2009-02-06 21:49:57 -0800704struct rtl8169_counters {
705 __le64 tx_packets;
706 __le64 rx_packets;
707 __le64 tx_errors;
708 __le32 rx_errors;
709 __le16 rx_missed;
710 __le16 align_errors;
711 __le32 tx_one_collision;
712 __le32 tx_multi_collision;
713 __le64 rx_unicast;
714 __le64 rx_broadcast;
715 __le32 rx_multicast;
716 __le16 tx_aborted;
717 __le16 tx_underun;
718};
719
Francois Romieuda78dbf2012-01-26 14:18:23 +0100720enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100721 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100722 RTL_FLAG_TASK_SLOW_PENDING,
723 RTL_FLAG_TASK_RESET_PENDING,
724 RTL_FLAG_TASK_PHY_PENDING,
725 RTL_FLAG_MAX
726};
727
Junchang Wang8027aa22012-03-04 23:30:32 +0100728struct rtl8169_stats {
729 u64 packets;
730 u64 bytes;
731 struct u64_stats_sync syncp;
732};
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734struct rtl8169_private {
735 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200736 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000737 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700738 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200739 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700740 u16 txd_version;
741 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
743 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100745 struct rtl8169_stats rx_stats;
746 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
748 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
749 dma_addr_t TxPhyAddr;
750 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000751 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 struct timer_list timer;
754 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100755
756 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000757
758 struct mdio_ops {
Francois Romieu24192212012-07-06 20:19:42 +0200759 void (*write)(struct rtl8169_private *, int, int);
760 int (*read)(struct rtl8169_private *, int);
françois romieuc0e45c12011-01-03 15:08:04 +0000761 } mdio_ops;
762
françois romieu065c27c2011-01-03 15:08:12 +0000763 struct pll_power_ops {
764 void (*down)(struct rtl8169_private *);
765 void (*up)(struct rtl8169_private *);
766 } pll_power_ops;
767
Francois Romieud58d46b2011-05-03 16:38:29 +0200768 struct jumbo_ops {
769 void (*enable)(struct rtl8169_private *);
770 void (*disable)(struct rtl8169_private *);
771 } jumbo_ops;
772
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800773 struct csi_ops {
Francois Romieu52989f02012-07-06 13:37:00 +0200774 void (*write)(struct rtl8169_private *, int, int);
775 u32 (*read)(struct rtl8169_private *, int);
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800776 } csi_ops;
777
Oliver Neukum54405cd2011-01-06 21:55:13 +0100778 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200779 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000780 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100781 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000782 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800784 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100785
786 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100787 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
788 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100789 struct work_struct work;
790 } wk;
791
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200792 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200793
794 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800795 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000796 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400797 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000798
Francois Romieub6ffd972011-06-17 17:00:05 +0200799 struct rtl_fw {
800 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200801
802#define RTL_VER_SIZE 32
803
804 char version[RTL_VER_SIZE];
805
806 struct rtl_fw_phy_action {
807 __le32 *code;
808 size_t size;
809 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200810 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300811#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Hayes Wangc5583862012-07-02 17:23:22 +0800812
813 u32 ocp_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814};
815
Ralf Baechle979b6c12005-06-13 14:30:40 -0700816MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700819MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200820module_param_named(debug, debug.msg_enable, int, 0);
821MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822MODULE_LICENSE("GPL");
823MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000824MODULE_FIRMWARE(FIRMWARE_8168D_1);
825MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000826MODULE_FIRMWARE(FIRMWARE_8168E_1);
827MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400828MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800829MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800830MODULE_FIRMWARE(FIRMWARE_8168F_1);
831MODULE_FIRMWARE(FIRMWARE_8168F_2);
Hayes Wang7e18dca2012-03-30 14:33:02 +0800832MODULE_FIRMWARE(FIRMWARE_8402_1);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800833MODULE_FIRMWARE(FIRMWARE_8411_1);
hayeswang45dd95c2013-07-08 17:09:01 +0800834MODULE_FIRMWARE(FIRMWARE_8411_2);
Hayes Wang5598bfe2012-07-02 17:23:21 +0800835MODULE_FIRMWARE(FIRMWARE_8106E_1);
hayeswang58152cd2013-04-01 22:23:42 +0000836MODULE_FIRMWARE(FIRMWARE_8106E_2);
hayeswangbeb330a2013-04-01 22:23:39 +0000837MODULE_FIRMWARE(FIRMWARE_8168G_2);
hayeswang57538c42013-04-01 22:23:40 +0000838MODULE_FIRMWARE(FIRMWARE_8168G_3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Francois Romieuda78dbf2012-01-26 14:18:23 +0100840static void rtl_lock_work(struct rtl8169_private *tp)
841{
842 mutex_lock(&tp->wk.mutex);
843}
844
845static void rtl_unlock_work(struct rtl8169_private *tp)
846{
847 mutex_unlock(&tp->wk.mutex);
848}
849
Francois Romieud58d46b2011-05-03 16:38:29 +0200850static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
851{
Jiang Liu7d7903b2012-07-24 17:20:16 +0800852 pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
853 PCI_EXP_DEVCTL_READRQ, force);
Francois Romieud58d46b2011-05-03 16:38:29 +0200854}
855
Francois Romieuffc46952012-07-06 14:19:23 +0200856struct rtl_cond {
857 bool (*check)(struct rtl8169_private *);
858 const char *msg;
859};
860
861static void rtl_udelay(unsigned int d)
862{
863 udelay(d);
864}
865
866static bool rtl_loop_wait(struct rtl8169_private *tp, const struct rtl_cond *c,
867 void (*delay)(unsigned int), unsigned int d, int n,
868 bool high)
869{
870 int i;
871
872 for (i = 0; i < n; i++) {
873 delay(d);
874 if (c->check(tp) == high)
875 return true;
876 }
Francois Romieu82e316e2012-07-11 23:39:51 +0200877 netif_err(tp, drv, tp->dev, "%s == %d (loop: %d, delay: %d).\n",
878 c->msg, !high, n, d);
Francois Romieuffc46952012-07-06 14:19:23 +0200879 return false;
880}
881
882static bool rtl_udelay_loop_wait_high(struct rtl8169_private *tp,
883 const struct rtl_cond *c,
884 unsigned int d, int n)
885{
886 return rtl_loop_wait(tp, c, rtl_udelay, d, n, true);
887}
888
889static bool rtl_udelay_loop_wait_low(struct rtl8169_private *tp,
890 const struct rtl_cond *c,
891 unsigned int d, int n)
892{
893 return rtl_loop_wait(tp, c, rtl_udelay, d, n, false);
894}
895
896static bool rtl_msleep_loop_wait_high(struct rtl8169_private *tp,
897 const struct rtl_cond *c,
898 unsigned int d, int n)
899{
900 return rtl_loop_wait(tp, c, msleep, d, n, true);
901}
902
903static bool rtl_msleep_loop_wait_low(struct rtl8169_private *tp,
904 const struct rtl_cond *c,
905 unsigned int d, int n)
906{
907 return rtl_loop_wait(tp, c, msleep, d, n, false);
908}
909
910#define DECLARE_RTL_COND(name) \
911static bool name ## _check(struct rtl8169_private *); \
912 \
913static const struct rtl_cond name = { \
914 .check = name ## _check, \
915 .msg = #name \
916}; \
917 \
918static bool name ## _check(struct rtl8169_private *tp)
919
920DECLARE_RTL_COND(rtl_ocpar_cond)
921{
922 void __iomem *ioaddr = tp->mmio_addr;
923
924 return RTL_R32(OCPAR) & OCPAR_FLAG;
925}
926
françois romieub646d902011-01-03 15:08:21 +0000927static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
928{
929 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000930
931 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
Francois Romieuffc46952012-07-06 14:19:23 +0200932
933 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 100, 20) ?
934 RTL_R32(OCPDR) : ~0;
françois romieub646d902011-01-03 15:08:21 +0000935}
936
937static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
938{
939 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000940
941 RTL_W32(OCPDR, data);
942 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
Francois Romieuffc46952012-07-06 14:19:23 +0200943
944 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 100, 20);
945}
946
947DECLARE_RTL_COND(rtl_eriar_cond)
948{
949 void __iomem *ioaddr = tp->mmio_addr;
950
951 return RTL_R32(ERIAR) & ERIAR_FLAG;
françois romieub646d902011-01-03 15:08:21 +0000952}
953
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800954static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000955{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800956 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000957
958 RTL_W8(ERIDR, cmd);
959 RTL_W32(ERIAR, 0x800010e8);
960 msleep(2);
Francois Romieuffc46952012-07-06 14:19:23 +0200961
962 if (!rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 5))
963 return;
françois romieub646d902011-01-03 15:08:21 +0000964
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800965 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000966}
967
968#define OOB_CMD_RESET 0x00
969#define OOB_CMD_DRIVER_START 0x05
970#define OOB_CMD_DRIVER_STOP 0x06
971
Francois Romieucecb5fd2011-04-01 10:21:07 +0200972static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
973{
974 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
975}
976
Francois Romieuffc46952012-07-06 14:19:23 +0200977DECLARE_RTL_COND(rtl_ocp_read_cond)
françois romieub646d902011-01-03 15:08:21 +0000978{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200979 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000980
Francois Romieucecb5fd2011-04-01 10:21:07 +0200981 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000982
Francois Romieuffc46952012-07-06 14:19:23 +0200983 return ocp_read(tp, 0x0f, reg) & 0x00000800;
984}
985
986static void rtl8168_driver_start(struct rtl8169_private *tp)
987{
988 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
989
990 rtl_msleep_loop_wait_high(tp, &rtl_ocp_read_cond, 10, 10);
françois romieub646d902011-01-03 15:08:21 +0000991}
992
993static void rtl8168_driver_stop(struct rtl8169_private *tp)
994{
françois romieub646d902011-01-03 15:08:21 +0000995 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
996
Francois Romieuffc46952012-07-06 14:19:23 +0200997 rtl_msleep_loop_wait_low(tp, &rtl_ocp_read_cond, 10, 10);
françois romieub646d902011-01-03 15:08:21 +0000998}
999
hayeswang4804b3b2011-03-21 01:50:29 +00001000static int r8168dp_check_dash(struct rtl8169_private *tp)
1001{
Francois Romieucecb5fd2011-04-01 10:21:07 +02001002 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00001003
Francois Romieucecb5fd2011-04-01 10:21:07 +02001004 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +00001005}
françois romieub646d902011-01-03 15:08:21 +00001006
Hayes Wangc5583862012-07-02 17:23:22 +08001007static bool rtl_ocp_reg_failure(struct rtl8169_private *tp, u32 reg)
1008{
1009 if (reg & 0xffff0001) {
1010 netif_err(tp, drv, tp->dev, "Invalid ocp reg %x!\n", reg);
1011 return true;
1012 }
1013 return false;
1014}
1015
1016DECLARE_RTL_COND(rtl_ocp_gphy_cond)
1017{
1018 void __iomem *ioaddr = tp->mmio_addr;
1019
1020 return RTL_R32(GPHY_OCP) & OCPAR_FLAG;
1021}
1022
1023static void r8168_phy_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1024{
1025 void __iomem *ioaddr = tp->mmio_addr;
1026
1027 if (rtl_ocp_reg_failure(tp, reg))
1028 return;
1029
1030 RTL_W32(GPHY_OCP, OCPAR_FLAG | (reg << 15) | data);
1031
1032 rtl_udelay_loop_wait_low(tp, &rtl_ocp_gphy_cond, 25, 10);
1033}
1034
1035static u16 r8168_phy_ocp_read(struct rtl8169_private *tp, u32 reg)
1036{
1037 void __iomem *ioaddr = tp->mmio_addr;
1038
1039 if (rtl_ocp_reg_failure(tp, reg))
1040 return 0;
1041
1042 RTL_W32(GPHY_OCP, reg << 15);
1043
1044 return rtl_udelay_loop_wait_high(tp, &rtl_ocp_gphy_cond, 25, 10) ?
1045 (RTL_R32(GPHY_OCP) & 0xffff) : ~0;
1046}
1047
Hayes Wangc5583862012-07-02 17:23:22 +08001048static void r8168_mac_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1049{
1050 void __iomem *ioaddr = tp->mmio_addr;
1051
1052 if (rtl_ocp_reg_failure(tp, reg))
1053 return;
1054
1055 RTL_W32(OCPDR, OCPAR_FLAG | (reg << 15) | data);
Hayes Wangc5583862012-07-02 17:23:22 +08001056}
1057
1058static u16 r8168_mac_ocp_read(struct rtl8169_private *tp, u32 reg)
1059{
1060 void __iomem *ioaddr = tp->mmio_addr;
1061
1062 if (rtl_ocp_reg_failure(tp, reg))
1063 return 0;
1064
1065 RTL_W32(OCPDR, reg << 15);
1066
Hayes Wang3a83ad12012-07-11 20:31:56 +08001067 return RTL_R32(OCPDR);
Hayes Wangc5583862012-07-02 17:23:22 +08001068}
1069
1070#define OCP_STD_PHY_BASE 0xa400
1071
1072static void r8168g_mdio_write(struct rtl8169_private *tp, int reg, int value)
1073{
1074 if (reg == 0x1f) {
1075 tp->ocp_base = value ? value << 4 : OCP_STD_PHY_BASE;
1076 return;
1077 }
1078
1079 if (tp->ocp_base != OCP_STD_PHY_BASE)
1080 reg -= 0x10;
1081
1082 r8168_phy_ocp_write(tp, tp->ocp_base + reg * 2, value);
1083}
1084
1085static int r8168g_mdio_read(struct rtl8169_private *tp, int reg)
1086{
1087 if (tp->ocp_base != OCP_STD_PHY_BASE)
1088 reg -= 0x10;
1089
1090 return r8168_phy_ocp_read(tp, tp->ocp_base + reg * 2);
1091}
1092
hayeswangeee37862013-04-01 22:23:38 +00001093static void mac_mcu_write(struct rtl8169_private *tp, int reg, int value)
1094{
1095 if (reg == 0x1f) {
1096 tp->ocp_base = value << 4;
1097 return;
1098 }
1099
1100 r8168_mac_ocp_write(tp, tp->ocp_base + reg, value);
1101}
1102
1103static int mac_mcu_read(struct rtl8169_private *tp, int reg)
1104{
1105 return r8168_mac_ocp_read(tp, tp->ocp_base + reg);
1106}
1107
Francois Romieuffc46952012-07-06 14:19:23 +02001108DECLARE_RTL_COND(rtl_phyar_cond)
1109{
1110 void __iomem *ioaddr = tp->mmio_addr;
1111
1112 return RTL_R32(PHYAR) & 0x80000000;
1113}
1114
Francois Romieu24192212012-07-06 20:19:42 +02001115static void r8169_mdio_write(struct rtl8169_private *tp, int reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
Francois Romieu24192212012-07-06 20:19:42 +02001117 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Francois Romieu24192212012-07-06 20:19:42 +02001119 RTL_W32(PHYAR, 0x80000000 | (reg & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Francois Romieuffc46952012-07-06 14:19:23 +02001121 rtl_udelay_loop_wait_low(tp, &rtl_phyar_cond, 25, 20);
Timo Teräs024a07b2010-06-06 15:38:47 -07001122 /*
Timo Teräs81a95f02010-06-09 17:31:48 -07001123 * According to hardware specs a 20us delay is required after write
1124 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -07001125 */
Timo Teräs81a95f02010-06-09 17:31:48 -07001126 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
Francois Romieu24192212012-07-06 20:19:42 +02001129static int r8169_mdio_read(struct rtl8169_private *tp, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Francois Romieu24192212012-07-06 20:19:42 +02001131 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieuffc46952012-07-06 14:19:23 +02001132 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Francois Romieu24192212012-07-06 20:19:42 +02001134 RTL_W32(PHYAR, 0x0 | (reg & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Francois Romieuffc46952012-07-06 14:19:23 +02001136 value = rtl_udelay_loop_wait_high(tp, &rtl_phyar_cond, 25, 20) ?
1137 RTL_R32(PHYAR) & 0xffff : ~0;
1138
Timo Teräs81a95f02010-06-09 17:31:48 -07001139 /*
1140 * According to hardware specs a 20us delay is required after read
1141 * complete indication, but before sending next command.
1142 */
1143 udelay(20);
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return value;
1146}
1147
Francois Romieu24192212012-07-06 20:19:42 +02001148static void r8168dp_1_mdio_access(struct rtl8169_private *tp, int reg, u32 data)
françois romieuc0e45c12011-01-03 15:08:04 +00001149{
Francois Romieu24192212012-07-06 20:19:42 +02001150 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001151
Francois Romieu24192212012-07-06 20:19:42 +02001152 RTL_W32(OCPDR, data | ((reg & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
françois romieuc0e45c12011-01-03 15:08:04 +00001153 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
1154 RTL_W32(EPHY_RXER_NUM, 0);
1155
Francois Romieuffc46952012-07-06 14:19:23 +02001156 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 1000, 100);
françois romieuc0e45c12011-01-03 15:08:04 +00001157}
1158
Francois Romieu24192212012-07-06 20:19:42 +02001159static void r8168dp_1_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieuc0e45c12011-01-03 15:08:04 +00001160{
Francois Romieu24192212012-07-06 20:19:42 +02001161 r8168dp_1_mdio_access(tp, reg,
1162 OCPDR_WRITE_CMD | (value & OCPDR_DATA_MASK));
françois romieuc0e45c12011-01-03 15:08:04 +00001163}
1164
Francois Romieu24192212012-07-06 20:19:42 +02001165static int r8168dp_1_mdio_read(struct rtl8169_private *tp, int reg)
françois romieuc0e45c12011-01-03 15:08:04 +00001166{
Francois Romieu24192212012-07-06 20:19:42 +02001167 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001168
Francois Romieu24192212012-07-06 20:19:42 +02001169 r8168dp_1_mdio_access(tp, reg, OCPDR_READ_CMD);
françois romieuc0e45c12011-01-03 15:08:04 +00001170
1171 mdelay(1);
1172 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
1173 RTL_W32(EPHY_RXER_NUM, 0);
1174
Francois Romieuffc46952012-07-06 14:19:23 +02001175 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 1000, 100) ?
1176 RTL_R32(OCPDR) & OCPDR_DATA_MASK : ~0;
françois romieuc0e45c12011-01-03 15:08:04 +00001177}
1178
françois romieue6de30d2011-01-03 15:08:37 +00001179#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1180
1181static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1182{
1183 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1184}
1185
1186static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1187{
1188 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1189}
1190
Francois Romieu24192212012-07-06 20:19:42 +02001191static void r8168dp_2_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieue6de30d2011-01-03 15:08:37 +00001192{
Francois Romieu24192212012-07-06 20:19:42 +02001193 void __iomem *ioaddr = tp->mmio_addr;
1194
françois romieue6de30d2011-01-03 15:08:37 +00001195 r8168dp_2_mdio_start(ioaddr);
1196
Francois Romieu24192212012-07-06 20:19:42 +02001197 r8169_mdio_write(tp, reg, value);
françois romieue6de30d2011-01-03 15:08:37 +00001198
1199 r8168dp_2_mdio_stop(ioaddr);
1200}
1201
Francois Romieu24192212012-07-06 20:19:42 +02001202static int r8168dp_2_mdio_read(struct rtl8169_private *tp, int reg)
françois romieue6de30d2011-01-03 15:08:37 +00001203{
Francois Romieu24192212012-07-06 20:19:42 +02001204 void __iomem *ioaddr = tp->mmio_addr;
françois romieue6de30d2011-01-03 15:08:37 +00001205 int value;
1206
1207 r8168dp_2_mdio_start(ioaddr);
1208
Francois Romieu24192212012-07-06 20:19:42 +02001209 value = r8169_mdio_read(tp, reg);
françois romieue6de30d2011-01-03 15:08:37 +00001210
1211 r8168dp_2_mdio_stop(ioaddr);
1212
1213 return value;
1214}
1215
françois romieu4da19632011-01-03 15:07:55 +00001216static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001217{
Francois Romieu24192212012-07-06 20:19:42 +02001218 tp->mdio_ops.write(tp, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001219}
1220
françois romieu4da19632011-01-03 15:07:55 +00001221static int rtl_readphy(struct rtl8169_private *tp, int location)
1222{
Francois Romieu24192212012-07-06 20:19:42 +02001223 return tp->mdio_ops.read(tp, location);
françois romieu4da19632011-01-03 15:07:55 +00001224}
1225
1226static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1227{
1228 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1229}
1230
1231static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001232{
1233 int val;
1234
françois romieu4da19632011-01-03 15:07:55 +00001235 val = rtl_readphy(tp, reg_addr);
1236 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +00001237}
1238
Francois Romieuccdffb92008-07-26 14:26:06 +02001239static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1240 int val)
1241{
1242 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001243
françois romieu4da19632011-01-03 15:07:55 +00001244 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001245}
1246
1247static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1248{
1249 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001250
françois romieu4da19632011-01-03 15:07:55 +00001251 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001252}
1253
Francois Romieuffc46952012-07-06 14:19:23 +02001254DECLARE_RTL_COND(rtl_ephyar_cond)
1255{
1256 void __iomem *ioaddr = tp->mmio_addr;
1257
1258 return RTL_R32(EPHYAR) & EPHYAR_FLAG;
1259}
1260
Francois Romieufdf6fc02012-07-06 22:40:38 +02001261static void rtl_ephy_write(struct rtl8169_private *tp, int reg_addr, int value)
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, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1266 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1267
Francois Romieuffc46952012-07-06 14:19:23 +02001268 rtl_udelay_loop_wait_low(tp, &rtl_ephyar_cond, 10, 100);
1269
1270 udelay(10);
Francois Romieudacf8152008-08-02 20:44:13 +02001271}
1272
Francois Romieufdf6fc02012-07-06 22:40:38 +02001273static u16 rtl_ephy_read(struct rtl8169_private *tp, int reg_addr)
Francois Romieudacf8152008-08-02 20:44:13 +02001274{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001275 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001276
1277 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1278
Francois Romieuffc46952012-07-06 14:19:23 +02001279 return rtl_udelay_loop_wait_high(tp, &rtl_ephyar_cond, 10, 100) ?
1280 RTL_R32(EPHYAR) & EPHYAR_DATA_MASK : ~0;
Francois Romieudacf8152008-08-02 20:44:13 +02001281}
1282
Francois Romieufdf6fc02012-07-06 22:40:38 +02001283static void rtl_eri_write(struct rtl8169_private *tp, int addr, u32 mask,
1284 u32 val, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001285{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001286 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001287
1288 BUG_ON((addr & 3) || (mask == 0));
1289 RTL_W32(ERIDR, val);
1290 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1291
Francois Romieuffc46952012-07-06 14:19:23 +02001292 rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 100);
Hayes Wang133ac402011-07-06 15:58:05 +08001293}
1294
Francois Romieufdf6fc02012-07-06 22:40:38 +02001295static u32 rtl_eri_read(struct rtl8169_private *tp, int addr, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001296{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001297 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001298
1299 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1300
Francois Romieuffc46952012-07-06 14:19:23 +02001301 return rtl_udelay_loop_wait_high(tp, &rtl_eriar_cond, 100, 100) ?
1302 RTL_R32(ERIDR) : ~0;
Hayes Wang133ac402011-07-06 15:58:05 +08001303}
1304
Francois Romieufdf6fc02012-07-06 22:40:38 +02001305static void rtl_w1w0_eri(struct rtl8169_private *tp, int addr, u32 mask, u32 p,
1306 u32 m, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001307{
1308 u32 val;
1309
Francois Romieufdf6fc02012-07-06 22:40:38 +02001310 val = rtl_eri_read(tp, addr, type);
1311 rtl_eri_write(tp, addr, mask, (val & ~m) | p, type);
Hayes Wang133ac402011-07-06 15:58:05 +08001312}
1313
françois romieuc28aa382011-08-02 03:53:43 +00001314struct exgmac_reg {
1315 u16 addr;
1316 u16 mask;
1317 u32 val;
1318};
1319
Francois Romieufdf6fc02012-07-06 22:40:38 +02001320static void rtl_write_exgmac_batch(struct rtl8169_private *tp,
françois romieuc28aa382011-08-02 03:53:43 +00001321 const struct exgmac_reg *r, int len)
1322{
1323 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001324 rtl_eri_write(tp, r->addr, r->mask, r->val, ERIAR_EXGMAC);
françois romieuc28aa382011-08-02 03:53:43 +00001325 r++;
1326 }
1327}
1328
Francois Romieuffc46952012-07-06 14:19:23 +02001329DECLARE_RTL_COND(rtl_efusear_cond)
1330{
1331 void __iomem *ioaddr = tp->mmio_addr;
1332
1333 return RTL_R32(EFUSEAR) & EFUSEAR_FLAG;
1334}
1335
Francois Romieufdf6fc02012-07-06 22:40:38 +02001336static u8 rtl8168d_efuse_read(struct rtl8169_private *tp, int reg_addr)
françois romieudaf9df62009-10-07 12:44:20 +00001337{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001338 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00001339
1340 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1341
Francois Romieuffc46952012-07-06 14:19:23 +02001342 return rtl_udelay_loop_wait_high(tp, &rtl_efusear_cond, 100, 300) ?
1343 RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK : ~0;
françois romieudaf9df62009-10-07 12:44:20 +00001344}
1345
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001346static u16 rtl_get_events(struct rtl8169_private *tp)
1347{
1348 void __iomem *ioaddr = tp->mmio_addr;
1349
1350 return RTL_R16(IntrStatus);
1351}
1352
1353static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1354{
1355 void __iomem *ioaddr = tp->mmio_addr;
1356
1357 RTL_W16(IntrStatus, bits);
1358 mmiowb();
1359}
1360
1361static void rtl_irq_disable(struct rtl8169_private *tp)
1362{
1363 void __iomem *ioaddr = tp->mmio_addr;
1364
1365 RTL_W16(IntrMask, 0);
1366 mmiowb();
1367}
1368
Francois Romieu3e990ff2012-01-26 12:50:01 +01001369static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1370{
1371 void __iomem *ioaddr = tp->mmio_addr;
1372
1373 RTL_W16(IntrMask, bits);
1374}
1375
Francois Romieuda78dbf2012-01-26 14:18:23 +01001376#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1377#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1378#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1379
1380static void rtl_irq_enable_all(struct rtl8169_private *tp)
1381{
1382 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1383}
1384
françois romieu811fd302011-12-04 20:30:45 +00001385static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
françois romieu811fd302011-12-04 20:30:45 +00001387 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001389 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001390 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001391 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
françois romieu4da19632011-01-03 15:07:55 +00001394static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
françois romieu4da19632011-01-03 15:07:55 +00001396 void __iomem *ioaddr = tp->mmio_addr;
1397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 return RTL_R32(TBICSR) & TBIReset;
1399}
1400
françois romieu4da19632011-01-03 15:07:55 +00001401static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
françois romieu4da19632011-01-03 15:07:55 +00001403 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
1406static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1407{
1408 return RTL_R32(TBICSR) & TBILinkOk;
1409}
1410
1411static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1412{
1413 return RTL_R8(PHYstatus) & LinkStatus;
1414}
1415
françois romieu4da19632011-01-03 15:07:55 +00001416static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
françois romieu4da19632011-01-03 15:07:55 +00001418 void __iomem *ioaddr = tp->mmio_addr;
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1421}
1422
françois romieu4da19632011-01-03 15:07:55 +00001423static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
1425 unsigned int val;
1426
françois romieu4da19632011-01-03 15:07:55 +00001427 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1428 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Hayes Wang70090422011-07-06 15:58:06 +08001431static void rtl_link_chg_patch(struct rtl8169_private *tp)
1432{
1433 void __iomem *ioaddr = tp->mmio_addr;
1434 struct net_device *dev = tp->dev;
1435
1436 if (!netif_running(dev))
1437 return;
1438
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001439 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1440 tp->mac_version == RTL_GIGA_MAC_VER_38) {
Hayes Wang70090422011-07-06 15:58:06 +08001441 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001442 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1443 ERIAR_EXGMAC);
1444 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1445 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001446 } else if (RTL_R8(PHYstatus) & _100bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001447 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1448 ERIAR_EXGMAC);
1449 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1450 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001451 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001452 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1453 ERIAR_EXGMAC);
1454 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1455 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001456 }
1457 /* Reset packet filter */
Francois Romieufdf6fc02012-07-06 22:40:38 +02001458 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
Hayes Wang70090422011-07-06 15:58:06 +08001459 ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02001460 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
Hayes Wang70090422011-07-06 15:58:06 +08001461 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001462 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1463 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1464 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001465 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1466 ERIAR_EXGMAC);
1467 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1468 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001469 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001470 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1471 ERIAR_EXGMAC);
1472 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1473 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001474 }
Hayes Wang7e18dca2012-03-30 14:33:02 +08001475 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1476 if (RTL_R8(PHYstatus) & _10bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001477 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x4d02,
1478 ERIAR_EXGMAC);
1479 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_0011, 0x0060,
1480 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001481 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001482 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000,
1483 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001484 }
Hayes Wang70090422011-07-06 15:58:06 +08001485 }
1486}
1487
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001488static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001489 struct rtl8169_private *tp,
1490 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001493 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001494 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001495 if (pm)
1496 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001498 if (net_ratelimit())
1499 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001500 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001502 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001503 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001504 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001508static void rtl8169_check_link_status(struct net_device *dev,
1509 struct rtl8169_private *tp,
1510 void __iomem *ioaddr)
1511{
1512 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1513}
1514
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001515#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1516
1517static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1518{
1519 void __iomem *ioaddr = tp->mmio_addr;
1520 u8 options;
1521 u32 wolopts = 0;
1522
1523 options = RTL_R8(Config1);
1524 if (!(options & PMEnable))
1525 return 0;
1526
1527 options = RTL_R8(Config3);
1528 if (options & LinkUp)
1529 wolopts |= WAKE_PHY;
1530 if (options & MagicPacket)
1531 wolopts |= WAKE_MAGIC;
1532
1533 options = RTL_R8(Config5);
1534 if (options & UWF)
1535 wolopts |= WAKE_UCAST;
1536 if (options & BWF)
1537 wolopts |= WAKE_BCAST;
1538 if (options & MWF)
1539 wolopts |= WAKE_MCAST;
1540
1541 return wolopts;
1542}
1543
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001544static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1545{
1546 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001547
Francois Romieuda78dbf2012-01-26 14:18:23 +01001548 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001549
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001550 wol->supported = WAKE_ANY;
1551 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001552
Francois Romieuda78dbf2012-01-26 14:18:23 +01001553 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001554}
1555
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001556static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001557{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001558 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001559 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001560 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001561 u32 opt;
1562 u16 reg;
1563 u8 mask;
1564 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001565 { WAKE_PHY, Config3, LinkUp },
1566 { WAKE_MAGIC, Config3, MagicPacket },
1567 { WAKE_UCAST, Config5, UWF },
1568 { WAKE_BCAST, Config5, BWF },
1569 { WAKE_MCAST, Config5, MWF },
1570 { WAKE_ANY, Config5, LanWake }
1571 };
Francois Romieu851e6022012-04-17 11:10:11 +02001572 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001573
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001574 RTL_W8(Cfg9346, Cfg9346_Unlock);
1575
1576 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
Francois Romieu851e6022012-04-17 11:10:11 +02001577 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001578 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001579 options |= cfg[i].mask;
1580 RTL_W8(cfg[i].reg, options);
1581 }
1582
Francois Romieu851e6022012-04-17 11:10:11 +02001583 switch (tp->mac_version) {
1584 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1585 options = RTL_R8(Config1) & ~PMEnable;
1586 if (wolopts)
1587 options |= PMEnable;
1588 RTL_W8(Config1, options);
1589 break;
1590 default:
Francois Romieud387b422012-04-17 11:12:01 +02001591 options = RTL_R8(Config2) & ~PME_SIGNAL;
1592 if (wolopts)
1593 options |= PME_SIGNAL;
1594 RTL_W8(Config2, options);
Francois Romieu851e6022012-04-17 11:10:11 +02001595 break;
1596 }
1597
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001598 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001599}
1600
1601static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1602{
1603 struct rtl8169_private *tp = netdev_priv(dev);
1604
Francois Romieuda78dbf2012-01-26 14:18:23 +01001605 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001606
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001607 if (wol->wolopts)
1608 tp->features |= RTL_FEATURE_WOL;
1609 else
1610 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001611 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001612
1613 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001614
françois romieuea809072010-11-08 13:23:58 +00001615 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1616
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001617 return 0;
1618}
1619
Francois Romieu31bd2042011-04-26 18:58:59 +02001620static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1621{
Francois Romieu85bffe62011-04-27 08:22:39 +02001622 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001623}
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625static void rtl8169_get_drvinfo(struct net_device *dev,
1626 struct ethtool_drvinfo *info)
1627{
1628 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001629 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Rick Jones68aad782011-11-07 13:29:27 +00001631 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1632 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1633 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001634 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001635 if (!IS_ERR_OR_NULL(rtl_fw))
1636 strlcpy(info->fw_version, rtl_fw->version,
1637 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638}
1639
1640static int rtl8169_get_regs_len(struct net_device *dev)
1641{
1642 return R8169_REGS_SIZE;
1643}
1644
1645static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001646 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
1648 struct rtl8169_private *tp = netdev_priv(dev);
1649 void __iomem *ioaddr = tp->mmio_addr;
1650 int ret = 0;
1651 u32 reg;
1652
1653 reg = RTL_R32(TBICSR);
1654 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1655 (duplex == DUPLEX_FULL)) {
1656 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1657 } else if (autoneg == AUTONEG_ENABLE)
1658 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1659 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001660 netif_warn(tp, link, dev,
1661 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 ret = -EOPNOTSUPP;
1663 }
1664
1665 return ret;
1666}
1667
1668static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001669 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
1671 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001672 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001673 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Hayes Wang716b50a2011-02-22 17:26:18 +08001675 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001678 int auto_nego;
1679
françois romieu4da19632011-01-03 15:07:55 +00001680 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001681 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1682 ADVERTISE_100HALF | ADVERTISE_100FULL);
1683
1684 if (adv & ADVERTISED_10baseT_Half)
1685 auto_nego |= ADVERTISE_10HALF;
1686 if (adv & ADVERTISED_10baseT_Full)
1687 auto_nego |= ADVERTISE_10FULL;
1688 if (adv & ADVERTISED_100baseT_Half)
1689 auto_nego |= ADVERTISE_100HALF;
1690 if (adv & ADVERTISED_100baseT_Full)
1691 auto_nego |= ADVERTISE_100FULL;
1692
françois romieu3577aa12009-05-19 10:46:48 +00001693 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1694
françois romieu4da19632011-01-03 15:07:55 +00001695 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001696 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1697
1698 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001699 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001700 if (adv & ADVERTISED_1000baseT_Half)
1701 giga_ctrl |= ADVERTISE_1000HALF;
1702 if (adv & ADVERTISED_1000baseT_Full)
1703 giga_ctrl |= ADVERTISE_1000FULL;
1704 } else if (adv & (ADVERTISED_1000baseT_Half |
1705 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001706 netif_info(tp, link, dev,
1707 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001708 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
françois romieu3577aa12009-05-19 10:46:48 +00001711 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001712
françois romieu4da19632011-01-03 15:07:55 +00001713 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1714 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001715 } else {
1716 giga_ctrl = 0;
1717
1718 if (speed == SPEED_10)
1719 bmcr = 0;
1720 else if (speed == SPEED_100)
1721 bmcr = BMCR_SPEED100;
1722 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001723 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001724
1725 if (duplex == DUPLEX_FULL)
1726 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001727 }
1728
françois romieu4da19632011-01-03 15:07:55 +00001729 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001730
Francois Romieucecb5fd2011-04-01 10:21:07 +02001731 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1732 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001733 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001734 rtl_writephy(tp, 0x17, 0x2138);
1735 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001736 } else {
françois romieu4da19632011-01-03 15:07:55 +00001737 rtl_writephy(tp, 0x17, 0x2108);
1738 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001739 }
1740 }
1741
Oliver Neukum54405cd2011-01-06 21:55:13 +01001742 rc = 0;
1743out:
1744 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
1747static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001748 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
1750 struct rtl8169_private *tp = netdev_priv(dev);
1751 int ret;
1752
Oliver Neukum54405cd2011-01-06 21:55:13 +01001753 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001754 if (ret < 0)
1755 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Francois Romieu4876cc12011-03-11 21:07:11 +01001757 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1758 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001760 }
1761out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return ret;
1763}
1764
1765static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1766{
1767 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 int ret;
1769
Francois Romieu4876cc12011-03-11 21:07:11 +01001770 del_timer_sync(&tp->timer);
1771
Francois Romieuda78dbf2012-01-26 14:18:23 +01001772 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001773 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001774 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001775 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return ret;
1778}
1779
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001780static netdev_features_t rtl8169_fix_features(struct net_device *dev,
1781 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
Francois Romieud58d46b2011-05-03 16:38:29 +02001783 struct rtl8169_private *tp = netdev_priv(dev);
1784
Francois Romieu2b7b4312011-04-18 22:53:24 -07001785 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001786 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Francois Romieud58d46b2011-05-03 16:38:29 +02001788 if (dev->mtu > JUMBO_1K &&
1789 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
1790 features &= ~NETIF_F_IP_CSUM;
1791
Michał Mirosław350fb322011-04-08 06:35:56 +00001792 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793}
1794
Francois Romieuda78dbf2012-01-26 14:18:23 +01001795static void __rtl8169_set_features(struct net_device *dev,
1796 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
1798 struct rtl8169_private *tp = netdev_priv(dev);
Ben Greear6bbe0212012-02-10 15:04:33 +00001799 netdev_features_t changed = features ^ dev->features;
Francois Romieuda78dbf2012-01-26 14:18:23 +01001800 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Patrick McHardyf6469682013-04-19 02:04:27 +00001802 if (!(changed & (NETIF_F_RXALL | NETIF_F_RXCSUM |
1803 NETIF_F_HW_VLAN_CTAG_RX)))
Ben Greear6bbe0212012-02-10 15:04:33 +00001804 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Patrick McHardyf6469682013-04-19 02:04:27 +00001806 if (changed & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX)) {
Ben Greear6bbe0212012-02-10 15:04:33 +00001807 if (features & NETIF_F_RXCSUM)
1808 tp->cp_cmd |= RxChkSum;
1809 else
1810 tp->cp_cmd &= ~RxChkSum;
Michał Mirosław350fb322011-04-08 06:35:56 +00001811
Patrick McHardyf6469682013-04-19 02:04:27 +00001812 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
Ben Greear6bbe0212012-02-10 15:04:33 +00001813 tp->cp_cmd |= RxVlan;
1814 else
1815 tp->cp_cmd &= ~RxVlan;
1816
1817 RTL_W16(CPlusCmd, tp->cp_cmd);
1818 RTL_R16(CPlusCmd);
1819 }
1820 if (changed & NETIF_F_RXALL) {
1821 int tmp = (RTL_R32(RxConfig) & ~(AcceptErr | AcceptRunt));
1822 if (features & NETIF_F_RXALL)
1823 tmp |= (AcceptErr | AcceptRunt);
1824 RTL_W32(RxConfig, tmp);
1825 }
Francois Romieuda78dbf2012-01-26 14:18:23 +01001826}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Francois Romieuda78dbf2012-01-26 14:18:23 +01001828static int rtl8169_set_features(struct net_device *dev,
1829 netdev_features_t features)
1830{
1831 struct rtl8169_private *tp = netdev_priv(dev);
1832
1833 rtl_lock_work(tp);
1834 __rtl8169_set_features(dev, features);
1835 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837 return 0;
1838}
1839
Francois Romieuda78dbf2012-01-26 14:18:23 +01001840
Kirill Smelkov810f4892012-11-10 21:11:02 +04001841static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842{
Jesse Grosseab6d182010-10-20 13:56:03 +00001843 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1845}
1846
Francois Romieu7a8fc772011-03-01 17:18:33 +01001847static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Francois Romieu7a8fc772011-03-01 17:18:33 +01001851 if (opts2 & RxVlanTag)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001852 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
Francois Romieuccdffb92008-07-26 14:26:06 +02001855static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
1857 struct rtl8169_private *tp = netdev_priv(dev);
1858 void __iomem *ioaddr = tp->mmio_addr;
1859 u32 status;
1860
1861 cmd->supported =
1862 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1863 cmd->port = PORT_FIBRE;
1864 cmd->transceiver = XCVR_INTERNAL;
1865
1866 status = RTL_R32(TBICSR);
1867 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1868 cmd->autoneg = !!(status & TBINwEnable);
1869
David Decotigny70739492011-04-27 18:32:40 +00001870 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001872
1873 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
Francois Romieuccdffb92008-07-26 14:26:06 +02001876static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
1878 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Francois Romieuccdffb92008-07-26 14:26:06 +02001880 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
1883static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1884{
1885 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001886 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Francois Romieuda78dbf2012-01-26 14:18:23 +01001888 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02001889 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001890 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Francois Romieuccdffb92008-07-26 14:26:06 +02001892 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
1895static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1896 void *p)
1897{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001898 struct rtl8169_private *tp = netdev_priv(dev);
Peter Wu15edae92013-08-21 23:17:11 +02001899 u32 __iomem *data = tp->mmio_addr;
1900 u32 *dw = p;
1901 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Francois Romieuda78dbf2012-01-26 14:18:23 +01001903 rtl_lock_work(tp);
Peter Wu15edae92013-08-21 23:17:11 +02001904 for (i = 0; i < R8169_REGS_SIZE; i += 4)
1905 memcpy_fromio(dw++, data++, 4);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001906 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001909static u32 rtl8169_get_msglevel(struct net_device *dev)
1910{
1911 struct rtl8169_private *tp = netdev_priv(dev);
1912
1913 return tp->msg_enable;
1914}
1915
1916static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1917{
1918 struct rtl8169_private *tp = netdev_priv(dev);
1919
1920 tp->msg_enable = value;
1921}
1922
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001923static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1924 "tx_packets",
1925 "rx_packets",
1926 "tx_errors",
1927 "rx_errors",
1928 "rx_missed",
1929 "align_errors",
1930 "tx_single_collisions",
1931 "tx_multi_collisions",
1932 "unicast",
1933 "broadcast",
1934 "multicast",
1935 "tx_aborted",
1936 "tx_underrun",
1937};
1938
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001939static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001940{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001941 switch (sset) {
1942 case ETH_SS_STATS:
1943 return ARRAY_SIZE(rtl8169_gstrings);
1944 default:
1945 return -EOPNOTSUPP;
1946 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001947}
1948
Francois Romieuffc46952012-07-06 14:19:23 +02001949DECLARE_RTL_COND(rtl_counters_cond)
1950{
1951 void __iomem *ioaddr = tp->mmio_addr;
1952
1953 return RTL_R32(CounterAddrLow) & CounterDump;
1954}
1955
Ivan Vecera355423d2009-02-06 21:49:57 -08001956static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001957{
1958 struct rtl8169_private *tp = netdev_priv(dev);
1959 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001960 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001961 struct rtl8169_counters *counters;
1962 dma_addr_t paddr;
1963 u32 cmd;
1964
Ivan Vecera355423d2009-02-06 21:49:57 -08001965 /*
1966 * Some chips are unable to dump tally counters when the receiver
1967 * is disabled.
1968 */
1969 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1970 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001971
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001972 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001973 if (!counters)
1974 return;
1975
1976 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001977 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001978 RTL_W32(CounterAddrLow, cmd);
1979 RTL_W32(CounterAddrLow, cmd | CounterDump);
1980
Francois Romieuffc46952012-07-06 14:19:23 +02001981 if (rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000))
1982 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001983
1984 RTL_W32(CounterAddrLow, 0);
1985 RTL_W32(CounterAddrHigh, 0);
1986
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001987 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001988}
1989
Ivan Vecera355423d2009-02-06 21:49:57 -08001990static void rtl8169_get_ethtool_stats(struct net_device *dev,
1991 struct ethtool_stats *stats, u64 *data)
1992{
1993 struct rtl8169_private *tp = netdev_priv(dev);
1994
1995 ASSERT_RTNL();
1996
1997 rtl8169_update_counters(dev);
1998
1999 data[0] = le64_to_cpu(tp->counters.tx_packets);
2000 data[1] = le64_to_cpu(tp->counters.rx_packets);
2001 data[2] = le64_to_cpu(tp->counters.tx_errors);
2002 data[3] = le32_to_cpu(tp->counters.rx_errors);
2003 data[4] = le16_to_cpu(tp->counters.rx_missed);
2004 data[5] = le16_to_cpu(tp->counters.align_errors);
2005 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
2006 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
2007 data[8] = le64_to_cpu(tp->counters.rx_unicast);
2008 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
2009 data[10] = le32_to_cpu(tp->counters.rx_multicast);
2010 data[11] = le16_to_cpu(tp->counters.tx_aborted);
2011 data[12] = le16_to_cpu(tp->counters.tx_underun);
2012}
2013
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002014static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2015{
2016 switch(stringset) {
2017 case ETH_SS_STATS:
2018 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
2019 break;
2020 }
2021}
2022
Jeff Garzik7282d492006-09-13 14:30:00 -04002023static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 .get_drvinfo = rtl8169_get_drvinfo,
2025 .get_regs_len = rtl8169_get_regs_len,
2026 .get_link = ethtool_op_get_link,
2027 .get_settings = rtl8169_get_settings,
2028 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002029 .get_msglevel = rtl8169_get_msglevel,
2030 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002032 .get_wol = rtl8169_get_wol,
2033 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002034 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002035 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002036 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00002037 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038};
2039
Francois Romieu07d3f512007-02-21 22:40:46 +01002040static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02002041 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
Francois Romieu5d320a22011-05-08 17:47:36 +02002043 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002044 /*
2045 * The driver currently handles the 8168Bf and the 8168Be identically
2046 * but they can be identified more specifically through the test below
2047 * if needed:
2048 *
2049 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01002050 *
2051 * Same thing for the 8101Eb and the 8101Ec:
2052 *
2053 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01002054 */
Francois Romieu37441002011-06-17 22:58:54 +02002055 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002057 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 int mac_version;
2059 } mac_info[] = {
Hayes Wangc5583862012-07-02 17:23:22 +08002060 /* 8168G family. */
hayeswang45dd95c2013-07-08 17:09:01 +08002061 { 0x7cf00000, 0x5c800000, RTL_GIGA_MAC_VER_44 },
hayeswang57538c42013-04-01 22:23:40 +00002062 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42 },
Hayes Wangc5583862012-07-02 17:23:22 +08002063 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2064 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2065
Hayes Wangc2218922011-09-06 16:55:18 +08002066 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08002067 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08002068 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2069 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2070
hayeswang01dc7fe2011-03-21 01:50:28 +00002071 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08002072 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00002073 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
2074 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2075 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2076
Francois Romieu5b538df2008-07-20 16:22:45 +02002077 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00002078 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
2079 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00002080 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002081
françois romieue6de30d2011-01-03 15:08:37 +00002082 /* 8168DP family. */
2083 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2084 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00002085 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00002086
Francois Romieuef808d52008-06-29 13:10:54 +02002087 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07002088 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02002089 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02002090 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002091 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002092 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2093 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02002094 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02002095 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02002096 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002097
2098 /* 8168B family. */
2099 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2100 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
2101 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2102 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2103
2104 /* 8101 family. */
Hayes Wang5598bfe2012-07-02 17:23:21 +08002105 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39 },
2106 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
Hayes Wang7e18dca2012-03-30 14:33:02 +08002107 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00002108 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08002109 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
2110 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2111 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002112 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
2113 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
2114 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2115 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2116 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2117 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002118 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002119 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002120 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002121 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2122 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002123 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2124 /* FIXME: where did these entries come from ? -- FR */
2125 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2126 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2127
2128 /* 8110 family. */
2129 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2130 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2131 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2132 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2133 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2134 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2135
Jean Delvaref21b75e2009-05-26 20:54:48 -07002136 /* Catch-all */
2137 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02002138 };
2139 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 u32 reg;
2141
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002142 reg = RTL_R32(TxConfig);
2143 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 p++;
2145 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02002146
2147 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2148 netif_notice(tp, probe, dev,
2149 "unknown MAC, using family default\n");
2150 tp->mac_version = default_version;
hayeswang58152cd2013-04-01 22:23:42 +00002151 } else if (tp->mac_version == RTL_GIGA_MAC_VER_42) {
2152 tp->mac_version = tp->mii.supports_gmii ?
2153 RTL_GIGA_MAC_VER_42 :
2154 RTL_GIGA_MAC_VER_43;
Francois Romieu5d320a22011-05-08 17:47:36 +02002155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
2158static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2159{
Francois Romieubcf0bf92006-07-26 23:14:13 +02002160 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161}
2162
Francois Romieu867763c2007-08-17 18:21:58 +02002163struct phy_reg {
2164 u16 reg;
2165 u16 val;
2166};
2167
françois romieu4da19632011-01-03 15:07:55 +00002168static void rtl_writephy_batch(struct rtl8169_private *tp,
2169 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02002170{
2171 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00002172 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02002173 regs++;
2174 }
2175}
2176
françois romieubca03d52011-01-03 15:07:31 +00002177#define PHY_READ 0x00000000
2178#define PHY_DATA_OR 0x10000000
2179#define PHY_DATA_AND 0x20000000
2180#define PHY_BJMPN 0x30000000
hayeswangeee37862013-04-01 22:23:38 +00002181#define PHY_MDIO_CHG 0x40000000
françois romieubca03d52011-01-03 15:07:31 +00002182#define PHY_CLEAR_READCOUNT 0x70000000
2183#define PHY_WRITE 0x80000000
2184#define PHY_READCOUNT_EQ_SKIP 0x90000000
2185#define PHY_COMP_EQ_SKIPN 0xa0000000
2186#define PHY_COMP_NEQ_SKIPN 0xb0000000
2187#define PHY_WRITE_PREVIOUS 0xc0000000
2188#define PHY_SKIPN 0xd0000000
2189#define PHY_DELAY_MS 0xe0000000
françois romieubca03d52011-01-03 15:07:31 +00002190
Hayes Wang960aee62011-06-18 11:37:48 +02002191struct fw_info {
2192 u32 magic;
2193 char version[RTL_VER_SIZE];
2194 __le32 fw_start;
2195 __le32 fw_len;
2196 u8 chksum;
2197} __packed;
2198
Francois Romieu1c361ef2011-06-17 17:16:24 +02002199#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2200
2201static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002202{
Francois Romieub6ffd972011-06-17 17:00:05 +02002203 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002204 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002205 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2206 char *version = rtl_fw->version;
2207 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002208
Francois Romieu1c361ef2011-06-17 17:16:24 +02002209 if (fw->size < FW_OPCODE_SIZE)
2210 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002211
2212 if (!fw_info->magic) {
2213 size_t i, size, start;
2214 u8 checksum = 0;
2215
2216 if (fw->size < sizeof(*fw_info))
2217 goto out;
2218
2219 for (i = 0; i < fw->size; i++)
2220 checksum += fw->data[i];
2221 if (checksum != 0)
2222 goto out;
2223
2224 start = le32_to_cpu(fw_info->fw_start);
2225 if (start > fw->size)
2226 goto out;
2227
2228 size = le32_to_cpu(fw_info->fw_len);
2229 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2230 goto out;
2231
2232 memcpy(version, fw_info->version, RTL_VER_SIZE);
2233
2234 pa->code = (__le32 *)(fw->data + start);
2235 pa->size = size;
2236 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002237 if (fw->size % FW_OPCODE_SIZE)
2238 goto out;
2239
2240 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2241
2242 pa->code = (__le32 *)fw->data;
2243 pa->size = fw->size / FW_OPCODE_SIZE;
2244 }
2245 version[RTL_VER_SIZE - 1] = 0;
2246
2247 rc = true;
2248out:
2249 return rc;
2250}
2251
Francois Romieufd112f22011-06-18 00:10:29 +02002252static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2253 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002254{
Francois Romieufd112f22011-06-18 00:10:29 +02002255 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002256 size_t index;
2257
Francois Romieu1c361ef2011-06-17 17:16:24 +02002258 for (index = 0; index < pa->size; index++) {
2259 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002260 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002261
hayeswang42b82dc2011-01-10 02:07:25 +00002262 switch(action & 0xf0000000) {
2263 case PHY_READ:
2264 case PHY_DATA_OR:
2265 case PHY_DATA_AND:
hayeswangeee37862013-04-01 22:23:38 +00002266 case PHY_MDIO_CHG:
hayeswang42b82dc2011-01-10 02:07:25 +00002267 case PHY_CLEAR_READCOUNT:
2268 case PHY_WRITE:
2269 case PHY_WRITE_PREVIOUS:
2270 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002271 break;
2272
hayeswang42b82dc2011-01-10 02:07:25 +00002273 case PHY_BJMPN:
2274 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002275 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002276 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002277 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002278 }
2279 break;
2280 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002281 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002282 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002283 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002284 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002285 }
2286 break;
2287 case PHY_COMP_EQ_SKIPN:
2288 case PHY_COMP_NEQ_SKIPN:
2289 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002290 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002291 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002292 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002293 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002294 }
2295 break;
2296
hayeswang42b82dc2011-01-10 02:07:25 +00002297 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002298 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002299 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002300 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002301 }
2302 }
Francois Romieufd112f22011-06-18 00:10:29 +02002303 rc = true;
2304out:
2305 return rc;
2306}
françois romieubca03d52011-01-03 15:07:31 +00002307
Francois Romieufd112f22011-06-18 00:10:29 +02002308static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2309{
2310 struct net_device *dev = tp->dev;
2311 int rc = -EINVAL;
2312
2313 if (!rtl_fw_format_ok(tp, rtl_fw)) {
2314 netif_err(tp, ifup, dev, "invalid firwmare\n");
2315 goto out;
2316 }
2317
2318 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2319 rc = 0;
2320out:
2321 return rc;
2322}
2323
2324static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2325{
2326 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
hayeswangeee37862013-04-01 22:23:38 +00002327 struct mdio_ops org, *ops = &tp->mdio_ops;
Francois Romieufd112f22011-06-18 00:10:29 +02002328 u32 predata, count;
2329 size_t index;
2330
2331 predata = count = 0;
hayeswangeee37862013-04-01 22:23:38 +00002332 org.write = ops->write;
2333 org.read = ops->read;
hayeswang42b82dc2011-01-10 02:07:25 +00002334
Francois Romieu1c361ef2011-06-17 17:16:24 +02002335 for (index = 0; index < pa->size; ) {
2336 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002337 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002338 u32 regno = (action & 0x0fff0000) >> 16;
2339
2340 if (!action)
2341 break;
françois romieubca03d52011-01-03 15:07:31 +00002342
2343 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002344 case PHY_READ:
2345 predata = rtl_readphy(tp, regno);
2346 count++;
2347 index++;
françois romieubca03d52011-01-03 15:07:31 +00002348 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002349 case PHY_DATA_OR:
2350 predata |= data;
2351 index++;
2352 break;
2353 case PHY_DATA_AND:
2354 predata &= data;
2355 index++;
2356 break;
2357 case PHY_BJMPN:
2358 index -= regno;
2359 break;
hayeswangeee37862013-04-01 22:23:38 +00002360 case PHY_MDIO_CHG:
2361 if (data == 0) {
2362 ops->write = org.write;
2363 ops->read = org.read;
2364 } else if (data == 1) {
2365 ops->write = mac_mcu_write;
2366 ops->read = mac_mcu_read;
2367 }
2368
hayeswang42b82dc2011-01-10 02:07:25 +00002369 index++;
2370 break;
2371 case PHY_CLEAR_READCOUNT:
2372 count = 0;
2373 index++;
2374 break;
2375 case PHY_WRITE:
2376 rtl_writephy(tp, regno, data);
2377 index++;
2378 break;
2379 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002380 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002381 break;
2382 case PHY_COMP_EQ_SKIPN:
2383 if (predata == data)
2384 index += regno;
2385 index++;
2386 break;
2387 case PHY_COMP_NEQ_SKIPN:
2388 if (predata != data)
2389 index += regno;
2390 index++;
2391 break;
2392 case PHY_WRITE_PREVIOUS:
2393 rtl_writephy(tp, regno, predata);
2394 index++;
2395 break;
2396 case PHY_SKIPN:
2397 index += regno + 1;
2398 break;
2399 case PHY_DELAY_MS:
2400 mdelay(data);
2401 index++;
2402 break;
2403
françois romieubca03d52011-01-03 15:07:31 +00002404 default:
2405 BUG();
2406 }
2407 }
hayeswangeee37862013-04-01 22:23:38 +00002408
2409 ops->write = org.write;
2410 ops->read = org.read;
françois romieubca03d52011-01-03 15:07:31 +00002411}
2412
françois romieuf1e02ed2011-01-13 13:07:53 +00002413static void rtl_release_firmware(struct rtl8169_private *tp)
2414{
Francois Romieub6ffd972011-06-17 17:00:05 +02002415 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2416 release_firmware(tp->rtl_fw->fw);
2417 kfree(tp->rtl_fw);
2418 }
2419 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002420}
2421
François Romieu953a12c2011-04-24 17:38:48 +02002422static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002423{
Francois Romieub6ffd972011-06-17 17:00:05 +02002424 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002425
2426 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieueef63cc2013-02-08 23:43:20 +01002427 if (!IS_ERR_OR_NULL(rtl_fw))
Francois Romieub6ffd972011-06-17 17:00:05 +02002428 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002429}
2430
2431static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2432{
2433 if (rtl_readphy(tp, reg) != val)
2434 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2435 else
2436 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002437}
2438
françois romieu4da19632011-01-03 15:07:55 +00002439static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002441 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002442 { 0x1f, 0x0001 },
2443 { 0x06, 0x006e },
2444 { 0x08, 0x0708 },
2445 { 0x15, 0x4000 },
2446 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
françois romieu0b9b5712009-08-10 19:44:56 +00002448 { 0x1f, 0x0001 },
2449 { 0x03, 0x00a1 },
2450 { 0x02, 0x0008 },
2451 { 0x01, 0x0120 },
2452 { 0x00, 0x1000 },
2453 { 0x04, 0x0800 },
2454 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
françois romieu0b9b5712009-08-10 19:44:56 +00002456 { 0x03, 0xff41 },
2457 { 0x02, 0xdf60 },
2458 { 0x01, 0x0140 },
2459 { 0x00, 0x0077 },
2460 { 0x04, 0x7800 },
2461 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
françois romieu0b9b5712009-08-10 19:44:56 +00002463 { 0x03, 0x802f },
2464 { 0x02, 0x4f02 },
2465 { 0x01, 0x0409 },
2466 { 0x00, 0xf0f9 },
2467 { 0x04, 0x9800 },
2468 { 0x04, 0x9000 },
2469
2470 { 0x03, 0xdf01 },
2471 { 0x02, 0xdf20 },
2472 { 0x01, 0xff95 },
2473 { 0x00, 0xba00 },
2474 { 0x04, 0xa800 },
2475 { 0x04, 0xa000 },
2476
2477 { 0x03, 0xff41 },
2478 { 0x02, 0xdf20 },
2479 { 0x01, 0x0140 },
2480 { 0x00, 0x00bb },
2481 { 0x04, 0xb800 },
2482 { 0x04, 0xb000 },
2483
2484 { 0x03, 0xdf41 },
2485 { 0x02, 0xdc60 },
2486 { 0x01, 0x6340 },
2487 { 0x00, 0x007d },
2488 { 0x04, 0xd800 },
2489 { 0x04, 0xd000 },
2490
2491 { 0x03, 0xdf01 },
2492 { 0x02, 0xdf20 },
2493 { 0x01, 0x100a },
2494 { 0x00, 0xa0ff },
2495 { 0x04, 0xf800 },
2496 { 0x04, 0xf000 },
2497
2498 { 0x1f, 0x0000 },
2499 { 0x0b, 0x0000 },
2500 { 0x00, 0x9200 }
2501 };
2502
françois romieu4da19632011-01-03 15:07:55 +00002503 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
françois romieu4da19632011-01-03 15:07:55 +00002506static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002507{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002508 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002509 { 0x1f, 0x0002 },
2510 { 0x01, 0x90d0 },
2511 { 0x1f, 0x0000 }
2512 };
2513
françois romieu4da19632011-01-03 15:07:55 +00002514 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002515}
2516
françois romieu4da19632011-01-03 15:07:55 +00002517static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002518{
2519 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002520
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002521 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2522 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002523 return;
2524
françois romieu4da19632011-01-03 15:07:55 +00002525 rtl_writephy(tp, 0x1f, 0x0001);
2526 rtl_writephy(tp, 0x10, 0xf01b);
2527 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002528}
2529
françois romieu4da19632011-01-03 15:07:55 +00002530static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002531{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002532 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002533 { 0x1f, 0x0001 },
2534 { 0x04, 0x0000 },
2535 { 0x03, 0x00a1 },
2536 { 0x02, 0x0008 },
2537 { 0x01, 0x0120 },
2538 { 0x00, 0x1000 },
2539 { 0x04, 0x0800 },
2540 { 0x04, 0x9000 },
2541 { 0x03, 0x802f },
2542 { 0x02, 0x4f02 },
2543 { 0x01, 0x0409 },
2544 { 0x00, 0xf099 },
2545 { 0x04, 0x9800 },
2546 { 0x04, 0xa000 },
2547 { 0x03, 0xdf01 },
2548 { 0x02, 0xdf20 },
2549 { 0x01, 0xff95 },
2550 { 0x00, 0xba00 },
2551 { 0x04, 0xa800 },
2552 { 0x04, 0xf000 },
2553 { 0x03, 0xdf01 },
2554 { 0x02, 0xdf20 },
2555 { 0x01, 0x101a },
2556 { 0x00, 0xa0ff },
2557 { 0x04, 0xf800 },
2558 { 0x04, 0x0000 },
2559 { 0x1f, 0x0000 },
2560
2561 { 0x1f, 0x0001 },
2562 { 0x10, 0xf41b },
2563 { 0x14, 0xfb54 },
2564 { 0x18, 0xf5c7 },
2565 { 0x1f, 0x0000 },
2566
2567 { 0x1f, 0x0001 },
2568 { 0x17, 0x0cc0 },
2569 { 0x1f, 0x0000 }
2570 };
2571
françois romieu4da19632011-01-03 15:07:55 +00002572 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002573
françois romieu4da19632011-01-03 15:07:55 +00002574 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002575}
2576
françois romieu4da19632011-01-03 15:07:55 +00002577static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002578{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002579 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002580 { 0x1f, 0x0001 },
2581 { 0x04, 0x0000 },
2582 { 0x03, 0x00a1 },
2583 { 0x02, 0x0008 },
2584 { 0x01, 0x0120 },
2585 { 0x00, 0x1000 },
2586 { 0x04, 0x0800 },
2587 { 0x04, 0x9000 },
2588 { 0x03, 0x802f },
2589 { 0x02, 0x4f02 },
2590 { 0x01, 0x0409 },
2591 { 0x00, 0xf099 },
2592 { 0x04, 0x9800 },
2593 { 0x04, 0xa000 },
2594 { 0x03, 0xdf01 },
2595 { 0x02, 0xdf20 },
2596 { 0x01, 0xff95 },
2597 { 0x00, 0xba00 },
2598 { 0x04, 0xa800 },
2599 { 0x04, 0xf000 },
2600 { 0x03, 0xdf01 },
2601 { 0x02, 0xdf20 },
2602 { 0x01, 0x101a },
2603 { 0x00, 0xa0ff },
2604 { 0x04, 0xf800 },
2605 { 0x04, 0x0000 },
2606 { 0x1f, 0x0000 },
2607
2608 { 0x1f, 0x0001 },
2609 { 0x0b, 0x8480 },
2610 { 0x1f, 0x0000 },
2611
2612 { 0x1f, 0x0001 },
2613 { 0x18, 0x67c7 },
2614 { 0x04, 0x2000 },
2615 { 0x03, 0x002f },
2616 { 0x02, 0x4360 },
2617 { 0x01, 0x0109 },
2618 { 0x00, 0x3022 },
2619 { 0x04, 0x2800 },
2620 { 0x1f, 0x0000 },
2621
2622 { 0x1f, 0x0001 },
2623 { 0x17, 0x0cc0 },
2624 { 0x1f, 0x0000 }
2625 };
2626
françois romieu4da19632011-01-03 15:07:55 +00002627 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002628}
2629
françois romieu4da19632011-01-03 15:07:55 +00002630static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002631{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002632 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002633 { 0x10, 0xf41b },
2634 { 0x1f, 0x0000 }
2635 };
2636
françois romieu4da19632011-01-03 15:07:55 +00002637 rtl_writephy(tp, 0x1f, 0x0001);
2638 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002639
françois romieu4da19632011-01-03 15:07:55 +00002640 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002641}
2642
françois romieu4da19632011-01-03 15:07:55 +00002643static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002644{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002645 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002646 { 0x1f, 0x0001 },
2647 { 0x10, 0xf41b },
2648 { 0x1f, 0x0000 }
2649 };
2650
françois romieu4da19632011-01-03 15:07:55 +00002651 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002652}
2653
françois romieu4da19632011-01-03 15:07:55 +00002654static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002655{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002656 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002657 { 0x1f, 0x0000 },
2658 { 0x1d, 0x0f00 },
2659 { 0x1f, 0x0002 },
2660 { 0x0c, 0x1ec8 },
2661 { 0x1f, 0x0000 }
2662 };
2663
françois romieu4da19632011-01-03 15:07:55 +00002664 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002665}
2666
françois romieu4da19632011-01-03 15:07:55 +00002667static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002668{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002669 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002670 { 0x1f, 0x0001 },
2671 { 0x1d, 0x3d98 },
2672 { 0x1f, 0x0000 }
2673 };
2674
françois romieu4da19632011-01-03 15:07:55 +00002675 rtl_writephy(tp, 0x1f, 0x0000);
2676 rtl_patchphy(tp, 0x14, 1 << 5);
2677 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002678
françois romieu4da19632011-01-03 15:07:55 +00002679 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002680}
2681
françois romieu4da19632011-01-03 15:07:55 +00002682static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002683{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002684 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002685 { 0x1f, 0x0001 },
2686 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002687 { 0x1f, 0x0002 },
2688 { 0x00, 0x88d4 },
2689 { 0x01, 0x82b1 },
2690 { 0x03, 0x7002 },
2691 { 0x08, 0x9e30 },
2692 { 0x09, 0x01f0 },
2693 { 0x0a, 0x5500 },
2694 { 0x0c, 0x00c8 },
2695 { 0x1f, 0x0003 },
2696 { 0x12, 0xc096 },
2697 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002698 { 0x1f, 0x0000 },
2699 { 0x1f, 0x0000 },
2700 { 0x09, 0x2000 },
2701 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002702 };
2703
françois romieu4da19632011-01-03 15:07:55 +00002704 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002705
françois romieu4da19632011-01-03 15:07:55 +00002706 rtl_patchphy(tp, 0x14, 1 << 5);
2707 rtl_patchphy(tp, 0x0d, 1 << 5);
2708 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002709}
2710
françois romieu4da19632011-01-03 15:07:55 +00002711static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002712{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002713 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002714 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002715 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002716 { 0x03, 0x802f },
2717 { 0x02, 0x4f02 },
2718 { 0x01, 0x0409 },
2719 { 0x00, 0xf099 },
2720 { 0x04, 0x9800 },
2721 { 0x04, 0x9000 },
2722 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002723 { 0x1f, 0x0002 },
2724 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002725 { 0x06, 0x0761 },
2726 { 0x1f, 0x0003 },
2727 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002728 { 0x1f, 0x0000 }
2729 };
2730
françois romieu4da19632011-01-03 15:07:55 +00002731 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002732
françois romieu4da19632011-01-03 15:07:55 +00002733 rtl_patchphy(tp, 0x16, 1 << 0);
2734 rtl_patchphy(tp, 0x14, 1 << 5);
2735 rtl_patchphy(tp, 0x0d, 1 << 5);
2736 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002737}
2738
françois romieu4da19632011-01-03 15:07:55 +00002739static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002740{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002741 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002742 { 0x1f, 0x0001 },
2743 { 0x12, 0x2300 },
2744 { 0x1d, 0x3d98 },
2745 { 0x1f, 0x0002 },
2746 { 0x0c, 0x7eb8 },
2747 { 0x06, 0x5461 },
2748 { 0x1f, 0x0003 },
2749 { 0x16, 0x0f0a },
2750 { 0x1f, 0x0000 }
2751 };
2752
françois romieu4da19632011-01-03 15:07:55 +00002753 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002754
françois romieu4da19632011-01-03 15:07:55 +00002755 rtl_patchphy(tp, 0x16, 1 << 0);
2756 rtl_patchphy(tp, 0x14, 1 << 5);
2757 rtl_patchphy(tp, 0x0d, 1 << 5);
2758 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002759}
2760
françois romieu4da19632011-01-03 15:07:55 +00002761static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002762{
françois romieu4da19632011-01-03 15:07:55 +00002763 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002764}
2765
françois romieubca03d52011-01-03 15:07:31 +00002766static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002767{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002768 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002769 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002770 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002771 { 0x06, 0x4064 },
2772 { 0x07, 0x2863 },
2773 { 0x08, 0x059c },
2774 { 0x09, 0x26b4 },
2775 { 0x0a, 0x6a19 },
2776 { 0x0b, 0xdcc8 },
2777 { 0x10, 0xf06d },
2778 { 0x14, 0x7f68 },
2779 { 0x18, 0x7fd9 },
2780 { 0x1c, 0xf0ff },
2781 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002782 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002783 { 0x12, 0xf49f },
2784 { 0x13, 0x070b },
2785 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002786 { 0x14, 0x94c0 },
2787
2788 /*
2789 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002790 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002791 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002792 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002793 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002794 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002795 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002796 { 0x06, 0x5561 },
2797
2798 /*
2799 * Can not link to 1Gbps with bad cable
2800 * Decrease SNR threshold form 21.07dB to 19.04dB
2801 */
2802 { 0x1f, 0x0001 },
2803 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002804
2805 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002806 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002807 };
2808
françois romieu4da19632011-01-03 15:07:55 +00002809 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002810
françois romieubca03d52011-01-03 15:07:31 +00002811 /*
2812 * Rx Error Issue
2813 * Fine Tune Switching regulator parameter
2814 */
françois romieu4da19632011-01-03 15:07:55 +00002815 rtl_writephy(tp, 0x1f, 0x0002);
2816 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2817 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002818
Francois Romieufdf6fc02012-07-06 22:40:38 +02002819 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002820 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002821 { 0x1f, 0x0002 },
2822 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002823 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002824 { 0x05, 0x8330 },
2825 { 0x06, 0x669a },
2826 { 0x1f, 0x0002 }
2827 };
2828 int val;
2829
françois romieu4da19632011-01-03 15:07:55 +00002830 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002831
françois romieu4da19632011-01-03 15:07:55 +00002832 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002833
2834 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002835 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002836 0x0065, 0x0066, 0x0067, 0x0068,
2837 0x0069, 0x006a, 0x006b, 0x006c
2838 };
2839 int i;
2840
françois romieu4da19632011-01-03 15:07:55 +00002841 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002842
2843 val &= 0xff00;
2844 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002845 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002846 }
2847 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002848 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002849 { 0x1f, 0x0002 },
2850 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002851 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002852 { 0x05, 0x8330 },
2853 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002854 };
2855
françois romieu4da19632011-01-03 15:07:55 +00002856 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002857 }
2858
françois romieubca03d52011-01-03 15:07:31 +00002859 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002860 rtl_writephy(tp, 0x1f, 0x0002);
2861 rtl_patchphy(tp, 0x0d, 0x0300);
2862 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002863
françois romieubca03d52011-01-03 15:07:31 +00002864 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002865 rtl_writephy(tp, 0x1f, 0x0002);
2866 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2867 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002868
françois romieu4da19632011-01-03 15:07:55 +00002869 rtl_writephy(tp, 0x1f, 0x0005);
2870 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002871
2872 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002873
françois romieu4da19632011-01-03 15:07:55 +00002874 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002875}
2876
françois romieubca03d52011-01-03 15:07:31 +00002877static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002878{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002879 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002880 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002881 { 0x1f, 0x0001 },
2882 { 0x06, 0x4064 },
2883 { 0x07, 0x2863 },
2884 { 0x08, 0x059c },
2885 { 0x09, 0x26b4 },
2886 { 0x0a, 0x6a19 },
2887 { 0x0b, 0xdcc8 },
2888 { 0x10, 0xf06d },
2889 { 0x14, 0x7f68 },
2890 { 0x18, 0x7fd9 },
2891 { 0x1c, 0xf0ff },
2892 { 0x1d, 0x3d9c },
2893 { 0x1f, 0x0003 },
2894 { 0x12, 0xf49f },
2895 { 0x13, 0x070b },
2896 { 0x1a, 0x05ad },
2897 { 0x14, 0x94c0 },
2898
françois romieubca03d52011-01-03 15:07:31 +00002899 /*
2900 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002901 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002902 */
françois romieudaf9df62009-10-07 12:44:20 +00002903 { 0x1f, 0x0002 },
2904 { 0x06, 0x5561 },
2905 { 0x1f, 0x0005 },
2906 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002907 { 0x06, 0x5561 },
2908
2909 /*
2910 * Can not link to 1Gbps with bad cable
2911 * Decrease SNR threshold form 21.07dB to 19.04dB
2912 */
2913 { 0x1f, 0x0001 },
2914 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002915
2916 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002917 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002918 };
2919
françois romieu4da19632011-01-03 15:07:55 +00002920 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002921
Francois Romieufdf6fc02012-07-06 22:40:38 +02002922 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002923 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002924 { 0x1f, 0x0002 },
2925 { 0x05, 0x669a },
2926 { 0x1f, 0x0005 },
2927 { 0x05, 0x8330 },
2928 { 0x06, 0x669a },
2929
2930 { 0x1f, 0x0002 }
2931 };
2932 int val;
2933
françois romieu4da19632011-01-03 15:07:55 +00002934 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002935
françois romieu4da19632011-01-03 15:07:55 +00002936 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002937 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002938 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002939 0x0065, 0x0066, 0x0067, 0x0068,
2940 0x0069, 0x006a, 0x006b, 0x006c
2941 };
2942 int i;
2943
françois romieu4da19632011-01-03 15:07:55 +00002944 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002945
2946 val &= 0xff00;
2947 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002948 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002949 }
2950 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002951 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002952 { 0x1f, 0x0002 },
2953 { 0x05, 0x2642 },
2954 { 0x1f, 0x0005 },
2955 { 0x05, 0x8330 },
2956 { 0x06, 0x2642 }
2957 };
2958
françois romieu4da19632011-01-03 15:07:55 +00002959 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002960 }
2961
françois romieubca03d52011-01-03 15:07:31 +00002962 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002963 rtl_writephy(tp, 0x1f, 0x0002);
2964 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2965 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002966
françois romieubca03d52011-01-03 15:07:31 +00002967 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002968 rtl_writephy(tp, 0x1f, 0x0002);
2969 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002970
françois romieu4da19632011-01-03 15:07:55 +00002971 rtl_writephy(tp, 0x1f, 0x0005);
2972 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002973
2974 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002975
françois romieu4da19632011-01-03 15:07:55 +00002976 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002977}
2978
françois romieu4da19632011-01-03 15:07:55 +00002979static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002980{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002981 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002982 { 0x1f, 0x0002 },
2983 { 0x10, 0x0008 },
2984 { 0x0d, 0x006c },
2985
2986 { 0x1f, 0x0000 },
2987 { 0x0d, 0xf880 },
2988
2989 { 0x1f, 0x0001 },
2990 { 0x17, 0x0cc0 },
2991
2992 { 0x1f, 0x0001 },
2993 { 0x0b, 0xa4d8 },
2994 { 0x09, 0x281c },
2995 { 0x07, 0x2883 },
2996 { 0x0a, 0x6b35 },
2997 { 0x1d, 0x3da4 },
2998 { 0x1c, 0xeffd },
2999 { 0x14, 0x7f52 },
3000 { 0x18, 0x7fc6 },
3001 { 0x08, 0x0601 },
3002 { 0x06, 0x4063 },
3003 { 0x10, 0xf074 },
3004 { 0x1f, 0x0003 },
3005 { 0x13, 0x0789 },
3006 { 0x12, 0xf4bd },
3007 { 0x1a, 0x04fd },
3008 { 0x14, 0x84b0 },
3009 { 0x1f, 0x0000 },
3010 { 0x00, 0x9200 },
3011
3012 { 0x1f, 0x0005 },
3013 { 0x01, 0x0340 },
3014 { 0x1f, 0x0001 },
3015 { 0x04, 0x4000 },
3016 { 0x03, 0x1d21 },
3017 { 0x02, 0x0c32 },
3018 { 0x01, 0x0200 },
3019 { 0x00, 0x5554 },
3020 { 0x04, 0x4800 },
3021 { 0x04, 0x4000 },
3022 { 0x04, 0xf000 },
3023 { 0x03, 0xdf01 },
3024 { 0x02, 0xdf20 },
3025 { 0x01, 0x101a },
3026 { 0x00, 0xa0ff },
3027 { 0x04, 0xf800 },
3028 { 0x04, 0xf000 },
3029 { 0x1f, 0x0000 },
3030
3031 { 0x1f, 0x0007 },
3032 { 0x1e, 0x0023 },
3033 { 0x16, 0x0000 },
3034 { 0x1f, 0x0000 }
3035 };
3036
françois romieu4da19632011-01-03 15:07:55 +00003037 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003038}
3039
françois romieue6de30d2011-01-03 15:08:37 +00003040static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
3041{
3042 static const struct phy_reg phy_reg_init[] = {
3043 { 0x1f, 0x0001 },
3044 { 0x17, 0x0cc0 },
3045
3046 { 0x1f, 0x0007 },
3047 { 0x1e, 0x002d },
3048 { 0x18, 0x0040 },
3049 { 0x1f, 0x0000 }
3050 };
3051
3052 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3053 rtl_patchphy(tp, 0x0d, 1 << 5);
3054}
3055
Hayes Wang70090422011-07-06 15:58:06 +08003056static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00003057{
3058 static const struct phy_reg phy_reg_init[] = {
3059 /* Enable Delay cap */
3060 { 0x1f, 0x0005 },
3061 { 0x05, 0x8b80 },
3062 { 0x06, 0xc896 },
3063 { 0x1f, 0x0000 },
3064
3065 /* Channel estimation fine tune */
3066 { 0x1f, 0x0001 },
3067 { 0x0b, 0x6c20 },
3068 { 0x07, 0x2872 },
3069 { 0x1c, 0xefff },
3070 { 0x1f, 0x0003 },
3071 { 0x14, 0x6420 },
3072 { 0x1f, 0x0000 },
3073
3074 /* Update PFM & 10M TX idle timer */
3075 { 0x1f, 0x0007 },
3076 { 0x1e, 0x002f },
3077 { 0x15, 0x1919 },
3078 { 0x1f, 0x0000 },
3079
3080 { 0x1f, 0x0007 },
3081 { 0x1e, 0x00ac },
3082 { 0x18, 0x0006 },
3083 { 0x1f, 0x0000 }
3084 };
3085
Francois Romieu15ecd032011-04-27 13:52:22 -07003086 rtl_apply_firmware(tp);
3087
hayeswang01dc7fe2011-03-21 01:50:28 +00003088 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3089
3090 /* DCO enable for 10M IDLE Power */
3091 rtl_writephy(tp, 0x1f, 0x0007);
3092 rtl_writephy(tp, 0x1e, 0x0023);
3093 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
3094 rtl_writephy(tp, 0x1f, 0x0000);
3095
3096 /* For impedance matching */
3097 rtl_writephy(tp, 0x1f, 0x0002);
3098 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003099 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003100
3101 /* PHY auto speed down */
3102 rtl_writephy(tp, 0x1f, 0x0007);
3103 rtl_writephy(tp, 0x1e, 0x002d);
3104 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
3105 rtl_writephy(tp, 0x1f, 0x0000);
3106 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3107
3108 rtl_writephy(tp, 0x1f, 0x0005);
3109 rtl_writephy(tp, 0x05, 0x8b86);
3110 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3111 rtl_writephy(tp, 0x1f, 0x0000);
3112
3113 rtl_writephy(tp, 0x1f, 0x0005);
3114 rtl_writephy(tp, 0x05, 0x8b85);
3115 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3116 rtl_writephy(tp, 0x1f, 0x0007);
3117 rtl_writephy(tp, 0x1e, 0x0020);
3118 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
3119 rtl_writephy(tp, 0x1f, 0x0006);
3120 rtl_writephy(tp, 0x00, 0x5a00);
3121 rtl_writephy(tp, 0x1f, 0x0000);
3122 rtl_writephy(tp, 0x0d, 0x0007);
3123 rtl_writephy(tp, 0x0e, 0x003c);
3124 rtl_writephy(tp, 0x0d, 0x4007);
3125 rtl_writephy(tp, 0x0e, 0x0000);
3126 rtl_writephy(tp, 0x0d, 0x0000);
3127}
3128
françois romieu9ecb9aa2012-12-07 11:20:21 +00003129static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3130{
3131 const u16 w[] = {
3132 addr[0] | (addr[1] << 8),
3133 addr[2] | (addr[3] << 8),
3134 addr[4] | (addr[5] << 8)
3135 };
3136 const struct exgmac_reg e[] = {
3137 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3138 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3139 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3140 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3141 };
3142
3143 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3144}
3145
Hayes Wang70090422011-07-06 15:58:06 +08003146static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3147{
3148 static const struct phy_reg phy_reg_init[] = {
3149 /* Enable Delay cap */
3150 { 0x1f, 0x0004 },
3151 { 0x1f, 0x0007 },
3152 { 0x1e, 0x00ac },
3153 { 0x18, 0x0006 },
3154 { 0x1f, 0x0002 },
3155 { 0x1f, 0x0000 },
3156 { 0x1f, 0x0000 },
3157
3158 /* Channel estimation fine tune */
3159 { 0x1f, 0x0003 },
3160 { 0x09, 0xa20f },
3161 { 0x1f, 0x0000 },
3162 { 0x1f, 0x0000 },
3163
3164 /* Green Setting */
3165 { 0x1f, 0x0005 },
3166 { 0x05, 0x8b5b },
3167 { 0x06, 0x9222 },
3168 { 0x05, 0x8b6d },
3169 { 0x06, 0x8000 },
3170 { 0x05, 0x8b76 },
3171 { 0x06, 0x8000 },
3172 { 0x1f, 0x0000 }
3173 };
3174
3175 rtl_apply_firmware(tp);
3176
3177 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3178
3179 /* For 4-corner performance improve */
3180 rtl_writephy(tp, 0x1f, 0x0005);
3181 rtl_writephy(tp, 0x05, 0x8b80);
3182 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
3183 rtl_writephy(tp, 0x1f, 0x0000);
3184
3185 /* PHY auto speed down */
3186 rtl_writephy(tp, 0x1f, 0x0004);
3187 rtl_writephy(tp, 0x1f, 0x0007);
3188 rtl_writephy(tp, 0x1e, 0x002d);
3189 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3190 rtl_writephy(tp, 0x1f, 0x0002);
3191 rtl_writephy(tp, 0x1f, 0x0000);
3192 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3193
3194 /* improve 10M EEE waveform */
3195 rtl_writephy(tp, 0x1f, 0x0005);
3196 rtl_writephy(tp, 0x05, 0x8b86);
3197 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3198 rtl_writephy(tp, 0x1f, 0x0000);
3199
3200 /* Improve 2-pair detection performance */
3201 rtl_writephy(tp, 0x1f, 0x0005);
3202 rtl_writephy(tp, 0x05, 0x8b85);
3203 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3204 rtl_writephy(tp, 0x1f, 0x0000);
3205
3206 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003207 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08003208 rtl_writephy(tp, 0x1f, 0x0005);
3209 rtl_writephy(tp, 0x05, 0x8b85);
3210 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3211 rtl_writephy(tp, 0x1f, 0x0004);
3212 rtl_writephy(tp, 0x1f, 0x0007);
3213 rtl_writephy(tp, 0x1e, 0x0020);
David S. Miller1805b2f2011-10-24 18:18:09 -04003214 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003215 rtl_writephy(tp, 0x1f, 0x0002);
3216 rtl_writephy(tp, 0x1f, 0x0000);
3217 rtl_writephy(tp, 0x0d, 0x0007);
3218 rtl_writephy(tp, 0x0e, 0x003c);
3219 rtl_writephy(tp, 0x0d, 0x4007);
3220 rtl_writephy(tp, 0x0e, 0x0000);
3221 rtl_writephy(tp, 0x0d, 0x0000);
3222
3223 /* Green feature */
3224 rtl_writephy(tp, 0x1f, 0x0003);
3225 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3226 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3227 rtl_writephy(tp, 0x1f, 0x0000);
hayeswange0c07552012-10-23 20:24:03 +00003228
françois romieu9ecb9aa2012-12-07 11:20:21 +00003229 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3230 rtl_rar_exgmac_set(tp, tp->dev->dev_addr);
Hayes Wang70090422011-07-06 15:58:06 +08003231}
3232
Hayes Wang5f886e02012-03-30 14:33:03 +08003233static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3234{
3235 /* For 4-corner performance improve */
3236 rtl_writephy(tp, 0x1f, 0x0005);
3237 rtl_writephy(tp, 0x05, 0x8b80);
3238 rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3239 rtl_writephy(tp, 0x1f, 0x0000);
3240
3241 /* PHY auto speed down */
3242 rtl_writephy(tp, 0x1f, 0x0007);
3243 rtl_writephy(tp, 0x1e, 0x002d);
3244 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3245 rtl_writephy(tp, 0x1f, 0x0000);
3246 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3247
3248 /* Improve 10M EEE waveform */
3249 rtl_writephy(tp, 0x1f, 0x0005);
3250 rtl_writephy(tp, 0x05, 0x8b86);
3251 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3252 rtl_writephy(tp, 0x1f, 0x0000);
3253}
3254
Hayes Wangc2218922011-09-06 16:55:18 +08003255static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3256{
3257 static const struct phy_reg phy_reg_init[] = {
3258 /* Channel estimation fine tune */
3259 { 0x1f, 0x0003 },
3260 { 0x09, 0xa20f },
3261 { 0x1f, 0x0000 },
3262
3263 /* Modify green table for giga & fnet */
3264 { 0x1f, 0x0005 },
3265 { 0x05, 0x8b55 },
3266 { 0x06, 0x0000 },
3267 { 0x05, 0x8b5e },
3268 { 0x06, 0x0000 },
3269 { 0x05, 0x8b67 },
3270 { 0x06, 0x0000 },
3271 { 0x05, 0x8b70 },
3272 { 0x06, 0x0000 },
3273 { 0x1f, 0x0000 },
3274 { 0x1f, 0x0007 },
3275 { 0x1e, 0x0078 },
3276 { 0x17, 0x0000 },
3277 { 0x19, 0x00fb },
3278 { 0x1f, 0x0000 },
3279
3280 /* Modify green table for 10M */
3281 { 0x1f, 0x0005 },
3282 { 0x05, 0x8b79 },
3283 { 0x06, 0xaa00 },
3284 { 0x1f, 0x0000 },
3285
3286 /* Disable hiimpedance detection (RTCT) */
3287 { 0x1f, 0x0003 },
3288 { 0x01, 0x328a },
3289 { 0x1f, 0x0000 }
3290 };
3291
3292 rtl_apply_firmware(tp);
3293
3294 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3295
Hayes Wang5f886e02012-03-30 14:33:03 +08003296 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003297
3298 /* Improve 2-pair detection performance */
3299 rtl_writephy(tp, 0x1f, 0x0005);
3300 rtl_writephy(tp, 0x05, 0x8b85);
3301 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3302 rtl_writephy(tp, 0x1f, 0x0000);
3303}
3304
3305static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3306{
3307 rtl_apply_firmware(tp);
3308
Hayes Wang5f886e02012-03-30 14:33:03 +08003309 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003310}
3311
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003312static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3313{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003314 static const struct phy_reg phy_reg_init[] = {
3315 /* Channel estimation fine tune */
3316 { 0x1f, 0x0003 },
3317 { 0x09, 0xa20f },
3318 { 0x1f, 0x0000 },
3319
3320 /* Modify green table for giga & fnet */
3321 { 0x1f, 0x0005 },
3322 { 0x05, 0x8b55 },
3323 { 0x06, 0x0000 },
3324 { 0x05, 0x8b5e },
3325 { 0x06, 0x0000 },
3326 { 0x05, 0x8b67 },
3327 { 0x06, 0x0000 },
3328 { 0x05, 0x8b70 },
3329 { 0x06, 0x0000 },
3330 { 0x1f, 0x0000 },
3331 { 0x1f, 0x0007 },
3332 { 0x1e, 0x0078 },
3333 { 0x17, 0x0000 },
3334 { 0x19, 0x00aa },
3335 { 0x1f, 0x0000 },
3336
3337 /* Modify green table for 10M */
3338 { 0x1f, 0x0005 },
3339 { 0x05, 0x8b79 },
3340 { 0x06, 0xaa00 },
3341 { 0x1f, 0x0000 },
3342
3343 /* Disable hiimpedance detection (RTCT) */
3344 { 0x1f, 0x0003 },
3345 { 0x01, 0x328a },
3346 { 0x1f, 0x0000 }
3347 };
3348
3349
3350 rtl_apply_firmware(tp);
3351
3352 rtl8168f_hw_phy_config(tp);
3353
3354 /* Improve 2-pair detection performance */
3355 rtl_writephy(tp, 0x1f, 0x0005);
3356 rtl_writephy(tp, 0x05, 0x8b85);
3357 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3358 rtl_writephy(tp, 0x1f, 0x0000);
3359
3360 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3361
3362 /* Modify green table for giga */
3363 rtl_writephy(tp, 0x1f, 0x0005);
3364 rtl_writephy(tp, 0x05, 0x8b54);
3365 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3366 rtl_writephy(tp, 0x05, 0x8b5d);
3367 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3368 rtl_writephy(tp, 0x05, 0x8a7c);
3369 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3370 rtl_writephy(tp, 0x05, 0x8a7f);
3371 rtl_w1w0_phy(tp, 0x06, 0x0100, 0x0000);
3372 rtl_writephy(tp, 0x05, 0x8a82);
3373 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3374 rtl_writephy(tp, 0x05, 0x8a85);
3375 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3376 rtl_writephy(tp, 0x05, 0x8a88);
3377 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3378 rtl_writephy(tp, 0x1f, 0x0000);
3379
3380 /* uc same-seed solution */
3381 rtl_writephy(tp, 0x1f, 0x0005);
3382 rtl_writephy(tp, 0x05, 0x8b85);
3383 rtl_w1w0_phy(tp, 0x06, 0x8000, 0x0000);
3384 rtl_writephy(tp, 0x1f, 0x0000);
3385
3386 /* eee setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003387 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003388 rtl_writephy(tp, 0x1f, 0x0005);
3389 rtl_writephy(tp, 0x05, 0x8b85);
3390 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3391 rtl_writephy(tp, 0x1f, 0x0004);
3392 rtl_writephy(tp, 0x1f, 0x0007);
3393 rtl_writephy(tp, 0x1e, 0x0020);
3394 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
3395 rtl_writephy(tp, 0x1f, 0x0000);
3396 rtl_writephy(tp, 0x0d, 0x0007);
3397 rtl_writephy(tp, 0x0e, 0x003c);
3398 rtl_writephy(tp, 0x0d, 0x4007);
3399 rtl_writephy(tp, 0x0e, 0x0000);
3400 rtl_writephy(tp, 0x0d, 0x0000);
3401
3402 /* Green feature */
3403 rtl_writephy(tp, 0x1f, 0x0003);
3404 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3405 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3406 rtl_writephy(tp, 0x1f, 0x0000);
3407}
3408
Hayes Wangc5583862012-07-02 17:23:22 +08003409static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp)
3410{
Hayes Wangc5583862012-07-02 17:23:22 +08003411 rtl_apply_firmware(tp);
3412
hayeswang41f44d12013-04-01 22:23:36 +00003413 rtl_writephy(tp, 0x1f, 0x0a46);
3414 if (rtl_readphy(tp, 0x10) & 0x0100) {
3415 rtl_writephy(tp, 0x1f, 0x0bcc);
3416 rtl_w1w0_phy(tp, 0x12, 0x0000, 0x8000);
3417 } else {
3418 rtl_writephy(tp, 0x1f, 0x0bcc);
3419 rtl_w1w0_phy(tp, 0x12, 0x8000, 0x0000);
3420 }
Hayes Wangc5583862012-07-02 17:23:22 +08003421
hayeswang41f44d12013-04-01 22:23:36 +00003422 rtl_writephy(tp, 0x1f, 0x0a46);
3423 if (rtl_readphy(tp, 0x13) & 0x0100) {
3424 rtl_writephy(tp, 0x1f, 0x0c41);
3425 rtl_w1w0_phy(tp, 0x15, 0x0002, 0x0000);
3426 } else {
hayeswangfe7524c2013-04-01 22:23:37 +00003427 rtl_writephy(tp, 0x1f, 0x0c41);
3428 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0002);
hayeswang41f44d12013-04-01 22:23:36 +00003429 }
Hayes Wangc5583862012-07-02 17:23:22 +08003430
hayeswang41f44d12013-04-01 22:23:36 +00003431 /* Enable PHY auto speed down */
3432 rtl_writephy(tp, 0x1f, 0x0a44);
3433 rtl_w1w0_phy(tp, 0x11, 0x000c, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003434
hayeswangfe7524c2013-04-01 22:23:37 +00003435 rtl_writephy(tp, 0x1f, 0x0bcc);
3436 rtl_w1w0_phy(tp, 0x14, 0x0100, 0x0000);
3437 rtl_writephy(tp, 0x1f, 0x0a44);
3438 rtl_w1w0_phy(tp, 0x11, 0x00c0, 0x0000);
3439 rtl_writephy(tp, 0x1f, 0x0a43);
3440 rtl_writephy(tp, 0x13, 0x8084);
3441 rtl_w1w0_phy(tp, 0x14, 0x0000, 0x6000);
3442 rtl_w1w0_phy(tp, 0x10, 0x1003, 0x0000);
3443
hayeswang41f44d12013-04-01 22:23:36 +00003444 /* EEE auto-fallback function */
3445 rtl_writephy(tp, 0x1f, 0x0a4b);
3446 rtl_w1w0_phy(tp, 0x11, 0x0004, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003447
hayeswang41f44d12013-04-01 22:23:36 +00003448 /* Enable UC LPF tune function */
3449 rtl_writephy(tp, 0x1f, 0x0a43);
3450 rtl_writephy(tp, 0x13, 0x8012);
3451 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3452
3453 rtl_writephy(tp, 0x1f, 0x0c42);
3454 rtl_w1w0_phy(tp, 0x11, 0x4000, 0x2000);
3455
hayeswangfe7524c2013-04-01 22:23:37 +00003456 /* Improve SWR Efficiency */
3457 rtl_writephy(tp, 0x1f, 0x0bcd);
3458 rtl_writephy(tp, 0x14, 0x5065);
3459 rtl_writephy(tp, 0x14, 0xd065);
3460 rtl_writephy(tp, 0x1f, 0x0bc8);
3461 rtl_writephy(tp, 0x11, 0x5655);
3462 rtl_writephy(tp, 0x1f, 0x0bcd);
3463 rtl_writephy(tp, 0x14, 0x1065);
3464 rtl_writephy(tp, 0x14, 0x9065);
3465 rtl_writephy(tp, 0x14, 0x1065);
3466
David Chang1bac1072013-11-27 15:48:36 +08003467 /* Check ALDPS bit, disable it if enabled */
3468 rtl_writephy(tp, 0x1f, 0x0a43);
3469 if (rtl_readphy(tp, 0x10) & 0x0004)
3470 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0004);
3471
hayeswang41f44d12013-04-01 22:23:36 +00003472 rtl_writephy(tp, 0x1f, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003473}
3474
hayeswang57538c42013-04-01 22:23:40 +00003475static void rtl8168g_2_hw_phy_config(struct rtl8169_private *tp)
3476{
3477 rtl_apply_firmware(tp);
3478}
3479
françois romieu4da19632011-01-03 15:07:55 +00003480static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02003481{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003482 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003483 { 0x1f, 0x0003 },
3484 { 0x08, 0x441d },
3485 { 0x01, 0x9100 },
3486 { 0x1f, 0x0000 }
3487 };
3488
françois romieu4da19632011-01-03 15:07:55 +00003489 rtl_writephy(tp, 0x1f, 0x0000);
3490 rtl_patchphy(tp, 0x11, 1 << 12);
3491 rtl_patchphy(tp, 0x19, 1 << 13);
3492 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003493
françois romieu4da19632011-01-03 15:07:55 +00003494 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02003495}
3496
Hayes Wang5a5e4442011-02-22 17:26:21 +08003497static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
3498{
3499 static const struct phy_reg phy_reg_init[] = {
3500 { 0x1f, 0x0005 },
3501 { 0x1a, 0x0000 },
3502 { 0x1f, 0x0000 },
3503
3504 { 0x1f, 0x0004 },
3505 { 0x1c, 0x0000 },
3506 { 0x1f, 0x0000 },
3507
3508 { 0x1f, 0x0001 },
3509 { 0x15, 0x7701 },
3510 { 0x1f, 0x0000 }
3511 };
3512
3513 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01003514 rtl_writephy(tp, 0x1f, 0x0000);
3515 rtl_writephy(tp, 0x18, 0x0310);
3516 msleep(100);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003517
François Romieu953a12c2011-04-24 17:38:48 +02003518 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003519
3520 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3521}
3522
Hayes Wang7e18dca2012-03-30 14:33:02 +08003523static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
3524{
Hayes Wang7e18dca2012-03-30 14:33:02 +08003525 /* Disable ALDPS before setting firmware */
Francois Romieueef63cc2013-02-08 23:43:20 +01003526 rtl_writephy(tp, 0x1f, 0x0000);
3527 rtl_writephy(tp, 0x18, 0x0310);
3528 msleep(20);
Hayes Wang7e18dca2012-03-30 14:33:02 +08003529
3530 rtl_apply_firmware(tp);
3531
3532 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003533 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08003534 rtl_writephy(tp, 0x1f, 0x0004);
3535 rtl_writephy(tp, 0x10, 0x401f);
3536 rtl_writephy(tp, 0x19, 0x7030);
3537 rtl_writephy(tp, 0x1f, 0x0000);
3538}
3539
Hayes Wang5598bfe2012-07-02 17:23:21 +08003540static void rtl8106e_hw_phy_config(struct rtl8169_private *tp)
3541{
Hayes Wang5598bfe2012-07-02 17:23:21 +08003542 static const struct phy_reg phy_reg_init[] = {
3543 { 0x1f, 0x0004 },
3544 { 0x10, 0xc07f },
3545 { 0x19, 0x7030 },
3546 { 0x1f, 0x0000 }
3547 };
3548
3549 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01003550 rtl_writephy(tp, 0x1f, 0x0000);
3551 rtl_writephy(tp, 0x18, 0x0310);
3552 msleep(100);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003553
3554 rtl_apply_firmware(tp);
3555
Francois Romieufdf6fc02012-07-06 22:40:38 +02003556 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003557 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3558
Francois Romieufdf6fc02012-07-06 22:40:38 +02003559 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003560}
3561
Francois Romieu5615d9f2007-08-17 17:50:46 +02003562static void rtl_hw_phy_config(struct net_device *dev)
3563{
3564 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003565
3566 rtl8169_print_mac_version(tp);
3567
3568 switch (tp->mac_version) {
3569 case RTL_GIGA_MAC_VER_01:
3570 break;
3571 case RTL_GIGA_MAC_VER_02:
3572 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00003573 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003574 break;
3575 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00003576 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003577 break;
françois romieu2e9558562009-08-10 19:44:19 +00003578 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00003579 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00003580 break;
françois romieu8c7006a2009-08-10 19:43:29 +00003581 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00003582 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00003583 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02003584 case RTL_GIGA_MAC_VER_07:
3585 case RTL_GIGA_MAC_VER_08:
3586 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00003587 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003588 break;
Francois Romieu236b8082008-05-30 16:11:48 +02003589 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00003590 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003591 break;
3592 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00003593 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003594 break;
3595 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00003596 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003597 break;
Francois Romieu867763c2007-08-17 18:21:58 +02003598 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00003599 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003600 break;
3601 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00003602 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003603 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02003604 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00003605 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003606 break;
Francois Romieu197ff762008-06-28 13:16:02 +02003607 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00003608 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02003609 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02003610 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00003611 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003612 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003613 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003614 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00003615 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02003616 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02003617 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00003618 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003619 break;
3620 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00003621 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003622 break;
3623 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00003624 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02003625 break;
françois romieue6de30d2011-01-03 15:08:37 +00003626 case RTL_GIGA_MAC_VER_28:
3627 rtl8168d_4_hw_phy_config(tp);
3628 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08003629 case RTL_GIGA_MAC_VER_29:
3630 case RTL_GIGA_MAC_VER_30:
3631 rtl8105e_hw_phy_config(tp);
3632 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02003633 case RTL_GIGA_MAC_VER_31:
3634 /* None. */
3635 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00003636 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00003637 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003638 rtl8168e_1_hw_phy_config(tp);
3639 break;
3640 case RTL_GIGA_MAC_VER_34:
3641 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00003642 break;
Hayes Wangc2218922011-09-06 16:55:18 +08003643 case RTL_GIGA_MAC_VER_35:
3644 rtl8168f_1_hw_phy_config(tp);
3645 break;
3646 case RTL_GIGA_MAC_VER_36:
3647 rtl8168f_2_hw_phy_config(tp);
3648 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003649
Hayes Wang7e18dca2012-03-30 14:33:02 +08003650 case RTL_GIGA_MAC_VER_37:
3651 rtl8402_hw_phy_config(tp);
3652 break;
3653
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003654 case RTL_GIGA_MAC_VER_38:
3655 rtl8411_hw_phy_config(tp);
3656 break;
3657
Hayes Wang5598bfe2012-07-02 17:23:21 +08003658 case RTL_GIGA_MAC_VER_39:
3659 rtl8106e_hw_phy_config(tp);
3660 break;
3661
Hayes Wangc5583862012-07-02 17:23:22 +08003662 case RTL_GIGA_MAC_VER_40:
3663 rtl8168g_1_hw_phy_config(tp);
3664 break;
hayeswang57538c42013-04-01 22:23:40 +00003665 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00003666 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08003667 case RTL_GIGA_MAC_VER_44:
hayeswang57538c42013-04-01 22:23:40 +00003668 rtl8168g_2_hw_phy_config(tp);
3669 break;
Hayes Wangc5583862012-07-02 17:23:22 +08003670
3671 case RTL_GIGA_MAC_VER_41:
Francois Romieu5615d9f2007-08-17 17:50:46 +02003672 default:
3673 break;
3674 }
3675}
3676
Francois Romieuda78dbf2012-01-26 14:18:23 +01003677static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 struct timer_list *timer = &tp->timer;
3680 void __iomem *ioaddr = tp->mmio_addr;
3681 unsigned long timeout = RTL8169_PHY_TIMEOUT;
3682
Francois Romieubcf0bf92006-07-26 23:14:13 +02003683 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
françois romieu4da19632011-01-03 15:07:55 +00003685 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02003686 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 * A busy loop could burn quite a few cycles on nowadays CPU.
3688 * Let's delay the execution of the timer for a few ticks.
3689 */
3690 timeout = HZ/10;
3691 goto out_mod_timer;
3692 }
3693
3694 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01003695 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696
Lekensteyn9bb8eeb2013-08-02 10:36:55 +02003697 netif_dbg(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
françois romieu4da19632011-01-03 15:07:55 +00003699 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700
3701out_mod_timer:
3702 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003703}
3704
3705static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
3706{
Francois Romieuda78dbf2012-01-26 14:18:23 +01003707 if (!test_and_set_bit(flag, tp->wk.flags))
3708 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003709}
3710
3711static void rtl8169_phy_timer(unsigned long __opaque)
3712{
3713 struct net_device *dev = (struct net_device *)__opaque;
3714 struct rtl8169_private *tp = netdev_priv(dev);
3715
Francois Romieu98ddf982012-01-31 10:47:34 +01003716 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717}
3718
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
3720 void __iomem *ioaddr)
3721{
3722 iounmap(ioaddr);
3723 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003724 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 pci_disable_device(pdev);
3726 free_netdev(dev);
3727}
3728
Francois Romieuffc46952012-07-06 14:19:23 +02003729DECLARE_RTL_COND(rtl_phy_reset_cond)
3730{
3731 return tp->phy_reset_pending(tp);
3732}
3733
Francois Romieubf793292006-11-01 00:53:05 +01003734static void rtl8169_phy_reset(struct net_device *dev,
3735 struct rtl8169_private *tp)
3736{
françois romieu4da19632011-01-03 15:07:55 +00003737 tp->phy_reset_enable(tp);
Francois Romieuffc46952012-07-06 14:19:23 +02003738 rtl_msleep_loop_wait_low(tp, &rtl_phy_reset_cond, 1, 100);
Francois Romieubf793292006-11-01 00:53:05 +01003739}
3740
David S. Miller8decf862011-09-22 03:23:13 -04003741static bool rtl_tbi_enabled(struct rtl8169_private *tp)
3742{
3743 void __iomem *ioaddr = tp->mmio_addr;
3744
3745 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
3746 (RTL_R8(PHYstatus) & TBI_Enable);
3747}
3748
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003749static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003751 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003752
Francois Romieu5615d9f2007-08-17 17:50:46 +02003753 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003754
Marcus Sundberg773328942008-07-10 21:28:08 +02003755 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
3756 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3757 RTL_W8(0x82, 0x01);
3758 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003759
Francois Romieu6dccd162007-02-13 23:38:05 +01003760 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
3761
3762 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3763 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003764
Francois Romieubcf0bf92006-07-26 23:14:13 +02003765 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003766 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3767 RTL_W8(0x82, 0x01);
3768 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00003769 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003770 }
3771
Francois Romieubf793292006-11-01 00:53:05 +01003772 rtl8169_phy_reset(dev, tp);
3773
Oliver Neukum54405cd2011-01-06 21:55:13 +01003774 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02003775 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3776 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3777 (tp->mii.supports_gmii ?
3778 ADVERTISED_1000baseT_Half |
3779 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003780
David S. Miller8decf862011-09-22 03:23:13 -04003781 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00003782 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003783}
3784
Francois Romieu773d2022007-01-31 23:47:43 +01003785static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
3786{
3787 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu773d2022007-01-31 23:47:43 +01003788
Francois Romieuda78dbf2012-01-26 14:18:23 +01003789 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003790
3791 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00003792
françois romieu9ecb9aa2012-12-07 11:20:21 +00003793 RTL_W32(MAC4, addr[4] | addr[5] << 8);
françois romieu908ba2b2010-04-26 11:42:58 +00003794 RTL_R32(MAC4);
3795
françois romieu9ecb9aa2012-12-07 11:20:21 +00003796 RTL_W32(MAC0, addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
françois romieu908ba2b2010-04-26 11:42:58 +00003797 RTL_R32(MAC0);
3798
françois romieu9ecb9aa2012-12-07 11:20:21 +00003799 if (tp->mac_version == RTL_GIGA_MAC_VER_34)
3800 rtl_rar_exgmac_set(tp, addr);
françois romieuc28aa382011-08-02 03:53:43 +00003801
Francois Romieu773d2022007-01-31 23:47:43 +01003802 RTL_W8(Cfg9346, Cfg9346_Lock);
3803
Francois Romieuda78dbf2012-01-26 14:18:23 +01003804 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003805}
3806
3807static int rtl_set_mac_address(struct net_device *dev, void *p)
3808{
3809 struct rtl8169_private *tp = netdev_priv(dev);
3810 struct sockaddr *addr = p;
3811
3812 if (!is_valid_ether_addr(addr->sa_data))
3813 return -EADDRNOTAVAIL;
3814
3815 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3816
3817 rtl_rar_set(tp, dev->dev_addr);
3818
3819 return 0;
3820}
3821
Francois Romieu5f787a12006-08-17 13:02:36 +02003822static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3823{
3824 struct rtl8169_private *tp = netdev_priv(dev);
3825 struct mii_ioctl_data *data = if_mii(ifr);
3826
Francois Romieu8b4ab282008-11-19 22:05:25 -08003827 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
3828}
Francois Romieu5f787a12006-08-17 13:02:36 +02003829
Francois Romieucecb5fd2011-04-01 10:21:07 +02003830static int rtl_xmii_ioctl(struct rtl8169_private *tp,
3831 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08003832{
Francois Romieu5f787a12006-08-17 13:02:36 +02003833 switch (cmd) {
3834 case SIOCGMIIPHY:
3835 data->phy_id = 32; /* Internal PHY */
3836 return 0;
3837
3838 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003839 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02003840 return 0;
3841
3842 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003843 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02003844 return 0;
3845 }
3846 return -EOPNOTSUPP;
3847}
3848
Francois Romieu8b4ab282008-11-19 22:05:25 -08003849static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3850{
3851 return -EOPNOTSUPP;
3852}
3853
Francois Romieufbac58f2007-10-04 22:51:38 +02003854static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3855{
3856 if (tp->features & RTL_FEATURE_MSI) {
3857 pci_disable_msi(pdev);
3858 tp->features &= ~RTL_FEATURE_MSI;
3859 }
3860}
3861
Bill Pembertonbaf63292012-12-03 09:23:28 -05003862static void rtl_init_mdio_ops(struct rtl8169_private *tp)
françois romieuc0e45c12011-01-03 15:08:04 +00003863{
3864 struct mdio_ops *ops = &tp->mdio_ops;
3865
3866 switch (tp->mac_version) {
3867 case RTL_GIGA_MAC_VER_27:
3868 ops->write = r8168dp_1_mdio_write;
3869 ops->read = r8168dp_1_mdio_read;
3870 break;
françois romieue6de30d2011-01-03 15:08:37 +00003871 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003872 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003873 ops->write = r8168dp_2_mdio_write;
3874 ops->read = r8168dp_2_mdio_read;
3875 break;
Hayes Wangc5583862012-07-02 17:23:22 +08003876 case RTL_GIGA_MAC_VER_40:
3877 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00003878 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00003879 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08003880 case RTL_GIGA_MAC_VER_44:
Hayes Wangc5583862012-07-02 17:23:22 +08003881 ops->write = r8168g_mdio_write;
3882 ops->read = r8168g_mdio_read;
3883 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003884 default:
3885 ops->write = r8169_mdio_write;
3886 ops->read = r8169_mdio_read;
3887 break;
3888 }
3889}
3890
hayeswange2409d82013-03-31 17:02:04 +00003891static void rtl_speed_down(struct rtl8169_private *tp)
3892{
3893 u32 adv;
3894 int lpa;
3895
3896 rtl_writephy(tp, 0x1f, 0x0000);
3897 lpa = rtl_readphy(tp, MII_LPA);
3898
3899 if (lpa & (LPA_10HALF | LPA_10FULL))
3900 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full;
3901 else if (lpa & (LPA_100HALF | LPA_100FULL))
3902 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3903 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full;
3904 else
3905 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3906 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3907 (tp->mii.supports_gmii ?
3908 ADVERTISED_1000baseT_Half |
3909 ADVERTISED_1000baseT_Full : 0);
3910
3911 rtl8169_set_speed(tp->dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
3912 adv);
3913}
3914
David S. Miller1805b2f2011-10-24 18:18:09 -04003915static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
3916{
3917 void __iomem *ioaddr = tp->mmio_addr;
3918
3919 switch (tp->mac_version) {
Cyril Bruleboisb00e69d2012-10-31 14:00:46 +00003920 case RTL_GIGA_MAC_VER_25:
3921 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04003922 case RTL_GIGA_MAC_VER_29:
3923 case RTL_GIGA_MAC_VER_30:
3924 case RTL_GIGA_MAC_VER_32:
3925 case RTL_GIGA_MAC_VER_33:
3926 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08003927 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003928 case RTL_GIGA_MAC_VER_38:
Hayes Wang5598bfe2012-07-02 17:23:21 +08003929 case RTL_GIGA_MAC_VER_39:
Hayes Wangc5583862012-07-02 17:23:22 +08003930 case RTL_GIGA_MAC_VER_40:
3931 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00003932 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00003933 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08003934 case RTL_GIGA_MAC_VER_44:
David S. Miller1805b2f2011-10-24 18:18:09 -04003935 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3936 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3937 break;
3938 default:
3939 break;
3940 }
3941}
3942
3943static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
3944{
3945 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
3946 return false;
3947
hayeswange2409d82013-03-31 17:02:04 +00003948 rtl_speed_down(tp);
David S. Miller1805b2f2011-10-24 18:18:09 -04003949 rtl_wol_suspend_quirk(tp);
3950
3951 return true;
3952}
3953
françois romieu065c27c2011-01-03 15:08:12 +00003954static void r810x_phy_power_down(struct rtl8169_private *tp)
3955{
3956 rtl_writephy(tp, 0x1f, 0x0000);
3957 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3958}
3959
3960static void r810x_phy_power_up(struct rtl8169_private *tp)
3961{
3962 rtl_writephy(tp, 0x1f, 0x0000);
3963 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3964}
3965
3966static void r810x_pll_power_down(struct rtl8169_private *tp)
3967{
Hayes Wang00042992012-03-30 14:33:00 +08003968 void __iomem *ioaddr = tp->mmio_addr;
3969
David S. Miller1805b2f2011-10-24 18:18:09 -04003970 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003971 return;
françois romieu065c27c2011-01-03 15:08:12 +00003972
3973 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003974
3975 switch (tp->mac_version) {
3976 case RTL_GIGA_MAC_VER_07:
3977 case RTL_GIGA_MAC_VER_08:
3978 case RTL_GIGA_MAC_VER_09:
3979 case RTL_GIGA_MAC_VER_10:
3980 case RTL_GIGA_MAC_VER_13:
3981 case RTL_GIGA_MAC_VER_16:
3982 break;
3983 default:
3984 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3985 break;
3986 }
françois romieu065c27c2011-01-03 15:08:12 +00003987}
3988
3989static void r810x_pll_power_up(struct rtl8169_private *tp)
3990{
Hayes Wang00042992012-03-30 14:33:00 +08003991 void __iomem *ioaddr = tp->mmio_addr;
3992
françois romieu065c27c2011-01-03 15:08:12 +00003993 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003994
3995 switch (tp->mac_version) {
3996 case RTL_GIGA_MAC_VER_07:
3997 case RTL_GIGA_MAC_VER_08:
3998 case RTL_GIGA_MAC_VER_09:
3999 case RTL_GIGA_MAC_VER_10:
4000 case RTL_GIGA_MAC_VER_13:
4001 case RTL_GIGA_MAC_VER_16:
4002 break;
4003 default:
4004 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4005 break;
4006 }
françois romieu065c27c2011-01-03 15:08:12 +00004007}
4008
4009static void r8168_phy_power_up(struct rtl8169_private *tp)
4010{
4011 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004012 switch (tp->mac_version) {
4013 case RTL_GIGA_MAC_VER_11:
4014 case RTL_GIGA_MAC_VER_12:
4015 case RTL_GIGA_MAC_VER_17:
4016 case RTL_GIGA_MAC_VER_18:
4017 case RTL_GIGA_MAC_VER_19:
4018 case RTL_GIGA_MAC_VER_20:
4019 case RTL_GIGA_MAC_VER_21:
4020 case RTL_GIGA_MAC_VER_22:
4021 case RTL_GIGA_MAC_VER_23:
4022 case RTL_GIGA_MAC_VER_24:
4023 case RTL_GIGA_MAC_VER_25:
4024 case RTL_GIGA_MAC_VER_26:
4025 case RTL_GIGA_MAC_VER_27:
4026 case RTL_GIGA_MAC_VER_28:
4027 case RTL_GIGA_MAC_VER_31:
4028 rtl_writephy(tp, 0x0e, 0x0000);
4029 break;
4030 default:
4031 break;
4032 }
françois romieu065c27c2011-01-03 15:08:12 +00004033 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4034}
4035
4036static void r8168_phy_power_down(struct rtl8169_private *tp)
4037{
4038 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004039 switch (tp->mac_version) {
4040 case RTL_GIGA_MAC_VER_32:
4041 case RTL_GIGA_MAC_VER_33:
hayeswangbeb330a2013-04-01 22:23:39 +00004042 case RTL_GIGA_MAC_VER_40:
4043 case RTL_GIGA_MAC_VER_41:
hayeswang01dc7fe2011-03-21 01:50:28 +00004044 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
4045 break;
4046
4047 case RTL_GIGA_MAC_VER_11:
4048 case RTL_GIGA_MAC_VER_12:
4049 case RTL_GIGA_MAC_VER_17:
4050 case RTL_GIGA_MAC_VER_18:
4051 case RTL_GIGA_MAC_VER_19:
4052 case RTL_GIGA_MAC_VER_20:
4053 case RTL_GIGA_MAC_VER_21:
4054 case RTL_GIGA_MAC_VER_22:
4055 case RTL_GIGA_MAC_VER_23:
4056 case RTL_GIGA_MAC_VER_24:
4057 case RTL_GIGA_MAC_VER_25:
4058 case RTL_GIGA_MAC_VER_26:
4059 case RTL_GIGA_MAC_VER_27:
4060 case RTL_GIGA_MAC_VER_28:
4061 case RTL_GIGA_MAC_VER_31:
4062 rtl_writephy(tp, 0x0e, 0x0200);
4063 default:
4064 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4065 break;
4066 }
françois romieu065c27c2011-01-03 15:08:12 +00004067}
4068
4069static void r8168_pll_power_down(struct rtl8169_private *tp)
4070{
4071 void __iomem *ioaddr = tp->mmio_addr;
4072
Francois Romieucecb5fd2011-04-01 10:21:07 +02004073 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4074 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4075 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00004076 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00004077 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08004078 }
françois romieu065c27c2011-01-03 15:08:12 +00004079
Francois Romieucecb5fd2011-04-01 10:21:07 +02004080 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
4081 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00004082 (RTL_R16(CPlusCmd) & ASF)) {
4083 return;
4084 }
4085
hayeswang01dc7fe2011-03-21 01:50:28 +00004086 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
4087 tp->mac_version == RTL_GIGA_MAC_VER_33)
Francois Romieufdf6fc02012-07-06 22:40:38 +02004088 rtl_ephy_write(tp, 0x19, 0xff64);
hayeswang01dc7fe2011-03-21 01:50:28 +00004089
David S. Miller1805b2f2011-10-24 18:18:09 -04004090 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004091 return;
françois romieu065c27c2011-01-03 15:08:12 +00004092
4093 r8168_phy_power_down(tp);
4094
4095 switch (tp->mac_version) {
4096 case RTL_GIGA_MAC_VER_25:
4097 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004098 case RTL_GIGA_MAC_VER_27:
4099 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004100 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004101 case RTL_GIGA_MAC_VER_32:
4102 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004103 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4104 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004105 case RTL_GIGA_MAC_VER_40:
4106 case RTL_GIGA_MAC_VER_41:
4107 rtl_w1w0_eri(tp, 0x1a8, ERIAR_MASK_1111, 0x00000000,
4108 0xfc000000, ERIAR_EXGMAC);
4109 break;
françois romieu065c27c2011-01-03 15:08:12 +00004110 }
4111}
4112
4113static void r8168_pll_power_up(struct rtl8169_private *tp)
4114{
4115 void __iomem *ioaddr = tp->mmio_addr;
4116
françois romieu065c27c2011-01-03 15:08:12 +00004117 switch (tp->mac_version) {
4118 case RTL_GIGA_MAC_VER_25:
4119 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004120 case RTL_GIGA_MAC_VER_27:
4121 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004122 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004123 case RTL_GIGA_MAC_VER_32:
4124 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004125 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4126 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004127 case RTL_GIGA_MAC_VER_40:
4128 case RTL_GIGA_MAC_VER_41:
4129 rtl_w1w0_eri(tp, 0x1a8, ERIAR_MASK_1111, 0xfc000000,
4130 0x00000000, ERIAR_EXGMAC);
4131 break;
françois romieu065c27c2011-01-03 15:08:12 +00004132 }
4133
4134 r8168_phy_power_up(tp);
4135}
4136
Francois Romieud58d46b2011-05-03 16:38:29 +02004137static void rtl_generic_op(struct rtl8169_private *tp,
4138 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00004139{
4140 if (op)
4141 op(tp);
4142}
4143
4144static void rtl_pll_power_down(struct rtl8169_private *tp)
4145{
Francois Romieud58d46b2011-05-03 16:38:29 +02004146 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00004147}
4148
4149static void rtl_pll_power_up(struct rtl8169_private *tp)
4150{
Francois Romieud58d46b2011-05-03 16:38:29 +02004151 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00004152}
4153
Bill Pembertonbaf63292012-12-03 09:23:28 -05004154static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
françois romieu065c27c2011-01-03 15:08:12 +00004155{
4156 struct pll_power_ops *ops = &tp->pll_power_ops;
4157
4158 switch (tp->mac_version) {
4159 case RTL_GIGA_MAC_VER_07:
4160 case RTL_GIGA_MAC_VER_08:
4161 case RTL_GIGA_MAC_VER_09:
4162 case RTL_GIGA_MAC_VER_10:
4163 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08004164 case RTL_GIGA_MAC_VER_29:
4165 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004166 case RTL_GIGA_MAC_VER_37:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004167 case RTL_GIGA_MAC_VER_39:
hayeswang58152cd2013-04-01 22:23:42 +00004168 case RTL_GIGA_MAC_VER_43:
françois romieu065c27c2011-01-03 15:08:12 +00004169 ops->down = r810x_pll_power_down;
4170 ops->up = r810x_pll_power_up;
4171 break;
4172
4173 case RTL_GIGA_MAC_VER_11:
4174 case RTL_GIGA_MAC_VER_12:
4175 case RTL_GIGA_MAC_VER_17:
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:
4183 case RTL_GIGA_MAC_VER_25:
4184 case RTL_GIGA_MAC_VER_26:
4185 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00004186 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004187 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004188 case RTL_GIGA_MAC_VER_32:
4189 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004190 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08004191 case RTL_GIGA_MAC_VER_35:
4192 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004193 case RTL_GIGA_MAC_VER_38:
Hayes Wangc5583862012-07-02 17:23:22 +08004194 case RTL_GIGA_MAC_VER_40:
4195 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004196 case RTL_GIGA_MAC_VER_42:
hayeswang45dd95c2013-07-08 17:09:01 +08004197 case RTL_GIGA_MAC_VER_44:
françois romieu065c27c2011-01-03 15:08:12 +00004198 ops->down = r8168_pll_power_down;
4199 ops->up = r8168_pll_power_up;
4200 break;
4201
4202 default:
4203 ops->down = NULL;
4204 ops->up = NULL;
4205 break;
4206 }
4207}
4208
Hayes Wange542a222011-07-06 15:58:04 +08004209static void rtl_init_rxcfg(struct rtl8169_private *tp)
4210{
4211 void __iomem *ioaddr = tp->mmio_addr;
4212
4213 switch (tp->mac_version) {
4214 case RTL_GIGA_MAC_VER_01:
4215 case RTL_GIGA_MAC_VER_02:
4216 case RTL_GIGA_MAC_VER_03:
4217 case RTL_GIGA_MAC_VER_04:
4218 case RTL_GIGA_MAC_VER_05:
4219 case RTL_GIGA_MAC_VER_06:
4220 case RTL_GIGA_MAC_VER_10:
4221 case RTL_GIGA_MAC_VER_11:
4222 case RTL_GIGA_MAC_VER_12:
4223 case RTL_GIGA_MAC_VER_13:
4224 case RTL_GIGA_MAC_VER_14:
4225 case RTL_GIGA_MAC_VER_15:
4226 case RTL_GIGA_MAC_VER_16:
4227 case RTL_GIGA_MAC_VER_17:
4228 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
4229 break;
4230 case RTL_GIGA_MAC_VER_18:
4231 case RTL_GIGA_MAC_VER_19:
4232 case RTL_GIGA_MAC_VER_20:
4233 case RTL_GIGA_MAC_VER_21:
4234 case RTL_GIGA_MAC_VER_22:
4235 case RTL_GIGA_MAC_VER_23:
4236 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00004237 case RTL_GIGA_MAC_VER_34:
françois romieu3ced8c92013-09-08 01:15:35 +02004238 case RTL_GIGA_MAC_VER_35:
Hayes Wange542a222011-07-06 15:58:04 +08004239 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
4240 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004241 case RTL_GIGA_MAC_VER_40:
4242 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004243 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004244 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004245 case RTL_GIGA_MAC_VER_44:
hayeswangbeb330a2013-04-01 22:23:39 +00004246 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST | RX_EARLY_OFF);
4247 break;
Hayes Wange542a222011-07-06 15:58:04 +08004248 default:
4249 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
4250 break;
4251 }
4252}
4253
Hayes Wang92fc43b2011-07-06 15:58:03 +08004254static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4255{
Timo Teräs9fba0812013-01-15 21:01:24 +00004256 tp->dirty_tx = tp->cur_tx = tp->cur_rx = 0;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004257}
4258
Francois Romieud58d46b2011-05-03 16:38:29 +02004259static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
4260{
françois romieu9c5028e2012-03-02 04:43:14 +00004261 void __iomem *ioaddr = tp->mmio_addr;
4262
4263 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004264 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00004265 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004266}
4267
4268static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
4269{
françois romieu9c5028e2012-03-02 04:43:14 +00004270 void __iomem *ioaddr = tp->mmio_addr;
4271
4272 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004273 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00004274 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004275}
4276
4277static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
4278{
4279 void __iomem *ioaddr = tp->mmio_addr;
4280
4281 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4282 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
4283 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
4284}
4285
4286static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
4287{
4288 void __iomem *ioaddr = tp->mmio_addr;
4289
4290 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4291 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
4292 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
4293}
4294
4295static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
4296{
4297 void __iomem *ioaddr = tp->mmio_addr;
4298
4299 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4300}
4301
4302static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
4303{
4304 void __iomem *ioaddr = tp->mmio_addr;
4305
4306 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4307}
4308
4309static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
4310{
4311 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02004312
4313 RTL_W8(MaxTxPacketSize, 0x3f);
4314 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4315 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01004316 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02004317}
4318
4319static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
4320{
4321 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02004322
4323 RTL_W8(MaxTxPacketSize, 0x0c);
4324 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4325 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01004326 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02004327}
4328
4329static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
4330{
4331 rtl_tx_performance_tweak(tp->pci_dev,
4332 (0x2 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
4333}
4334
4335static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
4336{
4337 rtl_tx_performance_tweak(tp->pci_dev,
4338 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
4339}
4340
4341static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
4342{
4343 void __iomem *ioaddr = tp->mmio_addr;
4344
4345 r8168b_0_hw_jumbo_enable(tp);
4346
4347 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
4348}
4349
4350static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
4351{
4352 void __iomem *ioaddr = tp->mmio_addr;
4353
4354 r8168b_0_hw_jumbo_disable(tp);
4355
4356 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
4357}
4358
Bill Pembertonbaf63292012-12-03 09:23:28 -05004359static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
Francois Romieud58d46b2011-05-03 16:38:29 +02004360{
4361 struct jumbo_ops *ops = &tp->jumbo_ops;
4362
4363 switch (tp->mac_version) {
4364 case RTL_GIGA_MAC_VER_11:
4365 ops->disable = r8168b_0_hw_jumbo_disable;
4366 ops->enable = r8168b_0_hw_jumbo_enable;
4367 break;
4368 case RTL_GIGA_MAC_VER_12:
4369 case RTL_GIGA_MAC_VER_17:
4370 ops->disable = r8168b_1_hw_jumbo_disable;
4371 ops->enable = r8168b_1_hw_jumbo_enable;
4372 break;
4373 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
4374 case RTL_GIGA_MAC_VER_19:
4375 case RTL_GIGA_MAC_VER_20:
4376 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
4377 case RTL_GIGA_MAC_VER_22:
4378 case RTL_GIGA_MAC_VER_23:
4379 case RTL_GIGA_MAC_VER_24:
4380 case RTL_GIGA_MAC_VER_25:
4381 case RTL_GIGA_MAC_VER_26:
4382 ops->disable = r8168c_hw_jumbo_disable;
4383 ops->enable = r8168c_hw_jumbo_enable;
4384 break;
4385 case RTL_GIGA_MAC_VER_27:
4386 case RTL_GIGA_MAC_VER_28:
4387 ops->disable = r8168dp_hw_jumbo_disable;
4388 ops->enable = r8168dp_hw_jumbo_enable;
4389 break;
4390 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
4391 case RTL_GIGA_MAC_VER_32:
4392 case RTL_GIGA_MAC_VER_33:
4393 case RTL_GIGA_MAC_VER_34:
4394 ops->disable = r8168e_hw_jumbo_disable;
4395 ops->enable = r8168e_hw_jumbo_enable;
4396 break;
4397
4398 /*
4399 * No action needed for jumbo frames with 8169.
4400 * No jumbo for 810x at all.
4401 */
Hayes Wangc5583862012-07-02 17:23:22 +08004402 case RTL_GIGA_MAC_VER_40:
4403 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004404 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004405 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004406 case RTL_GIGA_MAC_VER_44:
Francois Romieud58d46b2011-05-03 16:38:29 +02004407 default:
4408 ops->disable = NULL;
4409 ops->enable = NULL;
4410 break;
4411 }
4412}
4413
Francois Romieuffc46952012-07-06 14:19:23 +02004414DECLARE_RTL_COND(rtl_chipcmd_cond)
4415{
4416 void __iomem *ioaddr = tp->mmio_addr;
4417
4418 return RTL_R8(ChipCmd) & CmdReset;
4419}
4420
Francois Romieu6f43adc2011-04-29 15:05:51 +02004421static void rtl_hw_reset(struct rtl8169_private *tp)
4422{
4423 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu6f43adc2011-04-29 15:05:51 +02004424
Francois Romieu6f43adc2011-04-29 15:05:51 +02004425 RTL_W8(ChipCmd, CmdReset);
4426
Francois Romieuffc46952012-07-06 14:19:23 +02004427 rtl_udelay_loop_wait_low(tp, &rtl_chipcmd_cond, 100, 100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02004428}
4429
Francois Romieub6ffd972011-06-17 17:00:05 +02004430static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
4431{
4432 struct rtl_fw *rtl_fw;
4433 const char *name;
4434 int rc = -ENOMEM;
4435
4436 name = rtl_lookup_firmware_name(tp);
4437 if (!name)
4438 goto out_no_firmware;
4439
4440 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
4441 if (!rtl_fw)
4442 goto err_warn;
4443
4444 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
4445 if (rc < 0)
4446 goto err_free;
4447
Francois Romieufd112f22011-06-18 00:10:29 +02004448 rc = rtl_check_firmware(tp, rtl_fw);
4449 if (rc < 0)
4450 goto err_release_firmware;
4451
Francois Romieub6ffd972011-06-17 17:00:05 +02004452 tp->rtl_fw = rtl_fw;
4453out:
4454 return;
4455
Francois Romieufd112f22011-06-18 00:10:29 +02004456err_release_firmware:
4457 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02004458err_free:
4459 kfree(rtl_fw);
4460err_warn:
4461 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
4462 name, rc);
4463out_no_firmware:
4464 tp->rtl_fw = NULL;
4465 goto out;
4466}
4467
François Romieu953a12c2011-04-24 17:38:48 +02004468static void rtl_request_firmware(struct rtl8169_private *tp)
4469{
Francois Romieub6ffd972011-06-17 17:00:05 +02004470 if (IS_ERR(tp->rtl_fw))
4471 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02004472}
4473
Hayes Wang92fc43b2011-07-06 15:58:03 +08004474static void rtl_rx_close(struct rtl8169_private *tp)
4475{
4476 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004477
Francois Romieu1687b562011-07-19 17:21:29 +02004478 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004479}
4480
Francois Romieuffc46952012-07-06 14:19:23 +02004481DECLARE_RTL_COND(rtl_npq_cond)
4482{
4483 void __iomem *ioaddr = tp->mmio_addr;
4484
4485 return RTL_R8(TxPoll) & NPQ;
4486}
4487
4488DECLARE_RTL_COND(rtl_txcfg_empty_cond)
4489{
4490 void __iomem *ioaddr = tp->mmio_addr;
4491
4492 return RTL_R32(TxConfig) & TXCFG_EMPTY;
4493}
4494
françois romieue6de30d2011-01-03 15:08:37 +00004495static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496{
françois romieue6de30d2011-01-03 15:08:37 +00004497 void __iomem *ioaddr = tp->mmio_addr;
4498
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00004500 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501
Hayes Wang92fc43b2011-07-06 15:58:03 +08004502 rtl_rx_close(tp);
4503
Hayes Wang5d2e1952011-02-22 17:26:22 +08004504 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00004505 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4506 tp->mac_version == RTL_GIGA_MAC_VER_31) {
Francois Romieuffc46952012-07-06 14:19:23 +02004507 rtl_udelay_loop_wait_low(tp, &rtl_npq_cond, 20, 42*42);
Hayes Wangc2218922011-09-06 16:55:18 +08004508 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
4509 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
Hayes Wang7e18dca2012-03-30 14:33:02 +08004510 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004511 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
Hayes Wangc5583862012-07-02 17:23:22 +08004512 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
4513 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
hayeswang57538c42013-04-01 22:23:40 +00004514 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
hayeswang58152cd2013-04-01 22:23:42 +00004515 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
hayeswang45dd95c2013-07-08 17:09:01 +08004516 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004517 tp->mac_version == RTL_GIGA_MAC_VER_38) {
David S. Miller8decf862011-09-22 03:23:13 -04004518 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Francois Romieuffc46952012-07-06 14:19:23 +02004519 rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004520 } else {
4521 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
4522 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00004523 }
4524
Hayes Wang92fc43b2011-07-06 15:58:03 +08004525 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526}
4527
Francois Romieu7f796d832007-06-11 23:04:41 +02004528static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004529{
4530 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01004531
4532 /* Set DMA burst size and Interframe Gap Time */
4533 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4534 (InterFrameGap << TxInterFrameGapShift));
4535}
4536
Francois Romieu07ce4062007-02-23 23:36:39 +01004537static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538{
4539 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540
Francois Romieu07ce4062007-02-23 23:36:39 +01004541 tp->hw_start(dev);
4542
Francois Romieuda78dbf2012-01-26 14:18:23 +01004543 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004544}
4545
Francois Romieu7f796d832007-06-11 23:04:41 +02004546static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
4547 void __iomem *ioaddr)
4548{
4549 /*
4550 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
4551 * register to be written before TxDescAddrLow to work.
4552 * Switching from MMIO to I/O access fixes the issue as well.
4553 */
4554 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004555 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004556 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004557 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004558}
4559
4560static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
4561{
4562 u16 cmd;
4563
4564 cmd = RTL_R16(CPlusCmd);
4565 RTL_W16(CPlusCmd, cmd);
4566 return cmd;
4567}
4568
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07004569static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02004570{
4571 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00004572 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02004573}
4574
Francois Romieu6dccd162007-02-13 23:38:05 +01004575static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
4576{
Francois Romieu37441002011-06-17 22:58:54 +02004577 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01004578 u32 mac_version;
4579 u32 clk;
4580 u32 val;
4581 } cfg2_info [] = {
4582 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
4583 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
4584 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
4585 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02004586 };
4587 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01004588 unsigned int i;
4589 u32 clk;
4590
4591 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01004592 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01004593 if ((p->mac_version == mac_version) && (p->clk == clk)) {
4594 RTL_W32(0x7c, p->val);
4595 break;
4596 }
4597 }
4598}
4599
Francois Romieue6b763e2012-03-08 09:35:39 +01004600static void rtl_set_rx_mode(struct net_device *dev)
4601{
4602 struct rtl8169_private *tp = netdev_priv(dev);
4603 void __iomem *ioaddr = tp->mmio_addr;
4604 u32 mc_filter[2]; /* Multicast hash filter */
4605 int rx_mode;
4606 u32 tmp = 0;
4607
4608 if (dev->flags & IFF_PROMISC) {
4609 /* Unconditionally log net taps. */
4610 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
4611 rx_mode =
4612 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4613 AcceptAllPhys;
4614 mc_filter[1] = mc_filter[0] = 0xffffffff;
4615 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
4616 (dev->flags & IFF_ALLMULTI)) {
4617 /* Too many to filter perfectly -- accept all multicasts. */
4618 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4619 mc_filter[1] = mc_filter[0] = 0xffffffff;
4620 } else {
4621 struct netdev_hw_addr *ha;
4622
4623 rx_mode = AcceptBroadcast | AcceptMyPhys;
4624 mc_filter[1] = mc_filter[0] = 0;
4625 netdev_for_each_mc_addr(ha, dev) {
4626 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
4627 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4628 rx_mode |= AcceptMulticast;
4629 }
4630 }
4631
4632 if (dev->features & NETIF_F_RXALL)
4633 rx_mode |= (AcceptErr | AcceptRunt);
4634
4635 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
4636
4637 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
4638 u32 data = mc_filter[0];
4639
4640 mc_filter[0] = swab32(mc_filter[1]);
4641 mc_filter[1] = swab32(data);
4642 }
4643
Nathan Walp04817762012-11-01 12:08:47 +00004644 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
4645 mc_filter[1] = mc_filter[0] = 0xffffffff;
4646
Francois Romieue6b763e2012-03-08 09:35:39 +01004647 RTL_W32(MAR0 + 4, mc_filter[1]);
4648 RTL_W32(MAR0 + 0, mc_filter[0]);
4649
4650 RTL_W32(RxConfig, tmp);
4651}
4652
Francois Romieu07ce4062007-02-23 23:36:39 +01004653static void rtl_hw_start_8169(struct net_device *dev)
4654{
4655 struct rtl8169_private *tp = netdev_priv(dev);
4656 void __iomem *ioaddr = tp->mmio_addr;
4657 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01004658
Francois Romieu9cb427b2006-11-02 00:10:16 +01004659 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
4660 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
4661 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4662 }
4663
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02004665 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4666 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4667 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4668 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004669 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4670
Hayes Wange542a222011-07-06 15:58:04 +08004671 rtl_init_rxcfg(tp);
4672
françois romieuf0298f82011-01-03 15:07:42 +00004673 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004675 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
Francois Romieucecb5fd2011-04-01 10:21:07 +02004677 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4678 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4679 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4680 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02004681 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
Francois Romieu7f796d832007-06-11 23:04:41 +02004683 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004684
Francois Romieucecb5fd2011-04-01 10:21:07 +02004685 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4686 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02004687 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02004689 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 }
4691
Francois Romieubcf0bf92006-07-26 23:14:13 +02004692 RTL_W16(CPlusCmd, tp->cp_cmd);
4693
Francois Romieu6dccd162007-02-13 23:38:05 +01004694 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
4695
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 /*
4697 * Undocumented corner. Supposedly:
4698 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4699 */
4700 RTL_W16(IntrMitigate, 0x0000);
4701
Francois Romieu7f796d832007-06-11 23:04:41 +02004702 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01004703
Francois Romieucecb5fd2011-04-01 10:21:07 +02004704 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
4705 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
4706 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
4707 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02004708 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4709 rtl_set_rx_tx_config_registers(tp);
4710 }
4711
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02004713
4714 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4715 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
4717 RTL_W32(RxMissed, 0);
4718
Francois Romieu07ce4062007-02-23 23:36:39 +01004719 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720
4721 /* no early-rx interrupts */
4722 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01004723}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004725static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
4726{
4727 if (tp->csi_ops.write)
Francois Romieu52989f02012-07-06 13:37:00 +02004728 tp->csi_ops.write(tp, addr, value);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004729}
4730
4731static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
4732{
Francois Romieu52989f02012-07-06 13:37:00 +02004733 return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004734}
4735
4736static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02004737{
4738 u32 csi;
4739
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004740 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
4741 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00004742}
4743
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004744static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00004745{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004746 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00004747}
4748
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004749static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00004750{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004751 rtl_csi_access_enable(tp, 0x27000000);
4752}
4753
Francois Romieuffc46952012-07-06 14:19:23 +02004754DECLARE_RTL_COND(rtl_csiar_cond)
4755{
4756 void __iomem *ioaddr = tp->mmio_addr;
4757
4758 return RTL_R32(CSIAR) & CSIAR_FLAG;
4759}
4760
Francois Romieu52989f02012-07-06 13:37:00 +02004761static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004762{
Francois Romieu52989f02012-07-06 13:37:00 +02004763 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004764
4765 RTL_W32(CSIDR, value);
4766 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4767 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4768
Francois Romieuffc46952012-07-06 14:19:23 +02004769 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004770}
4771
Francois Romieu52989f02012-07-06 13:37:00 +02004772static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004773{
Francois Romieu52989f02012-07-06 13:37:00 +02004774 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004775
4776 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
4777 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4778
Francois Romieuffc46952012-07-06 14:19:23 +02004779 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
4780 RTL_R32(CSIDR) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004781}
4782
Francois Romieu52989f02012-07-06 13:37:00 +02004783static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wang7e18dca2012-03-30 14:33:02 +08004784{
Francois Romieu52989f02012-07-06 13:37:00 +02004785 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004786
4787 RTL_W32(CSIDR, value);
4788 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4789 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
4790 CSIAR_FUNC_NIC);
4791
Francois Romieuffc46952012-07-06 14:19:23 +02004792 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004793}
4794
Francois Romieu52989f02012-07-06 13:37:00 +02004795static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wang7e18dca2012-03-30 14:33:02 +08004796{
Francois Romieu52989f02012-07-06 13:37:00 +02004797 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004798
4799 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
4800 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4801
Francois Romieuffc46952012-07-06 14:19:23 +02004802 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
4803 RTL_R32(CSIDR) : ~0;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004804}
4805
hayeswang45dd95c2013-07-08 17:09:01 +08004806static void r8411_csi_write(struct rtl8169_private *tp, int addr, int value)
4807{
4808 void __iomem *ioaddr = tp->mmio_addr;
4809
4810 RTL_W32(CSIDR, value);
4811 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4812 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
4813 CSIAR_FUNC_NIC2);
4814
4815 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
4816}
4817
4818static u32 r8411_csi_read(struct rtl8169_private *tp, int addr)
4819{
4820 void __iomem *ioaddr = tp->mmio_addr;
4821
4822 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC2 |
4823 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4824
4825 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
4826 RTL_R32(CSIDR) : ~0;
4827}
4828
Bill Pembertonbaf63292012-12-03 09:23:28 -05004829static void rtl_init_csi_ops(struct rtl8169_private *tp)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004830{
4831 struct csi_ops *ops = &tp->csi_ops;
4832
4833 switch (tp->mac_version) {
4834 case RTL_GIGA_MAC_VER_01:
4835 case RTL_GIGA_MAC_VER_02:
4836 case RTL_GIGA_MAC_VER_03:
4837 case RTL_GIGA_MAC_VER_04:
4838 case RTL_GIGA_MAC_VER_05:
4839 case RTL_GIGA_MAC_VER_06:
4840 case RTL_GIGA_MAC_VER_10:
4841 case RTL_GIGA_MAC_VER_11:
4842 case RTL_GIGA_MAC_VER_12:
4843 case RTL_GIGA_MAC_VER_13:
4844 case RTL_GIGA_MAC_VER_14:
4845 case RTL_GIGA_MAC_VER_15:
4846 case RTL_GIGA_MAC_VER_16:
4847 case RTL_GIGA_MAC_VER_17:
4848 ops->write = NULL;
4849 ops->read = NULL;
4850 break;
4851
Hayes Wang7e18dca2012-03-30 14:33:02 +08004852 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004853 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004854 ops->write = r8402_csi_write;
4855 ops->read = r8402_csi_read;
4856 break;
4857
hayeswang45dd95c2013-07-08 17:09:01 +08004858 case RTL_GIGA_MAC_VER_44:
4859 ops->write = r8411_csi_write;
4860 ops->read = r8411_csi_read;
4861 break;
4862
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004863 default:
4864 ops->write = r8169_csi_write;
4865 ops->read = r8169_csi_read;
4866 break;
4867 }
Francois Romieudacf8152008-08-02 20:44:13 +02004868}
4869
4870struct ephy_info {
4871 unsigned int offset;
4872 u16 mask;
4873 u16 bits;
4874};
4875
Francois Romieufdf6fc02012-07-06 22:40:38 +02004876static void rtl_ephy_init(struct rtl8169_private *tp, const struct ephy_info *e,
4877 int len)
Francois Romieudacf8152008-08-02 20:44:13 +02004878{
4879 u16 w;
4880
4881 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02004882 w = (rtl_ephy_read(tp, e->offset) & ~e->mask) | e->bits;
4883 rtl_ephy_write(tp, e->offset, w);
Francois Romieudacf8152008-08-02 20:44:13 +02004884 e++;
4885 }
4886}
4887
Francois Romieub726e492008-06-28 12:22:59 +02004888static void rtl_disable_clock_request(struct pci_dev *pdev)
4889{
Jiang Liu7d7903b2012-07-24 17:20:16 +08004890 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL,
4891 PCI_EXP_LNKCTL_CLKREQ_EN);
Francois Romieub726e492008-06-28 12:22:59 +02004892}
4893
françois romieue6de30d2011-01-03 15:08:37 +00004894static void rtl_enable_clock_request(struct pci_dev *pdev)
4895{
Jiang Liu7d7903b2012-07-24 17:20:16 +08004896 pcie_capability_set_word(pdev, PCI_EXP_LNKCTL,
4897 PCI_EXP_LNKCTL_CLKREQ_EN);
françois romieue6de30d2011-01-03 15:08:37 +00004898}
4899
Francois Romieub726e492008-06-28 12:22:59 +02004900#define R8168_CPCMD_QUIRK_MASK (\
4901 EnableBist | \
4902 Mac_dbgo_oe | \
4903 Force_half_dup | \
4904 Force_rxflow_en | \
4905 Force_txflow_en | \
4906 Cxpl_dbg_sel | \
4907 ASF | \
4908 PktCntrDisable | \
4909 Mac_dbgo_sel)
4910
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004911static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004912{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004913 void __iomem *ioaddr = tp->mmio_addr;
4914 struct pci_dev *pdev = tp->pci_dev;
4915
Francois Romieub726e492008-06-28 12:22:59 +02004916 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4917
4918 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4919
françois romieufaf1e782013-02-27 13:01:57 +00004920 if (tp->dev->mtu <= ETH_DATA_LEN) {
4921 rtl_tx_performance_tweak(pdev, (0x5 << MAX_READ_REQUEST_SHIFT) |
4922 PCI_EXP_DEVCTL_NOSNOOP_EN);
4923 }
Francois Romieu219a1e92008-06-28 11:58:39 +02004924}
4925
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004926static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004927{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004928 void __iomem *ioaddr = tp->mmio_addr;
4929
4930 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004931
françois romieuf0298f82011-01-03 15:07:42 +00004932 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02004933
4934 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02004935}
4936
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004937static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004938{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004939 void __iomem *ioaddr = tp->mmio_addr;
4940 struct pci_dev *pdev = tp->pci_dev;
4941
Francois Romieub726e492008-06-28 12:22:59 +02004942 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4943
4944 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4945
françois romieufaf1e782013-02-27 13:01:57 +00004946 if (tp->dev->mtu <= ETH_DATA_LEN)
4947 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02004948
4949 rtl_disable_clock_request(pdev);
4950
4951 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02004952}
4953
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004954static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004955{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004956 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004957 { 0x01, 0, 0x0001 },
4958 { 0x02, 0x0800, 0x1000 },
4959 { 0x03, 0, 0x0042 },
4960 { 0x06, 0x0080, 0x0000 },
4961 { 0x07, 0, 0x2000 }
4962 };
4963
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004964 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004965
Francois Romieufdf6fc02012-07-06 22:40:38 +02004966 rtl_ephy_init(tp, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
Francois Romieub726e492008-06-28 12:22:59 +02004967
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004968 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004969}
4970
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004971static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02004972{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004973 void __iomem *ioaddr = tp->mmio_addr;
4974 struct pci_dev *pdev = tp->pci_dev;
4975
4976 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004977
4978 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4979
françois romieufaf1e782013-02-27 13:01:57 +00004980 if (tp->dev->mtu <= ETH_DATA_LEN)
4981 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieuef3386f2008-06-29 12:24:30 +02004982
4983 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4984}
4985
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004986static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004987{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004988 void __iomem *ioaddr = tp->mmio_addr;
4989 struct pci_dev *pdev = tp->pci_dev;
4990
4991 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004992
4993 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4994
4995 /* Magic. */
4996 RTL_W8(DBG_REG, 0x20);
4997
françois romieuf0298f82011-01-03 15:07:42 +00004998 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004999
françois romieufaf1e782013-02-27 13:01:57 +00005000 if (tp->dev->mtu <= ETH_DATA_LEN)
5001 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005002
5003 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5004}
5005
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005006static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005007{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005008 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005009 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005010 { 0x02, 0x0800, 0x1000 },
5011 { 0x03, 0, 0x0002 },
5012 { 0x06, 0x0080, 0x0000 }
5013 };
5014
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005015 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005016
5017 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
5018
Francois Romieufdf6fc02012-07-06 22:40:38 +02005019 rtl_ephy_init(tp, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
Francois Romieub726e492008-06-28 12:22:59 +02005020
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005021 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005022}
5023
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005024static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005025{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005026 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005027 { 0x01, 0, 0x0001 },
5028 { 0x03, 0x0400, 0x0220 }
5029 };
5030
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005031 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005032
Francois Romieufdf6fc02012-07-06 22:40:38 +02005033 rtl_ephy_init(tp, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
Francois Romieub726e492008-06-28 12:22:59 +02005034
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005035 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005036}
5037
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005038static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02005039{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005040 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02005041}
5042
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005043static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02005044{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005045 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005046
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005047 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005048}
5049
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005050static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02005051{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005052 void __iomem *ioaddr = tp->mmio_addr;
5053 struct pci_dev *pdev = tp->pci_dev;
5054
5055 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02005056
5057 rtl_disable_clock_request(pdev);
5058
françois romieuf0298f82011-01-03 15:07:42 +00005059 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02005060
françois romieufaf1e782013-02-27 13:01:57 +00005061 if (tp->dev->mtu <= ETH_DATA_LEN)
5062 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu5b538df2008-07-20 16:22:45 +02005063
5064 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5065}
5066
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005067static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00005068{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005069 void __iomem *ioaddr = tp->mmio_addr;
5070 struct pci_dev *pdev = tp->pci_dev;
5071
5072 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005073
françois romieufaf1e782013-02-27 13:01:57 +00005074 if (tp->dev->mtu <= ETH_DATA_LEN)
5075 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang4804b3b2011-03-21 01:50:29 +00005076
5077 RTL_W8(MaxTxPacketSize, TxPacketMax);
5078
5079 rtl_disable_clock_request(pdev);
5080}
5081
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005082static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005083{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005084 void __iomem *ioaddr = tp->mmio_addr;
5085 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00005086 static const struct ephy_info e_info_8168d_4[] = {
5087 { 0x0b, ~0, 0x48 },
5088 { 0x19, 0x20, 0x50 },
5089 { 0x0c, ~0, 0x20 }
5090 };
5091 int i;
5092
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005093 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00005094
5095 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5096
5097 RTL_W8(MaxTxPacketSize, TxPacketMax);
5098
5099 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
5100 const struct ephy_info *e = e_info_8168d_4 + i;
5101 u16 w;
5102
Francois Romieufdf6fc02012-07-06 22:40:38 +02005103 w = rtl_ephy_read(tp, e->offset);
5104 rtl_ephy_write(tp, 0x03, (w & e->mask) | e->bits);
françois romieue6de30d2011-01-03 15:08:37 +00005105 }
5106
5107 rtl_enable_clock_request(pdev);
5108}
5109
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005110static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00005111{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005112 void __iomem *ioaddr = tp->mmio_addr;
5113 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005114 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00005115 { 0x00, 0x0200, 0x0100 },
5116 { 0x00, 0x0000, 0x0004 },
5117 { 0x06, 0x0002, 0x0001 },
5118 { 0x06, 0x0000, 0x0030 },
5119 { 0x07, 0x0000, 0x2000 },
5120 { 0x00, 0x0000, 0x0020 },
5121 { 0x03, 0x5800, 0x2000 },
5122 { 0x03, 0x0000, 0x0001 },
5123 { 0x01, 0x0800, 0x1000 },
5124 { 0x07, 0x0000, 0x4000 },
5125 { 0x1e, 0x0000, 0x2000 },
5126 { 0x19, 0xffff, 0xfe6c },
5127 { 0x0a, 0x0000, 0x0040 }
5128 };
5129
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005130 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005131
Francois Romieufdf6fc02012-07-06 22:40:38 +02005132 rtl_ephy_init(tp, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00005133
françois romieufaf1e782013-02-27 13:01:57 +00005134 if (tp->dev->mtu <= ETH_DATA_LEN)
5135 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang01dc7fe2011-03-21 01:50:28 +00005136
5137 RTL_W8(MaxTxPacketSize, TxPacketMax);
5138
5139 rtl_disable_clock_request(pdev);
5140
5141 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02005142 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
5143 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00005144
Francois Romieucecb5fd2011-04-01 10:21:07 +02005145 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00005146}
5147
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005148static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08005149{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005150 void __iomem *ioaddr = tp->mmio_addr;
5151 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005152 static const struct ephy_info e_info_8168e_2[] = {
5153 { 0x09, 0x0000, 0x0080 },
5154 { 0x19, 0x0000, 0x0224 }
5155 };
5156
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005157 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005158
Francois Romieufdf6fc02012-07-06 22:40:38 +02005159 rtl_ephy_init(tp, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
Hayes Wang70090422011-07-06 15:58:06 +08005160
françois romieufaf1e782013-02-27 13:01:57 +00005161 if (tp->dev->mtu <= ETH_DATA_LEN)
5162 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Hayes Wang70090422011-07-06 15:58:06 +08005163
Francois Romieufdf6fc02012-07-06 22:40:38 +02005164 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5165 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5166 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5167 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5168 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5169 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
5170 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5171 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08005172
Hayes Wang3090bd92011-09-06 16:55:15 +08005173 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08005174
Francois Romieu4521e1a92012-11-01 16:46:28 +00005175 rtl_disable_clock_request(pdev);
5176
Hayes Wang70090422011-07-06 15:58:06 +08005177 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5178 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5179
5180 /* Adjust EEE LED frequency */
5181 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5182
5183 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
5184 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005185 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wang70090422011-07-06 15:58:06 +08005186}
5187
Hayes Wang5f886e02012-03-30 14:33:03 +08005188static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08005189{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005190 void __iomem *ioaddr = tp->mmio_addr;
5191 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08005192
Hayes Wang5f886e02012-03-30 14:33:03 +08005193 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005194
5195 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5196
Francois Romieufdf6fc02012-07-06 22:40:38 +02005197 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5198 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5199 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5200 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5201 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5202 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5203 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5204 rtl_w1w0_eri(tp, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5205 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5206 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08005207
5208 RTL_W8(MaxTxPacketSize, EarlySize);
5209
Francois Romieu4521e1a92012-11-01 16:46:28 +00005210 rtl_disable_clock_request(pdev);
5211
Hayes Wangc2218922011-09-06 16:55:18 +08005212 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5213 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08005214 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005215 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
5216 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wangc2218922011-09-06 16:55:18 +08005217}
5218
Hayes Wang5f886e02012-03-30 14:33:03 +08005219static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
5220{
5221 void __iomem *ioaddr = tp->mmio_addr;
5222 static const struct ephy_info e_info_8168f_1[] = {
5223 { 0x06, 0x00c0, 0x0020 },
5224 { 0x08, 0x0001, 0x0002 },
5225 { 0x09, 0x0000, 0x0080 },
5226 { 0x19, 0x0000, 0x0224 }
5227 };
5228
5229 rtl_hw_start_8168f(tp);
5230
Francois Romieufdf6fc02012-07-06 22:40:38 +02005231 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wang5f886e02012-03-30 14:33:03 +08005232
Francois Romieufdf6fc02012-07-06 22:40:38 +02005233 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang5f886e02012-03-30 14:33:03 +08005234
5235 /* Adjust EEE LED frequency */
5236 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5237}
5238
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005239static void rtl_hw_start_8411(struct rtl8169_private *tp)
5240{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005241 static const struct ephy_info e_info_8168f_1[] = {
5242 { 0x06, 0x00c0, 0x0020 },
5243 { 0x0f, 0xffff, 0x5200 },
5244 { 0x1e, 0x0000, 0x4000 },
5245 { 0x19, 0x0000, 0x0224 }
5246 };
5247
5248 rtl_hw_start_8168f(tp);
5249
Francois Romieufdf6fc02012-07-06 22:40:38 +02005250 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005251
Francois Romieufdf6fc02012-07-06 22:40:38 +02005252 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005253}
5254
Hayes Wangc5583862012-07-02 17:23:22 +08005255static void rtl_hw_start_8168g_1(struct rtl8169_private *tp)
5256{
5257 void __iomem *ioaddr = tp->mmio_addr;
5258 struct pci_dev *pdev = tp->pci_dev;
5259
hayeswangbeb330a2013-04-01 22:23:39 +00005260 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5261
Hayes Wangc5583862012-07-02 17:23:22 +08005262 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x080002, ERIAR_EXGMAC);
5263 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
5264 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
5265 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5266
5267 rtl_csi_access_enable_1(tp);
5268
5269 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5270
5271 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5272 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
hayeswangbeb330a2013-04-01 22:23:39 +00005273 rtl_eri_write(tp, 0x2f8, ERIAR_MASK_0011, 0x1d8f, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08005274
5275 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005276 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
Hayes Wangc5583862012-07-02 17:23:22 +08005277 RTL_W8(MaxTxPacketSize, EarlySize);
5278
5279 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5280 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5281
5282 /* Adjust EEE LED frequency */
5283 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5284
hayeswangbeb330a2013-04-01 22:23:39 +00005285 rtl_w1w0_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
5286 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08005287}
5288
hayeswang57538c42013-04-01 22:23:40 +00005289static void rtl_hw_start_8168g_2(struct rtl8169_private *tp)
5290{
5291 void __iomem *ioaddr = tp->mmio_addr;
5292 static const struct ephy_info e_info_8168g_2[] = {
5293 { 0x00, 0x0000, 0x0008 },
5294 { 0x0c, 0x3df0, 0x0200 },
5295 { 0x19, 0xffff, 0xfc00 },
5296 { 0x1e, 0xffff, 0x20eb }
5297 };
5298
5299 rtl_hw_start_8168g_1(tp);
5300
5301 /* disable aspm and clock request before access ephy */
5302 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
5303 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
5304 rtl_ephy_init(tp, e_info_8168g_2, ARRAY_SIZE(e_info_8168g_2));
5305}
5306
hayeswang45dd95c2013-07-08 17:09:01 +08005307static void rtl_hw_start_8411_2(struct rtl8169_private *tp)
5308{
5309 void __iomem *ioaddr = tp->mmio_addr;
5310 static const struct ephy_info e_info_8411_2[] = {
5311 { 0x00, 0x0000, 0x0008 },
5312 { 0x0c, 0x3df0, 0x0200 },
5313 { 0x0f, 0xffff, 0x5200 },
5314 { 0x19, 0x0020, 0x0000 },
5315 { 0x1e, 0x0000, 0x2000 }
5316 };
5317
5318 rtl_hw_start_8168g_1(tp);
5319
5320 /* disable aspm and clock request before access ephy */
5321 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
5322 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
5323 rtl_ephy_init(tp, e_info_8411_2, ARRAY_SIZE(e_info_8411_2));
5324}
5325
Francois Romieu07ce4062007-02-23 23:36:39 +01005326static void rtl_hw_start_8168(struct net_device *dev)
5327{
Francois Romieu2dd99532007-06-11 23:22:52 +02005328 struct rtl8169_private *tp = netdev_priv(dev);
5329 void __iomem *ioaddr = tp->mmio_addr;
5330
5331 RTL_W8(Cfg9346, Cfg9346_Unlock);
5332
françois romieuf0298f82011-01-03 15:07:42 +00005333 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02005334
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005335 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02005336
Francois Romieu0e485152007-02-20 00:00:26 +01005337 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02005338
5339 RTL_W16(CPlusCmd, tp->cp_cmd);
5340
Francois Romieu0e485152007-02-20 00:00:26 +01005341 RTL_W16(IntrMitigate, 0x5151);
5342
5343 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00005344 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01005345 tp->event_slow |= RxFIFOOver | PCSTimeout;
5346 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01005347 }
Francois Romieu2dd99532007-06-11 23:22:52 +02005348
5349 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5350
hayeswang1a964642013-04-01 22:23:41 +00005351 rtl_set_rx_tx_config_registers(tp);
Francois Romieu2dd99532007-06-11 23:22:52 +02005352
5353 RTL_R8(IntrMask);
5354
Francois Romieu219a1e92008-06-28 11:58:39 +02005355 switch (tp->mac_version) {
5356 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005357 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005358 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005359
5360 case RTL_GIGA_MAC_VER_12:
5361 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005362 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005363 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005364
5365 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005366 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005367 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005368
5369 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005370 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005371 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005372
5373 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005374 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005375 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005376
Francois Romieu197ff762008-06-28 13:16:02 +02005377 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005378 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005379 break;
Francois Romieu197ff762008-06-28 13:16:02 +02005380
Francois Romieu6fb07052008-06-29 11:54:28 +02005381 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005382 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005383 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02005384
Francois Romieuef3386f2008-06-29 12:24:30 +02005385 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005386 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005387 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02005388
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005389 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005390 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005391 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005392
Francois Romieu5b538df2008-07-20 16:22:45 +02005393 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00005394 case RTL_GIGA_MAC_VER_26:
5395 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005396 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005397 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02005398
françois romieue6de30d2011-01-03 15:08:37 +00005399 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005400 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005401 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02005402
hayeswang4804b3b2011-03-21 01:50:29 +00005403 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005404 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005405 break;
5406
hayeswang01dc7fe2011-03-21 01:50:28 +00005407 case RTL_GIGA_MAC_VER_32:
5408 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005409 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005410 break;
5411 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005412 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005413 break;
françois romieue6de30d2011-01-03 15:08:37 +00005414
Hayes Wangc2218922011-09-06 16:55:18 +08005415 case RTL_GIGA_MAC_VER_35:
5416 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005417 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005418 break;
5419
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005420 case RTL_GIGA_MAC_VER_38:
5421 rtl_hw_start_8411(tp);
5422 break;
5423
Hayes Wangc5583862012-07-02 17:23:22 +08005424 case RTL_GIGA_MAC_VER_40:
5425 case RTL_GIGA_MAC_VER_41:
5426 rtl_hw_start_8168g_1(tp);
5427 break;
hayeswang57538c42013-04-01 22:23:40 +00005428 case RTL_GIGA_MAC_VER_42:
5429 rtl_hw_start_8168g_2(tp);
5430 break;
Hayes Wangc5583862012-07-02 17:23:22 +08005431
hayeswang45dd95c2013-07-08 17:09:01 +08005432 case RTL_GIGA_MAC_VER_44:
5433 rtl_hw_start_8411_2(tp);
5434 break;
5435
Francois Romieu219a1e92008-06-28 11:58:39 +02005436 default:
5437 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
5438 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00005439 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005440 }
Francois Romieu2dd99532007-06-11 23:22:52 +02005441
hayeswang1a964642013-04-01 22:23:41 +00005442 RTL_W8(Cfg9346, Cfg9346_Lock);
5443
Francois Romieu0e485152007-02-20 00:00:26 +01005444 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5445
hayeswang1a964642013-04-01 22:23:41 +00005446 rtl_set_rx_mode(dev);
Francois Romieub8363902008-06-01 12:31:57 +02005447
Francois Romieu2dd99532007-06-11 23:22:52 +02005448 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005449}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450
Francois Romieu2857ffb2008-08-02 21:08:49 +02005451#define R810X_CPCMD_QUIRK_MASK (\
5452 EnableBist | \
5453 Mac_dbgo_oe | \
5454 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00005455 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02005456 Force_txflow_en | \
5457 Cxpl_dbg_sel | \
5458 ASF | \
5459 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005460 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005461
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005462static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005463{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005464 void __iomem *ioaddr = tp->mmio_addr;
5465 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005466 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02005467 { 0x01, 0, 0x6e65 },
5468 { 0x02, 0, 0x091f },
5469 { 0x03, 0, 0xc2f9 },
5470 { 0x06, 0, 0xafb5 },
5471 { 0x07, 0, 0x0e00 },
5472 { 0x19, 0, 0xec80 },
5473 { 0x01, 0, 0x2e65 },
5474 { 0x01, 0, 0x6e65 }
5475 };
5476 u8 cfg1;
5477
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005478 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005479
5480 RTL_W8(DBG_REG, FIX_NAK_1);
5481
5482 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5483
5484 RTL_W8(Config1,
5485 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
5486 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5487
5488 cfg1 = RTL_R8(Config1);
5489 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
5490 RTL_W8(Config1, cfg1 & ~LEDS0);
5491
Francois Romieufdf6fc02012-07-06 22:40:38 +02005492 rtl_ephy_init(tp, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
Francois Romieu2857ffb2008-08-02 21:08:49 +02005493}
5494
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005495static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005496{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005497 void __iomem *ioaddr = tp->mmio_addr;
5498 struct pci_dev *pdev = tp->pci_dev;
5499
5500 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005501
5502 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5503
5504 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
5505 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005506}
5507
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005508static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005509{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005510 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005511
Francois Romieufdf6fc02012-07-06 22:40:38 +02005512 rtl_ephy_write(tp, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005513}
5514
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005515static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005516{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005517 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005518 static const struct ephy_info e_info_8105e_1[] = {
5519 { 0x07, 0, 0x4000 },
5520 { 0x19, 0, 0x0200 },
5521 { 0x19, 0, 0x0020 },
5522 { 0x1e, 0, 0x2000 },
5523 { 0x03, 0, 0x0001 },
5524 { 0x19, 0, 0x0100 },
5525 { 0x19, 0, 0x0004 },
5526 { 0x0a, 0, 0x0020 }
5527 };
5528
Francois Romieucecb5fd2011-04-01 10:21:07 +02005529 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005530 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5531
Francois Romieucecb5fd2011-04-01 10:21:07 +02005532 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005533 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
5534
5535 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08005536 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005537
Francois Romieufdf6fc02012-07-06 22:40:38 +02005538 rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
Hayes Wang5a5e4442011-02-22 17:26:21 +08005539}
5540
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005541static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005542{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005543 rtl_hw_start_8105e_1(tp);
Francois Romieufdf6fc02012-07-06 22:40:38 +02005544 rtl_ephy_write(tp, 0x1e, rtl_ephy_read(tp, 0x1e) | 0x8000);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005545}
5546
Hayes Wang7e18dca2012-03-30 14:33:02 +08005547static void rtl_hw_start_8402(struct rtl8169_private *tp)
5548{
5549 void __iomem *ioaddr = tp->mmio_addr;
5550 static const struct ephy_info e_info_8402[] = {
5551 { 0x19, 0xffff, 0xff64 },
5552 { 0x1e, 0, 0x4000 }
5553 };
5554
5555 rtl_csi_access_enable_2(tp);
5556
5557 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5558 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5559
5560 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5561 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5562
Francois Romieufdf6fc02012-07-06 22:40:38 +02005563 rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402));
Hayes Wang7e18dca2012-03-30 14:33:02 +08005564
5565 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
5566
Francois Romieufdf6fc02012-07-06 22:40:38 +02005567 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
5568 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
5569 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5570 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5571 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5572 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5573 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08005574}
5575
Hayes Wang5598bfe2012-07-02 17:23:21 +08005576static void rtl_hw_start_8106(struct rtl8169_private *tp)
5577{
5578 void __iomem *ioaddr = tp->mmio_addr;
5579
5580 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5581 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5582
Francois Romieu4521e1a92012-11-01 16:46:28 +00005583 RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN);
Hayes Wang5598bfe2012-07-02 17:23:21 +08005584 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
5585 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
5586}
5587
Francois Romieu07ce4062007-02-23 23:36:39 +01005588static void rtl_hw_start_8101(struct net_device *dev)
5589{
Francois Romieucdf1a602007-06-11 23:29:50 +02005590 struct rtl8169_private *tp = netdev_priv(dev);
5591 void __iomem *ioaddr = tp->mmio_addr;
5592 struct pci_dev *pdev = tp->pci_dev;
5593
Francois Romieuda78dbf2012-01-26 14:18:23 +01005594 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
5595 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00005596
Francois Romieucecb5fd2011-04-01 10:21:07 +02005597 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
Jiang Liu7d7903b2012-07-24 17:20:16 +08005598 tp->mac_version == RTL_GIGA_MAC_VER_16)
Bjorn Helgaas8200bc72012-08-22 10:29:42 -06005599 pcie_capability_set_word(pdev, PCI_EXP_DEVCTL,
5600 PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieucdf1a602007-06-11 23:29:50 +02005601
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005602 RTL_W8(Cfg9346, Cfg9346_Unlock);
5603
hayeswang1a964642013-04-01 22:23:41 +00005604 RTL_W8(MaxTxPacketSize, TxPacketMax);
5605
5606 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
5607
5608 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
5609 RTL_W16(CPlusCmd, tp->cp_cmd);
5610
5611 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5612
5613 rtl_set_rx_tx_config_registers(tp);
5614
Francois Romieu2857ffb2008-08-02 21:08:49 +02005615 switch (tp->mac_version) {
5616 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005617 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005618 break;
5619
5620 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005621 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005622 break;
5623
5624 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005625 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005626 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005627
5628 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005629 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005630 break;
5631 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005632 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005633 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005634
5635 case RTL_GIGA_MAC_VER_37:
5636 rtl_hw_start_8402(tp);
5637 break;
Hayes Wang5598bfe2012-07-02 17:23:21 +08005638
5639 case RTL_GIGA_MAC_VER_39:
5640 rtl_hw_start_8106(tp);
5641 break;
hayeswang58152cd2013-04-01 22:23:42 +00005642 case RTL_GIGA_MAC_VER_43:
5643 rtl_hw_start_8168g_2(tp);
5644 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02005645 }
5646
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005647 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02005648
Francois Romieucdf1a602007-06-11 23:29:50 +02005649 RTL_W16(IntrMitigate, 0x0000);
5650
Francois Romieucdf1a602007-06-11 23:29:50 +02005651 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieucdf1a602007-06-11 23:29:50 +02005652
Francois Romieucdf1a602007-06-11 23:29:50 +02005653 rtl_set_rx_mode(dev);
5654
hayeswang1a964642013-04-01 22:23:41 +00005655 RTL_R8(IntrMask);
5656
Francois Romieucdf1a602007-06-11 23:29:50 +02005657 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658}
5659
5660static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
5661{
Francois Romieud58d46b2011-05-03 16:38:29 +02005662 struct rtl8169_private *tp = netdev_priv(dev);
5663
5664 if (new_mtu < ETH_ZLEN ||
5665 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666 return -EINVAL;
5667
Francois Romieud58d46b2011-05-03 16:38:29 +02005668 if (new_mtu > ETH_DATA_LEN)
5669 rtl_hw_jumbo_enable(tp);
5670 else
5671 rtl_hw_jumbo_disable(tp);
5672
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00005674 netdev_update_features(dev);
5675
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005676 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677}
5678
5679static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
5680{
Al Viro95e09182007-12-22 18:55:39 +00005681 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
5683}
5684
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005685static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
5686 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005688 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005689 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005690
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005691 kfree(*data_buff);
5692 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693 rtl8169_make_unusable_by_asic(desc);
5694}
5695
5696static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
5697{
5698 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
5699
5700 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
5701}
5702
5703static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
5704 u32 rx_buf_sz)
5705{
5706 desc->addr = cpu_to_le64(mapping);
5707 wmb();
5708 rtl8169_mark_to_asic(desc, rx_buf_sz);
5709}
5710
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005711static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005713 return (void *)ALIGN((long)data, 16);
5714}
5715
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005716static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
5717 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005718{
5719 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005721 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005722 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005723 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005725 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
5726 if (!data)
5727 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01005728
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005729 if (rtl8169_align(data) != data) {
5730 kfree(data);
5731 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
5732 if (!data)
5733 return NULL;
5734 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005735
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005736 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005737 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005738 if (unlikely(dma_mapping_error(d, mapping))) {
5739 if (net_ratelimit())
5740 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005741 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743
5744 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005745 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005746
5747err_out:
5748 kfree(data);
5749 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750}
5751
5752static void rtl8169_rx_clear(struct rtl8169_private *tp)
5753{
Francois Romieu07d3f512007-02-21 22:40:46 +01005754 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755
5756 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005757 if (tp->Rx_databuff[i]) {
5758 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759 tp->RxDescArray + i);
5760 }
5761 }
5762}
5763
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005764static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005766 desc->opts1 |= cpu_to_le32(RingEnd);
5767}
Francois Romieu5b0384f2006-08-16 16:00:01 +02005768
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005769static int rtl8169_rx_fill(struct rtl8169_private *tp)
5770{
5771 unsigned int i;
5772
5773 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005774 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02005775
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005776 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005778
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005779 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005780 if (!data) {
5781 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005782 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005783 }
5784 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005787 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
5788 return 0;
5789
5790err_out:
5791 rtl8169_rx_clear(tp);
5792 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793}
5794
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795static int rtl8169_init_ring(struct net_device *dev)
5796{
5797 struct rtl8169_private *tp = netdev_priv(dev);
5798
5799 rtl8169_init_ring_indexes(tp);
5800
5801 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005802 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005804 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805}
5806
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005807static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808 struct TxDesc *desc)
5809{
5810 unsigned int len = tx_skb->len;
5811
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005812 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
5813
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814 desc->opts1 = 0x00;
5815 desc->opts2 = 0x00;
5816 desc->addr = 0x00;
5817 tx_skb->len = 0;
5818}
5819
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005820static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
5821 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822{
5823 unsigned int i;
5824
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005825 for (i = 0; i < n; i++) {
5826 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827 struct ring_info *tx_skb = tp->tx_skb + entry;
5828 unsigned int len = tx_skb->len;
5829
5830 if (len) {
5831 struct sk_buff *skb = tx_skb->skb;
5832
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005833 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834 tp->TxDescArray + entry);
5835 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00005836 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837 dev_kfree_skb(skb);
5838 tx_skb->skb = NULL;
5839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840 }
5841 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005842}
5843
5844static void rtl8169_tx_clear(struct rtl8169_private *tp)
5845{
5846 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 tp->cur_tx = tp->dirty_tx = 0;
5848}
5849
Francois Romieu4422bcd2012-01-26 11:23:32 +01005850static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851{
David Howellsc4028952006-11-22 14:57:56 +00005852 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01005853 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854
Francois Romieuda78dbf2012-01-26 14:18:23 +01005855 napi_disable(&tp->napi);
5856 netif_stop_queue(dev);
5857 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858
françois romieuc7c2c392011-12-04 20:30:52 +00005859 rtl8169_hw_reset(tp);
5860
Francois Romieu56de4142011-03-15 17:29:31 +01005861 for (i = 0; i < NUM_RX_DESC; i++)
5862 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
5863
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00005865 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
Francois Romieuda78dbf2012-01-26 14:18:23 +01005867 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01005868 rtl_hw_start(dev);
5869 netif_wake_queue(dev);
5870 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871}
5872
5873static void rtl8169_tx_timeout(struct net_device *dev)
5874{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005875 struct rtl8169_private *tp = netdev_priv(dev);
5876
5877 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878}
5879
5880static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07005881 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882{
5883 struct skb_shared_info *info = skb_shinfo(skb);
5884 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04005885 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005886 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887
5888 entry = tp->cur_tx;
5889 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00005890 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891 dma_addr_t mapping;
5892 u32 status, len;
5893 void *addr;
5894
5895 entry = (entry + 1) % NUM_TX_DESC;
5896
5897 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00005898 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00005899 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005900 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005901 if (unlikely(dma_mapping_error(d, mapping))) {
5902 if (net_ratelimit())
5903 netif_err(tp, drv, tp->dev,
5904 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005905 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907
Francois Romieucecb5fd2011-04-01 10:21:07 +02005908 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005909 status = opts[0] | len |
5910 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911
5912 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07005913 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914 txd->addr = cpu_to_le64(mapping);
5915
5916 tp->tx_skb[entry].len = len;
5917 }
5918
5919 if (cur_frag) {
5920 tp->tx_skb[entry].skb = skb;
5921 txd->opts1 |= cpu_to_le32(LastFrag);
5922 }
5923
5924 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005925
5926err_out:
5927 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
5928 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929}
5930
françois romieub423e9a2013-05-18 01:24:46 +00005931static bool rtl_skb_pad(struct sk_buff *skb)
5932{
5933 if (skb_padto(skb, ETH_ZLEN))
5934 return false;
5935 skb_put(skb, ETH_ZLEN - skb->len);
5936 return true;
5937}
5938
5939static bool rtl_test_hw_pad_bug(struct rtl8169_private *tp, struct sk_buff *skb)
5940{
5941 return skb->len < ETH_ZLEN && tp->mac_version == RTL_GIGA_MAC_VER_34;
5942}
5943
5944static inline bool rtl8169_tso_csum(struct rtl8169_private *tp,
Francois Romieu2b7b4312011-04-18 22:53:24 -07005945 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946{
Francois Romieu2b7b4312011-04-18 22:53:24 -07005947 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00005948 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005949 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950
Francois Romieu2b7b4312011-04-18 22:53:24 -07005951 if (mss) {
5952 opts[0] |= TD_LSO;
5953 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
5954 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005955 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956
françois romieub423e9a2013-05-18 01:24:46 +00005957 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
5958 return skb_checksum_help(skb) == 0 && rtl_skb_pad(skb);
5959
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005961 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005963 opts[offset] |= info->checksum.udp;
5964 else
5965 WARN_ON_ONCE(1);
françois romieub423e9a2013-05-18 01:24:46 +00005966 } else {
5967 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
5968 return rtl_skb_pad(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969 }
françois romieub423e9a2013-05-18 01:24:46 +00005970 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971}
5972
Stephen Hemminger613573252009-08-31 19:50:58 +00005973static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
5974 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975{
5976 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005977 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978 struct TxDesc *txd = tp->TxDescArray + entry;
5979 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005980 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981 dma_addr_t mapping;
5982 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005983 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005984 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02005985
Julien Ducourthial477206a2012-05-09 00:00:06 +02005986 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005987 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005988 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 }
5990
5991 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005992 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993
françois romieub423e9a2013-05-18 01:24:46 +00005994 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb));
5995 opts[0] = DescOwn;
5996
5997 if (!rtl8169_tso_csum(tp, skb, opts))
5998 goto err_update_stats;
5999
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006000 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006001 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006002 if (unlikely(dma_mapping_error(d, mapping))) {
6003 if (net_ratelimit())
6004 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006005 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007
6008 tp->tx_skb[entry].len = len;
6009 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010
Francois Romieu2b7b4312011-04-18 22:53:24 -07006011 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006012 if (frags < 0)
6013 goto err_dma_1;
6014 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07006015 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006016 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07006017 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006018 tp->tx_skb[entry].skb = skb;
6019 }
6020
Francois Romieu2b7b4312011-04-18 22:53:24 -07006021 txd->opts2 = cpu_to_le32(opts[1]);
6022
Richard Cochran5047fb52012-03-10 07:29:42 +00006023 skb_tx_timestamp(skb);
6024
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025 wmb();
6026
Francois Romieucecb5fd2011-04-01 10:21:07 +02006027 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07006028 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029 txd->opts1 = cpu_to_le32(status);
6030
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031 tp->cur_tx += frags + 1;
6032
David Dillow4c020a92010-03-03 16:33:10 +00006033 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034
Francois Romieucecb5fd2011-04-01 10:21:07 +02006035 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036
Francois Romieuda78dbf2012-01-26 14:18:23 +01006037 mmiowb();
6038
Julien Ducourthial477206a2012-05-09 00:00:06 +02006039 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01006040 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
6041 * not miss a ring update when it notices a stopped queue.
6042 */
6043 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01006045 /* Sync with rtl_tx:
6046 * - publish queue status and cur_tx ring index (write barrier)
6047 * - refresh dirty_tx ring index (read barrier).
6048 * May the current thread have a pessimistic view of the ring
6049 * status and forget to wake up queue, a racing rtl_tx thread
6050 * can't.
6051 */
Francois Romieu1e874e02012-01-27 15:05:38 +01006052 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02006053 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054 netif_wake_queue(dev);
6055 }
6056
Stephen Hemminger613573252009-08-31 19:50:58 +00006057 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006059err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006060 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006061err_dma_0:
6062 dev_kfree_skb(skb);
Stefan Badere5195c12013-04-26 13:49:32 +00006063err_update_stats:
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006064 dev->stats.tx_dropped++;
6065 return NETDEV_TX_OK;
6066
6067err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02006069 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00006070 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071}
6072
6073static void rtl8169_pcierr_interrupt(struct net_device *dev)
6074{
6075 struct rtl8169_private *tp = netdev_priv(dev);
6076 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077 u16 pci_status, pci_cmd;
6078
6079 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
6080 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
6081
Joe Perchesbf82c182010-02-09 11:49:50 +00006082 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
6083 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084
6085 /*
6086 * The recovery sequence below admits a very elaborated explanation:
6087 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01006088 * - I did not see what else could be done;
6089 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090 *
6091 * Feel free to adjust to your needs.
6092 */
Francois Romieua27993f2006-12-18 00:04:19 +01006093 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01006094 pci_cmd &= ~PCI_COMMAND_PARITY;
6095 else
6096 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
6097
6098 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099
6100 pci_write_config_word(pdev, PCI_STATUS,
6101 pci_status & (PCI_STATUS_DETECTED_PARITY |
6102 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
6103 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
6104
6105 /* The infamous DAC f*ckup only happens at boot time */
Timo Teräs9fba0812013-01-15 21:01:24 +00006106 if ((tp->cp_cmd & PCIDAC) && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00006107 void __iomem *ioaddr = tp->mmio_addr;
6108
Joe Perchesbf82c182010-02-09 11:49:50 +00006109 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110 tp->cp_cmd &= ~PCIDAC;
6111 RTL_W16(CPlusCmd, tp->cp_cmd);
6112 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113 }
6114
françois romieue6de30d2011-01-03 15:08:37 +00006115 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01006116
Francois Romieu98ddf982012-01-31 10:47:34 +01006117 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118}
6119
Francois Romieuda78dbf2012-01-26 14:18:23 +01006120static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121{
6122 unsigned int dirty_tx, tx_left;
6123
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124 dirty_tx = tp->dirty_tx;
6125 smp_rmb();
6126 tx_left = tp->cur_tx - dirty_tx;
6127
6128 while (tx_left > 0) {
6129 unsigned int entry = dirty_tx % NUM_TX_DESC;
6130 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131 u32 status;
6132
6133 rmb();
6134 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
6135 if (status & DescOwn)
6136 break;
6137
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006138 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
6139 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140 if (status & LastFrag) {
Francois Romieu17bcb682012-07-23 22:55:55 +02006141 u64_stats_update_begin(&tp->tx_stats.syncp);
6142 tp->tx_stats.packets++;
6143 tp->tx_stats.bytes += tx_skb->skb->len;
6144 u64_stats_update_end(&tp->tx_stats.syncp);
6145 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146 tx_skb->skb = NULL;
6147 }
6148 dirty_tx++;
6149 tx_left--;
6150 }
6151
6152 if (tp->dirty_tx != dirty_tx) {
6153 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01006154 /* Sync with rtl8169_start_xmit:
6155 * - publish dirty_tx ring index (write barrier)
6156 * - refresh cur_tx ring index and queue status (read barrier)
6157 * May the current thread miss the stopped queue condition,
6158 * a racing xmit thread can only have a right view of the
6159 * ring status.
6160 */
Francois Romieu1e874e02012-01-27 15:05:38 +01006161 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02006163 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164 netif_wake_queue(dev);
6165 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02006166 /*
6167 * 8168 hack: TxPoll requests are lost when the Tx packets are
6168 * too close. Let's kick an extra TxPoll request when a burst
6169 * of start_xmit activity is detected (if it is not detected,
6170 * it is slow enough). -- FR
6171 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006172 if (tp->cur_tx != dirty_tx) {
6173 void __iomem *ioaddr = tp->mmio_addr;
6174
Francois Romieud78ae2d2007-08-26 20:08:19 +02006175 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177 }
6178}
6179
Francois Romieu126fa4b2005-05-12 20:09:17 -04006180static inline int rtl8169_fragmented_frame(u32 status)
6181{
6182 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
6183}
6184
Eric Dumazetadea1ac72010-09-05 20:04:05 -07006185static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187 u32 status = opts1 & RxProtoMask;
6188
6189 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00006190 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191 skb->ip_summed = CHECKSUM_UNNECESSARY;
6192 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006193 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194}
6195
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006196static struct sk_buff *rtl8169_try_rx_copy(void *data,
6197 struct rtl8169_private *tp,
6198 int pkt_size,
6199 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02006201 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006202 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006204 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006205 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006206 prefetch(data);
6207 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
6208 if (skb)
6209 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006210 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
6211
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006212 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213}
6214
Francois Romieuda78dbf2012-01-26 14:18:23 +01006215static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216{
6217 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006218 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220 cur_rx = tp->cur_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221
Timo Teräs9fba0812013-01-15 21:01:24 +00006222 for (rx_left = min(budget, NUM_RX_DESC); rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04006224 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225 u32 status;
6226
6227 rmb();
David S. Miller8decf862011-09-22 03:23:13 -04006228 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229
6230 if (status & DescOwn)
6231 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02006232 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00006233 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
6234 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02006235 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02006237 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02006239 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02006240 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01006241 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02006242 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02006243 }
Ben Greear6bbe0212012-02-10 15:04:33 +00006244 if ((status & (RxRUNT | RxCRC)) &&
6245 !(status & (RxRWT | RxFOVF)) &&
6246 (dev->features & NETIF_F_RXALL))
6247 goto process_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006249 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00006250 dma_addr_t addr;
6251 int pkt_size;
6252
6253process_pkt:
6254 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00006255 if (likely(!(dev->features & NETIF_F_RXFCS)))
6256 pkt_size = (status & 0x00003fff) - 4;
6257 else
6258 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259
Francois Romieu126fa4b2005-05-12 20:09:17 -04006260 /*
6261 * The driver does not support incoming fragmented
6262 * frames. They are seen as a symptom of over-mtu
6263 * sized frames.
6264 */
6265 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02006266 dev->stats.rx_dropped++;
6267 dev->stats.rx_length_errors++;
françois romieuce11ff52013-01-24 13:30:06 +00006268 goto release_descriptor;
Francois Romieu126fa4b2005-05-12 20:09:17 -04006269 }
6270
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006271 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
6272 tp, pkt_size, addr);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006273 if (!skb) {
6274 dev->stats.rx_dropped++;
françois romieuce11ff52013-01-24 13:30:06 +00006275 goto release_descriptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276 }
6277
Eric Dumazetadea1ac72010-09-05 20:04:05 -07006278 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279 skb_put(skb, pkt_size);
6280 skb->protocol = eth_type_trans(skb, dev);
6281
Francois Romieu7a8fc772011-03-01 17:18:33 +01006282 rtl8169_rx_vlan_tag(desc, skb);
6283
Francois Romieu56de4142011-03-15 17:29:31 +01006284 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285
Junchang Wang8027aa22012-03-04 23:30:32 +01006286 u64_stats_update_begin(&tp->rx_stats.syncp);
6287 tp->rx_stats.packets++;
6288 tp->rx_stats.bytes += pkt_size;
6289 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290 }
françois romieuce11ff52013-01-24 13:30:06 +00006291release_descriptor:
6292 desc->opts2 = 0;
6293 wmb();
6294 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295 }
6296
6297 count = cur_rx - tp->cur_rx;
6298 tp->cur_rx = cur_rx;
6299
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300 return count;
6301}
6302
Francois Romieu07d3f512007-02-21 22:40:46 +01006303static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304{
Francois Romieu07d3f512007-02-21 22:40:46 +01006305 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01006308 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309
Francois Romieu9085cdfa2012-01-26 12:59:08 +01006310 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006311 if (status && status != 0xffff) {
6312 status &= RTL_EVENT_NAPI | tp->event_slow;
6313 if (status) {
6314 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00006315
Francois Romieuda78dbf2012-01-26 14:18:23 +01006316 rtl_irq_disable(tp);
6317 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320 return IRQ_RETVAL(handled);
6321}
6322
Francois Romieuda78dbf2012-01-26 14:18:23 +01006323/*
6324 * Workqueue context.
6325 */
6326static void rtl_slow_event_work(struct rtl8169_private *tp)
6327{
6328 struct net_device *dev = tp->dev;
6329 u16 status;
6330
6331 status = rtl_get_events(tp) & tp->event_slow;
6332 rtl_ack_events(tp, status);
6333
6334 if (unlikely(status & RxFIFOOver)) {
6335 switch (tp->mac_version) {
6336 /* Work around for rx fifo overflow */
6337 case RTL_GIGA_MAC_VER_11:
6338 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01006339 /* XXX - Hack alert. See rtl_task(). */
6340 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006341 default:
6342 break;
6343 }
6344 }
6345
6346 if (unlikely(status & SYSErr))
6347 rtl8169_pcierr_interrupt(dev);
6348
6349 if (status & LinkChg)
6350 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
6351
françois romieu7dbb4912012-06-09 10:53:16 +00006352 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006353}
6354
Francois Romieu4422bcd2012-01-26 11:23:32 +01006355static void rtl_task(struct work_struct *work)
6356{
Francois Romieuda78dbf2012-01-26 14:18:23 +01006357 static const struct {
6358 int bitnr;
6359 void (*action)(struct rtl8169_private *);
6360 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01006361 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006362 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
6363 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
6364 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
6365 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01006366 struct rtl8169_private *tp =
6367 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006368 struct net_device *dev = tp->dev;
6369 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01006370
Francois Romieuda78dbf2012-01-26 14:18:23 +01006371 rtl_lock_work(tp);
6372
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006373 if (!netif_running(dev) ||
6374 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01006375 goto out_unlock;
6376
6377 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
6378 bool pending;
6379
Francois Romieuda78dbf2012-01-26 14:18:23 +01006380 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006381 if (pending)
6382 rtl_work[i].action(tp);
6383 }
6384
6385out_unlock:
6386 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01006387}
6388
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006389static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006391 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
6392 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006393 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
6394 int work_done= 0;
6395 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396
Francois Romieuda78dbf2012-01-26 14:18:23 +01006397 status = rtl_get_events(tp);
6398 rtl_ack_events(tp, status & ~tp->event_slow);
6399
6400 if (status & RTL_EVENT_NAPI_RX)
6401 work_done = rtl_rx(dev, tp, (u32) budget);
6402
6403 if (status & RTL_EVENT_NAPI_TX)
6404 rtl_tx(dev, tp);
6405
6406 if (status & tp->event_slow) {
6407 enable_mask &= ~tp->event_slow;
6408
6409 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
6410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006412 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006413 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00006414
Francois Romieuda78dbf2012-01-26 14:18:23 +01006415 rtl_irq_enable(tp, enable_mask);
6416 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417 }
6418
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006419 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421
Francois Romieu523a6092008-09-10 22:28:56 +02006422static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
6423{
6424 struct rtl8169_private *tp = netdev_priv(dev);
6425
6426 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
6427 return;
6428
6429 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
6430 RTL_W32(RxMissed, 0);
6431}
6432
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433static void rtl8169_down(struct net_device *dev)
6434{
6435 struct rtl8169_private *tp = netdev_priv(dev);
6436 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437
Francois Romieu4876cc12011-03-11 21:07:11 +01006438 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01006440 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006441 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442
Hayes Wang92fc43b2011-07-06 15:58:03 +08006443 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006444 /*
6445 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01006446 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
6447 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006448 */
Francois Romieu523a6092008-09-10 22:28:56 +02006449 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006452 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454 rtl8169_tx_clear(tp);
6455
6456 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00006457
6458 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459}
6460
6461static int rtl8169_close(struct net_device *dev)
6462{
6463 struct rtl8169_private *tp = netdev_priv(dev);
6464 struct pci_dev *pdev = tp->pci_dev;
6465
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006466 pm_runtime_get_sync(&pdev->dev);
6467
Francois Romieucecb5fd2011-04-01 10:21:07 +02006468 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08006469 rtl8169_update_counters(dev);
6470
Francois Romieuda78dbf2012-01-26 14:18:23 +01006471 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006472 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006473
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006475 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
Lekensteyn4ea72442013-07-22 09:53:30 +02006477 cancel_work_sync(&tp->wk.work);
6478
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006479 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00006481 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6482 tp->RxPhyAddr);
6483 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6484 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485 tp->TxDescArray = NULL;
6486 tp->RxDescArray = NULL;
6487
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006488 pm_runtime_put_sync(&pdev->dev);
6489
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490 return 0;
6491}
6492
Francois Romieudc1c00c2012-03-08 10:06:18 +01006493#ifdef CONFIG_NET_POLL_CONTROLLER
6494static void rtl8169_netpoll(struct net_device *dev)
6495{
6496 struct rtl8169_private *tp = netdev_priv(dev);
6497
6498 rtl8169_interrupt(tp->pci_dev->irq, dev);
6499}
6500#endif
6501
Francois Romieudf43ac72012-03-08 09:48:40 +01006502static int rtl_open(struct net_device *dev)
6503{
6504 struct rtl8169_private *tp = netdev_priv(dev);
6505 void __iomem *ioaddr = tp->mmio_addr;
6506 struct pci_dev *pdev = tp->pci_dev;
6507 int retval = -ENOMEM;
6508
6509 pm_runtime_get_sync(&pdev->dev);
6510
6511 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02006512 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01006513 * dma_alloc_coherent provides more.
6514 */
6515 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
6516 &tp->TxPhyAddr, GFP_KERNEL);
6517 if (!tp->TxDescArray)
6518 goto err_pm_runtime_put;
6519
6520 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
6521 &tp->RxPhyAddr, GFP_KERNEL);
6522 if (!tp->RxDescArray)
6523 goto err_free_tx_0;
6524
6525 retval = rtl8169_init_ring(dev);
6526 if (retval < 0)
6527 goto err_free_rx_1;
6528
6529 INIT_WORK(&tp->wk.work, rtl_task);
6530
6531 smp_mb();
6532
6533 rtl_request_firmware(tp);
6534
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006535 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01006536 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
6537 dev->name, dev);
6538 if (retval < 0)
6539 goto err_release_fw_2;
6540
6541 rtl_lock_work(tp);
6542
6543 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
6544
6545 napi_enable(&tp->napi);
6546
6547 rtl8169_init_phy(dev, tp);
6548
6549 __rtl8169_set_features(dev, dev->features);
6550
6551 rtl_pll_power_up(tp);
6552
6553 rtl_hw_start(dev);
6554
6555 netif_start_queue(dev);
6556
6557 rtl_unlock_work(tp);
6558
6559 tp->saved_wolopts = 0;
6560 pm_runtime_put_noidle(&pdev->dev);
6561
6562 rtl8169_check_link_status(dev, tp, ioaddr);
6563out:
6564 return retval;
6565
6566err_release_fw_2:
6567 rtl_release_firmware(tp);
6568 rtl8169_rx_clear(tp);
6569err_free_rx_1:
6570 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6571 tp->RxPhyAddr);
6572 tp->RxDescArray = NULL;
6573err_free_tx_0:
6574 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6575 tp->TxPhyAddr);
6576 tp->TxDescArray = NULL;
6577err_pm_runtime_put:
6578 pm_runtime_put_noidle(&pdev->dev);
6579 goto out;
6580}
6581
Junchang Wang8027aa22012-03-04 23:30:32 +01006582static struct rtnl_link_stats64 *
6583rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584{
6585 struct rtl8169_private *tp = netdev_priv(dev);
6586 void __iomem *ioaddr = tp->mmio_addr;
Junchang Wang8027aa22012-03-04 23:30:32 +01006587 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588
Francois Romieuda78dbf2012-01-26 14:18:23 +01006589 if (netif_running(dev))
Francois Romieu523a6092008-09-10 22:28:56 +02006590 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02006591
Junchang Wang8027aa22012-03-04 23:30:32 +01006592 do {
6593 start = u64_stats_fetch_begin_bh(&tp->rx_stats.syncp);
6594 stats->rx_packets = tp->rx_stats.packets;
6595 stats->rx_bytes = tp->rx_stats.bytes;
6596 } while (u64_stats_fetch_retry_bh(&tp->rx_stats.syncp, start));
6597
6598
6599 do {
6600 start = u64_stats_fetch_begin_bh(&tp->tx_stats.syncp);
6601 stats->tx_packets = tp->tx_stats.packets;
6602 stats->tx_bytes = tp->tx_stats.bytes;
6603 } while (u64_stats_fetch_retry_bh(&tp->tx_stats.syncp, start));
6604
6605 stats->rx_dropped = dev->stats.rx_dropped;
6606 stats->tx_dropped = dev->stats.tx_dropped;
6607 stats->rx_length_errors = dev->stats.rx_length_errors;
6608 stats->rx_errors = dev->stats.rx_errors;
6609 stats->rx_crc_errors = dev->stats.rx_crc_errors;
6610 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
6611 stats->rx_missed_errors = dev->stats.rx_missed_errors;
6612
6613 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614}
6615
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006616static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01006617{
françois romieu065c27c2011-01-03 15:08:12 +00006618 struct rtl8169_private *tp = netdev_priv(dev);
6619
Francois Romieu5d06a992006-02-23 00:47:58 +01006620 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006621 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01006622
6623 netif_device_detach(dev);
6624 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006625
6626 rtl_lock_work(tp);
6627 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006628 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006629 rtl_unlock_work(tp);
6630
6631 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006632}
Francois Romieu5d06a992006-02-23 00:47:58 +01006633
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006634#ifdef CONFIG_PM
6635
6636static int rtl8169_suspend(struct device *device)
6637{
6638 struct pci_dev *pdev = to_pci_dev(device);
6639 struct net_device *dev = pci_get_drvdata(pdev);
6640
6641 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02006642
Francois Romieu5d06a992006-02-23 00:47:58 +01006643 return 0;
6644}
6645
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006646static void __rtl8169_resume(struct net_device *dev)
6647{
françois romieu065c27c2011-01-03 15:08:12 +00006648 struct rtl8169_private *tp = netdev_priv(dev);
6649
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006650 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00006651
6652 rtl_pll_power_up(tp);
6653
Artem Savkovcff4c162012-04-03 10:29:11 +00006654 rtl_lock_work(tp);
6655 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006656 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00006657 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006658
Francois Romieu98ddf982012-01-31 10:47:34 +01006659 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006660}
6661
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006662static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01006663{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006664 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01006665 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006666 struct rtl8169_private *tp = netdev_priv(dev);
6667
6668 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01006669
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006670 if (netif_running(dev))
6671 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01006672
Francois Romieu5d06a992006-02-23 00:47:58 +01006673 return 0;
6674}
6675
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006676static int rtl8169_runtime_suspend(struct device *device)
6677{
6678 struct pci_dev *pdev = to_pci_dev(device);
6679 struct net_device *dev = pci_get_drvdata(pdev);
6680 struct rtl8169_private *tp = netdev_priv(dev);
6681
6682 if (!tp->TxDescArray)
6683 return 0;
6684
Francois Romieuda78dbf2012-01-26 14:18:23 +01006685 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006686 tp->saved_wolopts = __rtl8169_get_wol(tp);
6687 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006688 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006689
6690 rtl8169_net_suspend(dev);
6691
6692 return 0;
6693}
6694
6695static int rtl8169_runtime_resume(struct device *device)
6696{
6697 struct pci_dev *pdev = to_pci_dev(device);
6698 struct net_device *dev = pci_get_drvdata(pdev);
6699 struct rtl8169_private *tp = netdev_priv(dev);
6700
6701 if (!tp->TxDescArray)
6702 return 0;
6703
Francois Romieuda78dbf2012-01-26 14:18:23 +01006704 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006705 __rtl8169_set_wol(tp, tp->saved_wolopts);
6706 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006707 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006708
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006709 rtl8169_init_phy(dev, tp);
6710
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006711 __rtl8169_resume(dev);
6712
6713 return 0;
6714}
6715
6716static int rtl8169_runtime_idle(struct device *device)
6717{
6718 struct pci_dev *pdev = to_pci_dev(device);
6719 struct net_device *dev = pci_get_drvdata(pdev);
6720 struct rtl8169_private *tp = netdev_priv(dev);
6721
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00006722 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006723}
6724
Alexey Dobriyan47145212009-12-14 18:00:08 -08006725static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02006726 .suspend = rtl8169_suspend,
6727 .resume = rtl8169_resume,
6728 .freeze = rtl8169_suspend,
6729 .thaw = rtl8169_resume,
6730 .poweroff = rtl8169_suspend,
6731 .restore = rtl8169_resume,
6732 .runtime_suspend = rtl8169_runtime_suspend,
6733 .runtime_resume = rtl8169_runtime_resume,
6734 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006735};
6736
6737#define RTL8169_PM_OPS (&rtl8169_pm_ops)
6738
6739#else /* !CONFIG_PM */
6740
6741#define RTL8169_PM_OPS NULL
6742
6743#endif /* !CONFIG_PM */
6744
David S. Miller1805b2f2011-10-24 18:18:09 -04006745static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
6746{
6747 void __iomem *ioaddr = tp->mmio_addr;
6748
6749 /* WoL fails with 8168b when the receiver is disabled. */
6750 switch (tp->mac_version) {
6751 case RTL_GIGA_MAC_VER_11:
6752 case RTL_GIGA_MAC_VER_12:
6753 case RTL_GIGA_MAC_VER_17:
6754 pci_clear_master(tp->pci_dev);
6755
6756 RTL_W8(ChipCmd, CmdRxEnb);
6757 /* PCI commit */
6758 RTL_R8(ChipCmd);
6759 break;
6760 default:
6761 break;
6762 }
6763}
6764
Francois Romieu1765f952008-09-13 17:21:40 +02006765static void rtl_shutdown(struct pci_dev *pdev)
6766{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006767 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00006768 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00006769 struct device *d = &pdev->dev;
6770
6771 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02006772
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006773 rtl8169_net_suspend(dev);
6774
Francois Romieucecb5fd2011-04-01 10:21:07 +02006775 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08006776 rtl_rar_set(tp, dev->perm_addr);
6777
Hayes Wang92fc43b2011-07-06 15:58:03 +08006778 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00006779
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006780 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04006781 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
6782 rtl_wol_suspend_quirk(tp);
6783 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00006784 }
6785
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006786 pci_wake_from_d3(pdev, true);
6787 pci_set_power_state(pdev, PCI_D3hot);
6788 }
françois romieu2a15cd22012-03-06 01:14:12 +00006789
6790 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006791}
Francois Romieu5d06a992006-02-23 00:47:58 +01006792
Bill Pembertonbaf63292012-12-03 09:23:28 -05006793static void rtl_remove_one(struct pci_dev *pdev)
Francois Romieue27566e2012-03-08 09:54:01 +01006794{
6795 struct net_device *dev = pci_get_drvdata(pdev);
6796 struct rtl8169_private *tp = netdev_priv(dev);
6797
6798 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6799 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6800 tp->mac_version == RTL_GIGA_MAC_VER_31) {
6801 rtl8168_driver_stop(tp);
6802 }
6803
Devendra Nagaad1be8d2012-05-31 01:51:20 +00006804 netif_napi_del(&tp->napi);
6805
Francois Romieue27566e2012-03-08 09:54:01 +01006806 unregister_netdev(dev);
6807
6808 rtl_release_firmware(tp);
6809
6810 if (pci_dev_run_wake(pdev))
6811 pm_runtime_get_noresume(&pdev->dev);
6812
6813 /* restore original MAC address */
6814 rtl_rar_set(tp, dev->perm_addr);
6815
6816 rtl_disable_msi(pdev, tp);
6817 rtl8169_release_board(pdev, dev, tp->mmio_addr);
Francois Romieue27566e2012-03-08 09:54:01 +01006818}
6819
Francois Romieufa9c3852012-03-08 10:01:50 +01006820static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01006821 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01006822 .ndo_stop = rtl8169_close,
6823 .ndo_get_stats64 = rtl8169_get_stats64,
6824 .ndo_start_xmit = rtl8169_start_xmit,
6825 .ndo_tx_timeout = rtl8169_tx_timeout,
6826 .ndo_validate_addr = eth_validate_addr,
6827 .ndo_change_mtu = rtl8169_change_mtu,
6828 .ndo_fix_features = rtl8169_fix_features,
6829 .ndo_set_features = rtl8169_set_features,
6830 .ndo_set_mac_address = rtl_set_mac_address,
6831 .ndo_do_ioctl = rtl8169_ioctl,
6832 .ndo_set_rx_mode = rtl_set_rx_mode,
6833#ifdef CONFIG_NET_POLL_CONTROLLER
6834 .ndo_poll_controller = rtl8169_netpoll,
6835#endif
6836
6837};
6838
Francois Romieu31fa8b12012-03-08 10:09:40 +01006839static const struct rtl_cfg_info {
6840 void (*hw_start)(struct net_device *);
6841 unsigned int region;
6842 unsigned int align;
6843 u16 event_slow;
6844 unsigned features;
6845 u8 default_ver;
6846} rtl_cfg_infos [] = {
6847 [RTL_CFG_0] = {
6848 .hw_start = rtl_hw_start_8169,
6849 .region = 1,
6850 .align = 0,
6851 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
6852 .features = RTL_FEATURE_GMII,
6853 .default_ver = RTL_GIGA_MAC_VER_01,
6854 },
6855 [RTL_CFG_1] = {
6856 .hw_start = rtl_hw_start_8168,
6857 .region = 2,
6858 .align = 8,
6859 .event_slow = SYSErr | LinkChg | RxOverflow,
6860 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
6861 .default_ver = RTL_GIGA_MAC_VER_11,
6862 },
6863 [RTL_CFG_2] = {
6864 .hw_start = rtl_hw_start_8101,
6865 .region = 2,
6866 .align = 8,
6867 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
6868 PCSTimeout,
6869 .features = RTL_FEATURE_MSI,
6870 .default_ver = RTL_GIGA_MAC_VER_13,
6871 }
6872};
6873
6874/* Cfg9346_Unlock assumed. */
6875static unsigned rtl_try_msi(struct rtl8169_private *tp,
6876 const struct rtl_cfg_info *cfg)
6877{
6878 void __iomem *ioaddr = tp->mmio_addr;
6879 unsigned msi = 0;
6880 u8 cfg2;
6881
6882 cfg2 = RTL_R8(Config2) & ~MSIEnable;
6883 if (cfg->features & RTL_FEATURE_MSI) {
6884 if (pci_enable_msi(tp->pci_dev)) {
6885 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
6886 } else {
6887 cfg2 |= MSIEnable;
6888 msi = RTL_FEATURE_MSI;
6889 }
6890 }
6891 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
6892 RTL_W8(Config2, cfg2);
6893 return msi;
6894}
6895
Hayes Wangc5583862012-07-02 17:23:22 +08006896DECLARE_RTL_COND(rtl_link_list_ready_cond)
6897{
6898 void __iomem *ioaddr = tp->mmio_addr;
6899
6900 return RTL_R8(MCU) & LINK_LIST_RDY;
6901}
6902
6903DECLARE_RTL_COND(rtl_rxtx_empty_cond)
6904{
6905 void __iomem *ioaddr = tp->mmio_addr;
6906
6907 return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
6908}
6909
Bill Pembertonbaf63292012-12-03 09:23:28 -05006910static void rtl_hw_init_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006911{
6912 void __iomem *ioaddr = tp->mmio_addr;
6913 u32 data;
6914
6915 tp->ocp_base = OCP_STD_PHY_BASE;
6916
6917 RTL_W32(MISC, RTL_R32(MISC) | RXDV_GATED_EN);
6918
6919 if (!rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 42))
6920 return;
6921
6922 if (!rtl_udelay_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42))
6923 return;
6924
6925 RTL_W8(ChipCmd, RTL_R8(ChipCmd) & ~(CmdTxEnb | CmdRxEnb));
6926 msleep(1);
6927 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6928
Hayes Wang5f8bcce2012-07-10 08:47:05 +02006929 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08006930 data &= ~(1 << 14);
6931 r8168_mac_ocp_write(tp, 0xe8de, data);
6932
6933 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
6934 return;
6935
Hayes Wang5f8bcce2012-07-10 08:47:05 +02006936 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08006937 data |= (1 << 15);
6938 r8168_mac_ocp_write(tp, 0xe8de, data);
6939
6940 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
6941 return;
6942}
6943
Bill Pembertonbaf63292012-12-03 09:23:28 -05006944static void rtl_hw_initialize(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006945{
6946 switch (tp->mac_version) {
6947 case RTL_GIGA_MAC_VER_40:
6948 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00006949 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00006950 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08006951 case RTL_GIGA_MAC_VER_44:
Hayes Wangc5583862012-07-02 17:23:22 +08006952 rtl_hw_init_8168g(tp);
6953 break;
6954
6955 default:
6956 break;
6957 }
6958}
6959
Bill Pembertonbaf63292012-12-03 09:23:28 -05006960static int
Francois Romieu3b6cf252012-03-08 09:59:04 +01006961rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
6962{
6963 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
6964 const unsigned int region = cfg->region;
6965 struct rtl8169_private *tp;
6966 struct mii_if_info *mii;
6967 struct net_device *dev;
6968 void __iomem *ioaddr;
6969 int chipset, i;
6970 int rc;
6971
6972 if (netif_msg_drv(&debug)) {
6973 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
6974 MODULENAME, RTL8169_VERSION);
6975 }
6976
6977 dev = alloc_etherdev(sizeof (*tp));
6978 if (!dev) {
6979 rc = -ENOMEM;
6980 goto out;
6981 }
6982
6983 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01006984 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006985 tp = netdev_priv(dev);
6986 tp->dev = dev;
6987 tp->pci_dev = pdev;
6988 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
6989
6990 mii = &tp->mii;
6991 mii->dev = dev;
6992 mii->mdio_read = rtl_mdio_read;
6993 mii->mdio_write = rtl_mdio_write;
6994 mii->phy_id_mask = 0x1f;
6995 mii->reg_num_mask = 0x1f;
6996 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
6997
6998 /* disable ASPM completely as that cause random device stop working
6999 * problems as well as full system hangs for some PCIe devices users */
7000 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
7001 PCIE_LINK_STATE_CLKPM);
7002
7003 /* enable device (incl. PCI PM wakeup and hotplug setup) */
7004 rc = pci_enable_device(pdev);
7005 if (rc < 0) {
7006 netif_err(tp, probe, dev, "enable failure\n");
7007 goto err_out_free_dev_1;
7008 }
7009
7010 if (pci_set_mwi(pdev) < 0)
7011 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
7012
7013 /* make sure PCI base addr 1 is MMIO */
7014 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
7015 netif_err(tp, probe, dev,
7016 "region #%d not an MMIO resource, aborting\n",
7017 region);
7018 rc = -ENODEV;
7019 goto err_out_mwi_2;
7020 }
7021
7022 /* check for weird/broken PCI region reporting */
7023 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
7024 netif_err(tp, probe, dev,
7025 "Invalid PCI region size(s), aborting\n");
7026 rc = -ENODEV;
7027 goto err_out_mwi_2;
7028 }
7029
7030 rc = pci_request_regions(pdev, MODULENAME);
7031 if (rc < 0) {
7032 netif_err(tp, probe, dev, "could not request regions\n");
7033 goto err_out_mwi_2;
7034 }
7035
7036 tp->cp_cmd = RxChkSum;
7037
7038 if ((sizeof(dma_addr_t) > 4) &&
7039 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
7040 tp->cp_cmd |= PCIDAC;
7041 dev->features |= NETIF_F_HIGHDMA;
7042 } else {
7043 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
7044 if (rc < 0) {
7045 netif_err(tp, probe, dev, "DMA configuration failed\n");
7046 goto err_out_free_res_3;
7047 }
7048 }
7049
7050 /* ioremap MMIO region */
7051 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
7052 if (!ioaddr) {
7053 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
7054 rc = -EIO;
7055 goto err_out_free_res_3;
7056 }
7057 tp->mmio_addr = ioaddr;
7058
7059 if (!pci_is_pcie(pdev))
7060 netif_info(tp, probe, dev, "not PCI Express\n");
7061
7062 /* Identify chip attached to board */
7063 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
7064
7065 rtl_init_rxcfg(tp);
7066
7067 rtl_irq_disable(tp);
7068
Hayes Wangc5583862012-07-02 17:23:22 +08007069 rtl_hw_initialize(tp);
7070
Francois Romieu3b6cf252012-03-08 09:59:04 +01007071 rtl_hw_reset(tp);
7072
7073 rtl_ack_events(tp, 0xffff);
7074
7075 pci_set_master(pdev);
7076
7077 /*
7078 * Pretend we are using VLANs; This bypasses a nasty bug where
7079 * Interrupts stop flowing on high load on 8110SCd controllers.
7080 */
7081 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
7082 tp->cp_cmd |= RxVlan;
7083
7084 rtl_init_mdio_ops(tp);
7085 rtl_init_pll_power_ops(tp);
7086 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08007087 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007088
7089 rtl8169_print_mac_version(tp);
7090
7091 chipset = tp->mac_version;
7092 tp->txd_version = rtl_chip_infos[chipset].txd_version;
7093
7094 RTL_W8(Cfg9346, Cfg9346_Unlock);
7095 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
Peter Wu8f9d5132013-08-17 11:00:02 +02007096 RTL_W8(Config5, RTL_R8(Config5) & (BWF | MWF | UWF | LanWake | PMEStatus));
Francois Romieu3b6cf252012-03-08 09:59:04 +01007097 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
7098 tp->features |= RTL_FEATURE_WOL;
7099 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
7100 tp->features |= RTL_FEATURE_WOL;
7101 tp->features |= rtl_try_msi(tp, cfg);
7102 RTL_W8(Cfg9346, Cfg9346_Lock);
7103
7104 if (rtl_tbi_enabled(tp)) {
7105 tp->set_speed = rtl8169_set_speed_tbi;
7106 tp->get_settings = rtl8169_gset_tbi;
7107 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
7108 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
7109 tp->link_ok = rtl8169_tbi_link_ok;
7110 tp->do_ioctl = rtl_tbi_ioctl;
7111 } else {
7112 tp->set_speed = rtl8169_set_speed_xmii;
7113 tp->get_settings = rtl8169_gset_xmii;
7114 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
7115 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
7116 tp->link_ok = rtl8169_xmii_link_ok;
7117 tp->do_ioctl = rtl_xmii_ioctl;
7118 }
7119
7120 mutex_init(&tp->wk.mutex);
Kyle McMartin340fea32014-02-24 20:12:28 -05007121 u64_stats_init(&tp->rx_stats.syncp);
7122 u64_stats_init(&tp->tx_stats.syncp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007123
7124 /* Get MAC address */
7125 for (i = 0; i < ETH_ALEN; i++)
7126 dev->dev_addr[i] = RTL_R8(MAC0 + i);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007127
7128 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
7129 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01007130
7131 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
7132
7133 /* don't enable SG, IP_CSUM and TSO by default - it might not work
7134 * properly for all devices */
7135 dev->features |= NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00007136 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01007137
7138 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
Patrick McHardyf6469682013-04-19 02:04:27 +00007139 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_TX |
7140 NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01007141 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
7142 NETIF_F_HIGHDMA;
7143
7144 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
7145 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
Patrick McHardyf6469682013-04-19 02:04:27 +00007146 dev->hw_features &= ~NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01007147
7148 dev->hw_features |= NETIF_F_RXALL;
7149 dev->hw_features |= NETIF_F_RXFCS;
7150
7151 tp->hw_start = cfg->hw_start;
7152 tp->event_slow = cfg->event_slow;
7153
7154 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
7155 ~(RxBOVF | RxFOVF) : ~0;
7156
7157 init_timer(&tp->timer);
7158 tp->timer.data = (unsigned long) dev;
7159 tp->timer.function = rtl8169_phy_timer;
7160
7161 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
7162
7163 rc = register_netdev(dev);
7164 if (rc < 0)
7165 goto err_out_msi_4;
7166
7167 pci_set_drvdata(pdev, dev);
7168
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007169 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
7170 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
7171 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007172 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
7173 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
7174 "tx checksumming: %s]\n",
7175 rtl_chip_infos[chipset].jumbo_max,
7176 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
7177 }
7178
7179 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
7180 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
7181 tp->mac_version == RTL_GIGA_MAC_VER_31) {
7182 rtl8168_driver_start(tp);
7183 }
7184
7185 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
7186
7187 if (pci_dev_run_wake(pdev))
7188 pm_runtime_put_noidle(&pdev->dev);
7189
7190 netif_carrier_off(dev);
7191
7192out:
7193 return rc;
7194
7195err_out_msi_4:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00007196 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007197 rtl_disable_msi(pdev, tp);
7198 iounmap(ioaddr);
7199err_out_free_res_3:
7200 pci_release_regions(pdev);
7201err_out_mwi_2:
7202 pci_clear_mwi(pdev);
7203 pci_disable_device(pdev);
7204err_out_free_dev_1:
7205 free_netdev(dev);
7206 goto out;
7207}
7208
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209static struct pci_driver rtl8169_pci_driver = {
7210 .name = MODULENAME,
7211 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01007212 .probe = rtl_init_one,
Bill Pembertonbaf63292012-12-03 09:23:28 -05007213 .remove = rtl_remove_one,
Francois Romieu1765f952008-09-13 17:21:40 +02007214 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007215 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216};
7217
Devendra Naga3eeb7da2012-10-26 09:27:42 +00007218module_pci_driver(rtl8169_pci_driver);