blob: d6d39df5b3dc9db95f43659318b6e78c23e397dd [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>
hayeswange9746042014-07-11 16:25:58 +080030#include <linux/ipv6.h>
31#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/io.h>
34#include <asm/irq.h>
35
Francois Romieu865c6522008-05-11 14:51:00 +020036#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define MODULENAME "r8169"
38#define PFX MODULENAME ": "
39
françois romieubca03d52011-01-03 15:07:31 +000040#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
41#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
hayeswang01dc7fe2011-03-21 01:50:28 +000042#define FIRMWARE_8168E_1 "rtl_nic/rtl8168e-1.fw"
43#define FIRMWARE_8168E_2 "rtl_nic/rtl8168e-2.fw"
Hayes Wang70090422011-07-06 15:58:06 +080044#define FIRMWARE_8168E_3 "rtl_nic/rtl8168e-3.fw"
Hayes Wangc2218922011-09-06 16:55:18 +080045#define FIRMWARE_8168F_1 "rtl_nic/rtl8168f-1.fw"
46#define FIRMWARE_8168F_2 "rtl_nic/rtl8168f-2.fw"
Hayes Wang5a5e4442011-02-22 17:26:21 +080047#define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
Hayes Wang7e18dca2012-03-30 14:33:02 +080048#define FIRMWARE_8402_1 "rtl_nic/rtl8402-1.fw"
Hayes Wangb3d7b2f2012-03-30 14:48:06 +080049#define FIRMWARE_8411_1 "rtl_nic/rtl8411-1.fw"
hayeswang45dd95c2013-07-08 17:09:01 +080050#define FIRMWARE_8411_2 "rtl_nic/rtl8411-2.fw"
Hayes Wang5598bfe2012-07-02 17:23:21 +080051#define FIRMWARE_8106E_1 "rtl_nic/rtl8106e-1.fw"
hayeswang58152cd2013-04-01 22:23:42 +000052#define FIRMWARE_8106E_2 "rtl_nic/rtl8106e-2.fw"
hayeswangbeb330a2013-04-01 22:23:39 +000053#define FIRMWARE_8168G_2 "rtl_nic/rtl8168g-2.fw"
hayeswang57538c42013-04-01 22:23:40 +000054#define FIRMWARE_8168G_3 "rtl_nic/rtl8168g-3.fw"
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +080055#define FIRMWARE_8168H_1 "rtl_nic/rtl8168h-1.fw"
56#define FIRMWARE_8168H_2 "rtl_nic/rtl8168h-2.fw"
57#define FIRMWARE_8107E_1 "rtl_nic/rtl8107e-1.fw"
58#define FIRMWARE_8107E_2 "rtl_nic/rtl8107e-2.fw"
françois romieubca03d52011-01-03 15:07:31 +000059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#ifdef RTL8169_DEBUG
61#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020062 if (!(expr)) { \
63 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070064 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020065 }
Joe Perches06fa7352007-10-18 21:15:00 +020066#define dprintk(fmt, args...) \
67 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#else
69#define assert(expr) do {} while (0)
70#define dprintk(fmt, args...) do {} while (0)
71#endif /* RTL8169_DEBUG */
72
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020073#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d92005-09-30 16:54:02 -070074 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020075
Julien Ducourthial477206a2012-05-09 00:00:06 +020076#define TX_SLOTS_AVAIL(tp) \
77 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
78
79/* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
80#define TX_FRAGS_READY_FOR(tp,nr_frags) \
81 (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
84 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050085static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Francois Romieu9c14cea2008-07-05 00:21:15 +020087#define MAX_READ_REQUEST_SHIFT 12
Michal Schmidtaee77e42012-09-09 13:55:26 +000088#define TX_DMA_BURST 7 /* Maximum PCI burst, '7' is unlimited */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
90
91#define R8169_REGS_SIZE 256
92#define R8169_NAPI_WEIGHT 64
93#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
Timo Teräs9fba0812013-01-15 21:01:24 +000094#define NUM_RX_DESC 256U /* Number of Rx descriptor registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
96#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
97
98#define RTL8169_TX_TIMEOUT (6*HZ)
99#define RTL8169_PHY_TIMEOUT (10*HZ)
100
101/* write/read MMIO register */
102#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
103#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
104#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
105#define RTL_R8(reg) readb (ioaddr + (reg))
106#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +0000107#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109enum mac_version {
Francois Romieu85bffe62011-04-27 08:22:39 +0200110 RTL_GIGA_MAC_VER_01 = 0,
111 RTL_GIGA_MAC_VER_02,
112 RTL_GIGA_MAC_VER_03,
113 RTL_GIGA_MAC_VER_04,
114 RTL_GIGA_MAC_VER_05,
115 RTL_GIGA_MAC_VER_06,
116 RTL_GIGA_MAC_VER_07,
117 RTL_GIGA_MAC_VER_08,
118 RTL_GIGA_MAC_VER_09,
119 RTL_GIGA_MAC_VER_10,
120 RTL_GIGA_MAC_VER_11,
121 RTL_GIGA_MAC_VER_12,
122 RTL_GIGA_MAC_VER_13,
123 RTL_GIGA_MAC_VER_14,
124 RTL_GIGA_MAC_VER_15,
125 RTL_GIGA_MAC_VER_16,
126 RTL_GIGA_MAC_VER_17,
127 RTL_GIGA_MAC_VER_18,
128 RTL_GIGA_MAC_VER_19,
129 RTL_GIGA_MAC_VER_20,
130 RTL_GIGA_MAC_VER_21,
131 RTL_GIGA_MAC_VER_22,
132 RTL_GIGA_MAC_VER_23,
133 RTL_GIGA_MAC_VER_24,
134 RTL_GIGA_MAC_VER_25,
135 RTL_GIGA_MAC_VER_26,
136 RTL_GIGA_MAC_VER_27,
137 RTL_GIGA_MAC_VER_28,
138 RTL_GIGA_MAC_VER_29,
139 RTL_GIGA_MAC_VER_30,
140 RTL_GIGA_MAC_VER_31,
141 RTL_GIGA_MAC_VER_32,
142 RTL_GIGA_MAC_VER_33,
Hayes Wang70090422011-07-06 15:58:06 +0800143 RTL_GIGA_MAC_VER_34,
Hayes Wangc2218922011-09-06 16:55:18 +0800144 RTL_GIGA_MAC_VER_35,
145 RTL_GIGA_MAC_VER_36,
Hayes Wang7e18dca2012-03-30 14:33:02 +0800146 RTL_GIGA_MAC_VER_37,
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800147 RTL_GIGA_MAC_VER_38,
Hayes Wang5598bfe2012-07-02 17:23:21 +0800148 RTL_GIGA_MAC_VER_39,
Hayes Wangc5583862012-07-02 17:23:22 +0800149 RTL_GIGA_MAC_VER_40,
150 RTL_GIGA_MAC_VER_41,
hayeswang57538c42013-04-01 22:23:40 +0000151 RTL_GIGA_MAC_VER_42,
hayeswang58152cd2013-04-01 22:23:42 +0000152 RTL_GIGA_MAC_VER_43,
hayeswang45dd95c2013-07-08 17:09:01 +0800153 RTL_GIGA_MAC_VER_44,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800154 RTL_GIGA_MAC_VER_45,
155 RTL_GIGA_MAC_VER_46,
156 RTL_GIGA_MAC_VER_47,
157 RTL_GIGA_MAC_VER_48,
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800158 RTL_GIGA_MAC_VER_49,
159 RTL_GIGA_MAC_VER_50,
160 RTL_GIGA_MAC_VER_51,
Francois Romieu85bffe62011-04-27 08:22:39 +0200161 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
Francois Romieu2b7b4312011-04-18 22:53:24 -0700164enum rtl_tx_desc_version {
165 RTL_TD_0 = 0,
166 RTL_TD_1 = 1,
167};
168
Francois Romieud58d46b2011-05-03 16:38:29 +0200169#define JUMBO_1K ETH_DATA_LEN
170#define JUMBO_4K (4*1024 - ETH_HLEN - 2)
171#define JUMBO_6K (6*1024 - ETH_HLEN - 2)
172#define JUMBO_7K (7*1024 - ETH_HLEN - 2)
173#define JUMBO_9K (9*1024 - ETH_HLEN - 2)
174
175#define _R(NAME,TD,FW,SZ,B) { \
176 .name = NAME, \
177 .txd_version = TD, \
178 .fw_name = FW, \
179 .jumbo_max = SZ, \
180 .jumbo_tx_csum = B \
181}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800183static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700185 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200186 const char *fw_name;
Francois Romieud58d46b2011-05-03 16:38:29 +0200187 u16 jumbo_max;
188 bool jumbo_tx_csum;
Francois Romieu85bffe62011-04-27 08:22:39 +0200189} rtl_chip_infos[] = {
190 /* PCI devices. */
191 [RTL_GIGA_MAC_VER_01] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200192 _R("RTL8169", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200193 [RTL_GIGA_MAC_VER_02] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200194 _R("RTL8169s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200195 [RTL_GIGA_MAC_VER_03] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200196 _R("RTL8110s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200197 [RTL_GIGA_MAC_VER_04] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200198 _R("RTL8169sb/8110sb", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200199 [RTL_GIGA_MAC_VER_05] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200200 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200201 [RTL_GIGA_MAC_VER_06] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200202 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200203 /* PCI-E devices. */
204 [RTL_GIGA_MAC_VER_07] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200205 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200206 [RTL_GIGA_MAC_VER_08] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200207 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200208 [RTL_GIGA_MAC_VER_09] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200209 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200210 [RTL_GIGA_MAC_VER_10] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200211 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200212 [RTL_GIGA_MAC_VER_11] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200213 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200214 [RTL_GIGA_MAC_VER_12] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200215 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200216 [RTL_GIGA_MAC_VER_13] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200217 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200218 [RTL_GIGA_MAC_VER_14] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200219 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200220 [RTL_GIGA_MAC_VER_15] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200221 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200222 [RTL_GIGA_MAC_VER_16] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200223 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200224 [RTL_GIGA_MAC_VER_17] =
hayeswangf75761b2014-03-11 15:11:59 +0800225 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200226 [RTL_GIGA_MAC_VER_18] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200227 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200228 [RTL_GIGA_MAC_VER_19] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200229 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200230 [RTL_GIGA_MAC_VER_20] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200231 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200232 [RTL_GIGA_MAC_VER_21] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200233 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200234 [RTL_GIGA_MAC_VER_22] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200235 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200236 [RTL_GIGA_MAC_VER_23] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200237 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200238 [RTL_GIGA_MAC_VER_24] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200239 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200240 [RTL_GIGA_MAC_VER_25] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200241 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1,
242 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200243 [RTL_GIGA_MAC_VER_26] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200244 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2,
245 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200246 [RTL_GIGA_MAC_VER_27] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200247 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200248 [RTL_GIGA_MAC_VER_28] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200249 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200250 [RTL_GIGA_MAC_VER_29] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200251 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
252 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200253 [RTL_GIGA_MAC_VER_30] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200254 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
255 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200256 [RTL_GIGA_MAC_VER_31] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200257 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200258 [RTL_GIGA_MAC_VER_32] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200259 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1,
260 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200261 [RTL_GIGA_MAC_VER_33] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200262 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2,
263 JUMBO_9K, false),
Hayes Wang70090422011-07-06 15:58:06 +0800264 [RTL_GIGA_MAC_VER_34] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200265 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3,
266 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800267 [RTL_GIGA_MAC_VER_35] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200268 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_1,
269 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800270 [RTL_GIGA_MAC_VER_36] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200271 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_2,
272 JUMBO_9K, false),
Hayes Wang7e18dca2012-03-30 14:33:02 +0800273 [RTL_GIGA_MAC_VER_37] =
274 _R("RTL8402", RTL_TD_1, FIRMWARE_8402_1,
275 JUMBO_1K, true),
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800276 [RTL_GIGA_MAC_VER_38] =
277 _R("RTL8411", RTL_TD_1, FIRMWARE_8411_1,
278 JUMBO_9K, false),
Hayes Wang5598bfe2012-07-02 17:23:21 +0800279 [RTL_GIGA_MAC_VER_39] =
280 _R("RTL8106e", RTL_TD_1, FIRMWARE_8106E_1,
281 JUMBO_1K, true),
Hayes Wangc5583862012-07-02 17:23:22 +0800282 [RTL_GIGA_MAC_VER_40] =
hayeswangbeb330a2013-04-01 22:23:39 +0000283 _R("RTL8168g/8111g", RTL_TD_1, FIRMWARE_8168G_2,
Hayes Wangc5583862012-07-02 17:23:22 +0800284 JUMBO_9K, false),
285 [RTL_GIGA_MAC_VER_41] =
286 _R("RTL8168g/8111g", RTL_TD_1, NULL, JUMBO_9K, false),
hayeswang57538c42013-04-01 22:23:40 +0000287 [RTL_GIGA_MAC_VER_42] =
288 _R("RTL8168g/8111g", RTL_TD_1, FIRMWARE_8168G_3,
289 JUMBO_9K, false),
hayeswang58152cd2013-04-01 22:23:42 +0000290 [RTL_GIGA_MAC_VER_43] =
291 _R("RTL8106e", RTL_TD_1, FIRMWARE_8106E_2,
292 JUMBO_1K, true),
hayeswang45dd95c2013-07-08 17:09:01 +0800293 [RTL_GIGA_MAC_VER_44] =
294 _R("RTL8411", RTL_TD_1, FIRMWARE_8411_2,
295 JUMBO_9K, false),
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800296 [RTL_GIGA_MAC_VER_45] =
297 _R("RTL8168h/8111h", RTL_TD_1, FIRMWARE_8168H_1,
298 JUMBO_9K, false),
299 [RTL_GIGA_MAC_VER_46] =
300 _R("RTL8168h/8111h", RTL_TD_1, FIRMWARE_8168H_2,
301 JUMBO_9K, false),
302 [RTL_GIGA_MAC_VER_47] =
303 _R("RTL8107e", RTL_TD_1, FIRMWARE_8107E_1,
304 JUMBO_1K, false),
305 [RTL_GIGA_MAC_VER_48] =
306 _R("RTL8107e", RTL_TD_1, FIRMWARE_8107E_2,
307 JUMBO_1K, false),
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800308 [RTL_GIGA_MAC_VER_49] =
309 _R("RTL8168ep/8111ep", RTL_TD_1, NULL,
310 JUMBO_9K, false),
311 [RTL_GIGA_MAC_VER_50] =
312 _R("RTL8168ep/8111ep", RTL_TD_1, NULL,
313 JUMBO_9K, false),
314 [RTL_GIGA_MAC_VER_51] =
315 _R("RTL8168ep/8111ep", RTL_TD_1, NULL,
316 JUMBO_9K, false),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318#undef _R
319
Francois Romieubcf0bf92006-07-26 23:14:13 +0200320enum cfg_version {
321 RTL_CFG_0 = 0x00,
322 RTL_CFG_1,
323 RTL_CFG_2
324};
325
Benoit Taine9baa3c32014-08-08 15:56:03 +0200326static const struct pci_device_id rtl8169_pci_tbl[] = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200327 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200328 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200329 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100330 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200331 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
Francois Romieu2a35cfa2012-08-31 23:06:17 +0200332 { PCI_VENDOR_ID_DLINK, 0x4300,
333 PCI_VENDOR_ID_DLINK, 0x4b10, 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200334 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000335 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200336 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200337 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
338 { PCI_VENDOR_ID_LINKSYS, 0x1032,
339 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100340 { 0x0001, 0x8168,
341 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 {0,},
343};
344
345MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
346
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000347static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700348static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200349static struct {
350 u32 msg_enable;
351} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Francois Romieu07d3f512007-02-21 22:40:46 +0100353enum rtl_registers {
354 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100355 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100356 MAR0 = 8, /* Multicast filter. */
357 CounterAddrLow = 0x10,
358 CounterAddrHigh = 0x14,
359 TxDescStartAddrLow = 0x20,
360 TxDescStartAddrHigh = 0x24,
361 TxHDescStartAddrLow = 0x28,
362 TxHDescStartAddrHigh = 0x2c,
363 FLASH = 0x30,
364 ERSR = 0x36,
365 ChipCmd = 0x37,
366 TxPoll = 0x38,
367 IntrMask = 0x3c,
368 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700369
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800370 TxConfig = 0x40,
371#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
372#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
373
374 RxConfig = 0x44,
375#define RX128_INT_EN (1 << 15) /* 8111c and later */
376#define RX_MULTI_EN (1 << 14) /* 8111c only */
377#define RXCFG_FIFO_SHIFT 13
378 /* No threshold before first PCI xfer */
379#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
hayeswangbeb330a2013-04-01 22:23:39 +0000380#define RX_EARLY_OFF (1 << 11)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800381#define RXCFG_DMA_SHIFT 8
382 /* Unlimited maximum PCI burst. */
383#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700384
Francois Romieu07d3f512007-02-21 22:40:46 +0100385 RxMissed = 0x4c,
386 Cfg9346 = 0x50,
387 Config0 = 0x51,
388 Config1 = 0x52,
389 Config2 = 0x53,
Francois Romieud387b422012-04-17 11:12:01 +0200390#define PME_SIGNAL (1 << 5) /* 8168c and later */
391
Francois Romieu07d3f512007-02-21 22:40:46 +0100392 Config3 = 0x54,
393 Config4 = 0x55,
394 Config5 = 0x56,
395 MultiIntr = 0x5c,
396 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100397 PHYstatus = 0x6c,
398 RxMaxSize = 0xda,
399 CPlusCmd = 0xe0,
400 IntrMitigate = 0xe2,
401 RxDescAddrLow = 0xe4,
402 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000403 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
404
405#define NoEarlyTx 0x3f /* Max value : no early transmit. */
406
407 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
408
409#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800410#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000411
Francois Romieu07d3f512007-02-21 22:40:46 +0100412 FuncEvent = 0xf0,
413 FuncEventMask = 0xf4,
414 FuncPresetState = 0xf8,
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800415 IBCR0 = 0xf8,
416 IBCR2 = 0xf9,
417 IBIMR0 = 0xfa,
418 IBISR0 = 0xfb,
Francois Romieu07d3f512007-02-21 22:40:46 +0100419 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
Francois Romieuf162a5d2008-06-01 22:37:49 +0200422enum rtl8110_registers {
423 TBICSR = 0x64,
424 TBI_ANAR = 0x68,
425 TBI_LPAR = 0x6a,
426};
427
428enum rtl8168_8101_registers {
429 CSIDR = 0x64,
430 CSIAR = 0x68,
431#define CSIAR_FLAG 0x80000000
432#define CSIAR_WRITE_CMD 0x80000000
433#define CSIAR_BYTE_ENABLE 0x0f
434#define CSIAR_BYTE_ENABLE_SHIFT 12
435#define CSIAR_ADDR_MASK 0x0fff
Hayes Wang7e18dca2012-03-30 14:33:02 +0800436#define CSIAR_FUNC_CARD 0x00000000
437#define CSIAR_FUNC_SDIO 0x00010000
438#define CSIAR_FUNC_NIC 0x00020000
hayeswang45dd95c2013-07-08 17:09:01 +0800439#define CSIAR_FUNC_NIC2 0x00010000
françois romieu065c27c2011-01-03 15:08:12 +0000440 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200441 EPHYAR = 0x80,
442#define EPHYAR_FLAG 0x80000000
443#define EPHYAR_WRITE_CMD 0x80000000
444#define EPHYAR_REG_MASK 0x1f
445#define EPHYAR_REG_SHIFT 16
446#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800447 DLLPR = 0xd0,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800448#define PFM_EN (1 << 6)
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800449#define TX_10M_PS_EN (1 << 7)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200450 DBG_REG = 0xd1,
451#define FIX_NAK_1 (1 << 4)
452#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800453 TWSI = 0xd2,
454 MCU = 0xd3,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800455#define NOW_IS_OOB (1 << 7)
Hayes Wangc5583862012-07-02 17:23:22 +0800456#define TX_EMPTY (1 << 5)
457#define RX_EMPTY (1 << 4)
458#define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800459#define EN_NDP (1 << 3)
460#define EN_OOB_RESET (1 << 2)
Hayes Wangc5583862012-07-02 17:23:22 +0800461#define LINK_LIST_RDY (1 << 1)
françois romieudaf9df62009-10-07 12:44:20 +0000462 EFUSEAR = 0xdc,
463#define EFUSEAR_FLAG 0x80000000
464#define EFUSEAR_WRITE_CMD 0x80000000
465#define EFUSEAR_READ_CMD 0x00000000
466#define EFUSEAR_REG_MASK 0x03ff
467#define EFUSEAR_REG_SHIFT 8
468#define EFUSEAR_DATA_MASK 0xff
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800469 MISC_1 = 0xf2,
470#define PFM_D3COLD_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200471};
472
françois romieuc0e45c12011-01-03 15:08:04 +0000473enum rtl8168_registers {
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800474 LED_FREQ = 0x1a,
475 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000476 ERIDR = 0x70,
477 ERIAR = 0x74,
478#define ERIAR_FLAG 0x80000000
479#define ERIAR_WRITE_CMD 0x80000000
480#define ERIAR_READ_CMD 0x00000000
481#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000482#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800483#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
484#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
485#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800486#define ERIAR_OOB (0x02 << ERIAR_TYPE_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800487#define ERIAR_MASK_SHIFT 12
488#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
489#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800490#define ERIAR_MASK_0100 (0x4 << ERIAR_MASK_SHIFT)
Hayes Wangc5583862012-07-02 17:23:22 +0800491#define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800492#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000493 EPHY_RXER_NUM = 0x7c,
494 OCPDR = 0xb0, /* OCP GPHY access */
495#define OCPDR_WRITE_CMD 0x80000000
496#define OCPDR_READ_CMD 0x00000000
497#define OCPDR_REG_MASK 0x7f
498#define OCPDR_GPHY_REG_SHIFT 16
499#define OCPDR_DATA_MASK 0xffff
500 OCPAR = 0xb4,
501#define OCPAR_FLAG 0x80000000
502#define OCPAR_GPHY_WRITE_CMD 0x8000f060
503#define OCPAR_GPHY_READ_CMD 0x0000f060
Hayes Wangc5583862012-07-02 17:23:22 +0800504 GPHY_OCP = 0xb8,
hayeswang01dc7fe2011-03-21 01:50:28 +0000505 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
506 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200507#define TXPLA_RST (1 << 29)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800508#define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800509#define PWM_EN (1 << 22)
Hayes Wangc5583862012-07-02 17:23:22 +0800510#define RXDV_GATED_EN (1 << 19)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800511#define EARLY_TALLY_EN (1 << 16)
françois romieuc0e45c12011-01-03 15:08:04 +0000512};
513
Francois Romieu07d3f512007-02-21 22:40:46 +0100514enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100516 SYSErr = 0x8000,
517 PCSTimeout = 0x4000,
518 SWInt = 0x0100,
519 TxDescUnavail = 0x0080,
520 RxFIFOOver = 0x0040,
521 LinkChg = 0x0020,
522 RxOverflow = 0x0010,
523 TxErr = 0x0008,
524 TxOK = 0x0004,
525 RxErr = 0x0002,
526 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400529 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200530 RxFOVF = (1 << 23),
531 RxRWT = (1 << 22),
532 RxRES = (1 << 21),
533 RxRUNT = (1 << 20),
534 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 /* ChipCmdBits */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800537 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100538 CmdReset = 0x10,
539 CmdRxEnb = 0x08,
540 CmdTxEnb = 0x04,
541 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Francois Romieu275391a2007-02-23 23:50:28 +0100543 /* TXPoll register p.5 */
544 HPQ = 0x80, /* Poll cmd on the high prio queue */
545 NPQ = 0x40, /* Poll cmd on the low prio queue */
546 FSWInt = 0x01, /* Forced software interrupt */
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100549 Cfg9346_Lock = 0x00,
550 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100553 AcceptErr = 0x20,
554 AcceptRunt = 0x10,
555 AcceptBroadcast = 0x08,
556 AcceptMulticast = 0x04,
557 AcceptMyPhys = 0x02,
558 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200559#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 /* TxConfigBits */
562 TxInterFrameGapShift = 24,
563 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
564
Francois Romieu5d06a992006-02-23 00:47:58 +0100565 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200566 LEDS1 = (1 << 7),
567 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200568 Speed_down = (1 << 4),
569 MEMMAP = (1 << 3),
570 IOMAP = (1 << 2),
571 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100572 PMEnable = (1 << 0), /* Power Management Enable */
573
Francois Romieu6dccd162007-02-13 23:38:05 +0100574 /* Config2 register p. 25 */
hayeswang57538c42013-04-01 22:23:40 +0000575 ClkReqEn = (1 << 7), /* Clock Request Enable */
françois romieu2ca6cf02011-12-15 08:37:43 +0000576 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100577 PCI_Clock_66MHz = 0x01,
578 PCI_Clock_33MHz = 0x00,
579
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100580 /* Config3 register p.25 */
581 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
582 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200583 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
hayeswangb51ecea2014-07-09 14:52:51 +0800584 Rdy_to_L23 = (1 << 1), /* L23 Enable */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200585 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100586
Francois Romieud58d46b2011-05-03 16:38:29 +0200587 /* Config4 register */
588 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
589
Francois Romieu5d06a992006-02-23 00:47:58 +0100590 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100591 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
592 MWF = (1 << 5), /* Accept Multicast wakeup frame */
593 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200594 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100595 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100596 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
hayeswang57538c42013-04-01 22:23:40 +0000597 ASPM_en = (1 << 0), /* ASPM enable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* TBICSR p.28 */
600 TBIReset = 0x80000000,
601 TBILoopback = 0x40000000,
602 TBINwEnable = 0x20000000,
603 TBINwRestart = 0x10000000,
604 TBILinkOk = 0x02000000,
605 TBINwComplete = 0x01000000,
606
607 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200608 EnableBist = (1 << 15), // 8168 8101
609 Mac_dbgo_oe = (1 << 14), // 8168 8101
610 Normal_mode = (1 << 13), // unused
611 Force_half_dup = (1 << 12), // 8168 8101
612 Force_rxflow_en = (1 << 11), // 8168 8101
613 Force_txflow_en = (1 << 10), // 8168 8101
614 Cxpl_dbg_sel = (1 << 9), // 8168 8101
615 ASF = (1 << 8), // 8168 8101
616 PktCntrDisable = (1 << 7), // 8168 8101
617 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 RxVlan = (1 << 6),
619 RxChkSum = (1 << 5),
620 PCIDAC = (1 << 4),
621 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100622 INTT_0 = 0x0000, // 8168
623 INTT_1 = 0x0001, // 8168
624 INTT_2 = 0x0002, // 8168
625 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100628 TBI_Enable = 0x80,
629 TxFlowCtrl = 0x40,
630 RxFlowCtrl = 0x20,
631 _1000bpsF = 0x10,
632 _100bps = 0x08,
633 _10bps = 0x04,
634 LinkStatus = 0x02,
635 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100638 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200639
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200640 /* ResetCounterCommand */
641 CounterReset = 0x1,
642
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200643 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100644 CounterDump = 0x8,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800645
646 /* magic enable v2 */
647 MagicPacket_v2 = (1 << 16), /* Wake up when receives a Magic Packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648};
649
Francois Romieu2b7b4312011-04-18 22:53:24 -0700650enum rtl_desc_bit {
651 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
653 RingEnd = (1 << 30), /* End of descriptor ring */
654 FirstFrag = (1 << 29), /* First segment of a packet */
655 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700656};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Francois Romieu2b7b4312011-04-18 22:53:24 -0700658/* Generic case. */
659enum rtl_tx_desc_bit {
660 /* First doubleword. */
661 TD_LSO = (1 << 27), /* Large Send Offload */
662#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Francois Romieu2b7b4312011-04-18 22:53:24 -0700664 /* Second doubleword. */
665 TxVlanTag = (1 << 17), /* Add VLAN tag */
666};
667
668/* 8169, 8168b and 810x except 8102e. */
669enum rtl_tx_desc_bit_0 {
670 /* First doubleword. */
671#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
672 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
673 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
674 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
675};
676
677/* 8102e, 8168c and beyond. */
678enum rtl_tx_desc_bit_1 {
hayeswangbdfa4ed2014-07-11 16:25:57 +0800679 /* First doubleword. */
680 TD1_GTSENV4 = (1 << 26), /* Giant Send for IPv4 */
hayeswange9746042014-07-11 16:25:58 +0800681 TD1_GTSENV6 = (1 << 25), /* Giant Send for IPv6 */
hayeswangbdfa4ed2014-07-11 16:25:57 +0800682#define GTTCPHO_SHIFT 18
hayeswange9746042014-07-11 16:25:58 +0800683#define GTTCPHO_MAX 0x7fU
hayeswangbdfa4ed2014-07-11 16:25:57 +0800684
Francois Romieu2b7b4312011-04-18 22:53:24 -0700685 /* Second doubleword. */
hayeswange9746042014-07-11 16:25:58 +0800686#define TCPHO_SHIFT 18
687#define TCPHO_MAX 0x3ffU
Francois Romieu2b7b4312011-04-18 22:53:24 -0700688#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
hayeswange9746042014-07-11 16:25:58 +0800689 TD1_IPv6_CS = (1 << 28), /* Calculate IPv6 checksum */
690 TD1_IPv4_CS = (1 << 29), /* Calculate IPv4 checksum */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700691 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
692 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
693};
694
Francois Romieu2b7b4312011-04-18 22:53:24 -0700695enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 /* Rx private */
697 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
698 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
699
700#define RxProtoUDP (PID1)
701#define RxProtoTCP (PID0)
702#define RxProtoIP (PID1 | PID0)
703#define RxProtoMask RxProtoIP
704
705 IPFail = (1 << 16), /* IP checksum failed */
706 UDPFail = (1 << 15), /* UDP/IP checksum failed */
707 TCPFail = (1 << 14), /* TCP/IP checksum failed */
708 RxVlanTag = (1 << 16), /* VLAN tag available */
709};
710
711#define RsvdMask 0x3fffc000
712
713struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200714 __le32 opts1;
715 __le32 opts2;
716 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717};
718
719struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200720 __le32 opts1;
721 __le32 opts2;
722 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723};
724
725struct ring_info {
726 struct sk_buff *skb;
727 u32 len;
728 u8 __pad[sizeof(void *) - sizeof(u32)];
729};
730
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200731enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200732 RTL_FEATURE_WOL = (1 << 0),
733 RTL_FEATURE_MSI = (1 << 1),
734 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200735};
736
Ivan Vecera355423d2009-02-06 21:49:57 -0800737struct rtl8169_counters {
738 __le64 tx_packets;
739 __le64 rx_packets;
740 __le64 tx_errors;
741 __le32 rx_errors;
742 __le16 rx_missed;
743 __le16 align_errors;
744 __le32 tx_one_collision;
745 __le32 tx_multi_collision;
746 __le64 rx_unicast;
747 __le64 rx_broadcast;
748 __le32 rx_multicast;
749 __le16 tx_aborted;
750 __le16 tx_underun;
751};
752
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200753struct rtl8169_tc_offsets {
754 bool inited;
755 __le64 tx_errors;
756 __le32 tx_multi_collision;
757 __le32 rx_multicast;
758 __le16 tx_aborted;
759};
760
Francois Romieuda78dbf2012-01-26 14:18:23 +0100761enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100762 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100763 RTL_FLAG_TASK_SLOW_PENDING,
764 RTL_FLAG_TASK_RESET_PENDING,
765 RTL_FLAG_TASK_PHY_PENDING,
766 RTL_FLAG_MAX
767};
768
Junchang Wang8027aa22012-03-04 23:30:32 +0100769struct rtl8169_stats {
770 u64 packets;
771 u64 bytes;
772 struct u64_stats_sync syncp;
773};
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775struct rtl8169_private {
776 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200777 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000778 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700779 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200780 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700781 u16 txd_version;
782 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
784 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100786 struct rtl8169_stats rx_stats;
787 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
789 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
790 dma_addr_t TxPhyAddr;
791 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000792 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct timer_list timer;
795 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100796
797 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000798
799 struct mdio_ops {
Francois Romieu24192212012-07-06 20:19:42 +0200800 void (*write)(struct rtl8169_private *, int, int);
801 int (*read)(struct rtl8169_private *, int);
françois romieuc0e45c12011-01-03 15:08:04 +0000802 } mdio_ops;
803
françois romieu065c27c2011-01-03 15:08:12 +0000804 struct pll_power_ops {
805 void (*down)(struct rtl8169_private *);
806 void (*up)(struct rtl8169_private *);
807 } pll_power_ops;
808
Francois Romieud58d46b2011-05-03 16:38:29 +0200809 struct jumbo_ops {
810 void (*enable)(struct rtl8169_private *);
811 void (*disable)(struct rtl8169_private *);
812 } jumbo_ops;
813
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800814 struct csi_ops {
Francois Romieu52989f02012-07-06 13:37:00 +0200815 void (*write)(struct rtl8169_private *, int, int);
816 u32 (*read)(struct rtl8169_private *, int);
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800817 } csi_ops;
818
Oliver Neukum54405cd2011-01-06 21:55:13 +0100819 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200820 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000821 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100822 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000823 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800825 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
hayeswang5888d3f2014-07-11 16:25:56 +0800826 bool (*tso_csum)(struct rtl8169_private *, struct sk_buff *, u32 *);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100827
828 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100829 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
830 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100831 struct work_struct work;
832 } wk;
833
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200834 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200835
836 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800837 struct rtl8169_counters counters;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200838 struct rtl8169_tc_offsets tc_offset;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000839 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400840 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000841
Francois Romieub6ffd972011-06-17 17:00:05 +0200842 struct rtl_fw {
843 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200844
845#define RTL_VER_SIZE 32
846
847 char version[RTL_VER_SIZE];
848
849 struct rtl_fw_phy_action {
850 __le32 *code;
851 size_t size;
852 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200853 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300854#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Hayes Wangc5583862012-07-02 17:23:22 +0800855
856 u32 ocp_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857};
858
Ralf Baechle979b6c12005-06-13 14:30:40 -0700859MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700862MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200863module_param_named(debug, debug.msg_enable, int, 0);
864MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865MODULE_LICENSE("GPL");
866MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000867MODULE_FIRMWARE(FIRMWARE_8168D_1);
868MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000869MODULE_FIRMWARE(FIRMWARE_8168E_1);
870MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400871MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800872MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800873MODULE_FIRMWARE(FIRMWARE_8168F_1);
874MODULE_FIRMWARE(FIRMWARE_8168F_2);
Hayes Wang7e18dca2012-03-30 14:33:02 +0800875MODULE_FIRMWARE(FIRMWARE_8402_1);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800876MODULE_FIRMWARE(FIRMWARE_8411_1);
hayeswang45dd95c2013-07-08 17:09:01 +0800877MODULE_FIRMWARE(FIRMWARE_8411_2);
Hayes Wang5598bfe2012-07-02 17:23:21 +0800878MODULE_FIRMWARE(FIRMWARE_8106E_1);
hayeswang58152cd2013-04-01 22:23:42 +0000879MODULE_FIRMWARE(FIRMWARE_8106E_2);
hayeswangbeb330a2013-04-01 22:23:39 +0000880MODULE_FIRMWARE(FIRMWARE_8168G_2);
hayeswang57538c42013-04-01 22:23:40 +0000881MODULE_FIRMWARE(FIRMWARE_8168G_3);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800882MODULE_FIRMWARE(FIRMWARE_8168H_1);
883MODULE_FIRMWARE(FIRMWARE_8168H_2);
Francois Romieua3bf5c42014-08-26 22:40:38 +0200884MODULE_FIRMWARE(FIRMWARE_8107E_1);
885MODULE_FIRMWARE(FIRMWARE_8107E_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Francois Romieuda78dbf2012-01-26 14:18:23 +0100887static void rtl_lock_work(struct rtl8169_private *tp)
888{
889 mutex_lock(&tp->wk.mutex);
890}
891
892static void rtl_unlock_work(struct rtl8169_private *tp)
893{
894 mutex_unlock(&tp->wk.mutex);
895}
896
Francois Romieud58d46b2011-05-03 16:38:29 +0200897static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
898{
Jiang Liu7d7903b2012-07-24 17:20:16 +0800899 pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
900 PCI_EXP_DEVCTL_READRQ, force);
Francois Romieud58d46b2011-05-03 16:38:29 +0200901}
902
Francois Romieuffc46952012-07-06 14:19:23 +0200903struct rtl_cond {
904 bool (*check)(struct rtl8169_private *);
905 const char *msg;
906};
907
908static void rtl_udelay(unsigned int d)
909{
910 udelay(d);
911}
912
913static bool rtl_loop_wait(struct rtl8169_private *tp, const struct rtl_cond *c,
914 void (*delay)(unsigned int), unsigned int d, int n,
915 bool high)
916{
917 int i;
918
919 for (i = 0; i < n; i++) {
920 delay(d);
921 if (c->check(tp) == high)
922 return true;
923 }
Francois Romieu82e316e2012-07-11 23:39:51 +0200924 netif_err(tp, drv, tp->dev, "%s == %d (loop: %d, delay: %d).\n",
925 c->msg, !high, n, d);
Francois Romieuffc46952012-07-06 14:19:23 +0200926 return false;
927}
928
929static bool rtl_udelay_loop_wait_high(struct rtl8169_private *tp,
930 const struct rtl_cond *c,
931 unsigned int d, int n)
932{
933 return rtl_loop_wait(tp, c, rtl_udelay, d, n, true);
934}
935
936static bool rtl_udelay_loop_wait_low(struct rtl8169_private *tp,
937 const struct rtl_cond *c,
938 unsigned int d, int n)
939{
940 return rtl_loop_wait(tp, c, rtl_udelay, d, n, false);
941}
942
943static bool rtl_msleep_loop_wait_high(struct rtl8169_private *tp,
944 const struct rtl_cond *c,
945 unsigned int d, int n)
946{
947 return rtl_loop_wait(tp, c, msleep, d, n, true);
948}
949
950static bool rtl_msleep_loop_wait_low(struct rtl8169_private *tp,
951 const struct rtl_cond *c,
952 unsigned int d, int n)
953{
954 return rtl_loop_wait(tp, c, msleep, d, n, false);
955}
956
957#define DECLARE_RTL_COND(name) \
958static bool name ## _check(struct rtl8169_private *); \
959 \
960static const struct rtl_cond name = { \
961 .check = name ## _check, \
962 .msg = #name \
963}; \
964 \
965static bool name ## _check(struct rtl8169_private *tp)
966
Hayes Wangc5583862012-07-02 17:23:22 +0800967static bool rtl_ocp_reg_failure(struct rtl8169_private *tp, u32 reg)
968{
969 if (reg & 0xffff0001) {
970 netif_err(tp, drv, tp->dev, "Invalid ocp reg %x!\n", reg);
971 return true;
972 }
973 return false;
974}
975
976DECLARE_RTL_COND(rtl_ocp_gphy_cond)
977{
978 void __iomem *ioaddr = tp->mmio_addr;
979
980 return RTL_R32(GPHY_OCP) & OCPAR_FLAG;
981}
982
983static void r8168_phy_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
984{
985 void __iomem *ioaddr = tp->mmio_addr;
986
987 if (rtl_ocp_reg_failure(tp, reg))
988 return;
989
990 RTL_W32(GPHY_OCP, OCPAR_FLAG | (reg << 15) | data);
991
992 rtl_udelay_loop_wait_low(tp, &rtl_ocp_gphy_cond, 25, 10);
993}
994
995static u16 r8168_phy_ocp_read(struct rtl8169_private *tp, u32 reg)
996{
997 void __iomem *ioaddr = tp->mmio_addr;
998
999 if (rtl_ocp_reg_failure(tp, reg))
1000 return 0;
1001
1002 RTL_W32(GPHY_OCP, reg << 15);
1003
1004 return rtl_udelay_loop_wait_high(tp, &rtl_ocp_gphy_cond, 25, 10) ?
1005 (RTL_R32(GPHY_OCP) & 0xffff) : ~0;
1006}
1007
Hayes Wangc5583862012-07-02 17:23:22 +08001008static void r8168_mac_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1009{
1010 void __iomem *ioaddr = tp->mmio_addr;
1011
1012 if (rtl_ocp_reg_failure(tp, reg))
1013 return;
1014
1015 RTL_W32(OCPDR, OCPAR_FLAG | (reg << 15) | data);
Hayes Wangc5583862012-07-02 17:23:22 +08001016}
1017
1018static u16 r8168_mac_ocp_read(struct rtl8169_private *tp, u32 reg)
1019{
1020 void __iomem *ioaddr = tp->mmio_addr;
1021
1022 if (rtl_ocp_reg_failure(tp, reg))
1023 return 0;
1024
1025 RTL_W32(OCPDR, reg << 15);
1026
Hayes Wang3a83ad12012-07-11 20:31:56 +08001027 return RTL_R32(OCPDR);
Hayes Wangc5583862012-07-02 17:23:22 +08001028}
1029
1030#define OCP_STD_PHY_BASE 0xa400
1031
1032static void r8168g_mdio_write(struct rtl8169_private *tp, int reg, int value)
1033{
1034 if (reg == 0x1f) {
1035 tp->ocp_base = value ? value << 4 : OCP_STD_PHY_BASE;
1036 return;
1037 }
1038
1039 if (tp->ocp_base != OCP_STD_PHY_BASE)
1040 reg -= 0x10;
1041
1042 r8168_phy_ocp_write(tp, tp->ocp_base + reg * 2, value);
1043}
1044
1045static int r8168g_mdio_read(struct rtl8169_private *tp, int reg)
1046{
1047 if (tp->ocp_base != OCP_STD_PHY_BASE)
1048 reg -= 0x10;
1049
1050 return r8168_phy_ocp_read(tp, tp->ocp_base + reg * 2);
1051}
1052
hayeswangeee37862013-04-01 22:23:38 +00001053static void mac_mcu_write(struct rtl8169_private *tp, int reg, int value)
1054{
1055 if (reg == 0x1f) {
1056 tp->ocp_base = value << 4;
1057 return;
1058 }
1059
1060 r8168_mac_ocp_write(tp, tp->ocp_base + reg, value);
1061}
1062
1063static int mac_mcu_read(struct rtl8169_private *tp, int reg)
1064{
1065 return r8168_mac_ocp_read(tp, tp->ocp_base + reg);
1066}
1067
Francois Romieuffc46952012-07-06 14:19:23 +02001068DECLARE_RTL_COND(rtl_phyar_cond)
1069{
1070 void __iomem *ioaddr = tp->mmio_addr;
1071
1072 return RTL_R32(PHYAR) & 0x80000000;
1073}
1074
Francois Romieu24192212012-07-06 20:19:42 +02001075static void r8169_mdio_write(struct rtl8169_private *tp, int reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
Francois Romieu24192212012-07-06 20:19:42 +02001077 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Francois Romieu24192212012-07-06 20:19:42 +02001079 RTL_W32(PHYAR, 0x80000000 | (reg & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Francois Romieuffc46952012-07-06 14:19:23 +02001081 rtl_udelay_loop_wait_low(tp, &rtl_phyar_cond, 25, 20);
Timo Teräs024a07b2010-06-06 15:38:47 -07001082 /*
Timo Teräs81a95f02010-06-09 17:31:48 -07001083 * According to hardware specs a 20us delay is required after write
1084 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -07001085 */
Timo Teräs81a95f02010-06-09 17:31:48 -07001086 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
Francois Romieu24192212012-07-06 20:19:42 +02001089static int r8169_mdio_read(struct rtl8169_private *tp, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Francois Romieu24192212012-07-06 20:19:42 +02001091 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieuffc46952012-07-06 14:19:23 +02001092 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Francois Romieu24192212012-07-06 20:19:42 +02001094 RTL_W32(PHYAR, 0x0 | (reg & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Francois Romieuffc46952012-07-06 14:19:23 +02001096 value = rtl_udelay_loop_wait_high(tp, &rtl_phyar_cond, 25, 20) ?
1097 RTL_R32(PHYAR) & 0xffff : ~0;
1098
Timo Teräs81a95f02010-06-09 17:31:48 -07001099 /*
1100 * According to hardware specs a 20us delay is required after read
1101 * complete indication, but before sending next command.
1102 */
1103 udelay(20);
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return value;
1106}
1107
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001108DECLARE_RTL_COND(rtl_ocpar_cond)
1109{
1110 void __iomem *ioaddr = tp->mmio_addr;
1111
1112 return RTL_R32(OCPAR) & OCPAR_FLAG;
1113}
1114
Francois Romieu24192212012-07-06 20:19:42 +02001115static void r8168dp_1_mdio_access(struct rtl8169_private *tp, int reg, u32 data)
françois romieuc0e45c12011-01-03 15:08:04 +00001116{
Francois Romieu24192212012-07-06 20:19:42 +02001117 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001118
Francois Romieu24192212012-07-06 20:19:42 +02001119 RTL_W32(OCPDR, data | ((reg & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
françois romieuc0e45c12011-01-03 15:08:04 +00001120 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
1121 RTL_W32(EPHY_RXER_NUM, 0);
1122
Francois Romieuffc46952012-07-06 14:19:23 +02001123 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 1000, 100);
françois romieuc0e45c12011-01-03 15:08:04 +00001124}
1125
Francois Romieu24192212012-07-06 20:19:42 +02001126static void r8168dp_1_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieuc0e45c12011-01-03 15:08:04 +00001127{
Francois Romieu24192212012-07-06 20:19:42 +02001128 r8168dp_1_mdio_access(tp, reg,
1129 OCPDR_WRITE_CMD | (value & OCPDR_DATA_MASK));
françois romieuc0e45c12011-01-03 15:08:04 +00001130}
1131
Francois Romieu24192212012-07-06 20:19:42 +02001132static int r8168dp_1_mdio_read(struct rtl8169_private *tp, int reg)
françois romieuc0e45c12011-01-03 15:08:04 +00001133{
Francois Romieu24192212012-07-06 20:19:42 +02001134 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001135
Francois Romieu24192212012-07-06 20:19:42 +02001136 r8168dp_1_mdio_access(tp, reg, OCPDR_READ_CMD);
françois romieuc0e45c12011-01-03 15:08:04 +00001137
1138 mdelay(1);
1139 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
1140 RTL_W32(EPHY_RXER_NUM, 0);
1141
Francois Romieuffc46952012-07-06 14:19:23 +02001142 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 1000, 100) ?
1143 RTL_R32(OCPDR) & OCPDR_DATA_MASK : ~0;
françois romieuc0e45c12011-01-03 15:08:04 +00001144}
1145
françois romieue6de30d2011-01-03 15:08:37 +00001146#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1147
1148static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1149{
1150 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1151}
1152
1153static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1154{
1155 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1156}
1157
Francois Romieu24192212012-07-06 20:19:42 +02001158static void r8168dp_2_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieue6de30d2011-01-03 15:08:37 +00001159{
Francois Romieu24192212012-07-06 20:19:42 +02001160 void __iomem *ioaddr = tp->mmio_addr;
1161
françois romieue6de30d2011-01-03 15:08:37 +00001162 r8168dp_2_mdio_start(ioaddr);
1163
Francois Romieu24192212012-07-06 20:19:42 +02001164 r8169_mdio_write(tp, reg, value);
françois romieue6de30d2011-01-03 15:08:37 +00001165
1166 r8168dp_2_mdio_stop(ioaddr);
1167}
1168
Francois Romieu24192212012-07-06 20:19:42 +02001169static int r8168dp_2_mdio_read(struct rtl8169_private *tp, int reg)
françois romieue6de30d2011-01-03 15:08:37 +00001170{
Francois Romieu24192212012-07-06 20:19:42 +02001171 void __iomem *ioaddr = tp->mmio_addr;
françois romieue6de30d2011-01-03 15:08:37 +00001172 int value;
1173
1174 r8168dp_2_mdio_start(ioaddr);
1175
Francois Romieu24192212012-07-06 20:19:42 +02001176 value = r8169_mdio_read(tp, reg);
françois romieue6de30d2011-01-03 15:08:37 +00001177
1178 r8168dp_2_mdio_stop(ioaddr);
1179
1180 return value;
1181}
1182
françois romieu4da19632011-01-03 15:07:55 +00001183static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001184{
Francois Romieu24192212012-07-06 20:19:42 +02001185 tp->mdio_ops.write(tp, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001186}
1187
françois romieu4da19632011-01-03 15:07:55 +00001188static int rtl_readphy(struct rtl8169_private *tp, int location)
1189{
Francois Romieu24192212012-07-06 20:19:42 +02001190 return tp->mdio_ops.read(tp, location);
françois romieu4da19632011-01-03 15:07:55 +00001191}
1192
1193static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1194{
1195 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1196}
1197
Chun-Hao Lin76564422014-10-01 23:17:17 +08001198static void rtl_w0w1_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001199{
1200 int val;
1201
françois romieu4da19632011-01-03 15:07:55 +00001202 val = rtl_readphy(tp, reg_addr);
Chun-Hao Lin76564422014-10-01 23:17:17 +08001203 rtl_writephy(tp, reg_addr, (val & ~m) | p);
françois romieudaf9df62009-10-07 12:44:20 +00001204}
1205
Francois Romieuccdffb92008-07-26 14:26:06 +02001206static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1207 int val)
1208{
1209 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001210
françois romieu4da19632011-01-03 15:07:55 +00001211 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001212}
1213
1214static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1215{
1216 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001217
françois romieu4da19632011-01-03 15:07:55 +00001218 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001219}
1220
Francois Romieuffc46952012-07-06 14:19:23 +02001221DECLARE_RTL_COND(rtl_ephyar_cond)
1222{
1223 void __iomem *ioaddr = tp->mmio_addr;
1224
1225 return RTL_R32(EPHYAR) & EPHYAR_FLAG;
1226}
1227
Francois Romieufdf6fc02012-07-06 22:40:38 +02001228static void rtl_ephy_write(struct rtl8169_private *tp, int reg_addr, int value)
Francois Romieudacf8152008-08-02 20:44:13 +02001229{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001230 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001231
1232 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1233 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1234
Francois Romieuffc46952012-07-06 14:19:23 +02001235 rtl_udelay_loop_wait_low(tp, &rtl_ephyar_cond, 10, 100);
1236
1237 udelay(10);
Francois Romieudacf8152008-08-02 20:44:13 +02001238}
1239
Francois Romieufdf6fc02012-07-06 22:40:38 +02001240static u16 rtl_ephy_read(struct rtl8169_private *tp, int reg_addr)
Francois Romieudacf8152008-08-02 20:44:13 +02001241{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001242 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001243
1244 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1245
Francois Romieuffc46952012-07-06 14:19:23 +02001246 return rtl_udelay_loop_wait_high(tp, &rtl_ephyar_cond, 10, 100) ?
1247 RTL_R32(EPHYAR) & EPHYAR_DATA_MASK : ~0;
Francois Romieudacf8152008-08-02 20:44:13 +02001248}
1249
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001250DECLARE_RTL_COND(rtl_eriar_cond)
1251{
1252 void __iomem *ioaddr = tp->mmio_addr;
1253
1254 return RTL_R32(ERIAR) & ERIAR_FLAG;
1255}
1256
Francois Romieufdf6fc02012-07-06 22:40:38 +02001257static void rtl_eri_write(struct rtl8169_private *tp, int addr, u32 mask,
1258 u32 val, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001259{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001260 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001261
1262 BUG_ON((addr & 3) || (mask == 0));
1263 RTL_W32(ERIDR, val);
1264 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1265
Francois Romieuffc46952012-07-06 14:19:23 +02001266 rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 100);
Hayes Wang133ac402011-07-06 15:58:05 +08001267}
1268
Francois Romieufdf6fc02012-07-06 22:40:38 +02001269static u32 rtl_eri_read(struct rtl8169_private *tp, int addr, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001270{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001271 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001272
1273 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1274
Francois Romieuffc46952012-07-06 14:19:23 +02001275 return rtl_udelay_loop_wait_high(tp, &rtl_eriar_cond, 100, 100) ?
1276 RTL_R32(ERIDR) : ~0;
Hayes Wang133ac402011-07-06 15:58:05 +08001277}
1278
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001279static void rtl_w0w1_eri(struct rtl8169_private *tp, int addr, u32 mask, u32 p,
Francois Romieufdf6fc02012-07-06 22:40:38 +02001280 u32 m, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001281{
1282 u32 val;
1283
Francois Romieufdf6fc02012-07-06 22:40:38 +02001284 val = rtl_eri_read(tp, addr, type);
1285 rtl_eri_write(tp, addr, mask, (val & ~m) | p, type);
Hayes Wang133ac402011-07-06 15:58:05 +08001286}
1287
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001288static u32 r8168dp_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1289{
1290 void __iomem *ioaddr = tp->mmio_addr;
1291
1292 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1293 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 100, 20) ?
1294 RTL_R32(OCPDR) : ~0;
1295}
1296
1297static u32 r8168ep_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1298{
1299 return rtl_eri_read(tp, reg, ERIAR_OOB);
1300}
1301
1302static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1303{
1304 switch (tp->mac_version) {
1305 case RTL_GIGA_MAC_VER_27:
1306 case RTL_GIGA_MAC_VER_28:
1307 case RTL_GIGA_MAC_VER_31:
1308 return r8168dp_ocp_read(tp, mask, reg);
1309 case RTL_GIGA_MAC_VER_49:
1310 case RTL_GIGA_MAC_VER_50:
1311 case RTL_GIGA_MAC_VER_51:
1312 return r8168ep_ocp_read(tp, mask, reg);
1313 default:
1314 BUG();
1315 return ~0;
1316 }
1317}
1318
1319static void r8168dp_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1320 u32 data)
1321{
1322 void __iomem *ioaddr = tp->mmio_addr;
1323
1324 RTL_W32(OCPDR, data);
1325 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1326 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 100, 20);
1327}
1328
1329static void r8168ep_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1330 u32 data)
1331{
1332 rtl_eri_write(tp, reg, ((u32)mask & 0x0f) << ERIAR_MASK_SHIFT,
1333 data, ERIAR_OOB);
1334}
1335
1336static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
1337{
1338 switch (tp->mac_version) {
1339 case RTL_GIGA_MAC_VER_27:
1340 case RTL_GIGA_MAC_VER_28:
1341 case RTL_GIGA_MAC_VER_31:
1342 r8168dp_ocp_write(tp, mask, reg, data);
1343 break;
1344 case RTL_GIGA_MAC_VER_49:
1345 case RTL_GIGA_MAC_VER_50:
1346 case RTL_GIGA_MAC_VER_51:
1347 r8168ep_ocp_write(tp, mask, reg, data);
1348 break;
1349 default:
1350 BUG();
1351 break;
1352 }
1353}
1354
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001355static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
1356{
1357 rtl_eri_write(tp, 0xe8, ERIAR_MASK_0001, cmd, ERIAR_EXGMAC);
1358
1359 ocp_write(tp, 0x1, 0x30, 0x00000001);
1360}
1361
1362#define OOB_CMD_RESET 0x00
1363#define OOB_CMD_DRIVER_START 0x05
1364#define OOB_CMD_DRIVER_STOP 0x06
1365
1366static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
1367{
1368 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
1369}
1370
1371DECLARE_RTL_COND(rtl_ocp_read_cond)
1372{
1373 u16 reg;
1374
1375 reg = rtl8168_get_ocp_reg(tp);
1376
1377 return ocp_read(tp, 0x0f, reg) & 0x00000800;
1378}
1379
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001380DECLARE_RTL_COND(rtl_ep_ocp_read_cond)
1381{
1382 return ocp_read(tp, 0x0f, 0x124) & 0x00000001;
1383}
1384
1385DECLARE_RTL_COND(rtl_ocp_tx_cond)
1386{
1387 void __iomem *ioaddr = tp->mmio_addr;
1388
1389 return RTL_R8(IBISR0) & 0x02;
1390}
1391
Chun-Hao Lin003609d2014-12-02 16:48:31 +08001392static void rtl8168ep_stop_cmac(struct rtl8169_private *tp)
1393{
1394 void __iomem *ioaddr = tp->mmio_addr;
1395
1396 RTL_W8(IBCR2, RTL_R8(IBCR2) & ~0x01);
1397 rtl_msleep_loop_wait_low(tp, &rtl_ocp_tx_cond, 50, 2000);
1398 RTL_W8(IBISR0, RTL_R8(IBISR0) | 0x20);
1399 RTL_W8(IBCR0, RTL_R8(IBCR0) & ~0x01);
1400}
1401
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001402static void rtl8168dp_driver_start(struct rtl8169_private *tp)
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001403{
1404 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001405 rtl_msleep_loop_wait_high(tp, &rtl_ocp_read_cond, 10, 10);
1406}
1407
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001408static void rtl8168ep_driver_start(struct rtl8169_private *tp)
1409{
1410 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_START);
1411 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1412 rtl_msleep_loop_wait_high(tp, &rtl_ep_ocp_read_cond, 10, 10);
1413}
1414
1415static void rtl8168_driver_start(struct rtl8169_private *tp)
1416{
1417 switch (tp->mac_version) {
1418 case RTL_GIGA_MAC_VER_27:
1419 case RTL_GIGA_MAC_VER_28:
1420 case RTL_GIGA_MAC_VER_31:
1421 rtl8168dp_driver_start(tp);
1422 break;
1423 case RTL_GIGA_MAC_VER_49:
1424 case RTL_GIGA_MAC_VER_50:
1425 case RTL_GIGA_MAC_VER_51:
1426 rtl8168ep_driver_start(tp);
1427 break;
1428 default:
1429 BUG();
1430 break;
1431 }
1432}
1433
1434static void rtl8168dp_driver_stop(struct rtl8169_private *tp)
1435{
1436 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
1437 rtl_msleep_loop_wait_low(tp, &rtl_ocp_read_cond, 10, 10);
1438}
1439
1440static void rtl8168ep_driver_stop(struct rtl8169_private *tp)
1441{
Chun-Hao Lin003609d2014-12-02 16:48:31 +08001442 rtl8168ep_stop_cmac(tp);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001443 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_STOP);
1444 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1445 rtl_msleep_loop_wait_low(tp, &rtl_ep_ocp_read_cond, 10, 10);
1446}
1447
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001448static void rtl8168_driver_stop(struct rtl8169_private *tp)
1449{
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001450 switch (tp->mac_version) {
1451 case RTL_GIGA_MAC_VER_27:
1452 case RTL_GIGA_MAC_VER_28:
1453 case RTL_GIGA_MAC_VER_31:
1454 rtl8168dp_driver_stop(tp);
1455 break;
1456 case RTL_GIGA_MAC_VER_49:
1457 case RTL_GIGA_MAC_VER_50:
1458 case RTL_GIGA_MAC_VER_51:
1459 rtl8168ep_driver_stop(tp);
1460 break;
1461 default:
1462 BUG();
1463 break;
1464 }
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001465}
1466
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001467static int r8168dp_check_dash(struct rtl8169_private *tp)
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001468{
1469 u16 reg = rtl8168_get_ocp_reg(tp);
1470
1471 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
1472}
1473
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001474static int r8168ep_check_dash(struct rtl8169_private *tp)
1475{
1476 return (ocp_read(tp, 0x0f, 0x128) & 0x00000001) ? 1 : 0;
1477}
1478
1479static int r8168_check_dash(struct rtl8169_private *tp)
1480{
1481 switch (tp->mac_version) {
1482 case RTL_GIGA_MAC_VER_27:
1483 case RTL_GIGA_MAC_VER_28:
1484 case RTL_GIGA_MAC_VER_31:
1485 return r8168dp_check_dash(tp);
1486 case RTL_GIGA_MAC_VER_49:
1487 case RTL_GIGA_MAC_VER_50:
1488 case RTL_GIGA_MAC_VER_51:
1489 return r8168ep_check_dash(tp);
1490 default:
1491 return 0;
1492 }
1493}
1494
françois romieuc28aa382011-08-02 03:53:43 +00001495struct exgmac_reg {
1496 u16 addr;
1497 u16 mask;
1498 u32 val;
1499};
1500
Francois Romieufdf6fc02012-07-06 22:40:38 +02001501static void rtl_write_exgmac_batch(struct rtl8169_private *tp,
françois romieuc28aa382011-08-02 03:53:43 +00001502 const struct exgmac_reg *r, int len)
1503{
1504 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001505 rtl_eri_write(tp, r->addr, r->mask, r->val, ERIAR_EXGMAC);
françois romieuc28aa382011-08-02 03:53:43 +00001506 r++;
1507 }
1508}
1509
Francois Romieuffc46952012-07-06 14:19:23 +02001510DECLARE_RTL_COND(rtl_efusear_cond)
1511{
1512 void __iomem *ioaddr = tp->mmio_addr;
1513
1514 return RTL_R32(EFUSEAR) & EFUSEAR_FLAG;
1515}
1516
Francois Romieufdf6fc02012-07-06 22:40:38 +02001517static u8 rtl8168d_efuse_read(struct rtl8169_private *tp, int reg_addr)
françois romieudaf9df62009-10-07 12:44:20 +00001518{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001519 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00001520
1521 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1522
Francois Romieuffc46952012-07-06 14:19:23 +02001523 return rtl_udelay_loop_wait_high(tp, &rtl_efusear_cond, 100, 300) ?
1524 RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK : ~0;
françois romieudaf9df62009-10-07 12:44:20 +00001525}
1526
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001527static u16 rtl_get_events(struct rtl8169_private *tp)
1528{
1529 void __iomem *ioaddr = tp->mmio_addr;
1530
1531 return RTL_R16(IntrStatus);
1532}
1533
1534static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1535{
1536 void __iomem *ioaddr = tp->mmio_addr;
1537
1538 RTL_W16(IntrStatus, bits);
1539 mmiowb();
1540}
1541
1542static void rtl_irq_disable(struct rtl8169_private *tp)
1543{
1544 void __iomem *ioaddr = tp->mmio_addr;
1545
1546 RTL_W16(IntrMask, 0);
1547 mmiowb();
1548}
1549
Francois Romieu3e990ff2012-01-26 12:50:01 +01001550static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1551{
1552 void __iomem *ioaddr = tp->mmio_addr;
1553
1554 RTL_W16(IntrMask, bits);
1555}
1556
Francois Romieuda78dbf2012-01-26 14:18:23 +01001557#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1558#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1559#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1560
1561static void rtl_irq_enable_all(struct rtl8169_private *tp)
1562{
1563 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1564}
1565
françois romieu811fd302011-12-04 20:30:45 +00001566static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
françois romieu811fd302011-12-04 20:30:45 +00001568 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001570 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001571 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001572 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
françois romieu4da19632011-01-03 15:07:55 +00001575static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
françois romieu4da19632011-01-03 15:07:55 +00001577 void __iomem *ioaddr = tp->mmio_addr;
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 return RTL_R32(TBICSR) & TBIReset;
1580}
1581
françois romieu4da19632011-01-03 15:07:55 +00001582static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
françois romieu4da19632011-01-03 15:07:55 +00001584 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
1587static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1588{
1589 return RTL_R32(TBICSR) & TBILinkOk;
1590}
1591
1592static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1593{
1594 return RTL_R8(PHYstatus) & LinkStatus;
1595}
1596
françois romieu4da19632011-01-03 15:07:55 +00001597static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
françois romieu4da19632011-01-03 15:07:55 +00001599 void __iomem *ioaddr = tp->mmio_addr;
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1602}
1603
françois romieu4da19632011-01-03 15:07:55 +00001604static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 unsigned int val;
1607
françois romieu4da19632011-01-03 15:07:55 +00001608 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1609 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
1611
Hayes Wang70090422011-07-06 15:58:06 +08001612static void rtl_link_chg_patch(struct rtl8169_private *tp)
1613{
1614 void __iomem *ioaddr = tp->mmio_addr;
1615 struct net_device *dev = tp->dev;
1616
1617 if (!netif_running(dev))
1618 return;
1619
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001620 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1621 tp->mac_version == RTL_GIGA_MAC_VER_38) {
Hayes Wang70090422011-07-06 15:58:06 +08001622 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001623 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1624 ERIAR_EXGMAC);
1625 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1626 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001627 } else if (RTL_R8(PHYstatus) & _100bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001628 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1629 ERIAR_EXGMAC);
1630 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1631 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001632 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001633 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1634 ERIAR_EXGMAC);
1635 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1636 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001637 }
1638 /* Reset packet filter */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001639 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
Hayes Wang70090422011-07-06 15:58:06 +08001640 ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001641 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
Hayes Wang70090422011-07-06 15:58:06 +08001642 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001643 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1644 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1645 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001646 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1647 ERIAR_EXGMAC);
1648 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1649 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001650 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001651 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1652 ERIAR_EXGMAC);
1653 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1654 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001655 }
Hayes Wang7e18dca2012-03-30 14:33:02 +08001656 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1657 if (RTL_R8(PHYstatus) & _10bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001658 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x4d02,
1659 ERIAR_EXGMAC);
1660 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_0011, 0x0060,
1661 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001662 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001663 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000,
1664 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001665 }
Hayes Wang70090422011-07-06 15:58:06 +08001666 }
1667}
1668
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001669static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001670 struct rtl8169_private *tp,
1671 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001674 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001675 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001676 if (pm)
1677 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001679 if (net_ratelimit())
1680 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001681 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001683 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001684 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001685 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001689static void rtl8169_check_link_status(struct net_device *dev,
1690 struct rtl8169_private *tp,
1691 void __iomem *ioaddr)
1692{
1693 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1694}
1695
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001696#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1697
1698static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1699{
1700 void __iomem *ioaddr = tp->mmio_addr;
1701 u8 options;
1702 u32 wolopts = 0;
1703
1704 options = RTL_R8(Config1);
1705 if (!(options & PMEnable))
1706 return 0;
1707
1708 options = RTL_R8(Config3);
1709 if (options & LinkUp)
1710 wolopts |= WAKE_PHY;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001711 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001712 case RTL_GIGA_MAC_VER_34:
1713 case RTL_GIGA_MAC_VER_35:
1714 case RTL_GIGA_MAC_VER_36:
1715 case RTL_GIGA_MAC_VER_37:
1716 case RTL_GIGA_MAC_VER_38:
1717 case RTL_GIGA_MAC_VER_40:
1718 case RTL_GIGA_MAC_VER_41:
1719 case RTL_GIGA_MAC_VER_42:
1720 case RTL_GIGA_MAC_VER_43:
1721 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001722 case RTL_GIGA_MAC_VER_45:
1723 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001724 case RTL_GIGA_MAC_VER_47:
1725 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001726 case RTL_GIGA_MAC_VER_49:
1727 case RTL_GIGA_MAC_VER_50:
1728 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001729 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
1730 wolopts |= WAKE_MAGIC;
1731 break;
1732 default:
1733 if (options & MagicPacket)
1734 wolopts |= WAKE_MAGIC;
1735 break;
1736 }
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001737
1738 options = RTL_R8(Config5);
1739 if (options & UWF)
1740 wolopts |= WAKE_UCAST;
1741 if (options & BWF)
1742 wolopts |= WAKE_BCAST;
1743 if (options & MWF)
1744 wolopts |= WAKE_MCAST;
1745
1746 return wolopts;
1747}
1748
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001749static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1750{
1751 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001752
Francois Romieuda78dbf2012-01-26 14:18:23 +01001753 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001754
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001755 wol->supported = WAKE_ANY;
1756 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001757
Francois Romieuda78dbf2012-01-26 14:18:23 +01001758 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001759}
1760
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001761static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001762{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001763 void __iomem *ioaddr = tp->mmio_addr;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001764 unsigned int i, tmp;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001765 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001766 u32 opt;
1767 u16 reg;
1768 u8 mask;
1769 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001770 { WAKE_PHY, Config3, LinkUp },
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001771 { WAKE_UCAST, Config5, UWF },
1772 { WAKE_BCAST, Config5, BWF },
1773 { WAKE_MCAST, Config5, MWF },
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001774 { WAKE_ANY, Config5, LanWake },
1775 { WAKE_MAGIC, Config3, MagicPacket }
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001776 };
Francois Romieu851e6022012-04-17 11:10:11 +02001777 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001778
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001779 RTL_W8(Cfg9346, Cfg9346_Unlock);
1780
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001781 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001782 case RTL_GIGA_MAC_VER_34:
1783 case RTL_GIGA_MAC_VER_35:
1784 case RTL_GIGA_MAC_VER_36:
1785 case RTL_GIGA_MAC_VER_37:
1786 case RTL_GIGA_MAC_VER_38:
1787 case RTL_GIGA_MAC_VER_40:
1788 case RTL_GIGA_MAC_VER_41:
1789 case RTL_GIGA_MAC_VER_42:
1790 case RTL_GIGA_MAC_VER_43:
1791 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001792 case RTL_GIGA_MAC_VER_45:
1793 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001794 case RTL_GIGA_MAC_VER_47:
1795 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001796 case RTL_GIGA_MAC_VER_49:
1797 case RTL_GIGA_MAC_VER_50:
1798 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001799 tmp = ARRAY_SIZE(cfg) - 1;
1800 if (wolopts & WAKE_MAGIC)
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001801 rtl_w0w1_eri(tp,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001802 0x0dc,
1803 ERIAR_MASK_0100,
1804 MagicPacket_v2,
1805 0x0000,
1806 ERIAR_EXGMAC);
1807 else
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001808 rtl_w0w1_eri(tp,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001809 0x0dc,
1810 ERIAR_MASK_0100,
1811 0x0000,
1812 MagicPacket_v2,
1813 ERIAR_EXGMAC);
1814 break;
1815 default:
1816 tmp = ARRAY_SIZE(cfg);
1817 break;
1818 }
1819
1820 for (i = 0; i < tmp; i++) {
Francois Romieu851e6022012-04-17 11:10:11 +02001821 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001822 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001823 options |= cfg[i].mask;
1824 RTL_W8(cfg[i].reg, options);
1825 }
1826
Francois Romieu851e6022012-04-17 11:10:11 +02001827 switch (tp->mac_version) {
1828 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1829 options = RTL_R8(Config1) & ~PMEnable;
1830 if (wolopts)
1831 options |= PMEnable;
1832 RTL_W8(Config1, options);
1833 break;
1834 default:
Francois Romieud387b422012-04-17 11:12:01 +02001835 options = RTL_R8(Config2) & ~PME_SIGNAL;
1836 if (wolopts)
1837 options |= PME_SIGNAL;
1838 RTL_W8(Config2, options);
Francois Romieu851e6022012-04-17 11:10:11 +02001839 break;
1840 }
1841
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001842 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001843}
1844
1845static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1846{
1847 struct rtl8169_private *tp = netdev_priv(dev);
1848
Francois Romieuda78dbf2012-01-26 14:18:23 +01001849 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001850
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001851 if (wol->wolopts)
1852 tp->features |= RTL_FEATURE_WOL;
1853 else
1854 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001855 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001856
1857 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001858
françois romieuea809072010-11-08 13:23:58 +00001859 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1860
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001861 return 0;
1862}
1863
Francois Romieu31bd2042011-04-26 18:58:59 +02001864static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1865{
Francois Romieu85bffe62011-04-27 08:22:39 +02001866 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001867}
1868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869static void rtl8169_get_drvinfo(struct net_device *dev,
1870 struct ethtool_drvinfo *info)
1871{
1872 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001873 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Rick Jones68aad782011-11-07 13:29:27 +00001875 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1876 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1877 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001878 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001879 if (!IS_ERR_OR_NULL(rtl_fw))
1880 strlcpy(info->fw_version, rtl_fw->version,
1881 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
1884static int rtl8169_get_regs_len(struct net_device *dev)
1885{
1886 return R8169_REGS_SIZE;
1887}
1888
1889static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001890 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
1892 struct rtl8169_private *tp = netdev_priv(dev);
1893 void __iomem *ioaddr = tp->mmio_addr;
1894 int ret = 0;
1895 u32 reg;
1896
1897 reg = RTL_R32(TBICSR);
1898 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1899 (duplex == DUPLEX_FULL)) {
1900 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1901 } else if (autoneg == AUTONEG_ENABLE)
1902 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1903 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001904 netif_warn(tp, link, dev,
1905 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 ret = -EOPNOTSUPP;
1907 }
1908
1909 return ret;
1910}
1911
1912static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001913 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
1915 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001916 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001917 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Hayes Wang716b50a2011-02-22 17:26:18 +08001919 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001922 int auto_nego;
1923
françois romieu4da19632011-01-03 15:07:55 +00001924 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001925 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1926 ADVERTISE_100HALF | ADVERTISE_100FULL);
1927
1928 if (adv & ADVERTISED_10baseT_Half)
1929 auto_nego |= ADVERTISE_10HALF;
1930 if (adv & ADVERTISED_10baseT_Full)
1931 auto_nego |= ADVERTISE_10FULL;
1932 if (adv & ADVERTISED_100baseT_Half)
1933 auto_nego |= ADVERTISE_100HALF;
1934 if (adv & ADVERTISED_100baseT_Full)
1935 auto_nego |= ADVERTISE_100FULL;
1936
françois romieu3577aa12009-05-19 10:46:48 +00001937 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1938
françois romieu4da19632011-01-03 15:07:55 +00001939 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001940 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1941
1942 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001943 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001944 if (adv & ADVERTISED_1000baseT_Half)
1945 giga_ctrl |= ADVERTISE_1000HALF;
1946 if (adv & ADVERTISED_1000baseT_Full)
1947 giga_ctrl |= ADVERTISE_1000FULL;
1948 } else if (adv & (ADVERTISED_1000baseT_Half |
1949 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001950 netif_info(tp, link, dev,
1951 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001952 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
françois romieu3577aa12009-05-19 10:46:48 +00001955 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001956
françois romieu4da19632011-01-03 15:07:55 +00001957 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1958 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001959 } else {
1960 giga_ctrl = 0;
1961
1962 if (speed == SPEED_10)
1963 bmcr = 0;
1964 else if (speed == SPEED_100)
1965 bmcr = BMCR_SPEED100;
1966 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001967 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001968
1969 if (duplex == DUPLEX_FULL)
1970 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001971 }
1972
françois romieu4da19632011-01-03 15:07:55 +00001973 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001974
Francois Romieucecb5fd2011-04-01 10:21:07 +02001975 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1976 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001977 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001978 rtl_writephy(tp, 0x17, 0x2138);
1979 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001980 } else {
françois romieu4da19632011-01-03 15:07:55 +00001981 rtl_writephy(tp, 0x17, 0x2108);
1982 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001983 }
1984 }
1985
Oliver Neukum54405cd2011-01-06 21:55:13 +01001986 rc = 0;
1987out:
1988 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989}
1990
1991static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001992 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 struct rtl8169_private *tp = netdev_priv(dev);
1995 int ret;
1996
Oliver Neukum54405cd2011-01-06 21:55:13 +01001997 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001998 if (ret < 0)
1999 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Francois Romieu4876cc12011-03-11 21:07:11 +01002001 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
2002 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01002004 }
2005out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 return ret;
2007}
2008
2009static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2010{
2011 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 int ret;
2013
Francois Romieu4876cc12011-03-11 21:07:11 +01002014 del_timer_sync(&tp->timer);
2015
Francois Romieuda78dbf2012-01-26 14:18:23 +01002016 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002017 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00002018 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002019 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02002020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return ret;
2022}
2023
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002024static netdev_features_t rtl8169_fix_features(struct net_device *dev,
2025 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Francois Romieud58d46b2011-05-03 16:38:29 +02002027 struct rtl8169_private *tp = netdev_priv(dev);
2028
Francois Romieu2b7b4312011-04-18 22:53:24 -07002029 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00002030 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Francois Romieud58d46b2011-05-03 16:38:29 +02002032 if (dev->mtu > JUMBO_1K &&
2033 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
2034 features &= ~NETIF_F_IP_CSUM;
2035
Michał Mirosław350fb322011-04-08 06:35:56 +00002036 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
Francois Romieuda78dbf2012-01-26 14:18:23 +01002039static void __rtl8169_set_features(struct net_device *dev,
2040 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
2042 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002043 void __iomem *ioaddr = tp->mmio_addr;
hayeswang929a0312014-09-16 11:40:47 +08002044 u32 rx_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
hayeswang929a0312014-09-16 11:40:47 +08002046 rx_config = RTL_R32(RxConfig);
2047 if (features & NETIF_F_RXALL)
2048 rx_config |= (AcceptErr | AcceptRunt);
2049 else
2050 rx_config &= ~(AcceptErr | AcceptRunt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
hayeswang929a0312014-09-16 11:40:47 +08002052 RTL_W32(RxConfig, rx_config);
Michał Mirosław350fb322011-04-08 06:35:56 +00002053
hayeswang929a0312014-09-16 11:40:47 +08002054 if (features & NETIF_F_RXCSUM)
2055 tp->cp_cmd |= RxChkSum;
2056 else
2057 tp->cp_cmd &= ~RxChkSum;
Ben Greear6bbe0212012-02-10 15:04:33 +00002058
hayeswang929a0312014-09-16 11:40:47 +08002059 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2060 tp->cp_cmd |= RxVlan;
2061 else
2062 tp->cp_cmd &= ~RxVlan;
2063
2064 tp->cp_cmd |= RTL_R16(CPlusCmd) & ~(RxVlan | RxChkSum);
2065
2066 RTL_W16(CPlusCmd, tp->cp_cmd);
2067 RTL_R16(CPlusCmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002068}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Francois Romieuda78dbf2012-01-26 14:18:23 +01002070static int rtl8169_set_features(struct net_device *dev,
2071 netdev_features_t features)
2072{
2073 struct rtl8169_private *tp = netdev_priv(dev);
2074
hayeswang929a0312014-09-16 11:40:47 +08002075 features &= NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX;
2076
Francois Romieuda78dbf2012-01-26 14:18:23 +01002077 rtl_lock_work(tp);
Dan Carpenter85911d72014-09-19 13:40:25 +03002078 if (features ^ dev->features)
hayeswang929a0312014-09-16 11:40:47 +08002079 __rtl8169_set_features(dev, features);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002080 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 return 0;
2083}
2084
Francois Romieuda78dbf2012-01-26 14:18:23 +01002085
Kirill Smelkov810f4892012-11-10 21:11:02 +04002086static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002088 return (skb_vlan_tag_present(skb)) ?
2089 TxVlanTag | swab16(skb_vlan_tag_get(skb)) : 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
Francois Romieu7a8fc772011-03-01 17:18:33 +01002092static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
2094 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Francois Romieu7a8fc772011-03-01 17:18:33 +01002096 if (opts2 & RxVlanTag)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00002097 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
Francois Romieuccdffb92008-07-26 14:26:06 +02002100static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
2102 struct rtl8169_private *tp = netdev_priv(dev);
2103 void __iomem *ioaddr = tp->mmio_addr;
2104 u32 status;
2105
2106 cmd->supported =
2107 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
2108 cmd->port = PORT_FIBRE;
2109 cmd->transceiver = XCVR_INTERNAL;
2110
2111 status = RTL_R32(TBICSR);
2112 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
2113 cmd->autoneg = !!(status & TBINwEnable);
2114
David Decotigny70739492011-04-27 18:32:40 +00002115 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02002117
2118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119}
2120
Francois Romieuccdffb92008-07-26 14:26:06 +02002121static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Francois Romieuccdffb92008-07-26 14:26:06 +02002125 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
2128static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2129{
2130 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02002131 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Francois Romieuda78dbf2012-01-26 14:18:23 +01002133 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02002134 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002135 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Francois Romieuccdffb92008-07-26 14:26:06 +02002137 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
2139
2140static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2141 void *p)
2142{
Francois Romieu5b0384f2006-08-16 16:00:01 +02002143 struct rtl8169_private *tp = netdev_priv(dev);
Peter Wu15edae92013-08-21 23:17:11 +02002144 u32 __iomem *data = tp->mmio_addr;
2145 u32 *dw = p;
2146 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Francois Romieuda78dbf2012-01-26 14:18:23 +01002148 rtl_lock_work(tp);
Peter Wu15edae92013-08-21 23:17:11 +02002149 for (i = 0; i < R8169_REGS_SIZE; i += 4)
2150 memcpy_fromio(dw++, data++, 4);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002151 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152}
2153
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002154static u32 rtl8169_get_msglevel(struct net_device *dev)
2155{
2156 struct rtl8169_private *tp = netdev_priv(dev);
2157
2158 return tp->msg_enable;
2159}
2160
2161static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
2162{
2163 struct rtl8169_private *tp = netdev_priv(dev);
2164
2165 tp->msg_enable = value;
2166}
2167
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002168static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
2169 "tx_packets",
2170 "rx_packets",
2171 "tx_errors",
2172 "rx_errors",
2173 "rx_missed",
2174 "align_errors",
2175 "tx_single_collisions",
2176 "tx_multi_collisions",
2177 "unicast",
2178 "broadcast",
2179 "multicast",
2180 "tx_aborted",
2181 "tx_underrun",
2182};
2183
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002184static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002185{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002186 switch (sset) {
2187 case ETH_SS_STATS:
2188 return ARRAY_SIZE(rtl8169_gstrings);
2189 default:
2190 return -EOPNOTSUPP;
2191 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002192}
2193
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002194static struct rtl8169_counters *rtl8169_map_counters(struct net_device *dev,
2195 dma_addr_t *paddr,
2196 u32 counter_cmd)
2197{
2198 struct rtl8169_private *tp = netdev_priv(dev);
2199 void __iomem *ioaddr = tp->mmio_addr;
2200 struct device *d = &tp->pci_dev->dev;
2201 struct rtl8169_counters *counters;
2202 u32 cmd;
2203
2204 counters = dma_alloc_coherent(d, sizeof(*counters), paddr, GFP_KERNEL);
2205 if (counters) {
2206 RTL_W32(CounterAddrHigh, (u64)*paddr >> 32);
2207 cmd = (u64)*paddr & DMA_BIT_MASK(32);
2208 RTL_W32(CounterAddrLow, cmd);
2209 RTL_W32(CounterAddrLow, cmd | counter_cmd);
2210 }
2211 return counters;
2212}
2213
2214static void rtl8169_unmap_counters (struct net_device *dev,
2215 dma_addr_t paddr,
2216 struct rtl8169_counters *counters)
2217{
2218 struct rtl8169_private *tp = netdev_priv(dev);
2219 void __iomem *ioaddr = tp->mmio_addr;
2220 struct device *d = &tp->pci_dev->dev;
2221
2222 RTL_W32(CounterAddrLow, 0);
2223 RTL_W32(CounterAddrHigh, 0);
2224
2225 dma_free_coherent(d, sizeof(*counters), counters, paddr);
2226}
2227
2228DECLARE_RTL_COND(rtl_reset_counters_cond)
2229{
2230 void __iomem *ioaddr = tp->mmio_addr;
2231
2232 return RTL_R32(CounterAddrLow) & CounterReset;
2233}
2234
2235static bool rtl8169_reset_counters(struct net_device *dev)
2236{
2237 struct rtl8169_private *tp = netdev_priv(dev);
2238 struct rtl8169_counters *counters;
2239 dma_addr_t paddr;
2240 bool ret = true;
2241
2242 /*
2243 * Versions prior to RTL_GIGA_MAC_VER_19 don't support resetting the
2244 * tally counters.
2245 */
2246 if (tp->mac_version < RTL_GIGA_MAC_VER_19)
2247 return true;
2248
2249 counters = rtl8169_map_counters(dev, &paddr, CounterReset);
2250 if (!counters)
2251 return false;
2252
2253 if (!rtl_udelay_loop_wait_low(tp, &rtl_reset_counters_cond, 10, 1000))
2254 ret = false;
2255
2256 rtl8169_unmap_counters(dev, paddr, counters);
2257
2258 return ret;
2259}
2260
Francois Romieuffc46952012-07-06 14:19:23 +02002261DECLARE_RTL_COND(rtl_counters_cond)
2262{
2263 void __iomem *ioaddr = tp->mmio_addr;
2264
2265 return RTL_R32(CounterAddrLow) & CounterDump;
2266}
2267
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002268static bool rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002269{
2270 struct rtl8169_private *tp = netdev_priv(dev);
2271 void __iomem *ioaddr = tp->mmio_addr;
2272 struct rtl8169_counters *counters;
2273 dma_addr_t paddr;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002274 bool ret = true;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002275
Ivan Vecera355423d2009-02-06 21:49:57 -08002276 /*
2277 * Some chips are unable to dump tally counters when the receiver
2278 * is disabled.
2279 */
2280 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002281 return true;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002282
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002283 counters = rtl8169_map_counters(dev, &paddr, CounterDump);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002284 if (!counters)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002285 return false;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002286
Francois Romieuffc46952012-07-06 14:19:23 +02002287 if (rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000))
2288 memcpy(&tp->counters, counters, sizeof(*counters));
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002289 else
2290 ret = false;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002291
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002292 rtl8169_unmap_counters(dev, paddr, counters);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002293
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002294 return ret;
2295}
2296
2297static bool rtl8169_init_counter_offsets(struct net_device *dev)
2298{
2299 struct rtl8169_private *tp = netdev_priv(dev);
2300 bool ret = false;
2301
2302 /*
2303 * rtl8169_init_counter_offsets is called from rtl_open. On chip
2304 * versions prior to RTL_GIGA_MAC_VER_19 the tally counters are only
2305 * reset by a power cycle, while the counter values collected by the
2306 * driver are reset at every driver unload/load cycle.
2307 *
2308 * To make sure the HW values returned by @get_stats64 match the SW
2309 * values, we collect the initial values at first open(*) and use them
2310 * as offsets to normalize the values returned by @get_stats64.
2311 *
2312 * (*) We can't call rtl8169_init_counter_offsets from rtl_init_one
2313 * for the reason stated in rtl8169_update_counters; CmdRxEnb is only
2314 * set at open time by rtl_hw_start.
2315 */
2316
2317 if (tp->tc_offset.inited)
2318 return true;
2319
2320 /* If both, reset and update fail, propagate to caller. */
2321 if (rtl8169_reset_counters(dev))
2322 ret = true;
2323
2324 if (rtl8169_update_counters(dev))
2325 ret = true;
2326
2327 tp->tc_offset.tx_errors = tp->counters.tx_errors;
2328 tp->tc_offset.tx_multi_collision = tp->counters.tx_multi_collision;
2329 tp->tc_offset.rx_multicast = tp->counters.rx_multicast;
2330 tp->tc_offset.tx_aborted = tp->counters.tx_aborted;
2331 tp->tc_offset.inited = true;
2332
2333 return ret;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002334}
2335
Ivan Vecera355423d2009-02-06 21:49:57 -08002336static void rtl8169_get_ethtool_stats(struct net_device *dev,
2337 struct ethtool_stats *stats, u64 *data)
2338{
2339 struct rtl8169_private *tp = netdev_priv(dev);
2340
2341 ASSERT_RTNL();
2342
2343 rtl8169_update_counters(dev);
2344
2345 data[0] = le64_to_cpu(tp->counters.tx_packets);
2346 data[1] = le64_to_cpu(tp->counters.rx_packets);
2347 data[2] = le64_to_cpu(tp->counters.tx_errors);
2348 data[3] = le32_to_cpu(tp->counters.rx_errors);
2349 data[4] = le16_to_cpu(tp->counters.rx_missed);
2350 data[5] = le16_to_cpu(tp->counters.align_errors);
2351 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
2352 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
2353 data[8] = le64_to_cpu(tp->counters.rx_unicast);
2354 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
2355 data[10] = le32_to_cpu(tp->counters.rx_multicast);
2356 data[11] = le16_to_cpu(tp->counters.tx_aborted);
2357 data[12] = le16_to_cpu(tp->counters.tx_underun);
2358}
2359
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002360static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2361{
2362 switch(stringset) {
2363 case ETH_SS_STATS:
2364 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
2365 break;
2366 }
2367}
2368
Jeff Garzik7282d492006-09-13 14:30:00 -04002369static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 .get_drvinfo = rtl8169_get_drvinfo,
2371 .get_regs_len = rtl8169_get_regs_len,
2372 .get_link = ethtool_op_get_link,
2373 .get_settings = rtl8169_get_settings,
2374 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002375 .get_msglevel = rtl8169_get_msglevel,
2376 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002378 .get_wol = rtl8169_get_wol,
2379 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002380 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002381 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002382 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00002383 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384};
2385
Francois Romieu07d3f512007-02-21 22:40:46 +01002386static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02002387 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
Francois Romieu5d320a22011-05-08 17:47:36 +02002389 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002390 /*
2391 * The driver currently handles the 8168Bf and the 8168Be identically
2392 * but they can be identified more specifically through the test below
2393 * if needed:
2394 *
2395 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01002396 *
2397 * Same thing for the 8101Eb and the 8101Ec:
2398 *
2399 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01002400 */
Francois Romieu37441002011-06-17 22:58:54 +02002401 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002403 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 int mac_version;
2405 } mac_info[] = {
Chun-Hao Lin935e2212014-10-07 15:10:41 +08002406 /* 8168EP family. */
2407 { 0x7cf00000, 0x50200000, RTL_GIGA_MAC_VER_51 },
2408 { 0x7cf00000, 0x50100000, RTL_GIGA_MAC_VER_50 },
2409 { 0x7cf00000, 0x50000000, RTL_GIGA_MAC_VER_49 },
2410
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002411 /* 8168H family. */
2412 { 0x7cf00000, 0x54100000, RTL_GIGA_MAC_VER_46 },
2413 { 0x7cf00000, 0x54000000, RTL_GIGA_MAC_VER_45 },
2414
Hayes Wangc5583862012-07-02 17:23:22 +08002415 /* 8168G family. */
hayeswang45dd95c2013-07-08 17:09:01 +08002416 { 0x7cf00000, 0x5c800000, RTL_GIGA_MAC_VER_44 },
hayeswang57538c42013-04-01 22:23:40 +00002417 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42 },
Hayes Wangc5583862012-07-02 17:23:22 +08002418 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2419 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2420
Hayes Wangc2218922011-09-06 16:55:18 +08002421 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08002422 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08002423 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2424 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2425
hayeswang01dc7fe2011-03-21 01:50:28 +00002426 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08002427 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00002428 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
2429 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2430 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2431
Francois Romieu5b538df2008-07-20 16:22:45 +02002432 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00002433 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
2434 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00002435 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002436
françois romieue6de30d2011-01-03 15:08:37 +00002437 /* 8168DP family. */
2438 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2439 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00002440 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00002441
Francois Romieuef808d52008-06-29 13:10:54 +02002442 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07002443 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02002444 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02002445 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002446 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002447 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2448 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02002449 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02002450 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02002451 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002452
2453 /* 8168B family. */
2454 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2455 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
2456 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2457 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2458
2459 /* 8101 family. */
Hayes Wang5598bfe2012-07-02 17:23:21 +08002460 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39 },
2461 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
Hayes Wang7e18dca2012-03-30 14:33:02 +08002462 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00002463 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08002464 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
2465 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2466 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002467 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
2468 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
2469 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2470 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2471 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2472 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002473 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002474 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002475 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002476 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2477 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002478 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2479 /* FIXME: where did these entries come from ? -- FR */
2480 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2481 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2482
2483 /* 8110 family. */
2484 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2485 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2486 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2487 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2488 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2489 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2490
Jean Delvaref21b75e2009-05-26 20:54:48 -07002491 /* Catch-all */
2492 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02002493 };
2494 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 u32 reg;
2496
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002497 reg = RTL_R32(TxConfig);
2498 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 p++;
2500 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02002501
2502 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2503 netif_notice(tp, probe, dev,
2504 "unknown MAC, using family default\n");
2505 tp->mac_version = default_version;
hayeswang58152cd2013-04-01 22:23:42 +00002506 } else if (tp->mac_version == RTL_GIGA_MAC_VER_42) {
2507 tp->mac_version = tp->mii.supports_gmii ?
2508 RTL_GIGA_MAC_VER_42 :
2509 RTL_GIGA_MAC_VER_43;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002510 } else if (tp->mac_version == RTL_GIGA_MAC_VER_45) {
2511 tp->mac_version = tp->mii.supports_gmii ?
2512 RTL_GIGA_MAC_VER_45 :
2513 RTL_GIGA_MAC_VER_47;
2514 } else if (tp->mac_version == RTL_GIGA_MAC_VER_46) {
2515 tp->mac_version = tp->mii.supports_gmii ?
2516 RTL_GIGA_MAC_VER_46 :
2517 RTL_GIGA_MAC_VER_48;
Francois Romieu5d320a22011-05-08 17:47:36 +02002518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519}
2520
2521static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2522{
Francois Romieubcf0bf92006-07-26 23:14:13 +02002523 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524}
2525
Francois Romieu867763c2007-08-17 18:21:58 +02002526struct phy_reg {
2527 u16 reg;
2528 u16 val;
2529};
2530
françois romieu4da19632011-01-03 15:07:55 +00002531static void rtl_writephy_batch(struct rtl8169_private *tp,
2532 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02002533{
2534 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00002535 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02002536 regs++;
2537 }
2538}
2539
françois romieubca03d52011-01-03 15:07:31 +00002540#define PHY_READ 0x00000000
2541#define PHY_DATA_OR 0x10000000
2542#define PHY_DATA_AND 0x20000000
2543#define PHY_BJMPN 0x30000000
hayeswangeee37862013-04-01 22:23:38 +00002544#define PHY_MDIO_CHG 0x40000000
françois romieubca03d52011-01-03 15:07:31 +00002545#define PHY_CLEAR_READCOUNT 0x70000000
2546#define PHY_WRITE 0x80000000
2547#define PHY_READCOUNT_EQ_SKIP 0x90000000
2548#define PHY_COMP_EQ_SKIPN 0xa0000000
2549#define PHY_COMP_NEQ_SKIPN 0xb0000000
2550#define PHY_WRITE_PREVIOUS 0xc0000000
2551#define PHY_SKIPN 0xd0000000
2552#define PHY_DELAY_MS 0xe0000000
françois romieubca03d52011-01-03 15:07:31 +00002553
Hayes Wang960aee62011-06-18 11:37:48 +02002554struct fw_info {
2555 u32 magic;
2556 char version[RTL_VER_SIZE];
2557 __le32 fw_start;
2558 __le32 fw_len;
2559 u8 chksum;
2560} __packed;
2561
Francois Romieu1c361ef2011-06-17 17:16:24 +02002562#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2563
2564static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002565{
Francois Romieub6ffd972011-06-17 17:00:05 +02002566 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002567 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002568 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2569 char *version = rtl_fw->version;
2570 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002571
Francois Romieu1c361ef2011-06-17 17:16:24 +02002572 if (fw->size < FW_OPCODE_SIZE)
2573 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002574
2575 if (!fw_info->magic) {
2576 size_t i, size, start;
2577 u8 checksum = 0;
2578
2579 if (fw->size < sizeof(*fw_info))
2580 goto out;
2581
2582 for (i = 0; i < fw->size; i++)
2583 checksum += fw->data[i];
2584 if (checksum != 0)
2585 goto out;
2586
2587 start = le32_to_cpu(fw_info->fw_start);
2588 if (start > fw->size)
2589 goto out;
2590
2591 size = le32_to_cpu(fw_info->fw_len);
2592 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2593 goto out;
2594
2595 memcpy(version, fw_info->version, RTL_VER_SIZE);
2596
2597 pa->code = (__le32 *)(fw->data + start);
2598 pa->size = size;
2599 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002600 if (fw->size % FW_OPCODE_SIZE)
2601 goto out;
2602
2603 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2604
2605 pa->code = (__le32 *)fw->data;
2606 pa->size = fw->size / FW_OPCODE_SIZE;
2607 }
2608 version[RTL_VER_SIZE - 1] = 0;
2609
2610 rc = true;
2611out:
2612 return rc;
2613}
2614
Francois Romieufd112f22011-06-18 00:10:29 +02002615static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2616 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002617{
Francois Romieufd112f22011-06-18 00:10:29 +02002618 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002619 size_t index;
2620
Francois Romieu1c361ef2011-06-17 17:16:24 +02002621 for (index = 0; index < pa->size; index++) {
2622 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002623 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002624
hayeswang42b82dc2011-01-10 02:07:25 +00002625 switch(action & 0xf0000000) {
2626 case PHY_READ:
2627 case PHY_DATA_OR:
2628 case PHY_DATA_AND:
hayeswangeee37862013-04-01 22:23:38 +00002629 case PHY_MDIO_CHG:
hayeswang42b82dc2011-01-10 02:07:25 +00002630 case PHY_CLEAR_READCOUNT:
2631 case PHY_WRITE:
2632 case PHY_WRITE_PREVIOUS:
2633 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002634 break;
2635
hayeswang42b82dc2011-01-10 02:07:25 +00002636 case PHY_BJMPN:
2637 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002638 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002639 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002640 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002641 }
2642 break;
2643 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002644 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002645 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002646 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002647 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002648 }
2649 break;
2650 case PHY_COMP_EQ_SKIPN:
2651 case PHY_COMP_NEQ_SKIPN:
2652 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002653 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002654 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002655 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002656 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002657 }
2658 break;
2659
hayeswang42b82dc2011-01-10 02:07:25 +00002660 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002661 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002662 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002663 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002664 }
2665 }
Francois Romieufd112f22011-06-18 00:10:29 +02002666 rc = true;
2667out:
2668 return rc;
2669}
françois romieubca03d52011-01-03 15:07:31 +00002670
Francois Romieufd112f22011-06-18 00:10:29 +02002671static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2672{
2673 struct net_device *dev = tp->dev;
2674 int rc = -EINVAL;
2675
2676 if (!rtl_fw_format_ok(tp, rtl_fw)) {
Yannick Guerrini5c2d2b12015-02-24 13:03:51 +01002677 netif_err(tp, ifup, dev, "invalid firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002678 goto out;
2679 }
2680
2681 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2682 rc = 0;
2683out:
2684 return rc;
2685}
2686
2687static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2688{
2689 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
hayeswangeee37862013-04-01 22:23:38 +00002690 struct mdio_ops org, *ops = &tp->mdio_ops;
Francois Romieufd112f22011-06-18 00:10:29 +02002691 u32 predata, count;
2692 size_t index;
2693
2694 predata = count = 0;
hayeswangeee37862013-04-01 22:23:38 +00002695 org.write = ops->write;
2696 org.read = ops->read;
hayeswang42b82dc2011-01-10 02:07:25 +00002697
Francois Romieu1c361ef2011-06-17 17:16:24 +02002698 for (index = 0; index < pa->size; ) {
2699 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002700 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002701 u32 regno = (action & 0x0fff0000) >> 16;
2702
2703 if (!action)
2704 break;
françois romieubca03d52011-01-03 15:07:31 +00002705
2706 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002707 case PHY_READ:
2708 predata = rtl_readphy(tp, regno);
2709 count++;
2710 index++;
françois romieubca03d52011-01-03 15:07:31 +00002711 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002712 case PHY_DATA_OR:
2713 predata |= data;
2714 index++;
2715 break;
2716 case PHY_DATA_AND:
2717 predata &= data;
2718 index++;
2719 break;
2720 case PHY_BJMPN:
2721 index -= regno;
2722 break;
hayeswangeee37862013-04-01 22:23:38 +00002723 case PHY_MDIO_CHG:
2724 if (data == 0) {
2725 ops->write = org.write;
2726 ops->read = org.read;
2727 } else if (data == 1) {
2728 ops->write = mac_mcu_write;
2729 ops->read = mac_mcu_read;
2730 }
2731
hayeswang42b82dc2011-01-10 02:07:25 +00002732 index++;
2733 break;
2734 case PHY_CLEAR_READCOUNT:
2735 count = 0;
2736 index++;
2737 break;
2738 case PHY_WRITE:
2739 rtl_writephy(tp, regno, data);
2740 index++;
2741 break;
2742 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002743 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002744 break;
2745 case PHY_COMP_EQ_SKIPN:
2746 if (predata == data)
2747 index += regno;
2748 index++;
2749 break;
2750 case PHY_COMP_NEQ_SKIPN:
2751 if (predata != data)
2752 index += regno;
2753 index++;
2754 break;
2755 case PHY_WRITE_PREVIOUS:
2756 rtl_writephy(tp, regno, predata);
2757 index++;
2758 break;
2759 case PHY_SKIPN:
2760 index += regno + 1;
2761 break;
2762 case PHY_DELAY_MS:
2763 mdelay(data);
2764 index++;
2765 break;
2766
françois romieubca03d52011-01-03 15:07:31 +00002767 default:
2768 BUG();
2769 }
2770 }
hayeswangeee37862013-04-01 22:23:38 +00002771
2772 ops->write = org.write;
2773 ops->read = org.read;
françois romieubca03d52011-01-03 15:07:31 +00002774}
2775
françois romieuf1e02ed2011-01-13 13:07:53 +00002776static void rtl_release_firmware(struct rtl8169_private *tp)
2777{
Francois Romieub6ffd972011-06-17 17:00:05 +02002778 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2779 release_firmware(tp->rtl_fw->fw);
2780 kfree(tp->rtl_fw);
2781 }
2782 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002783}
2784
François Romieu953a12c2011-04-24 17:38:48 +02002785static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002786{
Francois Romieub6ffd972011-06-17 17:00:05 +02002787 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002788
2789 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieueef63cc2013-02-08 23:43:20 +01002790 if (!IS_ERR_OR_NULL(rtl_fw))
Francois Romieub6ffd972011-06-17 17:00:05 +02002791 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002792}
2793
2794static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2795{
2796 if (rtl_readphy(tp, reg) != val)
2797 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2798 else
2799 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002800}
2801
françois romieu4da19632011-01-03 15:07:55 +00002802static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002804 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002805 { 0x1f, 0x0001 },
2806 { 0x06, 0x006e },
2807 { 0x08, 0x0708 },
2808 { 0x15, 0x4000 },
2809 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
françois romieu0b9b5712009-08-10 19:44:56 +00002811 { 0x1f, 0x0001 },
2812 { 0x03, 0x00a1 },
2813 { 0x02, 0x0008 },
2814 { 0x01, 0x0120 },
2815 { 0x00, 0x1000 },
2816 { 0x04, 0x0800 },
2817 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
françois romieu0b9b5712009-08-10 19:44:56 +00002819 { 0x03, 0xff41 },
2820 { 0x02, 0xdf60 },
2821 { 0x01, 0x0140 },
2822 { 0x00, 0x0077 },
2823 { 0x04, 0x7800 },
2824 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
françois romieu0b9b5712009-08-10 19:44:56 +00002826 { 0x03, 0x802f },
2827 { 0x02, 0x4f02 },
2828 { 0x01, 0x0409 },
2829 { 0x00, 0xf0f9 },
2830 { 0x04, 0x9800 },
2831 { 0x04, 0x9000 },
2832
2833 { 0x03, 0xdf01 },
2834 { 0x02, 0xdf20 },
2835 { 0x01, 0xff95 },
2836 { 0x00, 0xba00 },
2837 { 0x04, 0xa800 },
2838 { 0x04, 0xa000 },
2839
2840 { 0x03, 0xff41 },
2841 { 0x02, 0xdf20 },
2842 { 0x01, 0x0140 },
2843 { 0x00, 0x00bb },
2844 { 0x04, 0xb800 },
2845 { 0x04, 0xb000 },
2846
2847 { 0x03, 0xdf41 },
2848 { 0x02, 0xdc60 },
2849 { 0x01, 0x6340 },
2850 { 0x00, 0x007d },
2851 { 0x04, 0xd800 },
2852 { 0x04, 0xd000 },
2853
2854 { 0x03, 0xdf01 },
2855 { 0x02, 0xdf20 },
2856 { 0x01, 0x100a },
2857 { 0x00, 0xa0ff },
2858 { 0x04, 0xf800 },
2859 { 0x04, 0xf000 },
2860
2861 { 0x1f, 0x0000 },
2862 { 0x0b, 0x0000 },
2863 { 0x00, 0x9200 }
2864 };
2865
françois romieu4da19632011-01-03 15:07:55 +00002866 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867}
2868
françois romieu4da19632011-01-03 15:07:55 +00002869static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002870{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002871 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002872 { 0x1f, 0x0002 },
2873 { 0x01, 0x90d0 },
2874 { 0x1f, 0x0000 }
2875 };
2876
françois romieu4da19632011-01-03 15:07:55 +00002877 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002878}
2879
françois romieu4da19632011-01-03 15:07:55 +00002880static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002881{
2882 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002883
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002884 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2885 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002886 return;
2887
françois romieu4da19632011-01-03 15:07:55 +00002888 rtl_writephy(tp, 0x1f, 0x0001);
2889 rtl_writephy(tp, 0x10, 0xf01b);
2890 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002891}
2892
françois romieu4da19632011-01-03 15:07:55 +00002893static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002894{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002895 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002896 { 0x1f, 0x0001 },
2897 { 0x04, 0x0000 },
2898 { 0x03, 0x00a1 },
2899 { 0x02, 0x0008 },
2900 { 0x01, 0x0120 },
2901 { 0x00, 0x1000 },
2902 { 0x04, 0x0800 },
2903 { 0x04, 0x9000 },
2904 { 0x03, 0x802f },
2905 { 0x02, 0x4f02 },
2906 { 0x01, 0x0409 },
2907 { 0x00, 0xf099 },
2908 { 0x04, 0x9800 },
2909 { 0x04, 0xa000 },
2910 { 0x03, 0xdf01 },
2911 { 0x02, 0xdf20 },
2912 { 0x01, 0xff95 },
2913 { 0x00, 0xba00 },
2914 { 0x04, 0xa800 },
2915 { 0x04, 0xf000 },
2916 { 0x03, 0xdf01 },
2917 { 0x02, 0xdf20 },
2918 { 0x01, 0x101a },
2919 { 0x00, 0xa0ff },
2920 { 0x04, 0xf800 },
2921 { 0x04, 0x0000 },
2922 { 0x1f, 0x0000 },
2923
2924 { 0x1f, 0x0001 },
2925 { 0x10, 0xf41b },
2926 { 0x14, 0xfb54 },
2927 { 0x18, 0xf5c7 },
2928 { 0x1f, 0x0000 },
2929
2930 { 0x1f, 0x0001 },
2931 { 0x17, 0x0cc0 },
2932 { 0x1f, 0x0000 }
2933 };
2934
françois romieu4da19632011-01-03 15:07:55 +00002935 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002936
françois romieu4da19632011-01-03 15:07:55 +00002937 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002938}
2939
françois romieu4da19632011-01-03 15:07:55 +00002940static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002941{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002942 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002943 { 0x1f, 0x0001 },
2944 { 0x04, 0x0000 },
2945 { 0x03, 0x00a1 },
2946 { 0x02, 0x0008 },
2947 { 0x01, 0x0120 },
2948 { 0x00, 0x1000 },
2949 { 0x04, 0x0800 },
2950 { 0x04, 0x9000 },
2951 { 0x03, 0x802f },
2952 { 0x02, 0x4f02 },
2953 { 0x01, 0x0409 },
2954 { 0x00, 0xf099 },
2955 { 0x04, 0x9800 },
2956 { 0x04, 0xa000 },
2957 { 0x03, 0xdf01 },
2958 { 0x02, 0xdf20 },
2959 { 0x01, 0xff95 },
2960 { 0x00, 0xba00 },
2961 { 0x04, 0xa800 },
2962 { 0x04, 0xf000 },
2963 { 0x03, 0xdf01 },
2964 { 0x02, 0xdf20 },
2965 { 0x01, 0x101a },
2966 { 0x00, 0xa0ff },
2967 { 0x04, 0xf800 },
2968 { 0x04, 0x0000 },
2969 { 0x1f, 0x0000 },
2970
2971 { 0x1f, 0x0001 },
2972 { 0x0b, 0x8480 },
2973 { 0x1f, 0x0000 },
2974
2975 { 0x1f, 0x0001 },
2976 { 0x18, 0x67c7 },
2977 { 0x04, 0x2000 },
2978 { 0x03, 0x002f },
2979 { 0x02, 0x4360 },
2980 { 0x01, 0x0109 },
2981 { 0x00, 0x3022 },
2982 { 0x04, 0x2800 },
2983 { 0x1f, 0x0000 },
2984
2985 { 0x1f, 0x0001 },
2986 { 0x17, 0x0cc0 },
2987 { 0x1f, 0x0000 }
2988 };
2989
françois romieu4da19632011-01-03 15:07:55 +00002990 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002991}
2992
françois romieu4da19632011-01-03 15:07:55 +00002993static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002994{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002995 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002996 { 0x10, 0xf41b },
2997 { 0x1f, 0x0000 }
2998 };
2999
françois romieu4da19632011-01-03 15:07:55 +00003000 rtl_writephy(tp, 0x1f, 0x0001);
3001 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02003002
françois romieu4da19632011-01-03 15:07:55 +00003003 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02003004}
3005
françois romieu4da19632011-01-03 15:07:55 +00003006static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02003007{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003008 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02003009 { 0x1f, 0x0001 },
3010 { 0x10, 0xf41b },
3011 { 0x1f, 0x0000 }
3012 };
3013
françois romieu4da19632011-01-03 15:07:55 +00003014 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02003015}
3016
françois romieu4da19632011-01-03 15:07:55 +00003017static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02003018{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003019 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02003020 { 0x1f, 0x0000 },
3021 { 0x1d, 0x0f00 },
3022 { 0x1f, 0x0002 },
3023 { 0x0c, 0x1ec8 },
3024 { 0x1f, 0x0000 }
3025 };
3026
françois romieu4da19632011-01-03 15:07:55 +00003027 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02003028}
3029
françois romieu4da19632011-01-03 15:07:55 +00003030static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02003031{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003032 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02003033 { 0x1f, 0x0001 },
3034 { 0x1d, 0x3d98 },
3035 { 0x1f, 0x0000 }
3036 };
3037
françois romieu4da19632011-01-03 15:07:55 +00003038 rtl_writephy(tp, 0x1f, 0x0000);
3039 rtl_patchphy(tp, 0x14, 1 << 5);
3040 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02003041
françois romieu4da19632011-01-03 15:07:55 +00003042 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02003043}
3044
françois romieu4da19632011-01-03 15:07:55 +00003045static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02003046{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003047 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02003048 { 0x1f, 0x0001 },
3049 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02003050 { 0x1f, 0x0002 },
3051 { 0x00, 0x88d4 },
3052 { 0x01, 0x82b1 },
3053 { 0x03, 0x7002 },
3054 { 0x08, 0x9e30 },
3055 { 0x09, 0x01f0 },
3056 { 0x0a, 0x5500 },
3057 { 0x0c, 0x00c8 },
3058 { 0x1f, 0x0003 },
3059 { 0x12, 0xc096 },
3060 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02003061 { 0x1f, 0x0000 },
3062 { 0x1f, 0x0000 },
3063 { 0x09, 0x2000 },
3064 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02003065 };
3066
françois romieu4da19632011-01-03 15:07:55 +00003067 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003068
françois romieu4da19632011-01-03 15:07:55 +00003069 rtl_patchphy(tp, 0x14, 1 << 5);
3070 rtl_patchphy(tp, 0x0d, 1 << 5);
3071 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02003072}
3073
françois romieu4da19632011-01-03 15:07:55 +00003074static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02003075{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003076 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02003077 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003078 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003079 { 0x03, 0x802f },
3080 { 0x02, 0x4f02 },
3081 { 0x01, 0x0409 },
3082 { 0x00, 0xf099 },
3083 { 0x04, 0x9800 },
3084 { 0x04, 0x9000 },
3085 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003086 { 0x1f, 0x0002 },
3087 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003088 { 0x06, 0x0761 },
3089 { 0x1f, 0x0003 },
3090 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003091 { 0x1f, 0x0000 }
3092 };
3093
françois romieu4da19632011-01-03 15:07:55 +00003094 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003095
françois romieu4da19632011-01-03 15:07:55 +00003096 rtl_patchphy(tp, 0x16, 1 << 0);
3097 rtl_patchphy(tp, 0x14, 1 << 5);
3098 rtl_patchphy(tp, 0x0d, 1 << 5);
3099 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003100}
3101
françois romieu4da19632011-01-03 15:07:55 +00003102static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02003103{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003104 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02003105 { 0x1f, 0x0001 },
3106 { 0x12, 0x2300 },
3107 { 0x1d, 0x3d98 },
3108 { 0x1f, 0x0002 },
3109 { 0x0c, 0x7eb8 },
3110 { 0x06, 0x5461 },
3111 { 0x1f, 0x0003 },
3112 { 0x16, 0x0f0a },
3113 { 0x1f, 0x0000 }
3114 };
3115
françois romieu4da19632011-01-03 15:07:55 +00003116 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02003117
françois romieu4da19632011-01-03 15:07:55 +00003118 rtl_patchphy(tp, 0x16, 1 << 0);
3119 rtl_patchphy(tp, 0x14, 1 << 5);
3120 rtl_patchphy(tp, 0x0d, 1 << 5);
3121 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02003122}
3123
françois romieu4da19632011-01-03 15:07:55 +00003124static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02003125{
françois romieu4da19632011-01-03 15:07:55 +00003126 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003127}
3128
françois romieubca03d52011-01-03 15:07:31 +00003129static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02003130{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003131 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003132 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02003133 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00003134 { 0x06, 0x4064 },
3135 { 0x07, 0x2863 },
3136 { 0x08, 0x059c },
3137 { 0x09, 0x26b4 },
3138 { 0x0a, 0x6a19 },
3139 { 0x0b, 0xdcc8 },
3140 { 0x10, 0xf06d },
3141 { 0x14, 0x7f68 },
3142 { 0x18, 0x7fd9 },
3143 { 0x1c, 0xf0ff },
3144 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02003145 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00003146 { 0x12, 0xf49f },
3147 { 0x13, 0x070b },
3148 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00003149 { 0x14, 0x94c0 },
3150
3151 /*
3152 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003153 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003154 */
Francois Romieu5b538df2008-07-20 16:22:45 +02003155 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00003156 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003157 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003158 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003159 { 0x06, 0x5561 },
3160
3161 /*
3162 * Can not link to 1Gbps with bad cable
3163 * Decrease SNR threshold form 21.07dB to 19.04dB
3164 */
3165 { 0x1f, 0x0001 },
3166 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003167
3168 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003169 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003170 };
3171
françois romieu4da19632011-01-03 15:07:55 +00003172 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02003173
françois romieubca03d52011-01-03 15:07:31 +00003174 /*
3175 * Rx Error Issue
3176 * Fine Tune Switching regulator parameter
3177 */
françois romieu4da19632011-01-03 15:07:55 +00003178 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003179 rtl_w0w1_phy(tp, 0x0b, 0x0010, 0x00ef);
3180 rtl_w0w1_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00003181
Francois Romieufdf6fc02012-07-06 22:40:38 +02003182 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003183 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003184 { 0x1f, 0x0002 },
3185 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02003186 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003187 { 0x05, 0x8330 },
3188 { 0x06, 0x669a },
3189 { 0x1f, 0x0002 }
3190 };
3191 int val;
3192
françois romieu4da19632011-01-03 15:07:55 +00003193 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003194
françois romieu4da19632011-01-03 15:07:55 +00003195 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003196
3197 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003198 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003199 0x0065, 0x0066, 0x0067, 0x0068,
3200 0x0069, 0x006a, 0x006b, 0x006c
3201 };
3202 int i;
3203
françois romieu4da19632011-01-03 15:07:55 +00003204 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003205
3206 val &= 0xff00;
3207 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003208 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003209 }
3210 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003211 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003212 { 0x1f, 0x0002 },
3213 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003214 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003215 { 0x05, 0x8330 },
3216 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003217 };
3218
françois romieu4da19632011-01-03 15:07:55 +00003219 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003220 }
3221
françois romieubca03d52011-01-03 15:07:31 +00003222 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00003223 rtl_writephy(tp, 0x1f, 0x0002);
3224 rtl_patchphy(tp, 0x0d, 0x0300);
3225 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00003226
françois romieubca03d52011-01-03 15:07:31 +00003227 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003228 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003229 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3230 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003231
françois romieu4da19632011-01-03 15:07:55 +00003232 rtl_writephy(tp, 0x1f, 0x0005);
3233 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003234
3235 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00003236
françois romieu4da19632011-01-03 15:07:55 +00003237 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003238}
3239
françois romieubca03d52011-01-03 15:07:31 +00003240static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003241{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003242 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003243 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00003244 { 0x1f, 0x0001 },
3245 { 0x06, 0x4064 },
3246 { 0x07, 0x2863 },
3247 { 0x08, 0x059c },
3248 { 0x09, 0x26b4 },
3249 { 0x0a, 0x6a19 },
3250 { 0x0b, 0xdcc8 },
3251 { 0x10, 0xf06d },
3252 { 0x14, 0x7f68 },
3253 { 0x18, 0x7fd9 },
3254 { 0x1c, 0xf0ff },
3255 { 0x1d, 0x3d9c },
3256 { 0x1f, 0x0003 },
3257 { 0x12, 0xf49f },
3258 { 0x13, 0x070b },
3259 { 0x1a, 0x05ad },
3260 { 0x14, 0x94c0 },
3261
françois romieubca03d52011-01-03 15:07:31 +00003262 /*
3263 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003264 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003265 */
françois romieudaf9df62009-10-07 12:44:20 +00003266 { 0x1f, 0x0002 },
3267 { 0x06, 0x5561 },
3268 { 0x1f, 0x0005 },
3269 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003270 { 0x06, 0x5561 },
3271
3272 /*
3273 * Can not link to 1Gbps with bad cable
3274 * Decrease SNR threshold form 21.07dB to 19.04dB
3275 */
3276 { 0x1f, 0x0001 },
3277 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003278
3279 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003280 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00003281 };
3282
françois romieu4da19632011-01-03 15:07:55 +00003283 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00003284
Francois Romieufdf6fc02012-07-06 22:40:38 +02003285 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003286 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003287 { 0x1f, 0x0002 },
3288 { 0x05, 0x669a },
3289 { 0x1f, 0x0005 },
3290 { 0x05, 0x8330 },
3291 { 0x06, 0x669a },
3292
3293 { 0x1f, 0x0002 }
3294 };
3295 int val;
3296
françois romieu4da19632011-01-03 15:07:55 +00003297 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003298
françois romieu4da19632011-01-03 15:07:55 +00003299 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003300 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08003301 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003302 0x0065, 0x0066, 0x0067, 0x0068,
3303 0x0069, 0x006a, 0x006b, 0x006c
3304 };
3305 int i;
3306
françois romieu4da19632011-01-03 15:07:55 +00003307 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003308
3309 val &= 0xff00;
3310 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003311 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003312 }
3313 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003314 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003315 { 0x1f, 0x0002 },
3316 { 0x05, 0x2642 },
3317 { 0x1f, 0x0005 },
3318 { 0x05, 0x8330 },
3319 { 0x06, 0x2642 }
3320 };
3321
françois romieu4da19632011-01-03 15:07:55 +00003322 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003323 }
3324
françois romieubca03d52011-01-03 15:07:31 +00003325 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003326 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003327 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3328 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003329
françois romieubca03d52011-01-03 15:07:31 +00003330 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00003331 rtl_writephy(tp, 0x1f, 0x0002);
3332 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00003333
françois romieu4da19632011-01-03 15:07:55 +00003334 rtl_writephy(tp, 0x1f, 0x0005);
3335 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003336
3337 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00003338
françois romieu4da19632011-01-03 15:07:55 +00003339 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003340}
3341
françois romieu4da19632011-01-03 15:07:55 +00003342static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003343{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003344 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003345 { 0x1f, 0x0002 },
3346 { 0x10, 0x0008 },
3347 { 0x0d, 0x006c },
3348
3349 { 0x1f, 0x0000 },
3350 { 0x0d, 0xf880 },
3351
3352 { 0x1f, 0x0001 },
3353 { 0x17, 0x0cc0 },
3354
3355 { 0x1f, 0x0001 },
3356 { 0x0b, 0xa4d8 },
3357 { 0x09, 0x281c },
3358 { 0x07, 0x2883 },
3359 { 0x0a, 0x6b35 },
3360 { 0x1d, 0x3da4 },
3361 { 0x1c, 0xeffd },
3362 { 0x14, 0x7f52 },
3363 { 0x18, 0x7fc6 },
3364 { 0x08, 0x0601 },
3365 { 0x06, 0x4063 },
3366 { 0x10, 0xf074 },
3367 { 0x1f, 0x0003 },
3368 { 0x13, 0x0789 },
3369 { 0x12, 0xf4bd },
3370 { 0x1a, 0x04fd },
3371 { 0x14, 0x84b0 },
3372 { 0x1f, 0x0000 },
3373 { 0x00, 0x9200 },
3374
3375 { 0x1f, 0x0005 },
3376 { 0x01, 0x0340 },
3377 { 0x1f, 0x0001 },
3378 { 0x04, 0x4000 },
3379 { 0x03, 0x1d21 },
3380 { 0x02, 0x0c32 },
3381 { 0x01, 0x0200 },
3382 { 0x00, 0x5554 },
3383 { 0x04, 0x4800 },
3384 { 0x04, 0x4000 },
3385 { 0x04, 0xf000 },
3386 { 0x03, 0xdf01 },
3387 { 0x02, 0xdf20 },
3388 { 0x01, 0x101a },
3389 { 0x00, 0xa0ff },
3390 { 0x04, 0xf800 },
3391 { 0x04, 0xf000 },
3392 { 0x1f, 0x0000 },
3393
3394 { 0x1f, 0x0007 },
3395 { 0x1e, 0x0023 },
3396 { 0x16, 0x0000 },
3397 { 0x1f, 0x0000 }
3398 };
3399
françois romieu4da19632011-01-03 15:07:55 +00003400 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003401}
3402
françois romieue6de30d2011-01-03 15:08:37 +00003403static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
3404{
3405 static const struct phy_reg phy_reg_init[] = {
3406 { 0x1f, 0x0001 },
3407 { 0x17, 0x0cc0 },
3408
3409 { 0x1f, 0x0007 },
3410 { 0x1e, 0x002d },
3411 { 0x18, 0x0040 },
3412 { 0x1f, 0x0000 }
3413 };
3414
3415 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3416 rtl_patchphy(tp, 0x0d, 1 << 5);
3417}
3418
Hayes Wang70090422011-07-06 15:58:06 +08003419static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00003420{
3421 static const struct phy_reg phy_reg_init[] = {
3422 /* Enable Delay cap */
3423 { 0x1f, 0x0005 },
3424 { 0x05, 0x8b80 },
3425 { 0x06, 0xc896 },
3426 { 0x1f, 0x0000 },
3427
3428 /* Channel estimation fine tune */
3429 { 0x1f, 0x0001 },
3430 { 0x0b, 0x6c20 },
3431 { 0x07, 0x2872 },
3432 { 0x1c, 0xefff },
3433 { 0x1f, 0x0003 },
3434 { 0x14, 0x6420 },
3435 { 0x1f, 0x0000 },
3436
3437 /* Update PFM & 10M TX idle timer */
3438 { 0x1f, 0x0007 },
3439 { 0x1e, 0x002f },
3440 { 0x15, 0x1919 },
3441 { 0x1f, 0x0000 },
3442
3443 { 0x1f, 0x0007 },
3444 { 0x1e, 0x00ac },
3445 { 0x18, 0x0006 },
3446 { 0x1f, 0x0000 }
3447 };
3448
Francois Romieu15ecd032011-04-27 13:52:22 -07003449 rtl_apply_firmware(tp);
3450
hayeswang01dc7fe2011-03-21 01:50:28 +00003451 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3452
3453 /* DCO enable for 10M IDLE Power */
3454 rtl_writephy(tp, 0x1f, 0x0007);
3455 rtl_writephy(tp, 0x1e, 0x0023);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003456 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003457 rtl_writephy(tp, 0x1f, 0x0000);
3458
3459 /* For impedance matching */
3460 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003461 rtl_w0w1_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003462 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003463
3464 /* PHY auto speed down */
3465 rtl_writephy(tp, 0x1f, 0x0007);
3466 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003467 rtl_w0w1_phy(tp, 0x18, 0x0050, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003468 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003469 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003470
3471 rtl_writephy(tp, 0x1f, 0x0005);
3472 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003473 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003474 rtl_writephy(tp, 0x1f, 0x0000);
3475
3476 rtl_writephy(tp, 0x1f, 0x0005);
3477 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003478 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003479 rtl_writephy(tp, 0x1f, 0x0007);
3480 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003481 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x1100);
hayeswang01dc7fe2011-03-21 01:50:28 +00003482 rtl_writephy(tp, 0x1f, 0x0006);
3483 rtl_writephy(tp, 0x00, 0x5a00);
3484 rtl_writephy(tp, 0x1f, 0x0000);
3485 rtl_writephy(tp, 0x0d, 0x0007);
3486 rtl_writephy(tp, 0x0e, 0x003c);
3487 rtl_writephy(tp, 0x0d, 0x4007);
3488 rtl_writephy(tp, 0x0e, 0x0000);
3489 rtl_writephy(tp, 0x0d, 0x0000);
3490}
3491
françois romieu9ecb9aa2012-12-07 11:20:21 +00003492static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3493{
3494 const u16 w[] = {
3495 addr[0] | (addr[1] << 8),
3496 addr[2] | (addr[3] << 8),
3497 addr[4] | (addr[5] << 8)
3498 };
3499 const struct exgmac_reg e[] = {
3500 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3501 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3502 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3503 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3504 };
3505
3506 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3507}
3508
Hayes Wang70090422011-07-06 15:58:06 +08003509static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3510{
3511 static const struct phy_reg phy_reg_init[] = {
3512 /* Enable Delay cap */
3513 { 0x1f, 0x0004 },
3514 { 0x1f, 0x0007 },
3515 { 0x1e, 0x00ac },
3516 { 0x18, 0x0006 },
3517 { 0x1f, 0x0002 },
3518 { 0x1f, 0x0000 },
3519 { 0x1f, 0x0000 },
3520
3521 /* Channel estimation fine tune */
3522 { 0x1f, 0x0003 },
3523 { 0x09, 0xa20f },
3524 { 0x1f, 0x0000 },
3525 { 0x1f, 0x0000 },
3526
3527 /* Green Setting */
3528 { 0x1f, 0x0005 },
3529 { 0x05, 0x8b5b },
3530 { 0x06, 0x9222 },
3531 { 0x05, 0x8b6d },
3532 { 0x06, 0x8000 },
3533 { 0x05, 0x8b76 },
3534 { 0x06, 0x8000 },
3535 { 0x1f, 0x0000 }
3536 };
3537
3538 rtl_apply_firmware(tp);
3539
3540 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3541
3542 /* For 4-corner performance improve */
3543 rtl_writephy(tp, 0x1f, 0x0005);
3544 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003545 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003546 rtl_writephy(tp, 0x1f, 0x0000);
3547
3548 /* PHY auto speed down */
3549 rtl_writephy(tp, 0x1f, 0x0004);
3550 rtl_writephy(tp, 0x1f, 0x0007);
3551 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003552 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003553 rtl_writephy(tp, 0x1f, 0x0002);
3554 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003555 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003556
3557 /* improve 10M EEE waveform */
3558 rtl_writephy(tp, 0x1f, 0x0005);
3559 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003560 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003561 rtl_writephy(tp, 0x1f, 0x0000);
3562
3563 /* Improve 2-pair detection performance */
3564 rtl_writephy(tp, 0x1f, 0x0005);
3565 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003566 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003567 rtl_writephy(tp, 0x1f, 0x0000);
3568
3569 /* EEE setting */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08003570 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08003571 rtl_writephy(tp, 0x1f, 0x0005);
3572 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003573 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
Hayes Wang70090422011-07-06 15:58:06 +08003574 rtl_writephy(tp, 0x1f, 0x0004);
3575 rtl_writephy(tp, 0x1f, 0x0007);
3576 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003577 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003578 rtl_writephy(tp, 0x1f, 0x0002);
3579 rtl_writephy(tp, 0x1f, 0x0000);
3580 rtl_writephy(tp, 0x0d, 0x0007);
3581 rtl_writephy(tp, 0x0e, 0x003c);
3582 rtl_writephy(tp, 0x0d, 0x4007);
3583 rtl_writephy(tp, 0x0e, 0x0000);
3584 rtl_writephy(tp, 0x0d, 0x0000);
3585
3586 /* Green feature */
3587 rtl_writephy(tp, 0x1f, 0x0003);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003588 rtl_w0w1_phy(tp, 0x19, 0x0000, 0x0001);
3589 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0400);
Hayes Wang70090422011-07-06 15:58:06 +08003590 rtl_writephy(tp, 0x1f, 0x0000);
hayeswange0c07552012-10-23 20:24:03 +00003591
françois romieu9ecb9aa2012-12-07 11:20:21 +00003592 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3593 rtl_rar_exgmac_set(tp, tp->dev->dev_addr);
Hayes Wang70090422011-07-06 15:58:06 +08003594}
3595
Hayes Wang5f886e02012-03-30 14:33:03 +08003596static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3597{
3598 /* For 4-corner performance improve */
3599 rtl_writephy(tp, 0x1f, 0x0005);
3600 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003601 rtl_w0w1_phy(tp, 0x06, 0x0006, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003602 rtl_writephy(tp, 0x1f, 0x0000);
3603
3604 /* PHY auto speed down */
3605 rtl_writephy(tp, 0x1f, 0x0007);
3606 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003607 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003608 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003609 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003610
3611 /* Improve 10M EEE waveform */
3612 rtl_writephy(tp, 0x1f, 0x0005);
3613 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003614 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003615 rtl_writephy(tp, 0x1f, 0x0000);
3616}
3617
Hayes Wangc2218922011-09-06 16:55:18 +08003618static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3619{
3620 static const struct phy_reg phy_reg_init[] = {
3621 /* Channel estimation fine tune */
3622 { 0x1f, 0x0003 },
3623 { 0x09, 0xa20f },
3624 { 0x1f, 0x0000 },
3625
3626 /* Modify green table for giga & fnet */
3627 { 0x1f, 0x0005 },
3628 { 0x05, 0x8b55 },
3629 { 0x06, 0x0000 },
3630 { 0x05, 0x8b5e },
3631 { 0x06, 0x0000 },
3632 { 0x05, 0x8b67 },
3633 { 0x06, 0x0000 },
3634 { 0x05, 0x8b70 },
3635 { 0x06, 0x0000 },
3636 { 0x1f, 0x0000 },
3637 { 0x1f, 0x0007 },
3638 { 0x1e, 0x0078 },
3639 { 0x17, 0x0000 },
3640 { 0x19, 0x00fb },
3641 { 0x1f, 0x0000 },
3642
3643 /* Modify green table for 10M */
3644 { 0x1f, 0x0005 },
3645 { 0x05, 0x8b79 },
3646 { 0x06, 0xaa00 },
3647 { 0x1f, 0x0000 },
3648
3649 /* Disable hiimpedance detection (RTCT) */
3650 { 0x1f, 0x0003 },
3651 { 0x01, 0x328a },
3652 { 0x1f, 0x0000 }
3653 };
3654
3655 rtl_apply_firmware(tp);
3656
3657 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3658
Hayes Wang5f886e02012-03-30 14:33:03 +08003659 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003660
3661 /* Improve 2-pair detection performance */
3662 rtl_writephy(tp, 0x1f, 0x0005);
3663 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003664 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangc2218922011-09-06 16:55:18 +08003665 rtl_writephy(tp, 0x1f, 0x0000);
3666}
3667
3668static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3669{
3670 rtl_apply_firmware(tp);
3671
Hayes Wang5f886e02012-03-30 14:33:03 +08003672 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003673}
3674
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003675static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3676{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003677 static const struct phy_reg phy_reg_init[] = {
3678 /* Channel estimation fine tune */
3679 { 0x1f, 0x0003 },
3680 { 0x09, 0xa20f },
3681 { 0x1f, 0x0000 },
3682
3683 /* Modify green table for giga & fnet */
3684 { 0x1f, 0x0005 },
3685 { 0x05, 0x8b55 },
3686 { 0x06, 0x0000 },
3687 { 0x05, 0x8b5e },
3688 { 0x06, 0x0000 },
3689 { 0x05, 0x8b67 },
3690 { 0x06, 0x0000 },
3691 { 0x05, 0x8b70 },
3692 { 0x06, 0x0000 },
3693 { 0x1f, 0x0000 },
3694 { 0x1f, 0x0007 },
3695 { 0x1e, 0x0078 },
3696 { 0x17, 0x0000 },
3697 { 0x19, 0x00aa },
3698 { 0x1f, 0x0000 },
3699
3700 /* Modify green table for 10M */
3701 { 0x1f, 0x0005 },
3702 { 0x05, 0x8b79 },
3703 { 0x06, 0xaa00 },
3704 { 0x1f, 0x0000 },
3705
3706 /* Disable hiimpedance detection (RTCT) */
3707 { 0x1f, 0x0003 },
3708 { 0x01, 0x328a },
3709 { 0x1f, 0x0000 }
3710 };
3711
3712
3713 rtl_apply_firmware(tp);
3714
3715 rtl8168f_hw_phy_config(tp);
3716
3717 /* Improve 2-pair detection performance */
3718 rtl_writephy(tp, 0x1f, 0x0005);
3719 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003720 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003721 rtl_writephy(tp, 0x1f, 0x0000);
3722
3723 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3724
3725 /* Modify green table for giga */
3726 rtl_writephy(tp, 0x1f, 0x0005);
3727 rtl_writephy(tp, 0x05, 0x8b54);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003728 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003729 rtl_writephy(tp, 0x05, 0x8b5d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003730 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003731 rtl_writephy(tp, 0x05, 0x8a7c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003732 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003733 rtl_writephy(tp, 0x05, 0x8a7f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003734 rtl_w0w1_phy(tp, 0x06, 0x0100, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003735 rtl_writephy(tp, 0x05, 0x8a82);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003736 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003737 rtl_writephy(tp, 0x05, 0x8a85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003738 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003739 rtl_writephy(tp, 0x05, 0x8a88);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003740 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003741 rtl_writephy(tp, 0x1f, 0x0000);
3742
3743 /* uc same-seed solution */
3744 rtl_writephy(tp, 0x1f, 0x0005);
3745 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003746 rtl_w0w1_phy(tp, 0x06, 0x8000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003747 rtl_writephy(tp, 0x1f, 0x0000);
3748
3749 /* eee setting */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08003750 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003751 rtl_writephy(tp, 0x1f, 0x0005);
3752 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003753 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003754 rtl_writephy(tp, 0x1f, 0x0004);
3755 rtl_writephy(tp, 0x1f, 0x0007);
3756 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003757 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003758 rtl_writephy(tp, 0x1f, 0x0000);
3759 rtl_writephy(tp, 0x0d, 0x0007);
3760 rtl_writephy(tp, 0x0e, 0x003c);
3761 rtl_writephy(tp, 0x0d, 0x4007);
3762 rtl_writephy(tp, 0x0e, 0x0000);
3763 rtl_writephy(tp, 0x0d, 0x0000);
3764
3765 /* Green feature */
3766 rtl_writephy(tp, 0x1f, 0x0003);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003767 rtl_w0w1_phy(tp, 0x19, 0x0000, 0x0001);
3768 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0400);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003769 rtl_writephy(tp, 0x1f, 0x0000);
3770}
3771
Hayes Wangc5583862012-07-02 17:23:22 +08003772static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp)
3773{
Hayes Wangc5583862012-07-02 17:23:22 +08003774 rtl_apply_firmware(tp);
3775
hayeswang41f44d12013-04-01 22:23:36 +00003776 rtl_writephy(tp, 0x1f, 0x0a46);
3777 if (rtl_readphy(tp, 0x10) & 0x0100) {
3778 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003779 rtl_w0w1_phy(tp, 0x12, 0x0000, 0x8000);
hayeswang41f44d12013-04-01 22:23:36 +00003780 } else {
3781 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003782 rtl_w0w1_phy(tp, 0x12, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003783 }
Hayes Wangc5583862012-07-02 17:23:22 +08003784
hayeswang41f44d12013-04-01 22:23:36 +00003785 rtl_writephy(tp, 0x1f, 0x0a46);
3786 if (rtl_readphy(tp, 0x13) & 0x0100) {
3787 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003788 rtl_w0w1_phy(tp, 0x15, 0x0002, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003789 } else {
hayeswangfe7524c2013-04-01 22:23:37 +00003790 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003791 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0002);
hayeswang41f44d12013-04-01 22:23:36 +00003792 }
Hayes Wangc5583862012-07-02 17:23:22 +08003793
hayeswang41f44d12013-04-01 22:23:36 +00003794 /* Enable PHY auto speed down */
3795 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003796 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003797
hayeswangfe7524c2013-04-01 22:23:37 +00003798 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003799 rtl_w0w1_phy(tp, 0x14, 0x0100, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003800 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003801 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003802 rtl_writephy(tp, 0x1f, 0x0a43);
3803 rtl_writephy(tp, 0x13, 0x8084);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003804 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
3805 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003806
hayeswang41f44d12013-04-01 22:23:36 +00003807 /* EEE auto-fallback function */
3808 rtl_writephy(tp, 0x1f, 0x0a4b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003809 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003810
hayeswang41f44d12013-04-01 22:23:36 +00003811 /* Enable UC LPF tune function */
3812 rtl_writephy(tp, 0x1f, 0x0a43);
3813 rtl_writephy(tp, 0x13, 0x8012);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003814 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003815
3816 rtl_writephy(tp, 0x1f, 0x0c42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003817 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
hayeswang41f44d12013-04-01 22:23:36 +00003818
hayeswangfe7524c2013-04-01 22:23:37 +00003819 /* Improve SWR Efficiency */
3820 rtl_writephy(tp, 0x1f, 0x0bcd);
3821 rtl_writephy(tp, 0x14, 0x5065);
3822 rtl_writephy(tp, 0x14, 0xd065);
3823 rtl_writephy(tp, 0x1f, 0x0bc8);
3824 rtl_writephy(tp, 0x11, 0x5655);
3825 rtl_writephy(tp, 0x1f, 0x0bcd);
3826 rtl_writephy(tp, 0x14, 0x1065);
3827 rtl_writephy(tp, 0x14, 0x9065);
3828 rtl_writephy(tp, 0x14, 0x1065);
3829
David Chang1bac1072013-11-27 15:48:36 +08003830 /* Check ALDPS bit, disable it if enabled */
3831 rtl_writephy(tp, 0x1f, 0x0a43);
3832 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003833 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
David Chang1bac1072013-11-27 15:48:36 +08003834
hayeswang41f44d12013-04-01 22:23:36 +00003835 rtl_writephy(tp, 0x1f, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003836}
3837
hayeswang57538c42013-04-01 22:23:40 +00003838static void rtl8168g_2_hw_phy_config(struct rtl8169_private *tp)
3839{
3840 rtl_apply_firmware(tp);
3841}
3842
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003843static void rtl8168h_1_hw_phy_config(struct rtl8169_private *tp)
3844{
3845 u16 dout_tapbin;
3846 u32 data;
3847
3848 rtl_apply_firmware(tp);
3849
3850 /* CHN EST parameters adjust - giga master */
3851 rtl_writephy(tp, 0x1f, 0x0a43);
3852 rtl_writephy(tp, 0x13, 0x809b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003853 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003854 rtl_writephy(tp, 0x13, 0x80a2);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003855 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003856 rtl_writephy(tp, 0x13, 0x80a4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003857 rtl_w0w1_phy(tp, 0x14, 0x8500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003858 rtl_writephy(tp, 0x13, 0x809c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003859 rtl_w0w1_phy(tp, 0x14, 0xbd00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003860 rtl_writephy(tp, 0x1f, 0x0000);
3861
3862 /* CHN EST parameters adjust - giga slave */
3863 rtl_writephy(tp, 0x1f, 0x0a43);
3864 rtl_writephy(tp, 0x13, 0x80ad);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003865 rtl_w0w1_phy(tp, 0x14, 0x7000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003866 rtl_writephy(tp, 0x13, 0x80b4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003867 rtl_w0w1_phy(tp, 0x14, 0x5000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003868 rtl_writephy(tp, 0x13, 0x80ac);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003869 rtl_w0w1_phy(tp, 0x14, 0x4000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003870 rtl_writephy(tp, 0x1f, 0x0000);
3871
3872 /* CHN EST parameters adjust - fnet */
3873 rtl_writephy(tp, 0x1f, 0x0a43);
3874 rtl_writephy(tp, 0x13, 0x808e);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003875 rtl_w0w1_phy(tp, 0x14, 0x1200, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003876 rtl_writephy(tp, 0x13, 0x8090);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003877 rtl_w0w1_phy(tp, 0x14, 0xe500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003878 rtl_writephy(tp, 0x13, 0x8092);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003879 rtl_w0w1_phy(tp, 0x14, 0x9f00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003880 rtl_writephy(tp, 0x1f, 0x0000);
3881
3882 /* enable R-tune & PGA-retune function */
3883 dout_tapbin = 0;
3884 rtl_writephy(tp, 0x1f, 0x0a46);
3885 data = rtl_readphy(tp, 0x13);
3886 data &= 3;
3887 data <<= 2;
3888 dout_tapbin |= data;
3889 data = rtl_readphy(tp, 0x12);
3890 data &= 0xc000;
3891 data >>= 14;
3892 dout_tapbin |= data;
3893 dout_tapbin = ~(dout_tapbin^0x08);
3894 dout_tapbin <<= 12;
3895 dout_tapbin &= 0xf000;
3896 rtl_writephy(tp, 0x1f, 0x0a43);
3897 rtl_writephy(tp, 0x13, 0x827a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003898 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003899 rtl_writephy(tp, 0x13, 0x827b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003900 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003901 rtl_writephy(tp, 0x13, 0x827c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003902 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003903 rtl_writephy(tp, 0x13, 0x827d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003904 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003905
3906 rtl_writephy(tp, 0x1f, 0x0a43);
3907 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003908 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003909 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003910 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003911 rtl_writephy(tp, 0x1f, 0x0000);
3912
3913 /* enable GPHY 10M */
3914 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003915 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003916 rtl_writephy(tp, 0x1f, 0x0000);
3917
3918 /* SAR ADC performance */
3919 rtl_writephy(tp, 0x1f, 0x0bca);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003920 rtl_w0w1_phy(tp, 0x17, 0x4000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003921 rtl_writephy(tp, 0x1f, 0x0000);
3922
3923 rtl_writephy(tp, 0x1f, 0x0a43);
3924 rtl_writephy(tp, 0x13, 0x803f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003925 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003926 rtl_writephy(tp, 0x13, 0x8047);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003927 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003928 rtl_writephy(tp, 0x13, 0x804f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003929 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003930 rtl_writephy(tp, 0x13, 0x8057);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003931 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003932 rtl_writephy(tp, 0x13, 0x805f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003933 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003934 rtl_writephy(tp, 0x13, 0x8067);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003935 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003936 rtl_writephy(tp, 0x13, 0x806f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003937 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003938 rtl_writephy(tp, 0x1f, 0x0000);
3939
3940 /* disable phy pfm mode */
3941 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003942 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003943 rtl_writephy(tp, 0x1f, 0x0000);
3944
3945 /* Check ALDPS bit, disable it if enabled */
3946 rtl_writephy(tp, 0x1f, 0x0a43);
3947 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003948 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003949
3950 rtl_writephy(tp, 0x1f, 0x0000);
3951}
3952
3953static void rtl8168h_2_hw_phy_config(struct rtl8169_private *tp)
3954{
3955 u16 ioffset_p3, ioffset_p2, ioffset_p1, ioffset_p0;
3956 u16 rlen;
3957 u32 data;
3958
3959 rtl_apply_firmware(tp);
3960
3961 /* CHIN EST parameter update */
3962 rtl_writephy(tp, 0x1f, 0x0a43);
3963 rtl_writephy(tp, 0x13, 0x808a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003964 rtl_w0w1_phy(tp, 0x14, 0x000a, 0x003f);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003965 rtl_writephy(tp, 0x1f, 0x0000);
3966
3967 /* enable R-tune & PGA-retune function */
3968 rtl_writephy(tp, 0x1f, 0x0a43);
3969 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003970 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003971 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003972 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003973 rtl_writephy(tp, 0x1f, 0x0000);
3974
3975 /* enable GPHY 10M */
3976 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003977 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003978 rtl_writephy(tp, 0x1f, 0x0000);
3979
3980 r8168_mac_ocp_write(tp, 0xdd02, 0x807d);
3981 data = r8168_mac_ocp_read(tp, 0xdd02);
3982 ioffset_p3 = ((data & 0x80)>>7);
3983 ioffset_p3 <<= 3;
3984
3985 data = r8168_mac_ocp_read(tp, 0xdd00);
3986 ioffset_p3 |= ((data & (0xe000))>>13);
3987 ioffset_p2 = ((data & (0x1e00))>>9);
3988 ioffset_p1 = ((data & (0x01e0))>>5);
3989 ioffset_p0 = ((data & 0x0010)>>4);
3990 ioffset_p0 <<= 3;
3991 ioffset_p0 |= (data & (0x07));
3992 data = (ioffset_p3<<12)|(ioffset_p2<<8)|(ioffset_p1<<4)|(ioffset_p0);
3993
Chun-Hao Lin05b96872014-10-01 23:17:12 +08003994 if ((ioffset_p3 != 0x0f) || (ioffset_p2 != 0x0f) ||
3995 (ioffset_p1 != 0x0f) || (ioffset_p0 == 0x0f)) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003996 rtl_writephy(tp, 0x1f, 0x0bcf);
3997 rtl_writephy(tp, 0x16, data);
3998 rtl_writephy(tp, 0x1f, 0x0000);
3999 }
4000
4001 /* Modify rlen (TX LPF corner frequency) level */
4002 rtl_writephy(tp, 0x1f, 0x0bcd);
4003 data = rtl_readphy(tp, 0x16);
4004 data &= 0x000f;
4005 rlen = 0;
4006 if (data > 3)
4007 rlen = data - 3;
4008 data = rlen | (rlen<<4) | (rlen<<8) | (rlen<<12);
4009 rtl_writephy(tp, 0x17, data);
4010 rtl_writephy(tp, 0x1f, 0x0bcd);
4011 rtl_writephy(tp, 0x1f, 0x0000);
4012
4013 /* disable phy pfm mode */
4014 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004015 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004016 rtl_writephy(tp, 0x1f, 0x0000);
4017
4018 /* Check ALDPS bit, disable it if enabled */
4019 rtl_writephy(tp, 0x1f, 0x0a43);
4020 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08004021 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004022
4023 rtl_writephy(tp, 0x1f, 0x0000);
4024}
4025
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004026static void rtl8168ep_1_hw_phy_config(struct rtl8169_private *tp)
4027{
4028 /* Enable PHY auto speed down */
4029 rtl_writephy(tp, 0x1f, 0x0a44);
4030 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
4031 rtl_writephy(tp, 0x1f, 0x0000);
4032
4033 /* patch 10M & ALDPS */
4034 rtl_writephy(tp, 0x1f, 0x0bcc);
4035 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
4036 rtl_writephy(tp, 0x1f, 0x0a44);
4037 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
4038 rtl_writephy(tp, 0x1f, 0x0a43);
4039 rtl_writephy(tp, 0x13, 0x8084);
4040 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
4041 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
4042 rtl_writephy(tp, 0x1f, 0x0000);
4043
4044 /* Enable EEE auto-fallback function */
4045 rtl_writephy(tp, 0x1f, 0x0a4b);
4046 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
4047 rtl_writephy(tp, 0x1f, 0x0000);
4048
4049 /* Enable UC LPF tune function */
4050 rtl_writephy(tp, 0x1f, 0x0a43);
4051 rtl_writephy(tp, 0x13, 0x8012);
4052 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4053 rtl_writephy(tp, 0x1f, 0x0000);
4054
4055 /* set rg_sel_sdm_rate */
4056 rtl_writephy(tp, 0x1f, 0x0c42);
4057 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4058 rtl_writephy(tp, 0x1f, 0x0000);
4059
4060 /* Check ALDPS bit, disable it if enabled */
4061 rtl_writephy(tp, 0x1f, 0x0a43);
4062 if (rtl_readphy(tp, 0x10) & 0x0004)
4063 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4064
4065 rtl_writephy(tp, 0x1f, 0x0000);
4066}
4067
4068static void rtl8168ep_2_hw_phy_config(struct rtl8169_private *tp)
4069{
4070 /* patch 10M & ALDPS */
4071 rtl_writephy(tp, 0x1f, 0x0bcc);
4072 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
4073 rtl_writephy(tp, 0x1f, 0x0a44);
4074 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
4075 rtl_writephy(tp, 0x1f, 0x0a43);
4076 rtl_writephy(tp, 0x13, 0x8084);
4077 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
4078 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
4079 rtl_writephy(tp, 0x1f, 0x0000);
4080
4081 /* Enable UC LPF tune function */
4082 rtl_writephy(tp, 0x1f, 0x0a43);
4083 rtl_writephy(tp, 0x13, 0x8012);
4084 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4085 rtl_writephy(tp, 0x1f, 0x0000);
4086
4087 /* Set rg_sel_sdm_rate */
4088 rtl_writephy(tp, 0x1f, 0x0c42);
4089 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4090 rtl_writephy(tp, 0x1f, 0x0000);
4091
4092 /* Channel estimation parameters */
4093 rtl_writephy(tp, 0x1f, 0x0a43);
4094 rtl_writephy(tp, 0x13, 0x80f3);
4095 rtl_w0w1_phy(tp, 0x14, 0x8b00, ~0x8bff);
4096 rtl_writephy(tp, 0x13, 0x80f0);
4097 rtl_w0w1_phy(tp, 0x14, 0x3a00, ~0x3aff);
4098 rtl_writephy(tp, 0x13, 0x80ef);
4099 rtl_w0w1_phy(tp, 0x14, 0x0500, ~0x05ff);
4100 rtl_writephy(tp, 0x13, 0x80f6);
4101 rtl_w0w1_phy(tp, 0x14, 0x6e00, ~0x6eff);
4102 rtl_writephy(tp, 0x13, 0x80ec);
4103 rtl_w0w1_phy(tp, 0x14, 0x6800, ~0x68ff);
4104 rtl_writephy(tp, 0x13, 0x80ed);
4105 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4106 rtl_writephy(tp, 0x13, 0x80f2);
4107 rtl_w0w1_phy(tp, 0x14, 0xf400, ~0xf4ff);
4108 rtl_writephy(tp, 0x13, 0x80f4);
4109 rtl_w0w1_phy(tp, 0x14, 0x8500, ~0x85ff);
4110 rtl_writephy(tp, 0x1f, 0x0a43);
4111 rtl_writephy(tp, 0x13, 0x8110);
4112 rtl_w0w1_phy(tp, 0x14, 0xa800, ~0xa8ff);
4113 rtl_writephy(tp, 0x13, 0x810f);
4114 rtl_w0w1_phy(tp, 0x14, 0x1d00, ~0x1dff);
4115 rtl_writephy(tp, 0x13, 0x8111);
4116 rtl_w0w1_phy(tp, 0x14, 0xf500, ~0xf5ff);
4117 rtl_writephy(tp, 0x13, 0x8113);
4118 rtl_w0w1_phy(tp, 0x14, 0x6100, ~0x61ff);
4119 rtl_writephy(tp, 0x13, 0x8115);
4120 rtl_w0w1_phy(tp, 0x14, 0x9200, ~0x92ff);
4121 rtl_writephy(tp, 0x13, 0x810e);
4122 rtl_w0w1_phy(tp, 0x14, 0x0400, ~0x04ff);
4123 rtl_writephy(tp, 0x13, 0x810c);
4124 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4125 rtl_writephy(tp, 0x13, 0x810b);
4126 rtl_w0w1_phy(tp, 0x14, 0x5a00, ~0x5aff);
4127 rtl_writephy(tp, 0x1f, 0x0a43);
4128 rtl_writephy(tp, 0x13, 0x80d1);
4129 rtl_w0w1_phy(tp, 0x14, 0xff00, ~0xffff);
4130 rtl_writephy(tp, 0x13, 0x80cd);
4131 rtl_w0w1_phy(tp, 0x14, 0x9e00, ~0x9eff);
4132 rtl_writephy(tp, 0x13, 0x80d3);
4133 rtl_w0w1_phy(tp, 0x14, 0x0e00, ~0x0eff);
4134 rtl_writephy(tp, 0x13, 0x80d5);
4135 rtl_w0w1_phy(tp, 0x14, 0xca00, ~0xcaff);
4136 rtl_writephy(tp, 0x13, 0x80d7);
4137 rtl_w0w1_phy(tp, 0x14, 0x8400, ~0x84ff);
4138
4139 /* Force PWM-mode */
4140 rtl_writephy(tp, 0x1f, 0x0bcd);
4141 rtl_writephy(tp, 0x14, 0x5065);
4142 rtl_writephy(tp, 0x14, 0xd065);
4143 rtl_writephy(tp, 0x1f, 0x0bc8);
4144 rtl_writephy(tp, 0x12, 0x00ed);
4145 rtl_writephy(tp, 0x1f, 0x0bcd);
4146 rtl_writephy(tp, 0x14, 0x1065);
4147 rtl_writephy(tp, 0x14, 0x9065);
4148 rtl_writephy(tp, 0x14, 0x1065);
4149 rtl_writephy(tp, 0x1f, 0x0000);
4150
4151 /* Check ALDPS bit, disable it if enabled */
4152 rtl_writephy(tp, 0x1f, 0x0a43);
4153 if (rtl_readphy(tp, 0x10) & 0x0004)
4154 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4155
4156 rtl_writephy(tp, 0x1f, 0x0000);
4157}
4158
françois romieu4da19632011-01-03 15:07:55 +00004159static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004160{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004161 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004162 { 0x1f, 0x0003 },
4163 { 0x08, 0x441d },
4164 { 0x01, 0x9100 },
4165 { 0x1f, 0x0000 }
4166 };
4167
françois romieu4da19632011-01-03 15:07:55 +00004168 rtl_writephy(tp, 0x1f, 0x0000);
4169 rtl_patchphy(tp, 0x11, 1 << 12);
4170 rtl_patchphy(tp, 0x19, 1 << 13);
4171 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004172
françois romieu4da19632011-01-03 15:07:55 +00004173 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02004174}
4175
Hayes Wang5a5e4442011-02-22 17:26:21 +08004176static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
4177{
4178 static const struct phy_reg phy_reg_init[] = {
4179 { 0x1f, 0x0005 },
4180 { 0x1a, 0x0000 },
4181 { 0x1f, 0x0000 },
4182
4183 { 0x1f, 0x0004 },
4184 { 0x1c, 0x0000 },
4185 { 0x1f, 0x0000 },
4186
4187 { 0x1f, 0x0001 },
4188 { 0x15, 0x7701 },
4189 { 0x1f, 0x0000 }
4190 };
4191
4192 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004193 rtl_writephy(tp, 0x1f, 0x0000);
4194 rtl_writephy(tp, 0x18, 0x0310);
4195 msleep(100);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004196
François Romieu953a12c2011-04-24 17:38:48 +02004197 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004198
4199 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4200}
4201
Hayes Wang7e18dca2012-03-30 14:33:02 +08004202static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
4203{
Hayes Wang7e18dca2012-03-30 14:33:02 +08004204 /* Disable ALDPS before setting firmware */
Francois Romieueef63cc2013-02-08 23:43:20 +01004205 rtl_writephy(tp, 0x1f, 0x0000);
4206 rtl_writephy(tp, 0x18, 0x0310);
4207 msleep(20);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004208
4209 rtl_apply_firmware(tp);
4210
4211 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02004212 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004213 rtl_writephy(tp, 0x1f, 0x0004);
4214 rtl_writephy(tp, 0x10, 0x401f);
4215 rtl_writephy(tp, 0x19, 0x7030);
4216 rtl_writephy(tp, 0x1f, 0x0000);
4217}
4218
Hayes Wang5598bfe2012-07-02 17:23:21 +08004219static void rtl8106e_hw_phy_config(struct rtl8169_private *tp)
4220{
Hayes Wang5598bfe2012-07-02 17:23:21 +08004221 static const struct phy_reg phy_reg_init[] = {
4222 { 0x1f, 0x0004 },
4223 { 0x10, 0xc07f },
4224 { 0x19, 0x7030 },
4225 { 0x1f, 0x0000 }
4226 };
4227
4228 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004229 rtl_writephy(tp, 0x1f, 0x0000);
4230 rtl_writephy(tp, 0x18, 0x0310);
4231 msleep(100);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004232
4233 rtl_apply_firmware(tp);
4234
Francois Romieufdf6fc02012-07-06 22:40:38 +02004235 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004236 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4237
Francois Romieufdf6fc02012-07-06 22:40:38 +02004238 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004239}
4240
Francois Romieu5615d9f2007-08-17 17:50:46 +02004241static void rtl_hw_phy_config(struct net_device *dev)
4242{
4243 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004244
4245 rtl8169_print_mac_version(tp);
4246
4247 switch (tp->mac_version) {
4248 case RTL_GIGA_MAC_VER_01:
4249 break;
4250 case RTL_GIGA_MAC_VER_02:
4251 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00004252 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004253 break;
4254 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00004255 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004256 break;
françois romieu2e9558562009-08-10 19:44:19 +00004257 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00004258 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00004259 break;
françois romieu8c7006a2009-08-10 19:43:29 +00004260 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00004261 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00004262 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02004263 case RTL_GIGA_MAC_VER_07:
4264 case RTL_GIGA_MAC_VER_08:
4265 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00004266 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004267 break;
Francois Romieu236b8082008-05-30 16:11:48 +02004268 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00004269 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004270 break;
4271 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00004272 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004273 break;
4274 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00004275 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004276 break;
Francois Romieu867763c2007-08-17 18:21:58 +02004277 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00004278 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004279 break;
4280 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00004281 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004282 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02004283 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00004284 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02004285 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004286 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00004287 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02004288 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004289 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00004290 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004291 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004292 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004293 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00004294 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004295 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004296 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00004297 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004298 break;
4299 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00004300 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004301 break;
4302 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00004303 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02004304 break;
françois romieue6de30d2011-01-03 15:08:37 +00004305 case RTL_GIGA_MAC_VER_28:
4306 rtl8168d_4_hw_phy_config(tp);
4307 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004308 case RTL_GIGA_MAC_VER_29:
4309 case RTL_GIGA_MAC_VER_30:
4310 rtl8105e_hw_phy_config(tp);
4311 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004312 case RTL_GIGA_MAC_VER_31:
4313 /* None. */
4314 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00004315 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00004316 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004317 rtl8168e_1_hw_phy_config(tp);
4318 break;
4319 case RTL_GIGA_MAC_VER_34:
4320 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00004321 break;
Hayes Wangc2218922011-09-06 16:55:18 +08004322 case RTL_GIGA_MAC_VER_35:
4323 rtl8168f_1_hw_phy_config(tp);
4324 break;
4325 case RTL_GIGA_MAC_VER_36:
4326 rtl8168f_2_hw_phy_config(tp);
4327 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004328
Hayes Wang7e18dca2012-03-30 14:33:02 +08004329 case RTL_GIGA_MAC_VER_37:
4330 rtl8402_hw_phy_config(tp);
4331 break;
4332
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004333 case RTL_GIGA_MAC_VER_38:
4334 rtl8411_hw_phy_config(tp);
4335 break;
4336
Hayes Wang5598bfe2012-07-02 17:23:21 +08004337 case RTL_GIGA_MAC_VER_39:
4338 rtl8106e_hw_phy_config(tp);
4339 break;
4340
Hayes Wangc5583862012-07-02 17:23:22 +08004341 case RTL_GIGA_MAC_VER_40:
4342 rtl8168g_1_hw_phy_config(tp);
4343 break;
hayeswang57538c42013-04-01 22:23:40 +00004344 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004345 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004346 case RTL_GIGA_MAC_VER_44:
hayeswang57538c42013-04-01 22:23:40 +00004347 rtl8168g_2_hw_phy_config(tp);
4348 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004349 case RTL_GIGA_MAC_VER_45:
4350 case RTL_GIGA_MAC_VER_47:
4351 rtl8168h_1_hw_phy_config(tp);
4352 break;
4353 case RTL_GIGA_MAC_VER_46:
4354 case RTL_GIGA_MAC_VER_48:
4355 rtl8168h_2_hw_phy_config(tp);
4356 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004357
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004358 case RTL_GIGA_MAC_VER_49:
4359 rtl8168ep_1_hw_phy_config(tp);
4360 break;
4361 case RTL_GIGA_MAC_VER_50:
4362 case RTL_GIGA_MAC_VER_51:
4363 rtl8168ep_2_hw_phy_config(tp);
4364 break;
4365
Hayes Wangc5583862012-07-02 17:23:22 +08004366 case RTL_GIGA_MAC_VER_41:
Francois Romieu5615d9f2007-08-17 17:50:46 +02004367 default:
4368 break;
4369 }
4370}
4371
Francois Romieuda78dbf2012-01-26 14:18:23 +01004372static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 struct timer_list *timer = &tp->timer;
4375 void __iomem *ioaddr = tp->mmio_addr;
4376 unsigned long timeout = RTL8169_PHY_TIMEOUT;
4377
Francois Romieubcf0bf92006-07-26 23:14:13 +02004378 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
françois romieu4da19632011-01-03 15:07:55 +00004380 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02004381 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 * A busy loop could burn quite a few cycles on nowadays CPU.
4383 * Let's delay the execution of the timer for a few ticks.
4384 */
4385 timeout = HZ/10;
4386 goto out_mod_timer;
4387 }
4388
4389 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01004390 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391
Lekensteyn9bb8eeb2013-08-02 10:36:55 +02004392 netif_dbg(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393
françois romieu4da19632011-01-03 15:07:55 +00004394 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
4396out_mod_timer:
4397 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004398}
4399
4400static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
4401{
Francois Romieuda78dbf2012-01-26 14:18:23 +01004402 if (!test_and_set_bit(flag, tp->wk.flags))
4403 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004404}
4405
4406static void rtl8169_phy_timer(unsigned long __opaque)
4407{
4408 struct net_device *dev = (struct net_device *)__opaque;
4409 struct rtl8169_private *tp = netdev_priv(dev);
4410
Francois Romieu98ddf982012-01-31 10:47:34 +01004411 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412}
4413
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
4415 void __iomem *ioaddr)
4416{
4417 iounmap(ioaddr);
4418 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00004419 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 pci_disable_device(pdev);
4421 free_netdev(dev);
4422}
4423
Francois Romieuffc46952012-07-06 14:19:23 +02004424DECLARE_RTL_COND(rtl_phy_reset_cond)
4425{
4426 return tp->phy_reset_pending(tp);
4427}
4428
Francois Romieubf793292006-11-01 00:53:05 +01004429static void rtl8169_phy_reset(struct net_device *dev,
4430 struct rtl8169_private *tp)
4431{
françois romieu4da19632011-01-03 15:07:55 +00004432 tp->phy_reset_enable(tp);
Francois Romieuffc46952012-07-06 14:19:23 +02004433 rtl_msleep_loop_wait_low(tp, &rtl_phy_reset_cond, 1, 100);
Francois Romieubf793292006-11-01 00:53:05 +01004434}
4435
David S. Miller8decf862011-09-22 03:23:13 -04004436static bool rtl_tbi_enabled(struct rtl8169_private *tp)
4437{
4438 void __iomem *ioaddr = tp->mmio_addr;
4439
4440 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
4441 (RTL_R8(PHYstatus) & TBI_Enable);
4442}
4443
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004444static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004446 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004447
Francois Romieu5615d9f2007-08-17 17:50:46 +02004448 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004449
Marcus Sundberg773328942008-07-10 21:28:08 +02004450 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
4451 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4452 RTL_W8(0x82, 0x01);
4453 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004454
Francois Romieu6dccd162007-02-13 23:38:05 +01004455 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
4456
4457 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
4458 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004459
Francois Romieubcf0bf92006-07-26 23:14:13 +02004460 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004461 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4462 RTL_W8(0x82, 0x01);
4463 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00004464 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004465 }
4466
Francois Romieubf793292006-11-01 00:53:05 +01004467 rtl8169_phy_reset(dev, tp);
4468
Oliver Neukum54405cd2011-01-06 21:55:13 +01004469 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02004470 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4471 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4472 (tp->mii.supports_gmii ?
4473 ADVERTISED_1000baseT_Half |
4474 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004475
David S. Miller8decf862011-09-22 03:23:13 -04004476 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00004477 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004478}
4479
Francois Romieu773d2022007-01-31 23:47:43 +01004480static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
4481{
4482 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu773d2022007-01-31 23:47:43 +01004483
Francois Romieuda78dbf2012-01-26 14:18:23 +01004484 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004485
4486 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2bf2010-04-26 11:42:58 +00004487
françois romieu9ecb9aa2012-12-07 11:20:21 +00004488 RTL_W32(MAC4, addr[4] | addr[5] << 8);
françois romieu908ba2bf2010-04-26 11:42:58 +00004489 RTL_R32(MAC4);
4490
françois romieu9ecb9aa2012-12-07 11:20:21 +00004491 RTL_W32(MAC0, addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
françois romieu908ba2bf2010-04-26 11:42:58 +00004492 RTL_R32(MAC0);
4493
françois romieu9ecb9aa2012-12-07 11:20:21 +00004494 if (tp->mac_version == RTL_GIGA_MAC_VER_34)
4495 rtl_rar_exgmac_set(tp, addr);
françois romieuc28aa382011-08-02 03:53:43 +00004496
Francois Romieu773d2022007-01-31 23:47:43 +01004497 RTL_W8(Cfg9346, Cfg9346_Lock);
4498
Francois Romieuda78dbf2012-01-26 14:18:23 +01004499 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004500}
4501
4502static int rtl_set_mac_address(struct net_device *dev, void *p)
4503{
4504 struct rtl8169_private *tp = netdev_priv(dev);
4505 struct sockaddr *addr = p;
4506
4507 if (!is_valid_ether_addr(addr->sa_data))
4508 return -EADDRNOTAVAIL;
4509
4510 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
4511
4512 rtl_rar_set(tp, dev->dev_addr);
4513
4514 return 0;
4515}
4516
Francois Romieu5f787a12006-08-17 13:02:36 +02004517static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4518{
4519 struct rtl8169_private *tp = netdev_priv(dev);
4520 struct mii_ioctl_data *data = if_mii(ifr);
4521
Francois Romieu8b4ab282008-11-19 22:05:25 -08004522 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
4523}
Francois Romieu5f787a12006-08-17 13:02:36 +02004524
Francois Romieucecb5fd2011-04-01 10:21:07 +02004525static int rtl_xmii_ioctl(struct rtl8169_private *tp,
4526 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08004527{
Francois Romieu5f787a12006-08-17 13:02:36 +02004528 switch (cmd) {
4529 case SIOCGMIIPHY:
4530 data->phy_id = 32; /* Internal PHY */
4531 return 0;
4532
4533 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004534 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02004535 return 0;
4536
4537 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004538 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02004539 return 0;
4540 }
4541 return -EOPNOTSUPP;
4542}
4543
Francois Romieu8b4ab282008-11-19 22:05:25 -08004544static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
4545{
4546 return -EOPNOTSUPP;
4547}
4548
Francois Romieufbac58f2007-10-04 22:51:38 +02004549static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
4550{
4551 if (tp->features & RTL_FEATURE_MSI) {
4552 pci_disable_msi(pdev);
4553 tp->features &= ~RTL_FEATURE_MSI;
4554 }
4555}
4556
Bill Pembertonbaf63292012-12-03 09:23:28 -05004557static void rtl_init_mdio_ops(struct rtl8169_private *tp)
françois romieuc0e45c12011-01-03 15:08:04 +00004558{
4559 struct mdio_ops *ops = &tp->mdio_ops;
4560
4561 switch (tp->mac_version) {
4562 case RTL_GIGA_MAC_VER_27:
4563 ops->write = r8168dp_1_mdio_write;
4564 ops->read = r8168dp_1_mdio_read;
4565 break;
françois romieue6de30d2011-01-03 15:08:37 +00004566 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004567 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00004568 ops->write = r8168dp_2_mdio_write;
4569 ops->read = r8168dp_2_mdio_read;
4570 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004571 case RTL_GIGA_MAC_VER_40:
4572 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004573 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004574 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004575 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004576 case RTL_GIGA_MAC_VER_45:
4577 case RTL_GIGA_MAC_VER_46:
4578 case RTL_GIGA_MAC_VER_47:
4579 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004580 case RTL_GIGA_MAC_VER_49:
4581 case RTL_GIGA_MAC_VER_50:
4582 case RTL_GIGA_MAC_VER_51:
Hayes Wangc5583862012-07-02 17:23:22 +08004583 ops->write = r8168g_mdio_write;
4584 ops->read = r8168g_mdio_read;
4585 break;
françois romieuc0e45c12011-01-03 15:08:04 +00004586 default:
4587 ops->write = r8169_mdio_write;
4588 ops->read = r8169_mdio_read;
4589 break;
4590 }
4591}
4592
hayeswange2409d82013-03-31 17:02:04 +00004593static void rtl_speed_down(struct rtl8169_private *tp)
4594{
4595 u32 adv;
4596 int lpa;
4597
4598 rtl_writephy(tp, 0x1f, 0x0000);
4599 lpa = rtl_readphy(tp, MII_LPA);
4600
4601 if (lpa & (LPA_10HALF | LPA_10FULL))
4602 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full;
4603 else if (lpa & (LPA_100HALF | LPA_100FULL))
4604 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4605 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full;
4606 else
4607 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4608 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4609 (tp->mii.supports_gmii ?
4610 ADVERTISED_1000baseT_Half |
4611 ADVERTISED_1000baseT_Full : 0);
4612
4613 rtl8169_set_speed(tp->dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
4614 adv);
4615}
4616
David S. Miller1805b2f2011-10-24 18:18:09 -04004617static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
4618{
4619 void __iomem *ioaddr = tp->mmio_addr;
4620
4621 switch (tp->mac_version) {
Cyril Bruleboisb00e69d2012-10-31 14:00:46 +00004622 case RTL_GIGA_MAC_VER_25:
4623 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04004624 case RTL_GIGA_MAC_VER_29:
4625 case RTL_GIGA_MAC_VER_30:
4626 case RTL_GIGA_MAC_VER_32:
4627 case RTL_GIGA_MAC_VER_33:
4628 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004629 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004630 case RTL_GIGA_MAC_VER_38:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004631 case RTL_GIGA_MAC_VER_39:
Hayes Wangc5583862012-07-02 17:23:22 +08004632 case RTL_GIGA_MAC_VER_40:
4633 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004634 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004635 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004636 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004637 case RTL_GIGA_MAC_VER_45:
4638 case RTL_GIGA_MAC_VER_46:
4639 case RTL_GIGA_MAC_VER_47:
4640 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004641 case RTL_GIGA_MAC_VER_49:
4642 case RTL_GIGA_MAC_VER_50:
4643 case RTL_GIGA_MAC_VER_51:
David S. Miller1805b2f2011-10-24 18:18:09 -04004644 RTL_W32(RxConfig, RTL_R32(RxConfig) |
4645 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
4646 break;
4647 default:
4648 break;
4649 }
4650}
4651
4652static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
4653{
4654 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
4655 return false;
4656
hayeswange2409d82013-03-31 17:02:04 +00004657 rtl_speed_down(tp);
David S. Miller1805b2f2011-10-24 18:18:09 -04004658 rtl_wol_suspend_quirk(tp);
4659
4660 return true;
4661}
4662
françois romieu065c27c2011-01-03 15:08:12 +00004663static void r810x_phy_power_down(struct rtl8169_private *tp)
4664{
4665 rtl_writephy(tp, 0x1f, 0x0000);
4666 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4667}
4668
4669static void r810x_phy_power_up(struct rtl8169_private *tp)
4670{
4671 rtl_writephy(tp, 0x1f, 0x0000);
4672 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4673}
4674
4675static void r810x_pll_power_down(struct rtl8169_private *tp)
4676{
Hayes Wang00042992012-03-30 14:33:00 +08004677 void __iomem *ioaddr = tp->mmio_addr;
4678
David S. Miller1805b2f2011-10-24 18:18:09 -04004679 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004680 return;
françois romieu065c27c2011-01-03 15:08:12 +00004681
4682 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004683
4684 switch (tp->mac_version) {
4685 case RTL_GIGA_MAC_VER_07:
4686 case RTL_GIGA_MAC_VER_08:
4687 case RTL_GIGA_MAC_VER_09:
4688 case RTL_GIGA_MAC_VER_10:
4689 case RTL_GIGA_MAC_VER_13:
4690 case RTL_GIGA_MAC_VER_16:
4691 break;
4692 default:
4693 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4694 break;
4695 }
françois romieu065c27c2011-01-03 15:08:12 +00004696}
4697
4698static void r810x_pll_power_up(struct rtl8169_private *tp)
4699{
Hayes Wang00042992012-03-30 14:33:00 +08004700 void __iomem *ioaddr = tp->mmio_addr;
4701
françois romieu065c27c2011-01-03 15:08:12 +00004702 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004703
4704 switch (tp->mac_version) {
4705 case RTL_GIGA_MAC_VER_07:
4706 case RTL_GIGA_MAC_VER_08:
4707 case RTL_GIGA_MAC_VER_09:
4708 case RTL_GIGA_MAC_VER_10:
4709 case RTL_GIGA_MAC_VER_13:
4710 case RTL_GIGA_MAC_VER_16:
4711 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004712 case RTL_GIGA_MAC_VER_47:
4713 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004714 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004715 break;
Hayes Wang00042992012-03-30 14:33:00 +08004716 default:
4717 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4718 break;
4719 }
françois romieu065c27c2011-01-03 15:08:12 +00004720}
4721
4722static void r8168_phy_power_up(struct rtl8169_private *tp)
4723{
4724 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004725 switch (tp->mac_version) {
4726 case RTL_GIGA_MAC_VER_11:
4727 case RTL_GIGA_MAC_VER_12:
4728 case RTL_GIGA_MAC_VER_17:
4729 case RTL_GIGA_MAC_VER_18:
4730 case RTL_GIGA_MAC_VER_19:
4731 case RTL_GIGA_MAC_VER_20:
4732 case RTL_GIGA_MAC_VER_21:
4733 case RTL_GIGA_MAC_VER_22:
4734 case RTL_GIGA_MAC_VER_23:
4735 case RTL_GIGA_MAC_VER_24:
4736 case RTL_GIGA_MAC_VER_25:
4737 case RTL_GIGA_MAC_VER_26:
4738 case RTL_GIGA_MAC_VER_27:
4739 case RTL_GIGA_MAC_VER_28:
4740 case RTL_GIGA_MAC_VER_31:
4741 rtl_writephy(tp, 0x0e, 0x0000);
4742 break;
4743 default:
4744 break;
4745 }
françois romieu065c27c2011-01-03 15:08:12 +00004746 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4747}
4748
4749static void r8168_phy_power_down(struct rtl8169_private *tp)
4750{
4751 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004752 switch (tp->mac_version) {
4753 case RTL_GIGA_MAC_VER_32:
4754 case RTL_GIGA_MAC_VER_33:
hayeswangbeb330a2013-04-01 22:23:39 +00004755 case RTL_GIGA_MAC_VER_40:
4756 case RTL_GIGA_MAC_VER_41:
hayeswang01dc7fe2011-03-21 01:50:28 +00004757 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
4758 break;
4759
4760 case RTL_GIGA_MAC_VER_11:
4761 case RTL_GIGA_MAC_VER_12:
4762 case RTL_GIGA_MAC_VER_17:
4763 case RTL_GIGA_MAC_VER_18:
4764 case RTL_GIGA_MAC_VER_19:
4765 case RTL_GIGA_MAC_VER_20:
4766 case RTL_GIGA_MAC_VER_21:
4767 case RTL_GIGA_MAC_VER_22:
4768 case RTL_GIGA_MAC_VER_23:
4769 case RTL_GIGA_MAC_VER_24:
4770 case RTL_GIGA_MAC_VER_25:
4771 case RTL_GIGA_MAC_VER_26:
4772 case RTL_GIGA_MAC_VER_27:
4773 case RTL_GIGA_MAC_VER_28:
4774 case RTL_GIGA_MAC_VER_31:
4775 rtl_writephy(tp, 0x0e, 0x0200);
4776 default:
4777 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4778 break;
4779 }
françois romieu065c27c2011-01-03 15:08:12 +00004780}
4781
4782static void r8168_pll_power_down(struct rtl8169_private *tp)
4783{
4784 void __iomem *ioaddr = tp->mmio_addr;
4785
Francois Romieucecb5fd2011-04-01 10:21:07 +02004786 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4787 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004788 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
4789 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
4790 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
4791 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Lin2f8c0402014-10-01 23:17:19 +08004792 r8168_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00004793 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08004794 }
françois romieu065c27c2011-01-03 15:08:12 +00004795
Francois Romieucecb5fd2011-04-01 10:21:07 +02004796 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
4797 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00004798 (RTL_R16(CPlusCmd) & ASF)) {
4799 return;
4800 }
4801
hayeswang01dc7fe2011-03-21 01:50:28 +00004802 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
4803 tp->mac_version == RTL_GIGA_MAC_VER_33)
Francois Romieufdf6fc02012-07-06 22:40:38 +02004804 rtl_ephy_write(tp, 0x19, 0xff64);
hayeswang01dc7fe2011-03-21 01:50:28 +00004805
David S. Miller1805b2f2011-10-24 18:18:09 -04004806 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004807 return;
françois romieu065c27c2011-01-03 15:08:12 +00004808
4809 r8168_phy_power_down(tp);
4810
4811 switch (tp->mac_version) {
4812 case RTL_GIGA_MAC_VER_25:
4813 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004814 case RTL_GIGA_MAC_VER_27:
4815 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004816 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004817 case RTL_GIGA_MAC_VER_32:
4818 case RTL_GIGA_MAC_VER_33:
Chun-Hao Lin42fde732014-10-01 23:17:14 +08004819 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004820 case RTL_GIGA_MAC_VER_45:
4821 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004822 case RTL_GIGA_MAC_VER_50:
4823 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00004824 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4825 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004826 case RTL_GIGA_MAC_VER_40:
4827 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004828 case RTL_GIGA_MAC_VER_49:
Chun-Hao Lin706123d2014-10-01 23:17:18 +08004829 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0x00000000,
hayeswangbeb330a2013-04-01 22:23:39 +00004830 0xfc000000, ERIAR_EXGMAC);
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08004831 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
hayeswangbeb330a2013-04-01 22:23:39 +00004832 break;
françois romieu065c27c2011-01-03 15:08:12 +00004833 }
4834}
4835
4836static void r8168_pll_power_up(struct rtl8169_private *tp)
4837{
4838 void __iomem *ioaddr = tp->mmio_addr;
4839
françois romieu065c27c2011-01-03 15:08:12 +00004840 switch (tp->mac_version) {
4841 case RTL_GIGA_MAC_VER_25:
4842 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004843 case RTL_GIGA_MAC_VER_27:
4844 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004845 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004846 case RTL_GIGA_MAC_VER_32:
4847 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004848 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4849 break;
Chun-Hao Lin42fde732014-10-01 23:17:14 +08004850 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004851 case RTL_GIGA_MAC_VER_45:
4852 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004853 case RTL_GIGA_MAC_VER_50:
4854 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004855 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004856 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004857 case RTL_GIGA_MAC_VER_40:
4858 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004859 case RTL_GIGA_MAC_VER_49:
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08004860 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08004861 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0xfc000000,
hayeswangbeb330a2013-04-01 22:23:39 +00004862 0x00000000, ERIAR_EXGMAC);
4863 break;
françois romieu065c27c2011-01-03 15:08:12 +00004864 }
4865
4866 r8168_phy_power_up(tp);
4867}
4868
Francois Romieud58d46b2011-05-03 16:38:29 +02004869static void rtl_generic_op(struct rtl8169_private *tp,
4870 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00004871{
4872 if (op)
4873 op(tp);
4874}
4875
4876static void rtl_pll_power_down(struct rtl8169_private *tp)
4877{
Francois Romieud58d46b2011-05-03 16:38:29 +02004878 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00004879}
4880
4881static void rtl_pll_power_up(struct rtl8169_private *tp)
4882{
Francois Romieud58d46b2011-05-03 16:38:29 +02004883 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00004884}
4885
Bill Pembertonbaf63292012-12-03 09:23:28 -05004886static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
françois romieu065c27c2011-01-03 15:08:12 +00004887{
4888 struct pll_power_ops *ops = &tp->pll_power_ops;
4889
4890 switch (tp->mac_version) {
4891 case RTL_GIGA_MAC_VER_07:
4892 case RTL_GIGA_MAC_VER_08:
4893 case RTL_GIGA_MAC_VER_09:
4894 case RTL_GIGA_MAC_VER_10:
4895 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08004896 case RTL_GIGA_MAC_VER_29:
4897 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004898 case RTL_GIGA_MAC_VER_37:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004899 case RTL_GIGA_MAC_VER_39:
hayeswang58152cd2013-04-01 22:23:42 +00004900 case RTL_GIGA_MAC_VER_43:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004901 case RTL_GIGA_MAC_VER_47:
4902 case RTL_GIGA_MAC_VER_48:
françois romieu065c27c2011-01-03 15:08:12 +00004903 ops->down = r810x_pll_power_down;
4904 ops->up = r810x_pll_power_up;
4905 break;
4906
4907 case RTL_GIGA_MAC_VER_11:
4908 case RTL_GIGA_MAC_VER_12:
4909 case RTL_GIGA_MAC_VER_17:
4910 case RTL_GIGA_MAC_VER_18:
4911 case RTL_GIGA_MAC_VER_19:
4912 case RTL_GIGA_MAC_VER_20:
4913 case RTL_GIGA_MAC_VER_21:
4914 case RTL_GIGA_MAC_VER_22:
4915 case RTL_GIGA_MAC_VER_23:
4916 case RTL_GIGA_MAC_VER_24:
4917 case RTL_GIGA_MAC_VER_25:
4918 case RTL_GIGA_MAC_VER_26:
4919 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00004920 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004921 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004922 case RTL_GIGA_MAC_VER_32:
4923 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004924 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08004925 case RTL_GIGA_MAC_VER_35:
4926 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004927 case RTL_GIGA_MAC_VER_38:
Hayes Wangc5583862012-07-02 17:23:22 +08004928 case RTL_GIGA_MAC_VER_40:
4929 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004930 case RTL_GIGA_MAC_VER_42:
hayeswang45dd95c2013-07-08 17:09:01 +08004931 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004932 case RTL_GIGA_MAC_VER_45:
4933 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004934 case RTL_GIGA_MAC_VER_49:
4935 case RTL_GIGA_MAC_VER_50:
4936 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00004937 ops->down = r8168_pll_power_down;
4938 ops->up = r8168_pll_power_up;
4939 break;
4940
4941 default:
4942 ops->down = NULL;
4943 ops->up = NULL;
4944 break;
4945 }
4946}
4947
Hayes Wange542a222011-07-06 15:58:04 +08004948static void rtl_init_rxcfg(struct rtl8169_private *tp)
4949{
4950 void __iomem *ioaddr = tp->mmio_addr;
4951
4952 switch (tp->mac_version) {
4953 case RTL_GIGA_MAC_VER_01:
4954 case RTL_GIGA_MAC_VER_02:
4955 case RTL_GIGA_MAC_VER_03:
4956 case RTL_GIGA_MAC_VER_04:
4957 case RTL_GIGA_MAC_VER_05:
4958 case RTL_GIGA_MAC_VER_06:
4959 case RTL_GIGA_MAC_VER_10:
4960 case RTL_GIGA_MAC_VER_11:
4961 case RTL_GIGA_MAC_VER_12:
4962 case RTL_GIGA_MAC_VER_13:
4963 case RTL_GIGA_MAC_VER_14:
4964 case RTL_GIGA_MAC_VER_15:
4965 case RTL_GIGA_MAC_VER_16:
4966 case RTL_GIGA_MAC_VER_17:
4967 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
4968 break;
4969 case RTL_GIGA_MAC_VER_18:
4970 case RTL_GIGA_MAC_VER_19:
4971 case RTL_GIGA_MAC_VER_20:
4972 case RTL_GIGA_MAC_VER_21:
4973 case RTL_GIGA_MAC_VER_22:
4974 case RTL_GIGA_MAC_VER_23:
4975 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00004976 case RTL_GIGA_MAC_VER_34:
françois romieu3ced8c92013-09-08 01:15:35 +02004977 case RTL_GIGA_MAC_VER_35:
Hayes Wange542a222011-07-06 15:58:04 +08004978 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
4979 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004980 case RTL_GIGA_MAC_VER_40:
Michel Dänzer7a9810e2014-07-17 12:55:40 +09004981 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST | RX_EARLY_OFF);
4982 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004983 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004984 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004985 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004986 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004987 case RTL_GIGA_MAC_VER_45:
4988 case RTL_GIGA_MAC_VER_46:
4989 case RTL_GIGA_MAC_VER_47:
4990 case RTL_GIGA_MAC_VER_48:
Ivan Vecera7ebc4822015-08-04 22:11:43 +02004991 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST | RX_EARLY_OFF);
4992 break;
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004993 case RTL_GIGA_MAC_VER_49:
4994 case RTL_GIGA_MAC_VER_50:
4995 case RTL_GIGA_MAC_VER_51:
Ivan Vecera7ebc4822015-08-04 22:11:43 +02004996 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST | RX_EARLY_OFF);
hayeswangbeb330a2013-04-01 22:23:39 +00004997 break;
Hayes Wange542a222011-07-06 15:58:04 +08004998 default:
4999 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
5000 break;
5001 }
5002}
5003
Hayes Wang92fc43b2011-07-06 15:58:03 +08005004static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
5005{
Timo Teräs9fba0812013-01-15 21:01:24 +00005006 tp->dirty_tx = tp->cur_tx = tp->cur_rx = 0;
Hayes Wang92fc43b2011-07-06 15:58:03 +08005007}
5008
Francois Romieud58d46b2011-05-03 16:38:29 +02005009static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
5010{
françois romieu9c5028e2012-03-02 04:43:14 +00005011 void __iomem *ioaddr = tp->mmio_addr;
5012
5013 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02005014 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00005015 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02005016}
5017
5018static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
5019{
françois romieu9c5028e2012-03-02 04:43:14 +00005020 void __iomem *ioaddr = tp->mmio_addr;
5021
5022 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02005023 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00005024 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02005025}
5026
5027static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
5028{
5029 void __iomem *ioaddr = tp->mmio_addr;
5030
5031 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5032 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005033 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02005034}
5035
5036static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
5037{
5038 void __iomem *ioaddr = tp->mmio_addr;
5039
5040 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5041 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
5042 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
5043}
5044
5045static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
5046{
5047 void __iomem *ioaddr = tp->mmio_addr;
5048
5049 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5050}
5051
5052static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
5053{
5054 void __iomem *ioaddr = tp->mmio_addr;
5055
5056 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5057}
5058
5059static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
5060{
5061 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005062
5063 RTL_W8(MaxTxPacketSize, 0x3f);
5064 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5065 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005066 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02005067}
5068
5069static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
5070{
5071 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005072
5073 RTL_W8(MaxTxPacketSize, 0x0c);
5074 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5075 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01005076 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02005077}
5078
5079static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
5080{
5081 rtl_tx_performance_tweak(tp->pci_dev,
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005082 PCI_EXP_DEVCTL_READRQ_512B | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieud58d46b2011-05-03 16:38:29 +02005083}
5084
5085static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
5086{
5087 rtl_tx_performance_tweak(tp->pci_dev,
5088 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
5089}
5090
5091static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
5092{
5093 void __iomem *ioaddr = tp->mmio_addr;
5094
5095 r8168b_0_hw_jumbo_enable(tp);
5096
5097 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
5098}
5099
5100static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
5101{
5102 void __iomem *ioaddr = tp->mmio_addr;
5103
5104 r8168b_0_hw_jumbo_disable(tp);
5105
5106 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
5107}
5108
Bill Pembertonbaf63292012-12-03 09:23:28 -05005109static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
Francois Romieud58d46b2011-05-03 16:38:29 +02005110{
5111 struct jumbo_ops *ops = &tp->jumbo_ops;
5112
5113 switch (tp->mac_version) {
5114 case RTL_GIGA_MAC_VER_11:
5115 ops->disable = r8168b_0_hw_jumbo_disable;
5116 ops->enable = r8168b_0_hw_jumbo_enable;
5117 break;
5118 case RTL_GIGA_MAC_VER_12:
5119 case RTL_GIGA_MAC_VER_17:
5120 ops->disable = r8168b_1_hw_jumbo_disable;
5121 ops->enable = r8168b_1_hw_jumbo_enable;
5122 break;
5123 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
5124 case RTL_GIGA_MAC_VER_19:
5125 case RTL_GIGA_MAC_VER_20:
5126 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
5127 case RTL_GIGA_MAC_VER_22:
5128 case RTL_GIGA_MAC_VER_23:
5129 case RTL_GIGA_MAC_VER_24:
5130 case RTL_GIGA_MAC_VER_25:
5131 case RTL_GIGA_MAC_VER_26:
5132 ops->disable = r8168c_hw_jumbo_disable;
5133 ops->enable = r8168c_hw_jumbo_enable;
5134 break;
5135 case RTL_GIGA_MAC_VER_27:
5136 case RTL_GIGA_MAC_VER_28:
5137 ops->disable = r8168dp_hw_jumbo_disable;
5138 ops->enable = r8168dp_hw_jumbo_enable;
5139 break;
5140 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
5141 case RTL_GIGA_MAC_VER_32:
5142 case RTL_GIGA_MAC_VER_33:
5143 case RTL_GIGA_MAC_VER_34:
5144 ops->disable = r8168e_hw_jumbo_disable;
5145 ops->enable = r8168e_hw_jumbo_enable;
5146 break;
5147
5148 /*
5149 * No action needed for jumbo frames with 8169.
5150 * No jumbo for 810x at all.
5151 */
Hayes Wangc5583862012-07-02 17:23:22 +08005152 case RTL_GIGA_MAC_VER_40:
5153 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00005154 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00005155 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08005156 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005157 case RTL_GIGA_MAC_VER_45:
5158 case RTL_GIGA_MAC_VER_46:
5159 case RTL_GIGA_MAC_VER_47:
5160 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005161 case RTL_GIGA_MAC_VER_49:
5162 case RTL_GIGA_MAC_VER_50:
5163 case RTL_GIGA_MAC_VER_51:
Francois Romieud58d46b2011-05-03 16:38:29 +02005164 default:
5165 ops->disable = NULL;
5166 ops->enable = NULL;
5167 break;
5168 }
5169}
5170
Francois Romieuffc46952012-07-06 14:19:23 +02005171DECLARE_RTL_COND(rtl_chipcmd_cond)
5172{
5173 void __iomem *ioaddr = tp->mmio_addr;
5174
5175 return RTL_R8(ChipCmd) & CmdReset;
5176}
5177
Francois Romieu6f43adc2011-04-29 15:05:51 +02005178static void rtl_hw_reset(struct rtl8169_private *tp)
5179{
5180 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu6f43adc2011-04-29 15:05:51 +02005181
Francois Romieu6f43adc2011-04-29 15:05:51 +02005182 RTL_W8(ChipCmd, CmdReset);
5183
Francois Romieuffc46952012-07-06 14:19:23 +02005184 rtl_udelay_loop_wait_low(tp, &rtl_chipcmd_cond, 100, 100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02005185}
5186
Francois Romieub6ffd972011-06-17 17:00:05 +02005187static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
5188{
5189 struct rtl_fw *rtl_fw;
5190 const char *name;
5191 int rc = -ENOMEM;
5192
5193 name = rtl_lookup_firmware_name(tp);
5194 if (!name)
5195 goto out_no_firmware;
5196
5197 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
5198 if (!rtl_fw)
5199 goto err_warn;
5200
5201 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
5202 if (rc < 0)
5203 goto err_free;
5204
Francois Romieufd112f22011-06-18 00:10:29 +02005205 rc = rtl_check_firmware(tp, rtl_fw);
5206 if (rc < 0)
5207 goto err_release_firmware;
5208
Francois Romieub6ffd972011-06-17 17:00:05 +02005209 tp->rtl_fw = rtl_fw;
5210out:
5211 return;
5212
Francois Romieufd112f22011-06-18 00:10:29 +02005213err_release_firmware:
5214 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02005215err_free:
5216 kfree(rtl_fw);
5217err_warn:
5218 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
5219 name, rc);
5220out_no_firmware:
5221 tp->rtl_fw = NULL;
5222 goto out;
5223}
5224
François Romieu953a12c2011-04-24 17:38:48 +02005225static void rtl_request_firmware(struct rtl8169_private *tp)
5226{
Francois Romieub6ffd972011-06-17 17:00:05 +02005227 if (IS_ERR(tp->rtl_fw))
5228 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02005229}
5230
Hayes Wang92fc43b2011-07-06 15:58:03 +08005231static void rtl_rx_close(struct rtl8169_private *tp)
5232{
5233 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08005234
Francois Romieu1687b562011-07-19 17:21:29 +02005235 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005236}
5237
Francois Romieuffc46952012-07-06 14:19:23 +02005238DECLARE_RTL_COND(rtl_npq_cond)
5239{
5240 void __iomem *ioaddr = tp->mmio_addr;
5241
5242 return RTL_R8(TxPoll) & NPQ;
5243}
5244
5245DECLARE_RTL_COND(rtl_txcfg_empty_cond)
5246{
5247 void __iomem *ioaddr = tp->mmio_addr;
5248
5249 return RTL_R32(TxConfig) & TXCFG_EMPTY;
5250}
5251
françois romieue6de30d2011-01-03 15:08:37 +00005252static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253{
françois romieue6de30d2011-01-03 15:08:37 +00005254 void __iomem *ioaddr = tp->mmio_addr;
5255
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00005257 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
Hayes Wang92fc43b2011-07-06 15:58:03 +08005259 rtl_rx_close(tp);
5260
Hayes Wang5d2e1952011-02-22 17:26:22 +08005261 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00005262 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
5263 tp->mac_version == RTL_GIGA_MAC_VER_31) {
Francois Romieuffc46952012-07-06 14:19:23 +02005264 rtl_udelay_loop_wait_low(tp, &rtl_npq_cond, 20, 42*42);
Hayes Wangc2218922011-09-06 16:55:18 +08005265 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005266 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
5267 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
5268 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
5269 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
5270 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
5271 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
5272 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
5273 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
5274 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
5275 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
5276 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
5277 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005278 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
5279 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
5280 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
5281 tp->mac_version == RTL_GIGA_MAC_VER_51) {
David S. Miller8decf862011-09-22 03:23:13 -04005282 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Francois Romieuffc46952012-07-06 14:19:23 +02005283 rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005284 } else {
5285 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
5286 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00005287 }
5288
Hayes Wang92fc43b2011-07-06 15:58:03 +08005289 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290}
5291
Francois Romieu7f796d832007-06-11 23:04:41 +02005292static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005293{
5294 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01005295
5296 /* Set DMA burst size and Interframe Gap Time */
5297 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
5298 (InterFrameGap << TxInterFrameGapShift));
5299}
5300
Francois Romieu07ce4062007-02-23 23:36:39 +01005301static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302{
5303 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
Francois Romieu07ce4062007-02-23 23:36:39 +01005305 tp->hw_start(dev);
5306
Francois Romieuda78dbf2012-01-26 14:18:23 +01005307 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01005308}
5309
Francois Romieu7f796d832007-06-11 23:04:41 +02005310static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
5311 void __iomem *ioaddr)
5312{
5313 /*
5314 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
5315 * register to be written before TxDescAddrLow to work.
5316 * Switching from MMIO to I/O access fixes the issue as well.
5317 */
5318 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005319 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005320 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005321 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005322}
5323
5324static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
5325{
5326 u16 cmd;
5327
5328 cmd = RTL_R16(CPlusCmd);
5329 RTL_W16(CPlusCmd, cmd);
5330 return cmd;
5331}
5332
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07005333static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02005334{
5335 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00005336 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02005337}
5338
Francois Romieu6dccd162007-02-13 23:38:05 +01005339static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
5340{
Francois Romieu37441002011-06-17 22:58:54 +02005341 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01005342 u32 mac_version;
5343 u32 clk;
5344 u32 val;
5345 } cfg2_info [] = {
5346 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
5347 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
5348 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
5349 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02005350 };
5351 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01005352 unsigned int i;
5353 u32 clk;
5354
5355 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01005356 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01005357 if ((p->mac_version == mac_version) && (p->clk == clk)) {
5358 RTL_W32(0x7c, p->val);
5359 break;
5360 }
5361 }
5362}
5363
Francois Romieue6b763e2012-03-08 09:35:39 +01005364static void rtl_set_rx_mode(struct net_device *dev)
5365{
5366 struct rtl8169_private *tp = netdev_priv(dev);
5367 void __iomem *ioaddr = tp->mmio_addr;
5368 u32 mc_filter[2]; /* Multicast hash filter */
5369 int rx_mode;
5370 u32 tmp = 0;
5371
5372 if (dev->flags & IFF_PROMISC) {
5373 /* Unconditionally log net taps. */
5374 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
5375 rx_mode =
5376 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
5377 AcceptAllPhys;
5378 mc_filter[1] = mc_filter[0] = 0xffffffff;
5379 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
5380 (dev->flags & IFF_ALLMULTI)) {
5381 /* Too many to filter perfectly -- accept all multicasts. */
5382 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
5383 mc_filter[1] = mc_filter[0] = 0xffffffff;
5384 } else {
5385 struct netdev_hw_addr *ha;
5386
5387 rx_mode = AcceptBroadcast | AcceptMyPhys;
5388 mc_filter[1] = mc_filter[0] = 0;
5389 netdev_for_each_mc_addr(ha, dev) {
5390 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
5391 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
5392 rx_mode |= AcceptMulticast;
5393 }
5394 }
5395
5396 if (dev->features & NETIF_F_RXALL)
5397 rx_mode |= (AcceptErr | AcceptRunt);
5398
5399 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
5400
5401 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
5402 u32 data = mc_filter[0];
5403
5404 mc_filter[0] = swab32(mc_filter[1]);
5405 mc_filter[1] = swab32(data);
5406 }
5407
Nathan Walp04817762012-11-01 12:08:47 +00005408 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
5409 mc_filter[1] = mc_filter[0] = 0xffffffff;
5410
Francois Romieue6b763e2012-03-08 09:35:39 +01005411 RTL_W32(MAR0 + 4, mc_filter[1]);
5412 RTL_W32(MAR0 + 0, mc_filter[0]);
5413
5414 RTL_W32(RxConfig, tmp);
5415}
5416
Francois Romieu07ce4062007-02-23 23:36:39 +01005417static void rtl_hw_start_8169(struct net_device *dev)
5418{
5419 struct rtl8169_private *tp = netdev_priv(dev);
5420 void __iomem *ioaddr = tp->mmio_addr;
5421 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01005422
Francois Romieu9cb427b2006-11-02 00:10:16 +01005423 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
5424 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
5425 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
5426 }
5427
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02005429 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5430 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5431 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5432 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005433 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5434
Hayes Wange542a222011-07-06 15:58:04 +08005435 rtl_init_rxcfg(tp);
5436
françois romieuf0298f82011-01-03 15:07:42 +00005437 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005439 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
Francois Romieucecb5fd2011-04-01 10:21:07 +02005441 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5442 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5443 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5444 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02005445 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446
Francois Romieu7f796d832007-06-11 23:04:41 +02005447 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005448
Francois Romieucecb5fd2011-04-01 10:21:07 +02005449 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5450 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005451 dprintk("Set MAC Reg C+CR Offset 0xe0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02005453 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454 }
5455
Francois Romieubcf0bf92006-07-26 23:14:13 +02005456 RTL_W16(CPlusCmd, tp->cp_cmd);
5457
Francois Romieu6dccd162007-02-13 23:38:05 +01005458 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
5459
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 /*
5461 * Undocumented corner. Supposedly:
5462 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
5463 */
5464 RTL_W16(IntrMitigate, 0x0000);
5465
Francois Romieu7f796d832007-06-11 23:04:41 +02005466 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01005467
Francois Romieucecb5fd2011-04-01 10:21:07 +02005468 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
5469 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
5470 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
5471 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02005472 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5473 rtl_set_rx_tx_config_registers(tp);
5474 }
5475
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02005477
5478 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
5479 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480
5481 RTL_W32(RxMissed, 0);
5482
Francois Romieu07ce4062007-02-23 23:36:39 +01005483 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484
5485 /* no early-rx interrupts */
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005486 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005487}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005489static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
5490{
5491 if (tp->csi_ops.write)
Francois Romieu52989f02012-07-06 13:37:00 +02005492 tp->csi_ops.write(tp, addr, value);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005493}
5494
5495static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
5496{
Francois Romieu52989f02012-07-06 13:37:00 +02005497 return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005498}
5499
5500static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02005501{
5502 u32 csi;
5503
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005504 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
5505 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00005506}
5507
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005508static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005509{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005510 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00005511}
5512
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005513static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00005514{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005515 rtl_csi_access_enable(tp, 0x27000000);
5516}
5517
Francois Romieuffc46952012-07-06 14:19:23 +02005518DECLARE_RTL_COND(rtl_csiar_cond)
5519{
5520 void __iomem *ioaddr = tp->mmio_addr;
5521
5522 return RTL_R32(CSIAR) & CSIAR_FLAG;
5523}
5524
Francois Romieu52989f02012-07-06 13:37:00 +02005525static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005526{
Francois Romieu52989f02012-07-06 13:37:00 +02005527 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005528
5529 RTL_W32(CSIDR, value);
5530 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5531 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5532
Francois Romieuffc46952012-07-06 14:19:23 +02005533 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005534}
5535
Francois Romieu52989f02012-07-06 13:37:00 +02005536static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005537{
Francois Romieu52989f02012-07-06 13:37:00 +02005538 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005539
5540 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
5541 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5542
Francois Romieuffc46952012-07-06 14:19:23 +02005543 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5544 RTL_R32(CSIDR) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005545}
5546
Francois Romieu52989f02012-07-06 13:37:00 +02005547static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005548{
Francois Romieu52989f02012-07-06 13:37:00 +02005549 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005550
5551 RTL_W32(CSIDR, value);
5552 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5553 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5554 CSIAR_FUNC_NIC);
5555
Francois Romieuffc46952012-07-06 14:19:23 +02005556 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wang7e18dca2012-03-30 14:33:02 +08005557}
5558
Francois Romieu52989f02012-07-06 13:37:00 +02005559static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005560{
Francois Romieu52989f02012-07-06 13:37:00 +02005561 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005562
5563 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
5564 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5565
Francois Romieuffc46952012-07-06 14:19:23 +02005566 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5567 RTL_R32(CSIDR) : ~0;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005568}
5569
hayeswang45dd95c2013-07-08 17:09:01 +08005570static void r8411_csi_write(struct rtl8169_private *tp, int addr, int value)
5571{
5572 void __iomem *ioaddr = tp->mmio_addr;
5573
5574 RTL_W32(CSIDR, value);
5575 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5576 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5577 CSIAR_FUNC_NIC2);
5578
5579 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
5580}
5581
5582static u32 r8411_csi_read(struct rtl8169_private *tp, int addr)
5583{
5584 void __iomem *ioaddr = tp->mmio_addr;
5585
5586 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC2 |
5587 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5588
5589 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5590 RTL_R32(CSIDR) : ~0;
5591}
5592
Bill Pembertonbaf63292012-12-03 09:23:28 -05005593static void rtl_init_csi_ops(struct rtl8169_private *tp)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005594{
5595 struct csi_ops *ops = &tp->csi_ops;
5596
5597 switch (tp->mac_version) {
5598 case RTL_GIGA_MAC_VER_01:
5599 case RTL_GIGA_MAC_VER_02:
5600 case RTL_GIGA_MAC_VER_03:
5601 case RTL_GIGA_MAC_VER_04:
5602 case RTL_GIGA_MAC_VER_05:
5603 case RTL_GIGA_MAC_VER_06:
5604 case RTL_GIGA_MAC_VER_10:
5605 case RTL_GIGA_MAC_VER_11:
5606 case RTL_GIGA_MAC_VER_12:
5607 case RTL_GIGA_MAC_VER_13:
5608 case RTL_GIGA_MAC_VER_14:
5609 case RTL_GIGA_MAC_VER_15:
5610 case RTL_GIGA_MAC_VER_16:
5611 case RTL_GIGA_MAC_VER_17:
5612 ops->write = NULL;
5613 ops->read = NULL;
5614 break;
5615
Hayes Wang7e18dca2012-03-30 14:33:02 +08005616 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005617 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08005618 ops->write = r8402_csi_write;
5619 ops->read = r8402_csi_read;
5620 break;
5621
hayeswang45dd95c2013-07-08 17:09:01 +08005622 case RTL_GIGA_MAC_VER_44:
5623 ops->write = r8411_csi_write;
5624 ops->read = r8411_csi_read;
5625 break;
5626
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005627 default:
5628 ops->write = r8169_csi_write;
5629 ops->read = r8169_csi_read;
5630 break;
5631 }
Francois Romieudacf8152008-08-02 20:44:13 +02005632}
5633
5634struct ephy_info {
5635 unsigned int offset;
5636 u16 mask;
5637 u16 bits;
5638};
5639
Francois Romieufdf6fc02012-07-06 22:40:38 +02005640static void rtl_ephy_init(struct rtl8169_private *tp, const struct ephy_info *e,
5641 int len)
Francois Romieudacf8152008-08-02 20:44:13 +02005642{
5643 u16 w;
5644
5645 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02005646 w = (rtl_ephy_read(tp, e->offset) & ~e->mask) | e->bits;
5647 rtl_ephy_write(tp, e->offset, w);
Francois Romieudacf8152008-08-02 20:44:13 +02005648 e++;
5649 }
5650}
5651
Francois Romieub726e492008-06-28 12:22:59 +02005652static void rtl_disable_clock_request(struct pci_dev *pdev)
5653{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005654 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL,
5655 PCI_EXP_LNKCTL_CLKREQ_EN);
Francois Romieub726e492008-06-28 12:22:59 +02005656}
5657
françois romieue6de30d2011-01-03 15:08:37 +00005658static void rtl_enable_clock_request(struct pci_dev *pdev)
5659{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005660 pcie_capability_set_word(pdev, PCI_EXP_LNKCTL,
5661 PCI_EXP_LNKCTL_CLKREQ_EN);
françois romieue6de30d2011-01-03 15:08:37 +00005662}
5663
hayeswangb51ecea2014-07-09 14:52:51 +08005664static void rtl_pcie_state_l2l3_enable(struct rtl8169_private *tp, bool enable)
5665{
5666 void __iomem *ioaddr = tp->mmio_addr;
5667 u8 data;
5668
5669 data = RTL_R8(Config3);
5670
5671 if (enable)
5672 data |= Rdy_to_L23;
5673 else
5674 data &= ~Rdy_to_L23;
5675
5676 RTL_W8(Config3, data);
5677}
5678
Francois Romieub726e492008-06-28 12:22:59 +02005679#define R8168_CPCMD_QUIRK_MASK (\
5680 EnableBist | \
5681 Mac_dbgo_oe | \
5682 Force_half_dup | \
5683 Force_rxflow_en | \
5684 Force_txflow_en | \
5685 Cxpl_dbg_sel | \
5686 ASF | \
5687 PktCntrDisable | \
5688 Mac_dbgo_sel)
5689
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005690static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005691{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005692 void __iomem *ioaddr = tp->mmio_addr;
5693 struct pci_dev *pdev = tp->pci_dev;
5694
Francois Romieub726e492008-06-28 12:22:59 +02005695 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5696
5697 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5698
françois romieufaf1e782013-02-27 13:01:57 +00005699 if (tp->dev->mtu <= ETH_DATA_LEN) {
5700 rtl_tx_performance_tweak(pdev, (0x5 << MAX_READ_REQUEST_SHIFT) |
5701 PCI_EXP_DEVCTL_NOSNOOP_EN);
5702 }
Francois Romieu219a1e92008-06-28 11:58:39 +02005703}
5704
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005705static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005706{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005707 void __iomem *ioaddr = tp->mmio_addr;
5708
5709 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005710
françois romieuf0298f82011-01-03 15:07:42 +00005711 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02005712
5713 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02005714}
5715
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005716static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005717{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005718 void __iomem *ioaddr = tp->mmio_addr;
5719 struct pci_dev *pdev = tp->pci_dev;
5720
Francois Romieub726e492008-06-28 12:22:59 +02005721 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
5722
5723 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5724
françois romieufaf1e782013-02-27 13:01:57 +00005725 if (tp->dev->mtu <= ETH_DATA_LEN)
5726 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02005727
5728 rtl_disable_clock_request(pdev);
5729
5730 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02005731}
5732
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005733static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005734{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005735 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005736 { 0x01, 0, 0x0001 },
5737 { 0x02, 0x0800, 0x1000 },
5738 { 0x03, 0, 0x0042 },
5739 { 0x06, 0x0080, 0x0000 },
5740 { 0x07, 0, 0x2000 }
5741 };
5742
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005743 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005744
Francois Romieufdf6fc02012-07-06 22:40:38 +02005745 rtl_ephy_init(tp, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
Francois Romieub726e492008-06-28 12:22:59 +02005746
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005747 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005748}
5749
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005750static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02005751{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005752 void __iomem *ioaddr = tp->mmio_addr;
5753 struct pci_dev *pdev = tp->pci_dev;
5754
5755 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02005756
5757 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5758
françois romieufaf1e782013-02-27 13:01:57 +00005759 if (tp->dev->mtu <= ETH_DATA_LEN)
5760 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieuef3386f2008-06-29 12:24:30 +02005761
5762 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5763}
5764
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005765static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005766{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005767 void __iomem *ioaddr = tp->mmio_addr;
5768 struct pci_dev *pdev = tp->pci_dev;
5769
5770 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005771
5772 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5773
5774 /* Magic. */
5775 RTL_W8(DBG_REG, 0x20);
5776
françois romieuf0298f82011-01-03 15:07:42 +00005777 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005778
françois romieufaf1e782013-02-27 13:01:57 +00005779 if (tp->dev->mtu <= ETH_DATA_LEN)
5780 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005781
5782 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5783}
5784
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005785static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005786{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005787 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005788 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005789 { 0x02, 0x0800, 0x1000 },
5790 { 0x03, 0, 0x0002 },
5791 { 0x06, 0x0080, 0x0000 }
5792 };
5793
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005794 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005795
5796 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
5797
Francois Romieufdf6fc02012-07-06 22:40:38 +02005798 rtl_ephy_init(tp, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
Francois Romieub726e492008-06-28 12:22:59 +02005799
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005800 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005801}
5802
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005803static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005804{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005805 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005806 { 0x01, 0, 0x0001 },
5807 { 0x03, 0x0400, 0x0220 }
5808 };
5809
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005810 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005811
Francois Romieufdf6fc02012-07-06 22:40:38 +02005812 rtl_ephy_init(tp, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
Francois Romieub726e492008-06-28 12:22:59 +02005813
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005814 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005815}
5816
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005817static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02005818{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005819 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02005820}
5821
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005822static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02005823{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005824 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005825
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005826 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005827}
5828
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005829static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02005830{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005831 void __iomem *ioaddr = tp->mmio_addr;
5832 struct pci_dev *pdev = tp->pci_dev;
5833
5834 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02005835
5836 rtl_disable_clock_request(pdev);
5837
françois romieuf0298f82011-01-03 15:07:42 +00005838 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02005839
françois romieufaf1e782013-02-27 13:01:57 +00005840 if (tp->dev->mtu <= ETH_DATA_LEN)
5841 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu5b538df2008-07-20 16:22:45 +02005842
5843 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5844}
5845
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005846static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00005847{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005848 void __iomem *ioaddr = tp->mmio_addr;
5849 struct pci_dev *pdev = tp->pci_dev;
5850
5851 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005852
françois romieufaf1e782013-02-27 13:01:57 +00005853 if (tp->dev->mtu <= ETH_DATA_LEN)
5854 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang4804b3b2011-03-21 01:50:29 +00005855
5856 RTL_W8(MaxTxPacketSize, TxPacketMax);
5857
5858 rtl_disable_clock_request(pdev);
5859}
5860
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005861static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005862{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005863 void __iomem *ioaddr = tp->mmio_addr;
5864 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00005865 static const struct ephy_info e_info_8168d_4[] = {
5866 { 0x0b, ~0, 0x48 },
5867 { 0x19, 0x20, 0x50 },
5868 { 0x0c, ~0, 0x20 }
5869 };
5870 int i;
5871
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005872 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00005873
5874 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5875
5876 RTL_W8(MaxTxPacketSize, TxPacketMax);
5877
5878 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
5879 const struct ephy_info *e = e_info_8168d_4 + i;
5880 u16 w;
5881
Francois Romieufdf6fc02012-07-06 22:40:38 +02005882 w = rtl_ephy_read(tp, e->offset);
5883 rtl_ephy_write(tp, 0x03, (w & e->mask) | e->bits);
françois romieue6de30d2011-01-03 15:08:37 +00005884 }
5885
5886 rtl_enable_clock_request(pdev);
5887}
5888
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005889static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00005890{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005891 void __iomem *ioaddr = tp->mmio_addr;
5892 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005893 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00005894 { 0x00, 0x0200, 0x0100 },
5895 { 0x00, 0x0000, 0x0004 },
5896 { 0x06, 0x0002, 0x0001 },
5897 { 0x06, 0x0000, 0x0030 },
5898 { 0x07, 0x0000, 0x2000 },
5899 { 0x00, 0x0000, 0x0020 },
5900 { 0x03, 0x5800, 0x2000 },
5901 { 0x03, 0x0000, 0x0001 },
5902 { 0x01, 0x0800, 0x1000 },
5903 { 0x07, 0x0000, 0x4000 },
5904 { 0x1e, 0x0000, 0x2000 },
5905 { 0x19, 0xffff, 0xfe6c },
5906 { 0x0a, 0x0000, 0x0040 }
5907 };
5908
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005909 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005910
Francois Romieufdf6fc02012-07-06 22:40:38 +02005911 rtl_ephy_init(tp, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00005912
françois romieufaf1e782013-02-27 13:01:57 +00005913 if (tp->dev->mtu <= ETH_DATA_LEN)
5914 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang01dc7fe2011-03-21 01:50:28 +00005915
5916 RTL_W8(MaxTxPacketSize, TxPacketMax);
5917
5918 rtl_disable_clock_request(pdev);
5919
5920 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02005921 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
5922 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00005923
Francois Romieucecb5fd2011-04-01 10:21:07 +02005924 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00005925}
5926
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005927static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08005928{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005929 void __iomem *ioaddr = tp->mmio_addr;
5930 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005931 static const struct ephy_info e_info_8168e_2[] = {
5932 { 0x09, 0x0000, 0x0080 },
5933 { 0x19, 0x0000, 0x0224 }
5934 };
5935
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005936 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005937
Francois Romieufdf6fc02012-07-06 22:40:38 +02005938 rtl_ephy_init(tp, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
Hayes Wang70090422011-07-06 15:58:06 +08005939
françois romieufaf1e782013-02-27 13:01:57 +00005940 if (tp->dev->mtu <= ETH_DATA_LEN)
5941 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Hayes Wang70090422011-07-06 15:58:06 +08005942
Francois Romieufdf6fc02012-07-06 22:40:38 +02005943 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5944 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5945 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5946 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5947 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5948 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005949 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5950 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08005951
Hayes Wang3090bd92011-09-06 16:55:15 +08005952 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08005953
Francois Romieu4521e1a92012-11-01 16:46:28 +00005954 rtl_disable_clock_request(pdev);
5955
Hayes Wang70090422011-07-06 15:58:06 +08005956 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5957 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5958
5959 /* Adjust EEE LED frequency */
5960 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5961
5962 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
5963 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005964 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wang70090422011-07-06 15:58:06 +08005965}
5966
Hayes Wang5f886e02012-03-30 14:33:03 +08005967static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08005968{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005969 void __iomem *ioaddr = tp->mmio_addr;
5970 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08005971
Hayes Wang5f886e02012-03-30 14:33:03 +08005972 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005973
5974 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5975
Francois Romieufdf6fc02012-07-06 22:40:38 +02005976 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5977 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5978 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5979 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005980 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5981 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5982 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5983 rtl_w0w1_eri(tp, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02005984 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5985 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08005986
5987 RTL_W8(MaxTxPacketSize, EarlySize);
5988
Francois Romieu4521e1a92012-11-01 16:46:28 +00005989 rtl_disable_clock_request(pdev);
5990
Hayes Wangc2218922011-09-06 16:55:18 +08005991 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5992 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08005993 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005994 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
5995 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wangc2218922011-09-06 16:55:18 +08005996}
5997
Hayes Wang5f886e02012-03-30 14:33:03 +08005998static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
5999{
6000 void __iomem *ioaddr = tp->mmio_addr;
6001 static const struct ephy_info e_info_8168f_1[] = {
6002 { 0x06, 0x00c0, 0x0020 },
6003 { 0x08, 0x0001, 0x0002 },
6004 { 0x09, 0x0000, 0x0080 },
6005 { 0x19, 0x0000, 0x0224 }
6006 };
6007
6008 rtl_hw_start_8168f(tp);
6009
Francois Romieufdf6fc02012-07-06 22:40:38 +02006010 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wang5f886e02012-03-30 14:33:03 +08006011
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006012 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang5f886e02012-03-30 14:33:03 +08006013
6014 /* Adjust EEE LED frequency */
6015 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6016}
6017
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006018static void rtl_hw_start_8411(struct rtl8169_private *tp)
6019{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006020 static const struct ephy_info e_info_8168f_1[] = {
6021 { 0x06, 0x00c0, 0x0020 },
6022 { 0x0f, 0xffff, 0x5200 },
6023 { 0x1e, 0x0000, 0x4000 },
6024 { 0x19, 0x0000, 0x0224 }
6025 };
6026
6027 rtl_hw_start_8168f(tp);
hayeswangb51ecea2014-07-09 14:52:51 +08006028 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006029
Francois Romieufdf6fc02012-07-06 22:40:38 +02006030 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006031
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006032 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006033}
6034
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006035static void rtl_hw_start_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006036{
6037 void __iomem *ioaddr = tp->mmio_addr;
6038 struct pci_dev *pdev = tp->pci_dev;
6039
hayeswangbeb330a2013-04-01 22:23:39 +00006040 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6041
Hayes Wangc5583862012-07-02 17:23:22 +08006042 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x080002, ERIAR_EXGMAC);
6043 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
6044 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
6045 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6046
6047 rtl_csi_access_enable_1(tp);
6048
6049 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6050
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006051 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6052 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
hayeswangbeb330a2013-04-01 22:23:39 +00006053 rtl_eri_write(tp, 0x2f8, ERIAR_MASK_0011, 0x1d8f, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08006054
Francois Romieu4521e1a92012-11-01 16:46:28 +00006055 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
Hayes Wangc5583862012-07-02 17:23:22 +08006056 RTL_W8(MaxTxPacketSize, EarlySize);
6057
6058 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6059 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6060
6061 /* Adjust EEE LED frequency */
6062 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6063
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006064 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6065 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006066
6067 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangc5583862012-07-02 17:23:22 +08006068}
6069
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006070static void rtl_hw_start_8168g_1(struct rtl8169_private *tp)
6071{
6072 void __iomem *ioaddr = tp->mmio_addr;
6073 static const struct ephy_info e_info_8168g_1[] = {
6074 { 0x00, 0x0000, 0x0008 },
6075 { 0x0c, 0x37d0, 0x0820 },
6076 { 0x1e, 0x0000, 0x0001 },
6077 { 0x19, 0x8000, 0x0000 }
6078 };
6079
6080 rtl_hw_start_8168g(tp);
6081
6082 /* disable aspm and clock request before access ephy */
6083 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6084 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6085 rtl_ephy_init(tp, e_info_8168g_1, ARRAY_SIZE(e_info_8168g_1));
6086}
6087
hayeswang57538c42013-04-01 22:23:40 +00006088static void rtl_hw_start_8168g_2(struct rtl8169_private *tp)
6089{
6090 void __iomem *ioaddr = tp->mmio_addr;
6091 static const struct ephy_info e_info_8168g_2[] = {
6092 { 0x00, 0x0000, 0x0008 },
6093 { 0x0c, 0x3df0, 0x0200 },
6094 { 0x19, 0xffff, 0xfc00 },
6095 { 0x1e, 0xffff, 0x20eb }
6096 };
6097
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006098 rtl_hw_start_8168g(tp);
hayeswang57538c42013-04-01 22:23:40 +00006099
6100 /* disable aspm and clock request before access ephy */
6101 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6102 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6103 rtl_ephy_init(tp, e_info_8168g_2, ARRAY_SIZE(e_info_8168g_2));
6104}
6105
hayeswang45dd95c2013-07-08 17:09:01 +08006106static void rtl_hw_start_8411_2(struct rtl8169_private *tp)
6107{
6108 void __iomem *ioaddr = tp->mmio_addr;
6109 static const struct ephy_info e_info_8411_2[] = {
6110 { 0x00, 0x0000, 0x0008 },
6111 { 0x0c, 0x3df0, 0x0200 },
6112 { 0x0f, 0xffff, 0x5200 },
6113 { 0x19, 0x0020, 0x0000 },
6114 { 0x1e, 0x0000, 0x2000 }
6115 };
6116
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006117 rtl_hw_start_8168g(tp);
hayeswang45dd95c2013-07-08 17:09:01 +08006118
6119 /* disable aspm and clock request before access ephy */
6120 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6121 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6122 rtl_ephy_init(tp, e_info_8411_2, ARRAY_SIZE(e_info_8411_2));
6123}
6124
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006125static void rtl_hw_start_8168h_1(struct rtl8169_private *tp)
6126{
6127 void __iomem *ioaddr = tp->mmio_addr;
6128 struct pci_dev *pdev = tp->pci_dev;
6129 u16 rg_saw_cnt;
6130 u32 data;
6131 static const struct ephy_info e_info_8168h_1[] = {
6132 { 0x1e, 0x0800, 0x0001 },
6133 { 0x1d, 0x0000, 0x0800 },
6134 { 0x05, 0xffff, 0x2089 },
6135 { 0x06, 0xffff, 0x5881 },
6136 { 0x04, 0xffff, 0x154a },
6137 { 0x01, 0xffff, 0x068b }
6138 };
6139
6140 /* disable aspm and clock request before access ephy */
6141 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6142 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6143 rtl_ephy_init(tp, e_info_8168h_1, ARRAY_SIZE(e_info_8168h_1));
6144
6145 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6146
6147 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6148 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
6149 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
6150 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6151
6152 rtl_csi_access_enable_1(tp);
6153
6154 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6155
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006156 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6157 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006158
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006159 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_1111, 0x0010, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006160
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006161 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f00, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006162
6163 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6164
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006165 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6166 RTL_W8(MaxTxPacketSize, EarlySize);
6167
6168 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6169 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6170
6171 /* Adjust EEE LED frequency */
6172 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6173
6174 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
6175 RTL_W8(DLLPR, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
6176
6177 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6178
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006179 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006180
6181 rtl_pcie_state_l2l3_enable(tp, false);
6182
6183 rtl_writephy(tp, 0x1f, 0x0c42);
6184 rg_saw_cnt = rtl_readphy(tp, 0x13);
6185 rtl_writephy(tp, 0x1f, 0x0000);
6186 if (rg_saw_cnt > 0) {
6187 u16 sw_cnt_1ms_ini;
6188
6189 sw_cnt_1ms_ini = 16000000/rg_saw_cnt;
6190 sw_cnt_1ms_ini &= 0x0fff;
6191 data = r8168_mac_ocp_read(tp, 0xd412);
6192 data &= 0x0fff;
6193 data |= sw_cnt_1ms_ini;
6194 r8168_mac_ocp_write(tp, 0xd412, data);
6195 }
6196
6197 data = r8168_mac_ocp_read(tp, 0xe056);
6198 data &= 0xf0;
6199 data |= 0x07;
6200 r8168_mac_ocp_write(tp, 0xe056, data);
6201
6202 data = r8168_mac_ocp_read(tp, 0xe052);
6203 data &= 0x8008;
6204 data |= 0x6000;
6205 r8168_mac_ocp_write(tp, 0xe052, data);
6206
6207 data = r8168_mac_ocp_read(tp, 0xe0d6);
6208 data &= 0x01ff;
6209 data |= 0x017f;
6210 r8168_mac_ocp_write(tp, 0xe0d6, data);
6211
6212 data = r8168_mac_ocp_read(tp, 0xd420);
6213 data &= 0x0fff;
6214 data |= 0x047f;
6215 r8168_mac_ocp_write(tp, 0xd420, data);
6216
6217 r8168_mac_ocp_write(tp, 0xe63e, 0x0001);
6218 r8168_mac_ocp_write(tp, 0xe63e, 0x0000);
6219 r8168_mac_ocp_write(tp, 0xc094, 0x0000);
6220 r8168_mac_ocp_write(tp, 0xc09e, 0x0000);
6221}
6222
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006223static void rtl_hw_start_8168ep(struct rtl8169_private *tp)
6224{
6225 void __iomem *ioaddr = tp->mmio_addr;
6226 struct pci_dev *pdev = tp->pci_dev;
6227
Chun-Hao Lin003609d2014-12-02 16:48:31 +08006228 rtl8168ep_stop_cmac(tp);
6229
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006230 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6231
6232 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6233 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x2f, ERIAR_EXGMAC);
6234 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x5f, ERIAR_EXGMAC);
6235 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6236
6237 rtl_csi_access_enable_1(tp);
6238
6239 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6240
6241 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6242 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
6243
6244 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f80, 0x00, ERIAR_EXGMAC);
6245
6246 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6247
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006248 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6249 RTL_W8(MaxTxPacketSize, EarlySize);
6250
6251 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6252 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6253
6254 /* Adjust EEE LED frequency */
6255 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6256
6257 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6258
6259 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6260
6261 rtl_pcie_state_l2l3_enable(tp, false);
6262}
6263
6264static void rtl_hw_start_8168ep_1(struct rtl8169_private *tp)
6265{
6266 void __iomem *ioaddr = tp->mmio_addr;
6267 static const struct ephy_info e_info_8168ep_1[] = {
6268 { 0x00, 0xffff, 0x10ab },
6269 { 0x06, 0xffff, 0xf030 },
6270 { 0x08, 0xffff, 0x2006 },
6271 { 0x0d, 0xffff, 0x1666 },
6272 { 0x0c, 0x3ff0, 0x0000 }
6273 };
6274
6275 /* disable aspm and clock request before access ephy */
6276 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6277 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6278 rtl_ephy_init(tp, e_info_8168ep_1, ARRAY_SIZE(e_info_8168ep_1));
6279
6280 rtl_hw_start_8168ep(tp);
6281}
6282
6283static void rtl_hw_start_8168ep_2(struct rtl8169_private *tp)
6284{
6285 void __iomem *ioaddr = tp->mmio_addr;
6286 static const struct ephy_info e_info_8168ep_2[] = {
6287 { 0x00, 0xffff, 0x10a3 },
6288 { 0x19, 0xffff, 0xfc00 },
6289 { 0x1e, 0xffff, 0x20ea }
6290 };
6291
6292 /* disable aspm and clock request before access ephy */
6293 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6294 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6295 rtl_ephy_init(tp, e_info_8168ep_2, ARRAY_SIZE(e_info_8168ep_2));
6296
6297 rtl_hw_start_8168ep(tp);
6298
6299 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
6300 RTL_W8(DLLPR, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
6301}
6302
6303static void rtl_hw_start_8168ep_3(struct rtl8169_private *tp)
6304{
6305 void __iomem *ioaddr = tp->mmio_addr;
6306 u32 data;
6307 static const struct ephy_info e_info_8168ep_3[] = {
6308 { 0x00, 0xffff, 0x10a3 },
6309 { 0x19, 0xffff, 0x7c00 },
6310 { 0x1e, 0xffff, 0x20eb },
6311 { 0x0d, 0xffff, 0x1666 }
6312 };
6313
6314 /* disable aspm and clock request before access ephy */
6315 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6316 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6317 rtl_ephy_init(tp, e_info_8168ep_3, ARRAY_SIZE(e_info_8168ep_3));
6318
6319 rtl_hw_start_8168ep(tp);
6320
6321 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
6322 RTL_W8(DLLPR, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
6323
6324 data = r8168_mac_ocp_read(tp, 0xd3e2);
6325 data &= 0xf000;
6326 data |= 0x0271;
6327 r8168_mac_ocp_write(tp, 0xd3e2, data);
6328
6329 data = r8168_mac_ocp_read(tp, 0xd3e4);
6330 data &= 0xff00;
6331 r8168_mac_ocp_write(tp, 0xd3e4, data);
6332
6333 data = r8168_mac_ocp_read(tp, 0xe860);
6334 data |= 0x0080;
6335 r8168_mac_ocp_write(tp, 0xe860, data);
6336}
6337
Francois Romieu07ce4062007-02-23 23:36:39 +01006338static void rtl_hw_start_8168(struct net_device *dev)
6339{
Francois Romieu2dd99532007-06-11 23:22:52 +02006340 struct rtl8169_private *tp = netdev_priv(dev);
6341 void __iomem *ioaddr = tp->mmio_addr;
6342
6343 RTL_W8(Cfg9346, Cfg9346_Unlock);
6344
françois romieuf0298f82011-01-03 15:07:42 +00006345 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02006346
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006347 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02006348
Francois Romieu0e485152007-02-20 00:00:26 +01006349 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02006350
6351 RTL_W16(CPlusCmd, tp->cp_cmd);
6352
Francois Romieu0e485152007-02-20 00:00:26 +01006353 RTL_W16(IntrMitigate, 0x5151);
6354
6355 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00006356 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01006357 tp->event_slow |= RxFIFOOver | PCSTimeout;
6358 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01006359 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006360
6361 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6362
hayeswang1a964642013-04-01 22:23:41 +00006363 rtl_set_rx_tx_config_registers(tp);
Francois Romieu2dd99532007-06-11 23:22:52 +02006364
6365 RTL_R8(IntrMask);
6366
Francois Romieu219a1e92008-06-28 11:58:39 +02006367 switch (tp->mac_version) {
6368 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006369 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006370 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006371
6372 case RTL_GIGA_MAC_VER_12:
6373 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006374 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006375 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006376
6377 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006378 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006379 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006380
6381 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006382 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006383 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006384
6385 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006386 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006387 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006388
Francois Romieu197ff762008-06-28 13:16:02 +02006389 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006390 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006391 break;
Francois Romieu197ff762008-06-28 13:16:02 +02006392
Francois Romieu6fb07052008-06-29 11:54:28 +02006393 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006394 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006395 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02006396
Francois Romieuef3386f2008-06-29 12:24:30 +02006397 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006398 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006399 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02006400
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006401 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006402 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006403 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006404
Francois Romieu5b538df2008-07-20 16:22:45 +02006405 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00006406 case RTL_GIGA_MAC_VER_26:
6407 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006408 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006409 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02006410
françois romieue6de30d2011-01-03 15:08:37 +00006411 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006412 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006413 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02006414
hayeswang4804b3b2011-03-21 01:50:29 +00006415 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006416 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006417 break;
6418
hayeswang01dc7fe2011-03-21 01:50:28 +00006419 case RTL_GIGA_MAC_VER_32:
6420 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006421 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08006422 break;
6423 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006424 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00006425 break;
françois romieue6de30d2011-01-03 15:08:37 +00006426
Hayes Wangc2218922011-09-06 16:55:18 +08006427 case RTL_GIGA_MAC_VER_35:
6428 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006429 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08006430 break;
6431
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006432 case RTL_GIGA_MAC_VER_38:
6433 rtl_hw_start_8411(tp);
6434 break;
6435
Hayes Wangc5583862012-07-02 17:23:22 +08006436 case RTL_GIGA_MAC_VER_40:
6437 case RTL_GIGA_MAC_VER_41:
6438 rtl_hw_start_8168g_1(tp);
6439 break;
hayeswang57538c42013-04-01 22:23:40 +00006440 case RTL_GIGA_MAC_VER_42:
6441 rtl_hw_start_8168g_2(tp);
6442 break;
Hayes Wangc5583862012-07-02 17:23:22 +08006443
hayeswang45dd95c2013-07-08 17:09:01 +08006444 case RTL_GIGA_MAC_VER_44:
6445 rtl_hw_start_8411_2(tp);
6446 break;
6447
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006448 case RTL_GIGA_MAC_VER_45:
6449 case RTL_GIGA_MAC_VER_46:
6450 rtl_hw_start_8168h_1(tp);
6451 break;
6452
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006453 case RTL_GIGA_MAC_VER_49:
6454 rtl_hw_start_8168ep_1(tp);
6455 break;
6456
6457 case RTL_GIGA_MAC_VER_50:
6458 rtl_hw_start_8168ep_2(tp);
6459 break;
6460
6461 case RTL_GIGA_MAC_VER_51:
6462 rtl_hw_start_8168ep_3(tp);
6463 break;
6464
Francois Romieu219a1e92008-06-28 11:58:39 +02006465 default:
6466 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
6467 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00006468 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006469 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006470
hayeswang1a964642013-04-01 22:23:41 +00006471 RTL_W8(Cfg9346, Cfg9346_Lock);
6472
Francois Romieu0e485152007-02-20 00:00:26 +01006473 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
6474
hayeswang1a964642013-04-01 22:23:41 +00006475 rtl_set_rx_mode(dev);
Francois Romieub8363902008-06-01 12:31:57 +02006476
Chun-Hao Lin05b96872014-10-01 23:17:12 +08006477 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01006478}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479
Francois Romieu2857ffb2008-08-02 21:08:49 +02006480#define R810X_CPCMD_QUIRK_MASK (\
6481 EnableBist | \
6482 Mac_dbgo_oe | \
6483 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00006484 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02006485 Force_txflow_en | \
6486 Cxpl_dbg_sel | \
6487 ASF | \
6488 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006489 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006490
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006491static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006492{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006493 void __iomem *ioaddr = tp->mmio_addr;
6494 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08006495 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02006496 { 0x01, 0, 0x6e65 },
6497 { 0x02, 0, 0x091f },
6498 { 0x03, 0, 0xc2f9 },
6499 { 0x06, 0, 0xafb5 },
6500 { 0x07, 0, 0x0e00 },
6501 { 0x19, 0, 0xec80 },
6502 { 0x01, 0, 0x2e65 },
6503 { 0x01, 0, 0x6e65 }
6504 };
6505 u8 cfg1;
6506
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006507 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006508
6509 RTL_W8(DBG_REG, FIX_NAK_1);
6510
6511 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6512
6513 RTL_W8(Config1,
6514 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
6515 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
6516
6517 cfg1 = RTL_R8(Config1);
6518 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
6519 RTL_W8(Config1, cfg1 & ~LEDS0);
6520
Francois Romieufdf6fc02012-07-06 22:40:38 +02006521 rtl_ephy_init(tp, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
Francois Romieu2857ffb2008-08-02 21:08:49 +02006522}
6523
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006524static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006525{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006526 void __iomem *ioaddr = tp->mmio_addr;
6527 struct pci_dev *pdev = tp->pci_dev;
6528
6529 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006530
6531 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6532
6533 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
6534 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006535}
6536
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006537static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006538{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006539 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006540
Francois Romieufdf6fc02012-07-06 22:40:38 +02006541 rtl_ephy_write(tp, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006542}
6543
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006544static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006545{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006546 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006547 static const struct ephy_info e_info_8105e_1[] = {
6548 { 0x07, 0, 0x4000 },
6549 { 0x19, 0, 0x0200 },
6550 { 0x19, 0, 0x0020 },
6551 { 0x1e, 0, 0x2000 },
6552 { 0x03, 0, 0x0001 },
6553 { 0x19, 0, 0x0100 },
6554 { 0x19, 0, 0x0004 },
6555 { 0x0a, 0, 0x0020 }
6556 };
6557
Francois Romieucecb5fd2011-04-01 10:21:07 +02006558 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006559 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6560
Francois Romieucecb5fd2011-04-01 10:21:07 +02006561 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006562 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
6563
6564 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08006565 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006566
Francois Romieufdf6fc02012-07-06 22:40:38 +02006567 rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
hayeswangb51ecea2014-07-09 14:52:51 +08006568
6569 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006570}
6571
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006572static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006573{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006574 rtl_hw_start_8105e_1(tp);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006575 rtl_ephy_write(tp, 0x1e, rtl_ephy_read(tp, 0x1e) | 0x8000);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006576}
6577
Hayes Wang7e18dca2012-03-30 14:33:02 +08006578static void rtl_hw_start_8402(struct rtl8169_private *tp)
6579{
6580 void __iomem *ioaddr = tp->mmio_addr;
6581 static const struct ephy_info e_info_8402[] = {
6582 { 0x19, 0xffff, 0xff64 },
6583 { 0x1e, 0, 0x4000 }
6584 };
6585
6586 rtl_csi_access_enable_2(tp);
6587
6588 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6589 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6590
6591 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6592 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6593
Francois Romieufdf6fc02012-07-06 22:40:38 +02006594 rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402));
Hayes Wang7e18dca2012-03-30 14:33:02 +08006595
6596 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
6597
Francois Romieufdf6fc02012-07-06 22:40:38 +02006598 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
6599 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006600 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6601 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006602 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6603 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006604 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006605
6606 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang7e18dca2012-03-30 14:33:02 +08006607}
6608
Hayes Wang5598bfe2012-07-02 17:23:21 +08006609static void rtl_hw_start_8106(struct rtl8169_private *tp)
6610{
6611 void __iomem *ioaddr = tp->mmio_addr;
6612
6613 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6614 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6615
Francois Romieu4521e1a92012-11-01 16:46:28 +00006616 RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006617 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
6618 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
hayeswangb51ecea2014-07-09 14:52:51 +08006619
6620 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006621}
6622
Francois Romieu07ce4062007-02-23 23:36:39 +01006623static void rtl_hw_start_8101(struct net_device *dev)
6624{
Francois Romieucdf1a602007-06-11 23:29:50 +02006625 struct rtl8169_private *tp = netdev_priv(dev);
6626 void __iomem *ioaddr = tp->mmio_addr;
6627 struct pci_dev *pdev = tp->pci_dev;
6628
Francois Romieuda78dbf2012-01-26 14:18:23 +01006629 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
6630 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00006631
Francois Romieucecb5fd2011-04-01 10:21:07 +02006632 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
Jiang Liu7d7903b2012-07-24 17:20:16 +08006633 tp->mac_version == RTL_GIGA_MAC_VER_16)
Bjorn Helgaas8200bc72012-08-22 10:29:42 -06006634 pcie_capability_set_word(pdev, PCI_EXP_DEVCTL,
6635 PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieucdf1a602007-06-11 23:29:50 +02006636
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006637 RTL_W8(Cfg9346, Cfg9346_Unlock);
6638
hayeswang1a964642013-04-01 22:23:41 +00006639 RTL_W8(MaxTxPacketSize, TxPacketMax);
6640
6641 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
6642
6643 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
6644 RTL_W16(CPlusCmd, tp->cp_cmd);
6645
6646 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6647
6648 rtl_set_rx_tx_config_registers(tp);
6649
Francois Romieu2857ffb2008-08-02 21:08:49 +02006650 switch (tp->mac_version) {
6651 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006652 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006653 break;
6654
6655 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006656 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006657 break;
6658
6659 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006660 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006661 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006662
6663 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006664 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006665 break;
6666 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006667 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006668 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08006669
6670 case RTL_GIGA_MAC_VER_37:
6671 rtl_hw_start_8402(tp);
6672 break;
Hayes Wang5598bfe2012-07-02 17:23:21 +08006673
6674 case RTL_GIGA_MAC_VER_39:
6675 rtl_hw_start_8106(tp);
6676 break;
hayeswang58152cd2013-04-01 22:23:42 +00006677 case RTL_GIGA_MAC_VER_43:
6678 rtl_hw_start_8168g_2(tp);
6679 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006680 case RTL_GIGA_MAC_VER_47:
6681 case RTL_GIGA_MAC_VER_48:
6682 rtl_hw_start_8168h_1(tp);
6683 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02006684 }
6685
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006686 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02006687
Francois Romieucdf1a602007-06-11 23:29:50 +02006688 RTL_W16(IntrMitigate, 0x0000);
6689
Francois Romieucdf1a602007-06-11 23:29:50 +02006690 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieucdf1a602007-06-11 23:29:50 +02006691
Francois Romieucdf1a602007-06-11 23:29:50 +02006692 rtl_set_rx_mode(dev);
6693
hayeswang1a964642013-04-01 22:23:41 +00006694 RTL_R8(IntrMask);
6695
Francois Romieucdf1a602007-06-11 23:29:50 +02006696 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006697}
6698
6699static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
6700{
Francois Romieud58d46b2011-05-03 16:38:29 +02006701 struct rtl8169_private *tp = netdev_priv(dev);
6702
6703 if (new_mtu < ETH_ZLEN ||
6704 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705 return -EINVAL;
6706
Francois Romieud58d46b2011-05-03 16:38:29 +02006707 if (new_mtu > ETH_DATA_LEN)
6708 rtl_hw_jumbo_enable(tp);
6709 else
6710 rtl_hw_jumbo_disable(tp);
6711
Linus Torvalds1da177e2005-04-16 15:20:36 -07006712 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00006713 netdev_update_features(dev);
6714
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006715 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716}
6717
6718static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
6719{
Al Viro95e09182007-12-22 18:55:39 +00006720 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
6722}
6723
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006724static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
6725 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006727 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006728 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006729
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006730 kfree(*data_buff);
6731 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732 rtl8169_make_unusable_by_asic(desc);
6733}
6734
6735static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
6736{
6737 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
6738
Alexander Duycka0750132014-12-11 15:02:17 -08006739 /* Force memory writes to complete before releasing descriptor */
6740 dma_wmb();
6741
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
6743}
6744
6745static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
6746 u32 rx_buf_sz)
6747{
6748 desc->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006749 rtl8169_mark_to_asic(desc, rx_buf_sz);
6750}
6751
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006752static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006754 return (void *)ALIGN((long)data, 16);
6755}
6756
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006757static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
6758 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006759{
6760 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006762 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006763 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006764 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006766 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
6767 if (!data)
6768 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01006769
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006770 if (rtl8169_align(data) != data) {
6771 kfree(data);
6772 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
6773 if (!data)
6774 return NULL;
6775 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006776
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006777 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006778 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006779 if (unlikely(dma_mapping_error(d, mapping))) {
6780 if (net_ratelimit())
6781 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006782 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784
6785 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006786 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006787
6788err_out:
6789 kfree(data);
6790 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791}
6792
6793static void rtl8169_rx_clear(struct rtl8169_private *tp)
6794{
Francois Romieu07d3f512007-02-21 22:40:46 +01006795 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796
6797 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006798 if (tp->Rx_databuff[i]) {
6799 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800 tp->RxDescArray + i);
6801 }
6802 }
6803}
6804
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006805static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006807 desc->opts1 |= cpu_to_le32(RingEnd);
6808}
Francois Romieu5b0384f2006-08-16 16:00:01 +02006809
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006810static int rtl8169_rx_fill(struct rtl8169_private *tp)
6811{
6812 unsigned int i;
6813
6814 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006815 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02006816
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006817 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02006819
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006820 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006821 if (!data) {
6822 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006823 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006824 }
6825 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006828 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
6829 return 0;
6830
6831err_out:
6832 rtl8169_rx_clear(tp);
6833 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834}
6835
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836static int rtl8169_init_ring(struct net_device *dev)
6837{
6838 struct rtl8169_private *tp = netdev_priv(dev);
6839
6840 rtl8169_init_ring_indexes(tp);
6841
6842 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006843 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006845 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846}
6847
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006848static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849 struct TxDesc *desc)
6850{
6851 unsigned int len = tx_skb->len;
6852
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006853 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
6854
Linus Torvalds1da177e2005-04-16 15:20:36 -07006855 desc->opts1 = 0x00;
6856 desc->opts2 = 0x00;
6857 desc->addr = 0x00;
6858 tx_skb->len = 0;
6859}
6860
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006861static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
6862 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863{
6864 unsigned int i;
6865
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006866 for (i = 0; i < n; i++) {
6867 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006868 struct ring_info *tx_skb = tp->tx_skb + entry;
6869 unsigned int len = tx_skb->len;
6870
6871 if (len) {
6872 struct sk_buff *skb = tx_skb->skb;
6873
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006874 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875 tp->TxDescArray + entry);
6876 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00006877 tp->dev->stats.tx_dropped++;
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07006878 dev_kfree_skb_any(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879 tx_skb->skb = NULL;
6880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881 }
6882 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006883}
6884
6885static void rtl8169_tx_clear(struct rtl8169_private *tp)
6886{
6887 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888 tp->cur_tx = tp->dirty_tx = 0;
6889}
6890
Francois Romieu4422bcd2012-01-26 11:23:32 +01006891static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892{
David Howellsc4028952006-11-22 14:57:56 +00006893 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01006894 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006895
Francois Romieuda78dbf2012-01-26 14:18:23 +01006896 napi_disable(&tp->napi);
6897 netif_stop_queue(dev);
6898 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006899
françois romieuc7c2c392011-12-04 20:30:52 +00006900 rtl8169_hw_reset(tp);
6901
Francois Romieu56de4142011-03-15 17:29:31 +01006902 for (i = 0; i < NUM_RX_DESC; i++)
6903 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
6904
Linus Torvalds1da177e2005-04-16 15:20:36 -07006905 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00006906 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907
Francois Romieuda78dbf2012-01-26 14:18:23 +01006908 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01006909 rtl_hw_start(dev);
6910 netif_wake_queue(dev);
6911 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912}
6913
6914static void rtl8169_tx_timeout(struct net_device *dev)
6915{
Francois Romieuda78dbf2012-01-26 14:18:23 +01006916 struct rtl8169_private *tp = netdev_priv(dev);
6917
6918 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919}
6920
6921static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07006922 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006923{
6924 struct skb_shared_info *info = skb_shinfo(skb);
6925 unsigned int cur_frag, entry;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006926 struct TxDesc *uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006927 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928
6929 entry = tp->cur_tx;
6930 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006931 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932 dma_addr_t mapping;
6933 u32 status, len;
6934 void *addr;
6935
6936 entry = (entry + 1) % NUM_TX_DESC;
6937
6938 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00006939 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00006940 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006941 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006942 if (unlikely(dma_mapping_error(d, mapping))) {
6943 if (net_ratelimit())
6944 netif_err(tp, drv, tp->dev,
6945 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006946 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948
Francois Romieucecb5fd2011-04-01 10:21:07 +02006949 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07006950 status = opts[0] | len |
6951 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952
6953 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07006954 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955 txd->addr = cpu_to_le64(mapping);
6956
6957 tp->tx_skb[entry].len = len;
6958 }
6959
6960 if (cur_frag) {
6961 tp->tx_skb[entry].skb = skb;
6962 txd->opts1 |= cpu_to_le32(LastFrag);
6963 }
6964
6965 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006966
6967err_out:
6968 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
6969 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970}
6971
françois romieub423e9a2013-05-18 01:24:46 +00006972static bool rtl_test_hw_pad_bug(struct rtl8169_private *tp, struct sk_buff *skb)
6973{
6974 return skb->len < ETH_ZLEN && tp->mac_version == RTL_GIGA_MAC_VER_34;
6975}
6976
hayeswange9746042014-07-11 16:25:58 +08006977static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
6978 struct net_device *dev);
6979/* r8169_csum_workaround()
6980 * The hw limites the value the transport offset. When the offset is out of the
6981 * range, calculate the checksum by sw.
6982 */
6983static void r8169_csum_workaround(struct rtl8169_private *tp,
6984 struct sk_buff *skb)
6985{
6986 if (skb_shinfo(skb)->gso_size) {
6987 netdev_features_t features = tp->dev->features;
6988 struct sk_buff *segs, *nskb;
6989
6990 features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
6991 segs = skb_gso_segment(skb, features);
6992 if (IS_ERR(segs) || !segs)
6993 goto drop;
6994
6995 do {
6996 nskb = segs;
6997 segs = segs->next;
6998 nskb->next = NULL;
6999 rtl8169_start_xmit(nskb, tp->dev);
7000 } while (segs);
7001
Alexander Duyckeb781392015-05-01 10:34:44 -07007002 dev_consume_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08007003 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
7004 if (skb_checksum_help(skb) < 0)
7005 goto drop;
7006
7007 rtl8169_start_xmit(skb, tp->dev);
7008 } else {
7009 struct net_device_stats *stats;
7010
7011drop:
7012 stats = &tp->dev->stats;
7013 stats->tx_dropped++;
Alexander Duyckeb781392015-05-01 10:34:44 -07007014 dev_kfree_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08007015 }
7016}
7017
7018/* msdn_giant_send_check()
7019 * According to the document of microsoft, the TCP Pseudo Header excludes the
7020 * packet length for IPv6 TCP large packets.
7021 */
7022static int msdn_giant_send_check(struct sk_buff *skb)
7023{
7024 const struct ipv6hdr *ipv6h;
7025 struct tcphdr *th;
7026 int ret;
7027
7028 ret = skb_cow_head(skb, 0);
7029 if (ret)
7030 return ret;
7031
7032 ipv6h = ipv6_hdr(skb);
7033 th = tcp_hdr(skb);
7034
7035 th->check = 0;
7036 th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0);
7037
7038 return ret;
7039}
7040
7041static inline __be16 get_protocol(struct sk_buff *skb)
7042{
7043 __be16 protocol;
7044
7045 if (skb->protocol == htons(ETH_P_8021Q))
7046 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
7047 else
7048 protocol = skb->protocol;
7049
7050 return protocol;
7051}
7052
hayeswang5888d3f2014-07-11 16:25:56 +08007053static bool rtl8169_tso_csum_v1(struct rtl8169_private *tp,
7054 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055{
Michał Mirosław350fb322011-04-08 06:35:56 +00007056 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057
Francois Romieu2b7b4312011-04-18 22:53:24 -07007058 if (mss) {
7059 opts[0] |= TD_LSO;
hayeswang5888d3f2014-07-11 16:25:56 +08007060 opts[0] |= min(mss, TD_MSS_MAX) << TD0_MSS_SHIFT;
7061 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
7062 const struct iphdr *ip = ip_hdr(skb);
7063
7064 if (ip->protocol == IPPROTO_TCP)
7065 opts[0] |= TD0_IP_CS | TD0_TCP_CS;
7066 else if (ip->protocol == IPPROTO_UDP)
7067 opts[0] |= TD0_IP_CS | TD0_UDP_CS;
7068 else
7069 WARN_ON_ONCE(1);
7070 }
7071
7072 return true;
7073}
7074
7075static bool rtl8169_tso_csum_v2(struct rtl8169_private *tp,
7076 struct sk_buff *skb, u32 *opts)
7077{
hayeswangbdfa4ed2014-07-11 16:25:57 +08007078 u32 transport_offset = (u32)skb_transport_offset(skb);
hayeswang5888d3f2014-07-11 16:25:56 +08007079 u32 mss = skb_shinfo(skb)->gso_size;
7080
7081 if (mss) {
hayeswange9746042014-07-11 16:25:58 +08007082 if (transport_offset > GTTCPHO_MAX) {
7083 netif_warn(tp, tx_err, tp->dev,
7084 "Invalid transport offset 0x%x for TSO\n",
7085 transport_offset);
7086 return false;
7087 }
7088
7089 switch (get_protocol(skb)) {
7090 case htons(ETH_P_IP):
7091 opts[0] |= TD1_GTSENV4;
7092 break;
7093
7094 case htons(ETH_P_IPV6):
7095 if (msdn_giant_send_check(skb))
7096 return false;
7097
7098 opts[0] |= TD1_GTSENV6;
7099 break;
7100
7101 default:
7102 WARN_ON_ONCE(1);
7103 break;
7104 }
7105
hayeswangbdfa4ed2014-07-11 16:25:57 +08007106 opts[0] |= transport_offset << GTTCPHO_SHIFT;
hayeswang5888d3f2014-07-11 16:25:56 +08007107 opts[1] |= min(mss, TD_MSS_MAX) << TD1_MSS_SHIFT;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007108 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
hayeswange9746042014-07-11 16:25:58 +08007109 u8 ip_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110
françois romieub423e9a2013-05-18 01:24:46 +00007111 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007112 return !(skb_checksum_help(skb) || eth_skb_pad(skb));
françois romieub423e9a2013-05-18 01:24:46 +00007113
hayeswange9746042014-07-11 16:25:58 +08007114 if (transport_offset > TCPHO_MAX) {
7115 netif_warn(tp, tx_err, tp->dev,
7116 "Invalid transport offset 0x%x\n",
7117 transport_offset);
7118 return false;
7119 }
7120
7121 switch (get_protocol(skb)) {
7122 case htons(ETH_P_IP):
7123 opts[1] |= TD1_IPv4_CS;
7124 ip_protocol = ip_hdr(skb)->protocol;
7125 break;
7126
7127 case htons(ETH_P_IPV6):
7128 opts[1] |= TD1_IPv6_CS;
7129 ip_protocol = ipv6_hdr(skb)->nexthdr;
7130 break;
7131
7132 default:
7133 ip_protocol = IPPROTO_RAW;
7134 break;
7135 }
7136
7137 if (ip_protocol == IPPROTO_TCP)
7138 opts[1] |= TD1_TCP_CS;
7139 else if (ip_protocol == IPPROTO_UDP)
7140 opts[1] |= TD1_UDP_CS;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007141 else
7142 WARN_ON_ONCE(1);
hayeswange9746042014-07-11 16:25:58 +08007143
7144 opts[1] |= transport_offset << TCPHO_SHIFT;
françois romieub423e9a2013-05-18 01:24:46 +00007145 } else {
7146 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007147 return !eth_skb_pad(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148 }
hayeswang5888d3f2014-07-11 16:25:56 +08007149
françois romieub423e9a2013-05-18 01:24:46 +00007150 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007151}
7152
Stephen Hemminger613573252009-08-31 19:50:58 +00007153static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
7154 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155{
7156 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007157 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007158 struct TxDesc *txd = tp->TxDescArray + entry;
7159 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007160 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161 dma_addr_t mapping;
7162 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007163 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007164 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02007165
Julien Ducourthial477206a2012-05-09 00:00:06 +02007166 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007167 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007168 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007169 }
7170
7171 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007172 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173
françois romieub423e9a2013-05-18 01:24:46 +00007174 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb));
7175 opts[0] = DescOwn;
7176
hayeswange9746042014-07-11 16:25:58 +08007177 if (!tp->tso_csum(tp, skb, opts)) {
7178 r8169_csum_workaround(tp, skb);
7179 return NETDEV_TX_OK;
7180 }
françois romieub423e9a2013-05-18 01:24:46 +00007181
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007182 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007183 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007184 if (unlikely(dma_mapping_error(d, mapping))) {
7185 if (net_ratelimit())
7186 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007187 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007189
7190 tp->tx_skb[entry].len = len;
7191 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007192
Francois Romieu2b7b4312011-04-18 22:53:24 -07007193 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007194 if (frags < 0)
7195 goto err_dma_1;
7196 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07007197 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007198 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07007199 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007200 tp->tx_skb[entry].skb = skb;
7201 }
7202
Francois Romieu2b7b4312011-04-18 22:53:24 -07007203 txd->opts2 = cpu_to_le32(opts[1]);
7204
Richard Cochran5047fb52012-03-10 07:29:42 +00007205 skb_tx_timestamp(skb);
7206
Alexander Duycka0750132014-12-11 15:02:17 -08007207 /* Force memory writes to complete before releasing descriptor */
7208 dma_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209
Francois Romieucecb5fd2011-04-01 10:21:07 +02007210 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07007211 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212 txd->opts1 = cpu_to_le32(status);
7213
Alexander Duycka0750132014-12-11 15:02:17 -08007214 /* Force all memory writes to complete before notifying device */
David Dillow4c020a92010-03-03 16:33:10 +00007215 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216
Alexander Duycka0750132014-12-11 15:02:17 -08007217 tp->cur_tx += frags + 1;
7218
David S. Miller87cda7c2015-02-22 15:54:29 -05007219 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220
David S. Miller87cda7c2015-02-22 15:54:29 -05007221 mmiowb();
Francois Romieuda78dbf2012-01-26 14:18:23 +01007222
David S. Miller87cda7c2015-02-22 15:54:29 -05007223 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01007224 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
7225 * not miss a ring update when it notices a stopped queue.
7226 */
7227 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01007229 /* Sync with rtl_tx:
7230 * - publish queue status and cur_tx ring index (write barrier)
7231 * - refresh dirty_tx ring index (read barrier).
7232 * May the current thread have a pessimistic view of the ring
7233 * status and forget to wake up queue, a racing rtl_tx thread
7234 * can't.
7235 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007236 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02007237 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007238 netif_wake_queue(dev);
7239 }
7240
Stephen Hemminger613573252009-08-31 19:50:58 +00007241 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007242
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007243err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007244 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007245err_dma_0:
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07007246 dev_kfree_skb_any(skb);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007247 dev->stats.tx_dropped++;
7248 return NETDEV_TX_OK;
7249
7250err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007252 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00007253 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254}
7255
7256static void rtl8169_pcierr_interrupt(struct net_device *dev)
7257{
7258 struct rtl8169_private *tp = netdev_priv(dev);
7259 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260 u16 pci_status, pci_cmd;
7261
7262 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
7263 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
7264
Joe Perchesbf82c182010-02-09 11:49:50 +00007265 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
7266 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267
7268 /*
7269 * The recovery sequence below admits a very elaborated explanation:
7270 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01007271 * - I did not see what else could be done;
7272 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007273 *
7274 * Feel free to adjust to your needs.
7275 */
Francois Romieua27993f2006-12-18 00:04:19 +01007276 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01007277 pci_cmd &= ~PCI_COMMAND_PARITY;
7278 else
7279 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
7280
7281 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282
7283 pci_write_config_word(pdev, PCI_STATUS,
7284 pci_status & (PCI_STATUS_DETECTED_PARITY |
7285 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
7286 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
7287
7288 /* The infamous DAC f*ckup only happens at boot time */
Timo Teräs9fba0812013-01-15 21:01:24 +00007289 if ((tp->cp_cmd & PCIDAC) && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00007290 void __iomem *ioaddr = tp->mmio_addr;
7291
Joe Perchesbf82c182010-02-09 11:49:50 +00007292 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007293 tp->cp_cmd &= ~PCIDAC;
7294 RTL_W16(CPlusCmd, tp->cp_cmd);
7295 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296 }
7297
françois romieue6de30d2011-01-03 15:08:37 +00007298 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01007299
Francois Romieu98ddf982012-01-31 10:47:34 +01007300 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007301}
7302
Francois Romieuda78dbf2012-01-26 14:18:23 +01007303static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304{
7305 unsigned int dirty_tx, tx_left;
7306
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307 dirty_tx = tp->dirty_tx;
7308 smp_rmb();
7309 tx_left = tp->cur_tx - dirty_tx;
7310
7311 while (tx_left > 0) {
7312 unsigned int entry = dirty_tx % NUM_TX_DESC;
7313 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007314 u32 status;
7315
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
7317 if (status & DescOwn)
7318 break;
7319
Alexander Duycka0750132014-12-11 15:02:17 -08007320 /* This barrier is needed to keep us from reading
7321 * any other fields out of the Tx descriptor until
7322 * we know the status of DescOwn
7323 */
7324 dma_rmb();
7325
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007326 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
7327 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007328 if (status & LastFrag) {
David S. Miller87cda7c2015-02-22 15:54:29 -05007329 u64_stats_update_begin(&tp->tx_stats.syncp);
7330 tp->tx_stats.packets++;
7331 tp->tx_stats.bytes += tx_skb->skb->len;
7332 u64_stats_update_end(&tp->tx_stats.syncp);
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07007333 dev_kfree_skb_any(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334 tx_skb->skb = NULL;
7335 }
7336 dirty_tx++;
7337 tx_left--;
7338 }
7339
7340 if (tp->dirty_tx != dirty_tx) {
7341 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01007342 /* Sync with rtl8169_start_xmit:
7343 * - publish dirty_tx ring index (write barrier)
7344 * - refresh cur_tx ring index and queue status (read barrier)
7345 * May the current thread miss the stopped queue condition,
7346 * a racing xmit thread can only have a right view of the
7347 * ring status.
7348 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007349 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02007351 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352 netif_wake_queue(dev);
7353 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02007354 /*
7355 * 8168 hack: TxPoll requests are lost when the Tx packets are
7356 * too close. Let's kick an extra TxPoll request when a burst
7357 * of start_xmit activity is detected (if it is not detected,
7358 * it is slow enough). -- FR
7359 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007360 if (tp->cur_tx != dirty_tx) {
7361 void __iomem *ioaddr = tp->mmio_addr;
7362
Francois Romieud78ae2d2007-08-26 20:08:19 +02007363 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365 }
7366}
7367
Francois Romieu126fa4b2005-05-12 20:09:17 -04007368static inline int rtl8169_fragmented_frame(u32 status)
7369{
7370 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
7371}
7372
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007373static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007375 u32 status = opts1 & RxProtoMask;
7376
7377 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00007378 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379 skb->ip_summed = CHECKSUM_UNNECESSARY;
7380 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07007381 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382}
7383
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007384static struct sk_buff *rtl8169_try_rx_copy(void *data,
7385 struct rtl8169_private *tp,
7386 int pkt_size,
7387 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007388{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02007389 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007390 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007392 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007393 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007394 prefetch(data);
Alexander Duycke2338f82014-12-09 19:41:09 -08007395 skb = napi_alloc_skb(&tp->napi, pkt_size);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007396 if (skb)
7397 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007398 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
7399
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007400 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007401}
7402
Francois Romieuda78dbf2012-01-26 14:18:23 +01007403static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404{
7405 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007406 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007407
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408 cur_rx = tp->cur_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409
Timo Teräs9fba0812013-01-15 21:01:24 +00007410 for (rx_left = min(budget, NUM_RX_DESC); rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007412 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413 u32 status;
7414
David S. Miller8decf862011-09-22 03:23:13 -04007415 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007416 if (status & DescOwn)
7417 break;
Alexander Duycka0750132014-12-11 15:02:17 -08007418
7419 /* This barrier is needed to keep us from reading
7420 * any other fields out of the Rx descriptor until
7421 * we know the status of DescOwn
7422 */
7423 dma_rmb();
7424
Richard Dawe4dcb7d32005-05-27 21:12:00 +02007425 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007426 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
7427 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007428 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02007430 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02007432 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007433 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01007434 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007435 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007436 }
Ben Greear6bbe0212012-02-10 15:04:33 +00007437 if ((status & (RxRUNT | RxCRC)) &&
7438 !(status & (RxRWT | RxFOVF)) &&
7439 (dev->features & NETIF_F_RXALL))
7440 goto process_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007442 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00007443 dma_addr_t addr;
7444 int pkt_size;
7445
7446process_pkt:
7447 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00007448 if (likely(!(dev->features & NETIF_F_RXFCS)))
7449 pkt_size = (status & 0x00003fff) - 4;
7450 else
7451 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452
Francois Romieu126fa4b2005-05-12 20:09:17 -04007453 /*
7454 * The driver does not support incoming fragmented
7455 * frames. They are seen as a symptom of over-mtu
7456 * sized frames.
7457 */
7458 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02007459 dev->stats.rx_dropped++;
7460 dev->stats.rx_length_errors++;
françois romieuce11ff52013-01-24 13:30:06 +00007461 goto release_descriptor;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007462 }
7463
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007464 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
7465 tp, pkt_size, addr);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007466 if (!skb) {
7467 dev->stats.rx_dropped++;
françois romieuce11ff52013-01-24 13:30:06 +00007468 goto release_descriptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007469 }
7470
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007471 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472 skb_put(skb, pkt_size);
7473 skb->protocol = eth_type_trans(skb, dev);
7474
Francois Romieu7a8fc772011-03-01 17:18:33 +01007475 rtl8169_rx_vlan_tag(desc, skb);
7476
Francois Romieu56de4142011-03-15 17:29:31 +01007477 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478
Junchang Wang8027aa22012-03-04 23:30:32 +01007479 u64_stats_update_begin(&tp->rx_stats.syncp);
7480 tp->rx_stats.packets++;
7481 tp->rx_stats.bytes += pkt_size;
7482 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483 }
françois romieuce11ff52013-01-24 13:30:06 +00007484release_descriptor:
7485 desc->opts2 = 0;
françois romieuce11ff52013-01-24 13:30:06 +00007486 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487 }
7488
7489 count = cur_rx - tp->cur_rx;
7490 tp->cur_rx = cur_rx;
7491
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492 return count;
7493}
7494
Francois Romieu07d3f512007-02-21 22:40:46 +01007495static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496{
Francois Romieu07d3f512007-02-21 22:40:46 +01007497 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007500 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007502 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007503 if (status && status != 0xffff) {
7504 status &= RTL_EVENT_NAPI | tp->event_slow;
7505 if (status) {
7506 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00007507
Francois Romieuda78dbf2012-01-26 14:18:23 +01007508 rtl_irq_disable(tp);
7509 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512 return IRQ_RETVAL(handled);
7513}
7514
Francois Romieuda78dbf2012-01-26 14:18:23 +01007515/*
7516 * Workqueue context.
7517 */
7518static void rtl_slow_event_work(struct rtl8169_private *tp)
7519{
7520 struct net_device *dev = tp->dev;
7521 u16 status;
7522
7523 status = rtl_get_events(tp) & tp->event_slow;
7524 rtl_ack_events(tp, status);
7525
7526 if (unlikely(status & RxFIFOOver)) {
7527 switch (tp->mac_version) {
7528 /* Work around for rx fifo overflow */
7529 case RTL_GIGA_MAC_VER_11:
7530 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01007531 /* XXX - Hack alert. See rtl_task(). */
7532 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007533 default:
7534 break;
7535 }
7536 }
7537
7538 if (unlikely(status & SYSErr))
7539 rtl8169_pcierr_interrupt(dev);
7540
7541 if (status & LinkChg)
7542 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
7543
françois romieu7dbb4912012-06-09 10:53:16 +00007544 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007545}
7546
Francois Romieu4422bcd2012-01-26 11:23:32 +01007547static void rtl_task(struct work_struct *work)
7548{
Francois Romieuda78dbf2012-01-26 14:18:23 +01007549 static const struct {
7550 int bitnr;
7551 void (*action)(struct rtl8169_private *);
7552 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01007553 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007554 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
7555 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
7556 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
7557 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01007558 struct rtl8169_private *tp =
7559 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007560 struct net_device *dev = tp->dev;
7561 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01007562
Francois Romieuda78dbf2012-01-26 14:18:23 +01007563 rtl_lock_work(tp);
7564
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007565 if (!netif_running(dev) ||
7566 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01007567 goto out_unlock;
7568
7569 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
7570 bool pending;
7571
Francois Romieuda78dbf2012-01-26 14:18:23 +01007572 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007573 if (pending)
7574 rtl_work[i].action(tp);
7575 }
7576
7577out_unlock:
7578 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01007579}
7580
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007581static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007583 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
7584 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01007585 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
7586 int work_done= 0;
7587 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588
Francois Romieuda78dbf2012-01-26 14:18:23 +01007589 status = rtl_get_events(tp);
7590 rtl_ack_events(tp, status & ~tp->event_slow);
7591
7592 if (status & RTL_EVENT_NAPI_RX)
7593 work_done = rtl_rx(dev, tp, (u32) budget);
7594
7595 if (status & RTL_EVENT_NAPI_TX)
7596 rtl_tx(dev, tp);
7597
7598 if (status & tp->event_slow) {
7599 enable_mask &= ~tp->event_slow;
7600
7601 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
7602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007604 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08007605 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00007606
Francois Romieuda78dbf2012-01-26 14:18:23 +01007607 rtl_irq_enable(tp, enable_mask);
7608 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609 }
7610
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007611 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613
Francois Romieu523a6092008-09-10 22:28:56 +02007614static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
7615{
7616 struct rtl8169_private *tp = netdev_priv(dev);
7617
7618 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
7619 return;
7620
7621 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
7622 RTL_W32(RxMissed, 0);
7623}
7624
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625static void rtl8169_down(struct net_device *dev)
7626{
7627 struct rtl8169_private *tp = netdev_priv(dev);
7628 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007629
Francois Romieu4876cc12011-03-11 21:07:11 +01007630 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007631
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01007632 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007633 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007634
Hayes Wang92fc43b2011-07-06 15:58:03 +08007635 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007636 /*
7637 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01007638 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
7639 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007640 */
Francois Romieu523a6092008-09-10 22:28:56 +02007641 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642
Linus Torvalds1da177e2005-04-16 15:20:36 -07007643 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007644 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646 rtl8169_tx_clear(tp);
7647
7648 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00007649
7650 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651}
7652
7653static int rtl8169_close(struct net_device *dev)
7654{
7655 struct rtl8169_private *tp = netdev_priv(dev);
7656 struct pci_dev *pdev = tp->pci_dev;
7657
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007658 pm_runtime_get_sync(&pdev->dev);
7659
Francois Romieucecb5fd2011-04-01 10:21:07 +02007660 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08007661 rtl8169_update_counters(dev);
7662
Francois Romieuda78dbf2012-01-26 14:18:23 +01007663 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007664 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007665
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007667 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668
Lekensteyn4ea72442013-07-22 09:53:30 +02007669 cancel_work_sync(&tp->wk.work);
7670
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007671 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00007673 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7674 tp->RxPhyAddr);
7675 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7676 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677 tp->TxDescArray = NULL;
7678 tp->RxDescArray = NULL;
7679
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007680 pm_runtime_put_sync(&pdev->dev);
7681
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682 return 0;
7683}
7684
Francois Romieudc1c00c2012-03-08 10:06:18 +01007685#ifdef CONFIG_NET_POLL_CONTROLLER
7686static void rtl8169_netpoll(struct net_device *dev)
7687{
7688 struct rtl8169_private *tp = netdev_priv(dev);
7689
7690 rtl8169_interrupt(tp->pci_dev->irq, dev);
7691}
7692#endif
7693
Francois Romieudf43ac72012-03-08 09:48:40 +01007694static int rtl_open(struct net_device *dev)
7695{
7696 struct rtl8169_private *tp = netdev_priv(dev);
7697 void __iomem *ioaddr = tp->mmio_addr;
7698 struct pci_dev *pdev = tp->pci_dev;
7699 int retval = -ENOMEM;
7700
7701 pm_runtime_get_sync(&pdev->dev);
7702
7703 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02007704 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01007705 * dma_alloc_coherent provides more.
7706 */
7707 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
7708 &tp->TxPhyAddr, GFP_KERNEL);
7709 if (!tp->TxDescArray)
7710 goto err_pm_runtime_put;
7711
7712 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
7713 &tp->RxPhyAddr, GFP_KERNEL);
7714 if (!tp->RxDescArray)
7715 goto err_free_tx_0;
7716
7717 retval = rtl8169_init_ring(dev);
7718 if (retval < 0)
7719 goto err_free_rx_1;
7720
7721 INIT_WORK(&tp->wk.work, rtl_task);
7722
7723 smp_mb();
7724
7725 rtl_request_firmware(tp);
7726
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007727 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01007728 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
7729 dev->name, dev);
7730 if (retval < 0)
7731 goto err_release_fw_2;
7732
7733 rtl_lock_work(tp);
7734
7735 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
7736
7737 napi_enable(&tp->napi);
7738
7739 rtl8169_init_phy(dev, tp);
7740
7741 __rtl8169_set_features(dev, dev->features);
7742
7743 rtl_pll_power_up(tp);
7744
7745 rtl_hw_start(dev);
7746
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007747 if (!rtl8169_init_counter_offsets(dev))
7748 netif_warn(tp, hw, dev, "counter reset/update failed\n");
7749
Francois Romieudf43ac72012-03-08 09:48:40 +01007750 netif_start_queue(dev);
7751
7752 rtl_unlock_work(tp);
7753
7754 tp->saved_wolopts = 0;
7755 pm_runtime_put_noidle(&pdev->dev);
7756
7757 rtl8169_check_link_status(dev, tp, ioaddr);
7758out:
7759 return retval;
7760
7761err_release_fw_2:
7762 rtl_release_firmware(tp);
7763 rtl8169_rx_clear(tp);
7764err_free_rx_1:
7765 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7766 tp->RxPhyAddr);
7767 tp->RxDescArray = NULL;
7768err_free_tx_0:
7769 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7770 tp->TxPhyAddr);
7771 tp->TxDescArray = NULL;
7772err_pm_runtime_put:
7773 pm_runtime_put_noidle(&pdev->dev);
7774 goto out;
7775}
7776
Junchang Wang8027aa22012-03-04 23:30:32 +01007777static struct rtnl_link_stats64 *
7778rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007779{
7780 struct rtl8169_private *tp = netdev_priv(dev);
7781 void __iomem *ioaddr = tp->mmio_addr;
Junchang Wang8027aa22012-03-04 23:30:32 +01007782 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007783
Francois Romieuda78dbf2012-01-26 14:18:23 +01007784 if (netif_running(dev))
Francois Romieu523a6092008-09-10 22:28:56 +02007785 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02007786
Junchang Wang8027aa22012-03-04 23:30:32 +01007787 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07007788 start = u64_stats_fetch_begin_irq(&tp->rx_stats.syncp);
Junchang Wang8027aa22012-03-04 23:30:32 +01007789 stats->rx_packets = tp->rx_stats.packets;
7790 stats->rx_bytes = tp->rx_stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07007791 } while (u64_stats_fetch_retry_irq(&tp->rx_stats.syncp, start));
Junchang Wang8027aa22012-03-04 23:30:32 +01007792
7793
7794 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07007795 start = u64_stats_fetch_begin_irq(&tp->tx_stats.syncp);
Junchang Wang8027aa22012-03-04 23:30:32 +01007796 stats->tx_packets = tp->tx_stats.packets;
7797 stats->tx_bytes = tp->tx_stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07007798 } while (u64_stats_fetch_retry_irq(&tp->tx_stats.syncp, start));
Junchang Wang8027aa22012-03-04 23:30:32 +01007799
7800 stats->rx_dropped = dev->stats.rx_dropped;
7801 stats->tx_dropped = dev->stats.tx_dropped;
7802 stats->rx_length_errors = dev->stats.rx_length_errors;
7803 stats->rx_errors = dev->stats.rx_errors;
7804 stats->rx_crc_errors = dev->stats.rx_crc_errors;
7805 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
7806 stats->rx_missed_errors = dev->stats.rx_missed_errors;
7807
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007808 /*
7809 * Fetch additonal counter values missing in stats collected by driver
7810 * from tally counters.
7811 */
7812 rtl8169_update_counters(dev);
7813
7814 /*
7815 * Subtract values fetched during initalization.
7816 * See rtl8169_init_counter_offsets for a description why we do that.
7817 */
7818 stats->tx_errors = le64_to_cpu(tp->counters.tx_errors) -
7819 le64_to_cpu(tp->tc_offset.tx_errors);
7820 stats->collisions = le32_to_cpu(tp->counters.tx_multi_collision) -
7821 le32_to_cpu(tp->tc_offset.tx_multi_collision);
7822 stats->multicast = le32_to_cpu(tp->counters.rx_multicast) -
7823 le32_to_cpu(tp->tc_offset.rx_multicast);
7824 stats->tx_aborted_errors = le16_to_cpu(tp->counters.tx_aborted) -
7825 le16_to_cpu(tp->tc_offset.tx_aborted);
7826
Junchang Wang8027aa22012-03-04 23:30:32 +01007827 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828}
7829
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007830static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01007831{
françois romieu065c27c2011-01-03 15:08:12 +00007832 struct rtl8169_private *tp = netdev_priv(dev);
7833
Francois Romieu5d06a992006-02-23 00:47:58 +01007834 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007835 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01007836
7837 netif_device_detach(dev);
7838 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007839
7840 rtl_lock_work(tp);
7841 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007842 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007843 rtl_unlock_work(tp);
7844
7845 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007846}
Francois Romieu5d06a992006-02-23 00:47:58 +01007847
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007848#ifdef CONFIG_PM
7849
7850static int rtl8169_suspend(struct device *device)
7851{
7852 struct pci_dev *pdev = to_pci_dev(device);
7853 struct net_device *dev = pci_get_drvdata(pdev);
7854
7855 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02007856
Francois Romieu5d06a992006-02-23 00:47:58 +01007857 return 0;
7858}
7859
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007860static void __rtl8169_resume(struct net_device *dev)
7861{
françois romieu065c27c2011-01-03 15:08:12 +00007862 struct rtl8169_private *tp = netdev_priv(dev);
7863
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007864 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00007865
7866 rtl_pll_power_up(tp);
7867
Artem Savkovcff4c162012-04-03 10:29:11 +00007868 rtl_lock_work(tp);
7869 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007870 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00007871 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007872
Francois Romieu98ddf982012-01-31 10:47:34 +01007873 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007874}
7875
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007876static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01007877{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007878 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01007879 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00007880 struct rtl8169_private *tp = netdev_priv(dev);
7881
7882 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01007883
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007884 if (netif_running(dev))
7885 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01007886
Francois Romieu5d06a992006-02-23 00:47:58 +01007887 return 0;
7888}
7889
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007890static int rtl8169_runtime_suspend(struct device *device)
7891{
7892 struct pci_dev *pdev = to_pci_dev(device);
7893 struct net_device *dev = pci_get_drvdata(pdev);
7894 struct rtl8169_private *tp = netdev_priv(dev);
7895
7896 if (!tp->TxDescArray)
7897 return 0;
7898
Francois Romieuda78dbf2012-01-26 14:18:23 +01007899 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007900 tp->saved_wolopts = __rtl8169_get_wol(tp);
7901 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007902 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007903
7904 rtl8169_net_suspend(dev);
7905
7906 return 0;
7907}
7908
7909static int rtl8169_runtime_resume(struct device *device)
7910{
7911 struct pci_dev *pdev = to_pci_dev(device);
7912 struct net_device *dev = pci_get_drvdata(pdev);
7913 struct rtl8169_private *tp = netdev_priv(dev);
7914
7915 if (!tp->TxDescArray)
7916 return 0;
7917
Francois Romieuda78dbf2012-01-26 14:18:23 +01007918 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007919 __rtl8169_set_wol(tp, tp->saved_wolopts);
7920 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01007921 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007922
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00007923 rtl8169_init_phy(dev, tp);
7924
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007925 __rtl8169_resume(dev);
7926
7927 return 0;
7928}
7929
7930static int rtl8169_runtime_idle(struct device *device)
7931{
7932 struct pci_dev *pdev = to_pci_dev(device);
7933 struct net_device *dev = pci_get_drvdata(pdev);
7934 struct rtl8169_private *tp = netdev_priv(dev);
7935
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00007936 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007937}
7938
Alexey Dobriyan47145212009-12-14 18:00:08 -08007939static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02007940 .suspend = rtl8169_suspend,
7941 .resume = rtl8169_resume,
7942 .freeze = rtl8169_suspend,
7943 .thaw = rtl8169_resume,
7944 .poweroff = rtl8169_suspend,
7945 .restore = rtl8169_resume,
7946 .runtime_suspend = rtl8169_runtime_suspend,
7947 .runtime_resume = rtl8169_runtime_resume,
7948 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007949};
7950
7951#define RTL8169_PM_OPS (&rtl8169_pm_ops)
7952
7953#else /* !CONFIG_PM */
7954
7955#define RTL8169_PM_OPS NULL
7956
7957#endif /* !CONFIG_PM */
7958
David S. Miller1805b2f2011-10-24 18:18:09 -04007959static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
7960{
7961 void __iomem *ioaddr = tp->mmio_addr;
7962
7963 /* WoL fails with 8168b when the receiver is disabled. */
7964 switch (tp->mac_version) {
7965 case RTL_GIGA_MAC_VER_11:
7966 case RTL_GIGA_MAC_VER_12:
7967 case RTL_GIGA_MAC_VER_17:
7968 pci_clear_master(tp->pci_dev);
7969
7970 RTL_W8(ChipCmd, CmdRxEnb);
7971 /* PCI commit */
7972 RTL_R8(ChipCmd);
7973 break;
7974 default:
7975 break;
7976 }
7977}
7978
Francois Romieu1765f952008-09-13 17:21:40 +02007979static void rtl_shutdown(struct pci_dev *pdev)
7980{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007981 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00007982 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00007983 struct device *d = &pdev->dev;
7984
7985 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02007986
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007987 rtl8169_net_suspend(dev);
7988
Francois Romieucecb5fd2011-04-01 10:21:07 +02007989 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08007990 rtl_rar_set(tp, dev->perm_addr);
7991
Hayes Wang92fc43b2011-07-06 15:58:03 +08007992 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00007993
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007994 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04007995 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
7996 rtl_wol_suspend_quirk(tp);
7997 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00007998 }
7999
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008000 pci_wake_from_d3(pdev, true);
8001 pci_set_power_state(pdev, PCI_D3hot);
8002 }
françois romieu2a15cd22012-03-06 01:14:12 +00008003
8004 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008005}
Francois Romieu5d06a992006-02-23 00:47:58 +01008006
Bill Pembertonbaf63292012-12-03 09:23:28 -05008007static void rtl_remove_one(struct pci_dev *pdev)
Francois Romieue27566e2012-03-08 09:54:01 +01008008{
8009 struct net_device *dev = pci_get_drvdata(pdev);
8010 struct rtl8169_private *tp = netdev_priv(dev);
8011
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008012 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
8013 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008014 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
8015 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8016 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8017 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008018 r8168_check_dash(tp)) {
Francois Romieue27566e2012-03-08 09:54:01 +01008019 rtl8168_driver_stop(tp);
8020 }
8021
Devendra Nagaad1be8d2012-05-31 01:51:20 +00008022 netif_napi_del(&tp->napi);
8023
Francois Romieue27566e2012-03-08 09:54:01 +01008024 unregister_netdev(dev);
8025
8026 rtl_release_firmware(tp);
8027
8028 if (pci_dev_run_wake(pdev))
8029 pm_runtime_get_noresume(&pdev->dev);
8030
8031 /* restore original MAC address */
8032 rtl_rar_set(tp, dev->perm_addr);
8033
8034 rtl_disable_msi(pdev, tp);
8035 rtl8169_release_board(pdev, dev, tp->mmio_addr);
Francois Romieue27566e2012-03-08 09:54:01 +01008036}
8037
Francois Romieufa9c3852012-03-08 10:01:50 +01008038static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01008039 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01008040 .ndo_stop = rtl8169_close,
8041 .ndo_get_stats64 = rtl8169_get_stats64,
8042 .ndo_start_xmit = rtl8169_start_xmit,
8043 .ndo_tx_timeout = rtl8169_tx_timeout,
8044 .ndo_validate_addr = eth_validate_addr,
8045 .ndo_change_mtu = rtl8169_change_mtu,
8046 .ndo_fix_features = rtl8169_fix_features,
8047 .ndo_set_features = rtl8169_set_features,
8048 .ndo_set_mac_address = rtl_set_mac_address,
8049 .ndo_do_ioctl = rtl8169_ioctl,
8050 .ndo_set_rx_mode = rtl_set_rx_mode,
8051#ifdef CONFIG_NET_POLL_CONTROLLER
8052 .ndo_poll_controller = rtl8169_netpoll,
8053#endif
8054
8055};
8056
Francois Romieu31fa8b12012-03-08 10:09:40 +01008057static const struct rtl_cfg_info {
8058 void (*hw_start)(struct net_device *);
8059 unsigned int region;
8060 unsigned int align;
8061 u16 event_slow;
8062 unsigned features;
8063 u8 default_ver;
8064} rtl_cfg_infos [] = {
8065 [RTL_CFG_0] = {
8066 .hw_start = rtl_hw_start_8169,
8067 .region = 1,
8068 .align = 0,
8069 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
8070 .features = RTL_FEATURE_GMII,
8071 .default_ver = RTL_GIGA_MAC_VER_01,
8072 },
8073 [RTL_CFG_1] = {
8074 .hw_start = rtl_hw_start_8168,
8075 .region = 2,
8076 .align = 8,
8077 .event_slow = SYSErr | LinkChg | RxOverflow,
8078 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
8079 .default_ver = RTL_GIGA_MAC_VER_11,
8080 },
8081 [RTL_CFG_2] = {
8082 .hw_start = rtl_hw_start_8101,
8083 .region = 2,
8084 .align = 8,
8085 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
8086 PCSTimeout,
8087 .features = RTL_FEATURE_MSI,
8088 .default_ver = RTL_GIGA_MAC_VER_13,
8089 }
8090};
8091
8092/* Cfg9346_Unlock assumed. */
8093static unsigned rtl_try_msi(struct rtl8169_private *tp,
8094 const struct rtl_cfg_info *cfg)
8095{
8096 void __iomem *ioaddr = tp->mmio_addr;
8097 unsigned msi = 0;
8098 u8 cfg2;
8099
8100 cfg2 = RTL_R8(Config2) & ~MSIEnable;
8101 if (cfg->features & RTL_FEATURE_MSI) {
8102 if (pci_enable_msi(tp->pci_dev)) {
8103 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
8104 } else {
8105 cfg2 |= MSIEnable;
8106 msi = RTL_FEATURE_MSI;
8107 }
8108 }
8109 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
8110 RTL_W8(Config2, cfg2);
8111 return msi;
8112}
8113
Hayes Wangc5583862012-07-02 17:23:22 +08008114DECLARE_RTL_COND(rtl_link_list_ready_cond)
8115{
8116 void __iomem *ioaddr = tp->mmio_addr;
8117
8118 return RTL_R8(MCU) & LINK_LIST_RDY;
8119}
8120
8121DECLARE_RTL_COND(rtl_rxtx_empty_cond)
8122{
8123 void __iomem *ioaddr = tp->mmio_addr;
8124
8125 return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
8126}
8127
Bill Pembertonbaf63292012-12-03 09:23:28 -05008128static void rtl_hw_init_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008129{
8130 void __iomem *ioaddr = tp->mmio_addr;
8131 u32 data;
8132
8133 tp->ocp_base = OCP_STD_PHY_BASE;
8134
8135 RTL_W32(MISC, RTL_R32(MISC) | RXDV_GATED_EN);
8136
8137 if (!rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 42))
8138 return;
8139
8140 if (!rtl_udelay_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42))
8141 return;
8142
8143 RTL_W8(ChipCmd, RTL_R8(ChipCmd) & ~(CmdTxEnb | CmdRxEnb));
8144 msleep(1);
8145 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
8146
Hayes Wang5f8bcce2012-07-10 08:47:05 +02008147 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08008148 data &= ~(1 << 14);
8149 r8168_mac_ocp_write(tp, 0xe8de, data);
8150
8151 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
8152 return;
8153
Hayes Wang5f8bcce2012-07-10 08:47:05 +02008154 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08008155 data |= (1 << 15);
8156 r8168_mac_ocp_write(tp, 0xe8de, data);
8157
8158 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
8159 return;
8160}
8161
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008162static void rtl_hw_init_8168ep(struct rtl8169_private *tp)
8163{
8164 rtl8168ep_stop_cmac(tp);
8165 rtl_hw_init_8168g(tp);
8166}
8167
Bill Pembertonbaf63292012-12-03 09:23:28 -05008168static void rtl_hw_initialize(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008169{
8170 switch (tp->mac_version) {
8171 case RTL_GIGA_MAC_VER_40:
8172 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00008173 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00008174 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08008175 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008176 case RTL_GIGA_MAC_VER_45:
8177 case RTL_GIGA_MAC_VER_46:
8178 case RTL_GIGA_MAC_VER_47:
8179 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008180 rtl_hw_init_8168g(tp);
8181 break;
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008182 case RTL_GIGA_MAC_VER_49:
8183 case RTL_GIGA_MAC_VER_50:
8184 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008185 rtl_hw_init_8168ep(tp);
Hayes Wangc5583862012-07-02 17:23:22 +08008186 break;
Hayes Wangc5583862012-07-02 17:23:22 +08008187 default:
8188 break;
8189 }
8190}
8191
hayeswang929a0312014-09-16 11:40:47 +08008192static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Francois Romieu3b6cf252012-03-08 09:59:04 +01008193{
8194 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
8195 const unsigned int region = cfg->region;
8196 struct rtl8169_private *tp;
8197 struct mii_if_info *mii;
8198 struct net_device *dev;
8199 void __iomem *ioaddr;
8200 int chipset, i;
8201 int rc;
8202
8203 if (netif_msg_drv(&debug)) {
8204 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
8205 MODULENAME, RTL8169_VERSION);
8206 }
8207
8208 dev = alloc_etherdev(sizeof (*tp));
8209 if (!dev) {
8210 rc = -ENOMEM;
8211 goto out;
8212 }
8213
8214 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01008215 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008216 tp = netdev_priv(dev);
8217 tp->dev = dev;
8218 tp->pci_dev = pdev;
8219 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
8220
8221 mii = &tp->mii;
8222 mii->dev = dev;
8223 mii->mdio_read = rtl_mdio_read;
8224 mii->mdio_write = rtl_mdio_write;
8225 mii->phy_id_mask = 0x1f;
8226 mii->reg_num_mask = 0x1f;
8227 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
8228
8229 /* disable ASPM completely as that cause random device stop working
8230 * problems as well as full system hangs for some PCIe devices users */
8231 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
8232 PCIE_LINK_STATE_CLKPM);
8233
8234 /* enable device (incl. PCI PM wakeup and hotplug setup) */
8235 rc = pci_enable_device(pdev);
8236 if (rc < 0) {
8237 netif_err(tp, probe, dev, "enable failure\n");
8238 goto err_out_free_dev_1;
8239 }
8240
8241 if (pci_set_mwi(pdev) < 0)
8242 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
8243
8244 /* make sure PCI base addr 1 is MMIO */
8245 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
8246 netif_err(tp, probe, dev,
8247 "region #%d not an MMIO resource, aborting\n",
8248 region);
8249 rc = -ENODEV;
8250 goto err_out_mwi_2;
8251 }
8252
8253 /* check for weird/broken PCI region reporting */
8254 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
8255 netif_err(tp, probe, dev,
8256 "Invalid PCI region size(s), aborting\n");
8257 rc = -ENODEV;
8258 goto err_out_mwi_2;
8259 }
8260
8261 rc = pci_request_regions(pdev, MODULENAME);
8262 if (rc < 0) {
8263 netif_err(tp, probe, dev, "could not request regions\n");
8264 goto err_out_mwi_2;
8265 }
8266
hayeswang929a0312014-09-16 11:40:47 +08008267 tp->cp_cmd = 0;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008268
8269 if ((sizeof(dma_addr_t) > 4) &&
8270 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
8271 tp->cp_cmd |= PCIDAC;
8272 dev->features |= NETIF_F_HIGHDMA;
8273 } else {
8274 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8275 if (rc < 0) {
8276 netif_err(tp, probe, dev, "DMA configuration failed\n");
8277 goto err_out_free_res_3;
8278 }
8279 }
8280
8281 /* ioremap MMIO region */
8282 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
8283 if (!ioaddr) {
8284 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
8285 rc = -EIO;
8286 goto err_out_free_res_3;
8287 }
8288 tp->mmio_addr = ioaddr;
8289
8290 if (!pci_is_pcie(pdev))
8291 netif_info(tp, probe, dev, "not PCI Express\n");
8292
8293 /* Identify chip attached to board */
8294 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
8295
8296 rtl_init_rxcfg(tp);
8297
8298 rtl_irq_disable(tp);
8299
Hayes Wangc5583862012-07-02 17:23:22 +08008300 rtl_hw_initialize(tp);
8301
Francois Romieu3b6cf252012-03-08 09:59:04 +01008302 rtl_hw_reset(tp);
8303
8304 rtl_ack_events(tp, 0xffff);
8305
8306 pci_set_master(pdev);
8307
Francois Romieu3b6cf252012-03-08 09:59:04 +01008308 rtl_init_mdio_ops(tp);
8309 rtl_init_pll_power_ops(tp);
8310 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08008311 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008312
8313 rtl8169_print_mac_version(tp);
8314
8315 chipset = tp->mac_version;
8316 tp->txd_version = rtl_chip_infos[chipset].txd_version;
8317
8318 RTL_W8(Cfg9346, Cfg9346_Unlock);
8319 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
Peter Wu8f9d5132013-08-17 11:00:02 +02008320 RTL_W8(Config5, RTL_R8(Config5) & (BWF | MWF | UWF | LanWake | PMEStatus));
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008321 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008322 case RTL_GIGA_MAC_VER_34:
8323 case RTL_GIGA_MAC_VER_35:
8324 case RTL_GIGA_MAC_VER_36:
8325 case RTL_GIGA_MAC_VER_37:
8326 case RTL_GIGA_MAC_VER_38:
8327 case RTL_GIGA_MAC_VER_40:
8328 case RTL_GIGA_MAC_VER_41:
8329 case RTL_GIGA_MAC_VER_42:
8330 case RTL_GIGA_MAC_VER_43:
8331 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008332 case RTL_GIGA_MAC_VER_45:
8333 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008334 case RTL_GIGA_MAC_VER_47:
8335 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008336 case RTL_GIGA_MAC_VER_49:
8337 case RTL_GIGA_MAC_VER_50:
8338 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008339 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
8340 tp->features |= RTL_FEATURE_WOL;
8341 if ((RTL_R8(Config3) & LinkUp) != 0)
8342 tp->features |= RTL_FEATURE_WOL;
8343 break;
8344 default:
8345 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
8346 tp->features |= RTL_FEATURE_WOL;
8347 break;
8348 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008349 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
8350 tp->features |= RTL_FEATURE_WOL;
8351 tp->features |= rtl_try_msi(tp, cfg);
8352 RTL_W8(Cfg9346, Cfg9346_Lock);
8353
8354 if (rtl_tbi_enabled(tp)) {
8355 tp->set_speed = rtl8169_set_speed_tbi;
8356 tp->get_settings = rtl8169_gset_tbi;
8357 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
8358 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
8359 tp->link_ok = rtl8169_tbi_link_ok;
8360 tp->do_ioctl = rtl_tbi_ioctl;
8361 } else {
8362 tp->set_speed = rtl8169_set_speed_xmii;
8363 tp->get_settings = rtl8169_gset_xmii;
8364 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
8365 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
8366 tp->link_ok = rtl8169_xmii_link_ok;
8367 tp->do_ioctl = rtl_xmii_ioctl;
8368 }
8369
8370 mutex_init(&tp->wk.mutex);
Kyle McMartin340fea32014-02-24 20:12:28 -05008371 u64_stats_init(&tp->rx_stats.syncp);
8372 u64_stats_init(&tp->tx_stats.syncp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008373
8374 /* Get MAC address */
Chun-Hao Lin89cceb22014-10-01 23:17:15 +08008375 if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
8376 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
8377 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
8378 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
8379 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
8380 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
8381 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
8382 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
8383 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
8384 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008385 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
8386 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008387 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
8388 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8389 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8390 tp->mac_version == RTL_GIGA_MAC_VER_51) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008391 u16 mac_addr[3];
8392
Chun-Hao Lin05b96872014-10-01 23:17:12 +08008393 *(u32 *)&mac_addr[0] = rtl_eri_read(tp, 0xe0, ERIAR_EXGMAC);
8394 *(u16 *)&mac_addr[2] = rtl_eri_read(tp, 0xe4, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008395
8396 if (is_valid_ether_addr((u8 *)mac_addr))
8397 rtl_rar_set(tp, (u8 *)mac_addr);
8398 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008399 for (i = 0; i < ETH_ALEN; i++)
8400 dev->dev_addr[i] = RTL_R8(MAC0 + i);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008401
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00008402 dev->ethtool_ops = &rtl8169_ethtool_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008403 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008404
8405 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
8406
8407 /* don't enable SG, IP_CSUM and TSO by default - it might not work
8408 * properly for all devices */
8409 dev->features |= NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00008410 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008411
8412 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
Patrick McHardyf6469682013-04-19 02:04:27 +00008413 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_TX |
8414 NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008415 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
8416 NETIF_F_HIGHDMA;
8417
hayeswang929a0312014-09-16 11:40:47 +08008418 tp->cp_cmd |= RxChkSum | RxVlan;
8419
8420 /*
8421 * Pretend we are using VLANs; This bypasses a nasty bug where
8422 * Interrupts stop flowing on high load on 8110SCd controllers.
8423 */
Francois Romieu3b6cf252012-03-08 09:59:04 +01008424 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
hayeswang929a0312014-09-16 11:40:47 +08008425 /* Disallow toggling */
Patrick McHardyf6469682013-04-19 02:04:27 +00008426 dev->hw_features &= ~NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008427
hayeswang5888d3f2014-07-11 16:25:56 +08008428 if (tp->txd_version == RTL_TD_0)
8429 tp->tso_csum = rtl8169_tso_csum_v1;
hayeswange9746042014-07-11 16:25:58 +08008430 else if (tp->txd_version == RTL_TD_1) {
hayeswang5888d3f2014-07-11 16:25:56 +08008431 tp->tso_csum = rtl8169_tso_csum_v2;
hayeswange9746042014-07-11 16:25:58 +08008432 dev->hw_features |= NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
8433 } else
hayeswang5888d3f2014-07-11 16:25:56 +08008434 WARN_ON_ONCE(1);
8435
Francois Romieu3b6cf252012-03-08 09:59:04 +01008436 dev->hw_features |= NETIF_F_RXALL;
8437 dev->hw_features |= NETIF_F_RXFCS;
8438
8439 tp->hw_start = cfg->hw_start;
8440 tp->event_slow = cfg->event_slow;
8441
8442 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
8443 ~(RxBOVF | RxFOVF) : ~0;
8444
8445 init_timer(&tp->timer);
8446 tp->timer.data = (unsigned long) dev;
8447 tp->timer.function = rtl8169_phy_timer;
8448
8449 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
8450
8451 rc = register_netdev(dev);
8452 if (rc < 0)
8453 goto err_out_msi_4;
8454
8455 pci_set_drvdata(pdev, dev);
8456
Francois Romieu92a7c4e2012-03-10 10:42:12 +01008457 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
8458 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
8459 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008460 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
8461 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
8462 "tx checksumming: %s]\n",
8463 rtl_chip_infos[chipset].jumbo_max,
8464 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
8465 }
8466
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008467 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
8468 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008469 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
8470 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8471 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8472 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008473 r8168_check_dash(tp)) {
Francois Romieu3b6cf252012-03-08 09:59:04 +01008474 rtl8168_driver_start(tp);
8475 }
8476
8477 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
8478
8479 if (pci_dev_run_wake(pdev))
8480 pm_runtime_put_noidle(&pdev->dev);
8481
8482 netif_carrier_off(dev);
8483
8484out:
8485 return rc;
8486
8487err_out_msi_4:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00008488 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008489 rtl_disable_msi(pdev, tp);
8490 iounmap(ioaddr);
8491err_out_free_res_3:
8492 pci_release_regions(pdev);
8493err_out_mwi_2:
8494 pci_clear_mwi(pdev);
8495 pci_disable_device(pdev);
8496err_out_free_dev_1:
8497 free_netdev(dev);
8498 goto out;
8499}
8500
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501static struct pci_driver rtl8169_pci_driver = {
8502 .name = MODULENAME,
8503 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01008504 .probe = rtl_init_one,
Bill Pembertonbaf63292012-12-03 09:23:28 -05008505 .remove = rtl_remove_one,
Francois Romieu1765f952008-09-13 17:21:40 +02008506 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008507 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508};
8509
Devendra Naga3eeb7da2012-10-26 09:27:42 +00008510module_pci_driver(rtl8169_pci_driver);