blob: 734286ebe5ef557c0d2738702e86081552c68cc5 [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 },
Chun-Hao Lin610c9082016-12-27 16:29:43 +0800329 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8161), 0, 0, RTL_CFG_1 },
Francois Romieud81bf552006-09-20 21:31:20 +0200330 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100331 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200332 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
Francois Romieu2a35cfa2012-08-31 23:06:17 +0200333 { PCI_VENDOR_ID_DLINK, 0x4300,
334 PCI_VENDOR_ID_DLINK, 0x4b10, 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200335 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000336 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200337 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200338 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
339 { PCI_VENDOR_ID_LINKSYS, 0x1032,
340 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100341 { 0x0001, 0x8168,
342 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 {0,},
344};
345
346MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
347
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000348static int rx_buf_sz = 16383;
Ard Biesheuvel27896c82016-05-14 22:40:15 +0200349static int use_dac = -1;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200350static struct {
351 u32 msg_enable;
352} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Francois Romieu07d3f512007-02-21 22:40:46 +0100354enum rtl_registers {
355 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100356 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100357 MAR0 = 8, /* Multicast filter. */
358 CounterAddrLow = 0x10,
359 CounterAddrHigh = 0x14,
360 TxDescStartAddrLow = 0x20,
361 TxDescStartAddrHigh = 0x24,
362 TxHDescStartAddrLow = 0x28,
363 TxHDescStartAddrHigh = 0x2c,
364 FLASH = 0x30,
365 ERSR = 0x36,
366 ChipCmd = 0x37,
367 TxPoll = 0x38,
368 IntrMask = 0x3c,
369 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700370
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800371 TxConfig = 0x40,
372#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
373#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
374
375 RxConfig = 0x44,
376#define RX128_INT_EN (1 << 15) /* 8111c and later */
377#define RX_MULTI_EN (1 << 14) /* 8111c only */
378#define RXCFG_FIFO_SHIFT 13
379 /* No threshold before first PCI xfer */
380#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
hayeswangbeb330a2013-04-01 22:23:39 +0000381#define RX_EARLY_OFF (1 << 11)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800382#define RXCFG_DMA_SHIFT 8
383 /* Unlimited maximum PCI burst. */
384#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700385
Francois Romieu07d3f512007-02-21 22:40:46 +0100386 RxMissed = 0x4c,
387 Cfg9346 = 0x50,
388 Config0 = 0x51,
389 Config1 = 0x52,
390 Config2 = 0x53,
Francois Romieud387b422012-04-17 11:12:01 +0200391#define PME_SIGNAL (1 << 5) /* 8168c and later */
392
Francois Romieu07d3f512007-02-21 22:40:46 +0100393 Config3 = 0x54,
394 Config4 = 0x55,
395 Config5 = 0x56,
396 MultiIntr = 0x5c,
397 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100398 PHYstatus = 0x6c,
399 RxMaxSize = 0xda,
400 CPlusCmd = 0xe0,
401 IntrMitigate = 0xe2,
Francois Romieu50970832017-10-27 13:24:49 +0300402
403#define RTL_COALESCE_MASK 0x0f
404#define RTL_COALESCE_SHIFT 4
405#define RTL_COALESCE_T_MAX (RTL_COALESCE_MASK)
406#define RTL_COALESCE_FRAME_MAX (RTL_COALESCE_MASK << 2)
407
Francois Romieu07d3f512007-02-21 22:40:46 +0100408 RxDescAddrLow = 0xe4,
409 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000410 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
411
412#define NoEarlyTx 0x3f /* Max value : no early transmit. */
413
414 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
415
416#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800417#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000418
Francois Romieu07d3f512007-02-21 22:40:46 +0100419 FuncEvent = 0xf0,
420 FuncEventMask = 0xf4,
421 FuncPresetState = 0xf8,
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800422 IBCR0 = 0xf8,
423 IBCR2 = 0xf9,
424 IBIMR0 = 0xfa,
425 IBISR0 = 0xfb,
Francois Romieu07d3f512007-02-21 22:40:46 +0100426 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427};
428
Francois Romieuf162a5d2008-06-01 22:37:49 +0200429enum rtl8110_registers {
430 TBICSR = 0x64,
431 TBI_ANAR = 0x68,
432 TBI_LPAR = 0x6a,
433};
434
435enum rtl8168_8101_registers {
436 CSIDR = 0x64,
437 CSIAR = 0x68,
438#define CSIAR_FLAG 0x80000000
439#define CSIAR_WRITE_CMD 0x80000000
440#define CSIAR_BYTE_ENABLE 0x0f
441#define CSIAR_BYTE_ENABLE_SHIFT 12
442#define CSIAR_ADDR_MASK 0x0fff
Hayes Wang7e18dca2012-03-30 14:33:02 +0800443#define CSIAR_FUNC_CARD 0x00000000
444#define CSIAR_FUNC_SDIO 0x00010000
445#define CSIAR_FUNC_NIC 0x00020000
hayeswang45dd95c2013-07-08 17:09:01 +0800446#define CSIAR_FUNC_NIC2 0x00010000
françois romieu065c27c2011-01-03 15:08:12 +0000447 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200448 EPHYAR = 0x80,
449#define EPHYAR_FLAG 0x80000000
450#define EPHYAR_WRITE_CMD 0x80000000
451#define EPHYAR_REG_MASK 0x1f
452#define EPHYAR_REG_SHIFT 16
453#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800454 DLLPR = 0xd0,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800455#define PFM_EN (1 << 6)
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800456#define TX_10M_PS_EN (1 << 7)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200457 DBG_REG = 0xd1,
458#define FIX_NAK_1 (1 << 4)
459#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800460 TWSI = 0xd2,
461 MCU = 0xd3,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800462#define NOW_IS_OOB (1 << 7)
Hayes Wangc5583862012-07-02 17:23:22 +0800463#define TX_EMPTY (1 << 5)
464#define RX_EMPTY (1 << 4)
465#define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800466#define EN_NDP (1 << 3)
467#define EN_OOB_RESET (1 << 2)
Hayes Wangc5583862012-07-02 17:23:22 +0800468#define LINK_LIST_RDY (1 << 1)
françois romieudaf9df62009-10-07 12:44:20 +0000469 EFUSEAR = 0xdc,
470#define EFUSEAR_FLAG 0x80000000
471#define EFUSEAR_WRITE_CMD 0x80000000
472#define EFUSEAR_READ_CMD 0x00000000
473#define EFUSEAR_REG_MASK 0x03ff
474#define EFUSEAR_REG_SHIFT 8
475#define EFUSEAR_DATA_MASK 0xff
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800476 MISC_1 = 0xf2,
477#define PFM_D3COLD_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200478};
479
françois romieuc0e45c12011-01-03 15:08:04 +0000480enum rtl8168_registers {
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800481 LED_FREQ = 0x1a,
482 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000483 ERIDR = 0x70,
484 ERIAR = 0x74,
485#define ERIAR_FLAG 0x80000000
486#define ERIAR_WRITE_CMD 0x80000000
487#define ERIAR_READ_CMD 0x00000000
488#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000489#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800490#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
491#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
492#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800493#define ERIAR_OOB (0x02 << ERIAR_TYPE_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800494#define ERIAR_MASK_SHIFT 12
495#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
496#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800497#define ERIAR_MASK_0100 (0x4 << ERIAR_MASK_SHIFT)
Hayes Wangc5583862012-07-02 17:23:22 +0800498#define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800499#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000500 EPHY_RXER_NUM = 0x7c,
501 OCPDR = 0xb0, /* OCP GPHY access */
502#define OCPDR_WRITE_CMD 0x80000000
503#define OCPDR_READ_CMD 0x00000000
504#define OCPDR_REG_MASK 0x7f
505#define OCPDR_GPHY_REG_SHIFT 16
506#define OCPDR_DATA_MASK 0xffff
507 OCPAR = 0xb4,
508#define OCPAR_FLAG 0x80000000
509#define OCPAR_GPHY_WRITE_CMD 0x8000f060
510#define OCPAR_GPHY_READ_CMD 0x0000f060
Hayes Wangc5583862012-07-02 17:23:22 +0800511 GPHY_OCP = 0xb8,
hayeswang01dc7fe2011-03-21 01:50:28 +0000512 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
513 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200514#define TXPLA_RST (1 << 29)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800515#define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800516#define PWM_EN (1 << 22)
Hayes Wangc5583862012-07-02 17:23:22 +0800517#define RXDV_GATED_EN (1 << 19)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800518#define EARLY_TALLY_EN (1 << 16)
françois romieuc0e45c12011-01-03 15:08:04 +0000519};
520
Francois Romieu07d3f512007-02-21 22:40:46 +0100521enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100523 SYSErr = 0x8000,
524 PCSTimeout = 0x4000,
525 SWInt = 0x0100,
526 TxDescUnavail = 0x0080,
527 RxFIFOOver = 0x0040,
528 LinkChg = 0x0020,
529 RxOverflow = 0x0010,
530 TxErr = 0x0008,
531 TxOK = 0x0004,
532 RxErr = 0x0002,
533 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400536 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200537 RxFOVF = (1 << 23),
538 RxRWT = (1 << 22),
539 RxRES = (1 << 21),
540 RxRUNT = (1 << 20),
541 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /* ChipCmdBits */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800544 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100545 CmdReset = 0x10,
546 CmdRxEnb = 0x08,
547 CmdTxEnb = 0x04,
548 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Francois Romieu275391a2007-02-23 23:50:28 +0100550 /* TXPoll register p.5 */
551 HPQ = 0x80, /* Poll cmd on the high prio queue */
552 NPQ = 0x40, /* Poll cmd on the low prio queue */
553 FSWInt = 0x01, /* Forced software interrupt */
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100556 Cfg9346_Lock = 0x00,
557 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100560 AcceptErr = 0x20,
561 AcceptRunt = 0x10,
562 AcceptBroadcast = 0x08,
563 AcceptMulticast = 0x04,
564 AcceptMyPhys = 0x02,
565 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200566#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* TxConfigBits */
569 TxInterFrameGapShift = 24,
570 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
571
Francois Romieu5d06a992006-02-23 00:47:58 +0100572 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200573 LEDS1 = (1 << 7),
574 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200575 Speed_down = (1 << 4),
576 MEMMAP = (1 << 3),
577 IOMAP = (1 << 2),
578 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100579 PMEnable = (1 << 0), /* Power Management Enable */
580
Francois Romieu6dccd162007-02-13 23:38:05 +0100581 /* Config2 register p. 25 */
hayeswang57538c42013-04-01 22:23:40 +0000582 ClkReqEn = (1 << 7), /* Clock Request Enable */
françois romieu2ca6cf02011-12-15 08:37:43 +0000583 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100584 PCI_Clock_66MHz = 0x01,
585 PCI_Clock_33MHz = 0x00,
586
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100587 /* Config3 register p.25 */
588 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
589 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200590 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
hayeswangb51ecea2014-07-09 14:52:51 +0800591 Rdy_to_L23 = (1 << 1), /* L23 Enable */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200592 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100593
Francois Romieud58d46b2011-05-03 16:38:29 +0200594 /* Config4 register */
595 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
596
Francois Romieu5d06a992006-02-23 00:47:58 +0100597 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100598 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
599 MWF = (1 << 5), /* Accept Multicast wakeup frame */
600 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200601 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100602 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100603 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
hayeswang57538c42013-04-01 22:23:40 +0000604 ASPM_en = (1 << 0), /* ASPM enable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /* TBICSR p.28 */
607 TBIReset = 0x80000000,
608 TBILoopback = 0x40000000,
609 TBINwEnable = 0x20000000,
610 TBINwRestart = 0x10000000,
611 TBILinkOk = 0x02000000,
612 TBINwComplete = 0x01000000,
613
614 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200615 EnableBist = (1 << 15), // 8168 8101
616 Mac_dbgo_oe = (1 << 14), // 8168 8101
617 Normal_mode = (1 << 13), // unused
618 Force_half_dup = (1 << 12), // 8168 8101
619 Force_rxflow_en = (1 << 11), // 8168 8101
620 Force_txflow_en = (1 << 10), // 8168 8101
621 Cxpl_dbg_sel = (1 << 9), // 8168 8101
622 ASF = (1 << 8), // 8168 8101
623 PktCntrDisable = (1 << 7), // 8168 8101
624 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 RxVlan = (1 << 6),
626 RxChkSum = (1 << 5),
627 PCIDAC = (1 << 4),
628 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100629 INTT_0 = 0x0000, // 8168
630 INTT_1 = 0x0001, // 8168
631 INTT_2 = 0x0002, // 8168
632 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100635 TBI_Enable = 0x80,
636 TxFlowCtrl = 0x40,
637 RxFlowCtrl = 0x20,
638 _1000bpsF = 0x10,
639 _100bps = 0x08,
640 _10bps = 0x04,
641 LinkStatus = 0x02,
642 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100645 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200646
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200647 /* ResetCounterCommand */
648 CounterReset = 0x1,
649
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200650 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100651 CounterDump = 0x8,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800652
653 /* magic enable v2 */
654 MagicPacket_v2 = (1 << 16), /* Wake up when receives a Magic Packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655};
656
Francois Romieu2b7b4312011-04-18 22:53:24 -0700657enum rtl_desc_bit {
658 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
660 RingEnd = (1 << 30), /* End of descriptor ring */
661 FirstFrag = (1 << 29), /* First segment of a packet */
662 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700663};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Francois Romieu2b7b4312011-04-18 22:53:24 -0700665/* Generic case. */
666enum rtl_tx_desc_bit {
667 /* First doubleword. */
668 TD_LSO = (1 << 27), /* Large Send Offload */
669#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Francois Romieu2b7b4312011-04-18 22:53:24 -0700671 /* Second doubleword. */
672 TxVlanTag = (1 << 17), /* Add VLAN tag */
673};
674
675/* 8169, 8168b and 810x except 8102e. */
676enum rtl_tx_desc_bit_0 {
677 /* First doubleword. */
678#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
679 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
680 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
681 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
682};
683
684/* 8102e, 8168c and beyond. */
685enum rtl_tx_desc_bit_1 {
hayeswangbdfa4ed2014-07-11 16:25:57 +0800686 /* First doubleword. */
687 TD1_GTSENV4 = (1 << 26), /* Giant Send for IPv4 */
hayeswange9746042014-07-11 16:25:58 +0800688 TD1_GTSENV6 = (1 << 25), /* Giant Send for IPv6 */
hayeswangbdfa4ed2014-07-11 16:25:57 +0800689#define GTTCPHO_SHIFT 18
hayeswange9746042014-07-11 16:25:58 +0800690#define GTTCPHO_MAX 0x7fU
hayeswangbdfa4ed2014-07-11 16:25:57 +0800691
Francois Romieu2b7b4312011-04-18 22:53:24 -0700692 /* Second doubleword. */
hayeswange9746042014-07-11 16:25:58 +0800693#define TCPHO_SHIFT 18
694#define TCPHO_MAX 0x3ffU
Francois Romieu2b7b4312011-04-18 22:53:24 -0700695#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
hayeswange9746042014-07-11 16:25:58 +0800696 TD1_IPv6_CS = (1 << 28), /* Calculate IPv6 checksum */
697 TD1_IPv4_CS = (1 << 29), /* Calculate IPv4 checksum */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700698 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
699 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
700};
701
Francois Romieu2b7b4312011-04-18 22:53:24 -0700702enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /* Rx private */
704 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
Zhu Yanjun9b600472017-01-05 02:54:27 -0500705 PID0 = (1 << 17), /* Protocol ID bit 0/2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707#define RxProtoUDP (PID1)
708#define RxProtoTCP (PID0)
709#define RxProtoIP (PID1 | PID0)
710#define RxProtoMask RxProtoIP
711
712 IPFail = (1 << 16), /* IP checksum failed */
713 UDPFail = (1 << 15), /* UDP/IP checksum failed */
714 TCPFail = (1 << 14), /* TCP/IP checksum failed */
715 RxVlanTag = (1 << 16), /* VLAN tag available */
716};
717
718#define RsvdMask 0x3fffc000
719
720struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200721 __le32 opts1;
722 __le32 opts2;
723 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724};
725
726struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200727 __le32 opts1;
728 __le32 opts2;
729 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730};
731
732struct ring_info {
733 struct sk_buff *skb;
734 u32 len;
735 u8 __pad[sizeof(void *) - sizeof(u32)];
736};
737
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200738enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200739 RTL_FEATURE_WOL = (1 << 0),
740 RTL_FEATURE_MSI = (1 << 1),
741 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200742};
743
Ivan Vecera355423d2009-02-06 21:49:57 -0800744struct rtl8169_counters {
745 __le64 tx_packets;
746 __le64 rx_packets;
747 __le64 tx_errors;
748 __le32 rx_errors;
749 __le16 rx_missed;
750 __le16 align_errors;
751 __le32 tx_one_collision;
752 __le32 tx_multi_collision;
753 __le64 rx_unicast;
754 __le64 rx_broadcast;
755 __le32 rx_multicast;
756 __le16 tx_aborted;
757 __le16 tx_underun;
758};
759
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200760struct rtl8169_tc_offsets {
761 bool inited;
762 __le64 tx_errors;
763 __le32 tx_multi_collision;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200764 __le16 tx_aborted;
765};
766
Francois Romieuda78dbf2012-01-26 14:18:23 +0100767enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100768 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100769 RTL_FLAG_TASK_SLOW_PENDING,
770 RTL_FLAG_TASK_RESET_PENDING,
771 RTL_FLAG_TASK_PHY_PENDING,
772 RTL_FLAG_MAX
773};
774
Junchang Wang8027aa22012-03-04 23:30:32 +0100775struct rtl8169_stats {
776 u64 packets;
777 u64 bytes;
778 struct u64_stats_sync syncp;
779};
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781struct rtl8169_private {
782 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200783 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000784 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700785 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200786 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700787 u16 txd_version;
788 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
790 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100792 struct rtl8169_stats rx_stats;
793 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
795 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
796 dma_addr_t TxPhyAddr;
797 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000798 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 struct timer_list timer;
801 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100802
803 u16 event_slow;
Francois Romieu50970832017-10-27 13:24:49 +0300804 const struct rtl_coalesce_info *coalesce_info;
françois romieuc0e45c12011-01-03 15:08:04 +0000805
806 struct mdio_ops {
Francois Romieu24192212012-07-06 20:19:42 +0200807 void (*write)(struct rtl8169_private *, int, int);
808 int (*read)(struct rtl8169_private *, int);
françois romieuc0e45c12011-01-03 15:08:04 +0000809 } mdio_ops;
810
françois romieu065c27c2011-01-03 15:08:12 +0000811 struct pll_power_ops {
812 void (*down)(struct rtl8169_private *);
813 void (*up)(struct rtl8169_private *);
814 } pll_power_ops;
815
Francois Romieud58d46b2011-05-03 16:38:29 +0200816 struct jumbo_ops {
817 void (*enable)(struct rtl8169_private *);
818 void (*disable)(struct rtl8169_private *);
819 } jumbo_ops;
820
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800821 struct csi_ops {
Francois Romieu52989f02012-07-06 13:37:00 +0200822 void (*write)(struct rtl8169_private *, int, int);
823 u32 (*read)(struct rtl8169_private *, int);
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800824 } csi_ops;
825
Oliver Neukum54405cd2011-01-06 21:55:13 +0100826 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Philippe Reynes6fa1ba62017-02-23 22:34:43 +0100827 int (*get_link_ksettings)(struct net_device *,
828 struct ethtool_link_ksettings *);
françois romieu4da19632011-01-03 15:07:55 +0000829 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100830 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000831 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800833 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
hayeswang5888d3f2014-07-11 16:25:56 +0800834 bool (*tso_csum)(struct rtl8169_private *, struct sk_buff *, u32 *);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100835
836 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100837 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
838 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100839 struct work_struct work;
840 } wk;
841
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200842 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200843
844 struct mii_if_info mii;
Corinna Vinschen42020322015-09-10 10:47:35 +0200845 dma_addr_t counters_phys_addr;
846 struct rtl8169_counters *counters;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200847 struct rtl8169_tc_offsets tc_offset;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000848 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400849 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000850
Francois Romieub6ffd972011-06-17 17:00:05 +0200851 struct rtl_fw {
852 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200853
854#define RTL_VER_SIZE 32
855
856 char version[RTL_VER_SIZE];
857
858 struct rtl_fw_phy_action {
859 __le32 *code;
860 size_t size;
861 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200862 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300863#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Hayes Wangc5583862012-07-02 17:23:22 +0800864
865 u32 ocp_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866};
867
Ralf Baechle979b6c12005-06-13 14:30:40 -0700868MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700871MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200872module_param_named(debug, debug.msg_enable, int, 0);
873MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874MODULE_LICENSE("GPL");
875MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000876MODULE_FIRMWARE(FIRMWARE_8168D_1);
877MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000878MODULE_FIRMWARE(FIRMWARE_8168E_1);
879MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400880MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800881MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800882MODULE_FIRMWARE(FIRMWARE_8168F_1);
883MODULE_FIRMWARE(FIRMWARE_8168F_2);
Hayes Wang7e18dca2012-03-30 14:33:02 +0800884MODULE_FIRMWARE(FIRMWARE_8402_1);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800885MODULE_FIRMWARE(FIRMWARE_8411_1);
hayeswang45dd95c2013-07-08 17:09:01 +0800886MODULE_FIRMWARE(FIRMWARE_8411_2);
Hayes Wang5598bfe2012-07-02 17:23:21 +0800887MODULE_FIRMWARE(FIRMWARE_8106E_1);
hayeswang58152cd2013-04-01 22:23:42 +0000888MODULE_FIRMWARE(FIRMWARE_8106E_2);
hayeswangbeb330a2013-04-01 22:23:39 +0000889MODULE_FIRMWARE(FIRMWARE_8168G_2);
hayeswang57538c42013-04-01 22:23:40 +0000890MODULE_FIRMWARE(FIRMWARE_8168G_3);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800891MODULE_FIRMWARE(FIRMWARE_8168H_1);
892MODULE_FIRMWARE(FIRMWARE_8168H_2);
Francois Romieua3bf5c42014-08-26 22:40:38 +0200893MODULE_FIRMWARE(FIRMWARE_8107E_1);
894MODULE_FIRMWARE(FIRMWARE_8107E_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Francois Romieuda78dbf2012-01-26 14:18:23 +0100896static void rtl_lock_work(struct rtl8169_private *tp)
897{
898 mutex_lock(&tp->wk.mutex);
899}
900
901static void rtl_unlock_work(struct rtl8169_private *tp)
902{
903 mutex_unlock(&tp->wk.mutex);
904}
905
Francois Romieud58d46b2011-05-03 16:38:29 +0200906static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
907{
Jiang Liu7d7903b2012-07-24 17:20:16 +0800908 pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
909 PCI_EXP_DEVCTL_READRQ, force);
Francois Romieud58d46b2011-05-03 16:38:29 +0200910}
911
Francois Romieuffc46952012-07-06 14:19:23 +0200912struct rtl_cond {
913 bool (*check)(struct rtl8169_private *);
914 const char *msg;
915};
916
917static void rtl_udelay(unsigned int d)
918{
919 udelay(d);
920}
921
922static bool rtl_loop_wait(struct rtl8169_private *tp, const struct rtl_cond *c,
923 void (*delay)(unsigned int), unsigned int d, int n,
924 bool high)
925{
926 int i;
927
928 for (i = 0; i < n; i++) {
929 delay(d);
930 if (c->check(tp) == high)
931 return true;
932 }
Francois Romieu82e316e2012-07-11 23:39:51 +0200933 netif_err(tp, drv, tp->dev, "%s == %d (loop: %d, delay: %d).\n",
934 c->msg, !high, n, d);
Francois Romieuffc46952012-07-06 14:19:23 +0200935 return false;
936}
937
938static bool rtl_udelay_loop_wait_high(struct rtl8169_private *tp,
939 const struct rtl_cond *c,
940 unsigned int d, int n)
941{
942 return rtl_loop_wait(tp, c, rtl_udelay, d, n, true);
943}
944
945static bool rtl_udelay_loop_wait_low(struct rtl8169_private *tp,
946 const struct rtl_cond *c,
947 unsigned int d, int n)
948{
949 return rtl_loop_wait(tp, c, rtl_udelay, d, n, false);
950}
951
952static bool rtl_msleep_loop_wait_high(struct rtl8169_private *tp,
953 const struct rtl_cond *c,
954 unsigned int d, int n)
955{
956 return rtl_loop_wait(tp, c, msleep, d, n, true);
957}
958
959static bool rtl_msleep_loop_wait_low(struct rtl8169_private *tp,
960 const struct rtl_cond *c,
961 unsigned int d, int n)
962{
963 return rtl_loop_wait(tp, c, msleep, d, n, false);
964}
965
966#define DECLARE_RTL_COND(name) \
967static bool name ## _check(struct rtl8169_private *); \
968 \
969static const struct rtl_cond name = { \
970 .check = name ## _check, \
971 .msg = #name \
972}; \
973 \
974static bool name ## _check(struct rtl8169_private *tp)
975
Hayes Wangc5583862012-07-02 17:23:22 +0800976static bool rtl_ocp_reg_failure(struct rtl8169_private *tp, u32 reg)
977{
978 if (reg & 0xffff0001) {
979 netif_err(tp, drv, tp->dev, "Invalid ocp reg %x!\n", reg);
980 return true;
981 }
982 return false;
983}
984
985DECLARE_RTL_COND(rtl_ocp_gphy_cond)
986{
987 void __iomem *ioaddr = tp->mmio_addr;
988
989 return RTL_R32(GPHY_OCP) & OCPAR_FLAG;
990}
991
992static void r8168_phy_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
993{
994 void __iomem *ioaddr = tp->mmio_addr;
995
996 if (rtl_ocp_reg_failure(tp, reg))
997 return;
998
999 RTL_W32(GPHY_OCP, OCPAR_FLAG | (reg << 15) | data);
1000
1001 rtl_udelay_loop_wait_low(tp, &rtl_ocp_gphy_cond, 25, 10);
1002}
1003
1004static u16 r8168_phy_ocp_read(struct rtl8169_private *tp, u32 reg)
1005{
1006 void __iomem *ioaddr = tp->mmio_addr;
1007
1008 if (rtl_ocp_reg_failure(tp, reg))
1009 return 0;
1010
1011 RTL_W32(GPHY_OCP, reg << 15);
1012
1013 return rtl_udelay_loop_wait_high(tp, &rtl_ocp_gphy_cond, 25, 10) ?
1014 (RTL_R32(GPHY_OCP) & 0xffff) : ~0;
1015}
1016
Hayes Wangc5583862012-07-02 17:23:22 +08001017static void r8168_mac_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1018{
1019 void __iomem *ioaddr = tp->mmio_addr;
1020
1021 if (rtl_ocp_reg_failure(tp, reg))
1022 return;
1023
1024 RTL_W32(OCPDR, OCPAR_FLAG | (reg << 15) | data);
Hayes Wangc5583862012-07-02 17:23:22 +08001025}
1026
1027static u16 r8168_mac_ocp_read(struct rtl8169_private *tp, u32 reg)
1028{
1029 void __iomem *ioaddr = tp->mmio_addr;
1030
1031 if (rtl_ocp_reg_failure(tp, reg))
1032 return 0;
1033
1034 RTL_W32(OCPDR, reg << 15);
1035
Hayes Wang3a83ad12012-07-11 20:31:56 +08001036 return RTL_R32(OCPDR);
Hayes Wangc5583862012-07-02 17:23:22 +08001037}
1038
1039#define OCP_STD_PHY_BASE 0xa400
1040
1041static void r8168g_mdio_write(struct rtl8169_private *tp, int reg, int value)
1042{
1043 if (reg == 0x1f) {
1044 tp->ocp_base = value ? value << 4 : OCP_STD_PHY_BASE;
1045 return;
1046 }
1047
1048 if (tp->ocp_base != OCP_STD_PHY_BASE)
1049 reg -= 0x10;
1050
1051 r8168_phy_ocp_write(tp, tp->ocp_base + reg * 2, value);
1052}
1053
1054static int r8168g_mdio_read(struct rtl8169_private *tp, int reg)
1055{
1056 if (tp->ocp_base != OCP_STD_PHY_BASE)
1057 reg -= 0x10;
1058
1059 return r8168_phy_ocp_read(tp, tp->ocp_base + reg * 2);
1060}
1061
hayeswangeee37862013-04-01 22:23:38 +00001062static void mac_mcu_write(struct rtl8169_private *tp, int reg, int value)
1063{
1064 if (reg == 0x1f) {
1065 tp->ocp_base = value << 4;
1066 return;
1067 }
1068
1069 r8168_mac_ocp_write(tp, tp->ocp_base + reg, value);
1070}
1071
1072static int mac_mcu_read(struct rtl8169_private *tp, int reg)
1073{
1074 return r8168_mac_ocp_read(tp, tp->ocp_base + reg);
1075}
1076
Francois Romieuffc46952012-07-06 14:19:23 +02001077DECLARE_RTL_COND(rtl_phyar_cond)
1078{
1079 void __iomem *ioaddr = tp->mmio_addr;
1080
1081 return RTL_R32(PHYAR) & 0x80000000;
1082}
1083
Francois Romieu24192212012-07-06 20:19:42 +02001084static void r8169_mdio_write(struct rtl8169_private *tp, int reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Francois Romieu24192212012-07-06 20:19:42 +02001086 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Francois Romieu24192212012-07-06 20:19:42 +02001088 RTL_W32(PHYAR, 0x80000000 | (reg & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Francois Romieuffc46952012-07-06 14:19:23 +02001090 rtl_udelay_loop_wait_low(tp, &rtl_phyar_cond, 25, 20);
Timo Teräs024a07b2010-06-06 15:38:47 -07001091 /*
Timo Teräs81a95f02010-06-09 17:31:48 -07001092 * According to hardware specs a 20us delay is required after write
1093 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -07001094 */
Timo Teräs81a95f02010-06-09 17:31:48 -07001095 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Francois Romieu24192212012-07-06 20:19:42 +02001098static int r8169_mdio_read(struct rtl8169_private *tp, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Francois Romieu24192212012-07-06 20:19:42 +02001100 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieuffc46952012-07-06 14:19:23 +02001101 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Francois Romieu24192212012-07-06 20:19:42 +02001103 RTL_W32(PHYAR, 0x0 | (reg & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Francois Romieuffc46952012-07-06 14:19:23 +02001105 value = rtl_udelay_loop_wait_high(tp, &rtl_phyar_cond, 25, 20) ?
1106 RTL_R32(PHYAR) & 0xffff : ~0;
1107
Timo Teräs81a95f02010-06-09 17:31:48 -07001108 /*
1109 * According to hardware specs a 20us delay is required after read
1110 * complete indication, but before sending next command.
1111 */
1112 udelay(20);
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return value;
1115}
1116
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001117DECLARE_RTL_COND(rtl_ocpar_cond)
1118{
1119 void __iomem *ioaddr = tp->mmio_addr;
1120
1121 return RTL_R32(OCPAR) & OCPAR_FLAG;
1122}
1123
Francois Romieu24192212012-07-06 20:19:42 +02001124static void r8168dp_1_mdio_access(struct rtl8169_private *tp, int reg, u32 data)
françois romieuc0e45c12011-01-03 15:08:04 +00001125{
Francois Romieu24192212012-07-06 20:19:42 +02001126 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001127
Francois Romieu24192212012-07-06 20:19:42 +02001128 RTL_W32(OCPDR, data | ((reg & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
françois romieuc0e45c12011-01-03 15:08:04 +00001129 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
1130 RTL_W32(EPHY_RXER_NUM, 0);
1131
Francois Romieuffc46952012-07-06 14:19:23 +02001132 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 1000, 100);
françois romieuc0e45c12011-01-03 15:08:04 +00001133}
1134
Francois Romieu24192212012-07-06 20:19:42 +02001135static void r8168dp_1_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieuc0e45c12011-01-03 15:08:04 +00001136{
Francois Romieu24192212012-07-06 20:19:42 +02001137 r8168dp_1_mdio_access(tp, reg,
1138 OCPDR_WRITE_CMD | (value & OCPDR_DATA_MASK));
françois romieuc0e45c12011-01-03 15:08:04 +00001139}
1140
Francois Romieu24192212012-07-06 20:19:42 +02001141static int r8168dp_1_mdio_read(struct rtl8169_private *tp, int reg)
françois romieuc0e45c12011-01-03 15:08:04 +00001142{
Francois Romieu24192212012-07-06 20:19:42 +02001143 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001144
Francois Romieu24192212012-07-06 20:19:42 +02001145 r8168dp_1_mdio_access(tp, reg, OCPDR_READ_CMD);
françois romieuc0e45c12011-01-03 15:08:04 +00001146
1147 mdelay(1);
1148 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
1149 RTL_W32(EPHY_RXER_NUM, 0);
1150
Francois Romieuffc46952012-07-06 14:19:23 +02001151 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 1000, 100) ?
1152 RTL_R32(OCPDR) & OCPDR_DATA_MASK : ~0;
françois romieuc0e45c12011-01-03 15:08:04 +00001153}
1154
françois romieue6de30d2011-01-03 15:08:37 +00001155#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1156
1157static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1158{
1159 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1160}
1161
1162static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1163{
1164 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1165}
1166
Francois Romieu24192212012-07-06 20:19:42 +02001167static void r8168dp_2_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieue6de30d2011-01-03 15:08:37 +00001168{
Francois Romieu24192212012-07-06 20:19:42 +02001169 void __iomem *ioaddr = tp->mmio_addr;
1170
françois romieue6de30d2011-01-03 15:08:37 +00001171 r8168dp_2_mdio_start(ioaddr);
1172
Francois Romieu24192212012-07-06 20:19:42 +02001173 r8169_mdio_write(tp, reg, value);
françois romieue6de30d2011-01-03 15:08:37 +00001174
1175 r8168dp_2_mdio_stop(ioaddr);
1176}
1177
Francois Romieu24192212012-07-06 20:19:42 +02001178static int r8168dp_2_mdio_read(struct rtl8169_private *tp, int reg)
françois romieue6de30d2011-01-03 15:08:37 +00001179{
Francois Romieu24192212012-07-06 20:19:42 +02001180 void __iomem *ioaddr = tp->mmio_addr;
françois romieue6de30d2011-01-03 15:08:37 +00001181 int value;
1182
1183 r8168dp_2_mdio_start(ioaddr);
1184
Francois Romieu24192212012-07-06 20:19:42 +02001185 value = r8169_mdio_read(tp, reg);
françois romieue6de30d2011-01-03 15:08:37 +00001186
1187 r8168dp_2_mdio_stop(ioaddr);
1188
1189 return value;
1190}
1191
françois romieu4da19632011-01-03 15:07:55 +00001192static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001193{
Francois Romieu24192212012-07-06 20:19:42 +02001194 tp->mdio_ops.write(tp, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001195}
1196
françois romieu4da19632011-01-03 15:07:55 +00001197static int rtl_readphy(struct rtl8169_private *tp, int location)
1198{
Francois Romieu24192212012-07-06 20:19:42 +02001199 return tp->mdio_ops.read(tp, location);
françois romieu4da19632011-01-03 15:07:55 +00001200}
1201
1202static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1203{
1204 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1205}
1206
Chun-Hao Lin76564422014-10-01 23:17:17 +08001207static void rtl_w0w1_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001208{
1209 int val;
1210
françois romieu4da19632011-01-03 15:07:55 +00001211 val = rtl_readphy(tp, reg_addr);
Chun-Hao Lin76564422014-10-01 23:17:17 +08001212 rtl_writephy(tp, reg_addr, (val & ~m) | p);
françois romieudaf9df62009-10-07 12:44:20 +00001213}
1214
Francois Romieuccdffb92008-07-26 14:26:06 +02001215static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1216 int val)
1217{
1218 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001219
françois romieu4da19632011-01-03 15:07:55 +00001220 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001221}
1222
1223static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1224{
1225 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001226
françois romieu4da19632011-01-03 15:07:55 +00001227 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001228}
1229
Francois Romieuffc46952012-07-06 14:19:23 +02001230DECLARE_RTL_COND(rtl_ephyar_cond)
1231{
1232 void __iomem *ioaddr = tp->mmio_addr;
1233
1234 return RTL_R32(EPHYAR) & EPHYAR_FLAG;
1235}
1236
Francois Romieufdf6fc02012-07-06 22:40:38 +02001237static void rtl_ephy_write(struct rtl8169_private *tp, int reg_addr, int value)
Francois Romieudacf8152008-08-02 20:44:13 +02001238{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001239 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001240
1241 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1242 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1243
Francois Romieuffc46952012-07-06 14:19:23 +02001244 rtl_udelay_loop_wait_low(tp, &rtl_ephyar_cond, 10, 100);
1245
1246 udelay(10);
Francois Romieudacf8152008-08-02 20:44:13 +02001247}
1248
Francois Romieufdf6fc02012-07-06 22:40:38 +02001249static u16 rtl_ephy_read(struct rtl8169_private *tp, int reg_addr)
Francois Romieudacf8152008-08-02 20:44:13 +02001250{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001251 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001252
1253 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1254
Francois Romieuffc46952012-07-06 14:19:23 +02001255 return rtl_udelay_loop_wait_high(tp, &rtl_ephyar_cond, 10, 100) ?
1256 RTL_R32(EPHYAR) & EPHYAR_DATA_MASK : ~0;
Francois Romieudacf8152008-08-02 20:44:13 +02001257}
1258
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001259DECLARE_RTL_COND(rtl_eriar_cond)
1260{
1261 void __iomem *ioaddr = tp->mmio_addr;
1262
1263 return RTL_R32(ERIAR) & ERIAR_FLAG;
1264}
1265
Francois Romieufdf6fc02012-07-06 22:40:38 +02001266static void rtl_eri_write(struct rtl8169_private *tp, int addr, u32 mask,
1267 u32 val, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001268{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001269 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001270
1271 BUG_ON((addr & 3) || (mask == 0));
1272 RTL_W32(ERIDR, val);
1273 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1274
Francois Romieuffc46952012-07-06 14:19:23 +02001275 rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 100);
Hayes Wang133ac402011-07-06 15:58:05 +08001276}
1277
Francois Romieufdf6fc02012-07-06 22:40:38 +02001278static u32 rtl_eri_read(struct rtl8169_private *tp, int addr, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001279{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001280 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001281
1282 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1283
Francois Romieuffc46952012-07-06 14:19:23 +02001284 return rtl_udelay_loop_wait_high(tp, &rtl_eriar_cond, 100, 100) ?
1285 RTL_R32(ERIDR) : ~0;
Hayes Wang133ac402011-07-06 15:58:05 +08001286}
1287
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001288static void rtl_w0w1_eri(struct rtl8169_private *tp, int addr, u32 mask, u32 p,
Francois Romieufdf6fc02012-07-06 22:40:38 +02001289 u32 m, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001290{
1291 u32 val;
1292
Francois Romieufdf6fc02012-07-06 22:40:38 +02001293 val = rtl_eri_read(tp, addr, type);
1294 rtl_eri_write(tp, addr, mask, (val & ~m) | p, type);
Hayes Wang133ac402011-07-06 15:58:05 +08001295}
1296
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001297static u32 r8168dp_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1298{
1299 void __iomem *ioaddr = tp->mmio_addr;
1300
1301 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1302 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 100, 20) ?
1303 RTL_R32(OCPDR) : ~0;
1304}
1305
1306static u32 r8168ep_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1307{
1308 return rtl_eri_read(tp, reg, ERIAR_OOB);
1309}
1310
1311static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1312{
1313 switch (tp->mac_version) {
1314 case RTL_GIGA_MAC_VER_27:
1315 case RTL_GIGA_MAC_VER_28:
1316 case RTL_GIGA_MAC_VER_31:
1317 return r8168dp_ocp_read(tp, mask, reg);
1318 case RTL_GIGA_MAC_VER_49:
1319 case RTL_GIGA_MAC_VER_50:
1320 case RTL_GIGA_MAC_VER_51:
1321 return r8168ep_ocp_read(tp, mask, reg);
1322 default:
1323 BUG();
1324 return ~0;
1325 }
1326}
1327
1328static void r8168dp_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1329 u32 data)
1330{
1331 void __iomem *ioaddr = tp->mmio_addr;
1332
1333 RTL_W32(OCPDR, data);
1334 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1335 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 100, 20);
1336}
1337
1338static void r8168ep_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1339 u32 data)
1340{
1341 rtl_eri_write(tp, reg, ((u32)mask & 0x0f) << ERIAR_MASK_SHIFT,
1342 data, ERIAR_OOB);
1343}
1344
1345static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
1346{
1347 switch (tp->mac_version) {
1348 case RTL_GIGA_MAC_VER_27:
1349 case RTL_GIGA_MAC_VER_28:
1350 case RTL_GIGA_MAC_VER_31:
1351 r8168dp_ocp_write(tp, mask, reg, data);
1352 break;
1353 case RTL_GIGA_MAC_VER_49:
1354 case RTL_GIGA_MAC_VER_50:
1355 case RTL_GIGA_MAC_VER_51:
1356 r8168ep_ocp_write(tp, mask, reg, data);
1357 break;
1358 default:
1359 BUG();
1360 break;
1361 }
1362}
1363
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001364static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
1365{
1366 rtl_eri_write(tp, 0xe8, ERIAR_MASK_0001, cmd, ERIAR_EXGMAC);
1367
1368 ocp_write(tp, 0x1, 0x30, 0x00000001);
1369}
1370
1371#define OOB_CMD_RESET 0x00
1372#define OOB_CMD_DRIVER_START 0x05
1373#define OOB_CMD_DRIVER_STOP 0x06
1374
1375static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
1376{
1377 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
1378}
1379
1380DECLARE_RTL_COND(rtl_ocp_read_cond)
1381{
1382 u16 reg;
1383
1384 reg = rtl8168_get_ocp_reg(tp);
1385
1386 return ocp_read(tp, 0x0f, reg) & 0x00000800;
1387}
1388
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001389DECLARE_RTL_COND(rtl_ep_ocp_read_cond)
1390{
1391 return ocp_read(tp, 0x0f, 0x124) & 0x00000001;
1392}
1393
1394DECLARE_RTL_COND(rtl_ocp_tx_cond)
1395{
1396 void __iomem *ioaddr = tp->mmio_addr;
1397
1398 return RTL_R8(IBISR0) & 0x02;
1399}
1400
Chun-Hao Lin003609d2014-12-02 16:48:31 +08001401static void rtl8168ep_stop_cmac(struct rtl8169_private *tp)
1402{
1403 void __iomem *ioaddr = tp->mmio_addr;
1404
1405 RTL_W8(IBCR2, RTL_R8(IBCR2) & ~0x01);
1406 rtl_msleep_loop_wait_low(tp, &rtl_ocp_tx_cond, 50, 2000);
1407 RTL_W8(IBISR0, RTL_R8(IBISR0) | 0x20);
1408 RTL_W8(IBCR0, RTL_R8(IBCR0) & ~0x01);
1409}
1410
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001411static void rtl8168dp_driver_start(struct rtl8169_private *tp)
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001412{
1413 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001414 rtl_msleep_loop_wait_high(tp, &rtl_ocp_read_cond, 10, 10);
1415}
1416
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001417static void rtl8168ep_driver_start(struct rtl8169_private *tp)
1418{
1419 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_START);
1420 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1421 rtl_msleep_loop_wait_high(tp, &rtl_ep_ocp_read_cond, 10, 10);
1422}
1423
1424static void rtl8168_driver_start(struct rtl8169_private *tp)
1425{
1426 switch (tp->mac_version) {
1427 case RTL_GIGA_MAC_VER_27:
1428 case RTL_GIGA_MAC_VER_28:
1429 case RTL_GIGA_MAC_VER_31:
1430 rtl8168dp_driver_start(tp);
1431 break;
1432 case RTL_GIGA_MAC_VER_49:
1433 case RTL_GIGA_MAC_VER_50:
1434 case RTL_GIGA_MAC_VER_51:
1435 rtl8168ep_driver_start(tp);
1436 break;
1437 default:
1438 BUG();
1439 break;
1440 }
1441}
1442
1443static void rtl8168dp_driver_stop(struct rtl8169_private *tp)
1444{
1445 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
1446 rtl_msleep_loop_wait_low(tp, &rtl_ocp_read_cond, 10, 10);
1447}
1448
1449static void rtl8168ep_driver_stop(struct rtl8169_private *tp)
1450{
Chun-Hao Lin003609d2014-12-02 16:48:31 +08001451 rtl8168ep_stop_cmac(tp);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001452 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_STOP);
1453 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1454 rtl_msleep_loop_wait_low(tp, &rtl_ep_ocp_read_cond, 10, 10);
1455}
1456
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001457static void rtl8168_driver_stop(struct rtl8169_private *tp)
1458{
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001459 switch (tp->mac_version) {
1460 case RTL_GIGA_MAC_VER_27:
1461 case RTL_GIGA_MAC_VER_28:
1462 case RTL_GIGA_MAC_VER_31:
1463 rtl8168dp_driver_stop(tp);
1464 break;
1465 case RTL_GIGA_MAC_VER_49:
1466 case RTL_GIGA_MAC_VER_50:
1467 case RTL_GIGA_MAC_VER_51:
1468 rtl8168ep_driver_stop(tp);
1469 break;
1470 default:
1471 BUG();
1472 break;
1473 }
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001474}
1475
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001476static int r8168dp_check_dash(struct rtl8169_private *tp)
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001477{
1478 u16 reg = rtl8168_get_ocp_reg(tp);
1479
1480 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
1481}
1482
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001483static int r8168ep_check_dash(struct rtl8169_private *tp)
1484{
1485 return (ocp_read(tp, 0x0f, 0x128) & 0x00000001) ? 1 : 0;
1486}
1487
1488static int r8168_check_dash(struct rtl8169_private *tp)
1489{
1490 switch (tp->mac_version) {
1491 case RTL_GIGA_MAC_VER_27:
1492 case RTL_GIGA_MAC_VER_28:
1493 case RTL_GIGA_MAC_VER_31:
1494 return r8168dp_check_dash(tp);
1495 case RTL_GIGA_MAC_VER_49:
1496 case RTL_GIGA_MAC_VER_50:
1497 case RTL_GIGA_MAC_VER_51:
1498 return r8168ep_check_dash(tp);
1499 default:
1500 return 0;
1501 }
1502}
1503
françois romieuc28aa382011-08-02 03:53:43 +00001504struct exgmac_reg {
1505 u16 addr;
1506 u16 mask;
1507 u32 val;
1508};
1509
Francois Romieufdf6fc02012-07-06 22:40:38 +02001510static void rtl_write_exgmac_batch(struct rtl8169_private *tp,
françois romieuc28aa382011-08-02 03:53:43 +00001511 const struct exgmac_reg *r, int len)
1512{
1513 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001514 rtl_eri_write(tp, r->addr, r->mask, r->val, ERIAR_EXGMAC);
françois romieuc28aa382011-08-02 03:53:43 +00001515 r++;
1516 }
1517}
1518
Francois Romieuffc46952012-07-06 14:19:23 +02001519DECLARE_RTL_COND(rtl_efusear_cond)
1520{
1521 void __iomem *ioaddr = tp->mmio_addr;
1522
1523 return RTL_R32(EFUSEAR) & EFUSEAR_FLAG;
1524}
1525
Francois Romieufdf6fc02012-07-06 22:40:38 +02001526static u8 rtl8168d_efuse_read(struct rtl8169_private *tp, int reg_addr)
françois romieudaf9df62009-10-07 12:44:20 +00001527{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001528 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00001529
1530 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1531
Francois Romieuffc46952012-07-06 14:19:23 +02001532 return rtl_udelay_loop_wait_high(tp, &rtl_efusear_cond, 100, 300) ?
1533 RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK : ~0;
françois romieudaf9df62009-10-07 12:44:20 +00001534}
1535
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001536static u16 rtl_get_events(struct rtl8169_private *tp)
1537{
1538 void __iomem *ioaddr = tp->mmio_addr;
1539
1540 return RTL_R16(IntrStatus);
1541}
1542
1543static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1544{
1545 void __iomem *ioaddr = tp->mmio_addr;
1546
1547 RTL_W16(IntrStatus, bits);
1548 mmiowb();
1549}
1550
1551static void rtl_irq_disable(struct rtl8169_private *tp)
1552{
1553 void __iomem *ioaddr = tp->mmio_addr;
1554
1555 RTL_W16(IntrMask, 0);
1556 mmiowb();
1557}
1558
Francois Romieu3e990ff2012-01-26 12:50:01 +01001559static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1560{
1561 void __iomem *ioaddr = tp->mmio_addr;
1562
1563 RTL_W16(IntrMask, bits);
1564}
1565
Francois Romieuda78dbf2012-01-26 14:18:23 +01001566#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1567#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1568#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1569
1570static void rtl_irq_enable_all(struct rtl8169_private *tp)
1571{
1572 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1573}
1574
françois romieu811fd302011-12-04 20:30:45 +00001575static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
françois romieu811fd302011-12-04 20:30:45 +00001577 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001579 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001580 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001581 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
françois romieu4da19632011-01-03 15:07:55 +00001584static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
françois romieu4da19632011-01-03 15:07:55 +00001586 void __iomem *ioaddr = tp->mmio_addr;
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return RTL_R32(TBICSR) & TBIReset;
1589}
1590
françois romieu4da19632011-01-03 15:07:55 +00001591static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
françois romieu4da19632011-01-03 15:07:55 +00001593 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
1596static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1597{
1598 return RTL_R32(TBICSR) & TBILinkOk;
1599}
1600
1601static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1602{
1603 return RTL_R8(PHYstatus) & LinkStatus;
1604}
1605
françois romieu4da19632011-01-03 15:07:55 +00001606static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
françois romieu4da19632011-01-03 15:07:55 +00001608 void __iomem *ioaddr = tp->mmio_addr;
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1611}
1612
françois romieu4da19632011-01-03 15:07:55 +00001613static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
1615 unsigned int val;
1616
françois romieu4da19632011-01-03 15:07:55 +00001617 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1618 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
Hayes Wang70090422011-07-06 15:58:06 +08001621static void rtl_link_chg_patch(struct rtl8169_private *tp)
1622{
1623 void __iomem *ioaddr = tp->mmio_addr;
1624 struct net_device *dev = tp->dev;
1625
1626 if (!netif_running(dev))
1627 return;
1628
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001629 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1630 tp->mac_version == RTL_GIGA_MAC_VER_38) {
Hayes Wang70090422011-07-06 15:58:06 +08001631 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001632 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1633 ERIAR_EXGMAC);
1634 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1635 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001636 } else if (RTL_R8(PHYstatus) & _100bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001637 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1638 ERIAR_EXGMAC);
1639 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1640 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001641 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001642 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1643 ERIAR_EXGMAC);
1644 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1645 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001646 }
1647 /* Reset packet filter */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001648 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
Hayes Wang70090422011-07-06 15:58:06 +08001649 ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001650 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
Hayes Wang70090422011-07-06 15:58:06 +08001651 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001652 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1653 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1654 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001655 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1656 ERIAR_EXGMAC);
1657 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1658 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001659 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001660 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1661 ERIAR_EXGMAC);
1662 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1663 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001664 }
Hayes Wang7e18dca2012-03-30 14:33:02 +08001665 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1666 if (RTL_R8(PHYstatus) & _10bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001667 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x4d02,
1668 ERIAR_EXGMAC);
1669 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_0011, 0x0060,
1670 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001671 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001672 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000,
1673 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001674 }
Hayes Wang70090422011-07-06 15:58:06 +08001675 }
1676}
1677
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001678static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001679 struct rtl8169_private *tp,
1680 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001683 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001684 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001685 if (pm)
1686 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001688 if (net_ratelimit())
1689 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001690 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001692 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001693 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001694 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696}
1697
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001698static void rtl8169_check_link_status(struct net_device *dev,
1699 struct rtl8169_private *tp,
1700 void __iomem *ioaddr)
1701{
1702 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1703}
1704
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001705#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1706
1707static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1708{
1709 void __iomem *ioaddr = tp->mmio_addr;
1710 u8 options;
1711 u32 wolopts = 0;
1712
1713 options = RTL_R8(Config1);
1714 if (!(options & PMEnable))
1715 return 0;
1716
1717 options = RTL_R8(Config3);
1718 if (options & LinkUp)
1719 wolopts |= WAKE_PHY;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001720 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001721 case RTL_GIGA_MAC_VER_34:
1722 case RTL_GIGA_MAC_VER_35:
1723 case RTL_GIGA_MAC_VER_36:
1724 case RTL_GIGA_MAC_VER_37:
1725 case RTL_GIGA_MAC_VER_38:
1726 case RTL_GIGA_MAC_VER_40:
1727 case RTL_GIGA_MAC_VER_41:
1728 case RTL_GIGA_MAC_VER_42:
1729 case RTL_GIGA_MAC_VER_43:
1730 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001731 case RTL_GIGA_MAC_VER_45:
1732 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001733 case RTL_GIGA_MAC_VER_47:
1734 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001735 case RTL_GIGA_MAC_VER_49:
1736 case RTL_GIGA_MAC_VER_50:
1737 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001738 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
1739 wolopts |= WAKE_MAGIC;
1740 break;
1741 default:
1742 if (options & MagicPacket)
1743 wolopts |= WAKE_MAGIC;
1744 break;
1745 }
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001746
1747 options = RTL_R8(Config5);
1748 if (options & UWF)
1749 wolopts |= WAKE_UCAST;
1750 if (options & BWF)
1751 wolopts |= WAKE_BCAST;
1752 if (options & MWF)
1753 wolopts |= WAKE_MCAST;
1754
1755 return wolopts;
1756}
1757
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001758static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1759{
1760 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001761 struct device *d = &tp->pci_dev->dev;
1762
1763 pm_runtime_get_noresume(d);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001764
Francois Romieuda78dbf2012-01-26 14:18:23 +01001765 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001766
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001767 wol->supported = WAKE_ANY;
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001768 if (pm_runtime_active(d))
1769 wol->wolopts = __rtl8169_get_wol(tp);
1770 else
1771 wol->wolopts = tp->saved_wolopts;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001772
Francois Romieuda78dbf2012-01-26 14:18:23 +01001773 rtl_unlock_work(tp);
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001774
1775 pm_runtime_put_noidle(d);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001776}
1777
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001778static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001779{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001780 void __iomem *ioaddr = tp->mmio_addr;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001781 unsigned int i, tmp;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001782 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001783 u32 opt;
1784 u16 reg;
1785 u8 mask;
1786 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001787 { WAKE_PHY, Config3, LinkUp },
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001788 { WAKE_UCAST, Config5, UWF },
1789 { WAKE_BCAST, Config5, BWF },
1790 { WAKE_MCAST, Config5, MWF },
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001791 { WAKE_ANY, Config5, LanWake },
1792 { WAKE_MAGIC, Config3, MagicPacket }
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001793 };
Francois Romieu851e6022012-04-17 11:10:11 +02001794 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001795
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001796 RTL_W8(Cfg9346, Cfg9346_Unlock);
1797
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001798 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001799 case RTL_GIGA_MAC_VER_34:
1800 case RTL_GIGA_MAC_VER_35:
1801 case RTL_GIGA_MAC_VER_36:
1802 case RTL_GIGA_MAC_VER_37:
1803 case RTL_GIGA_MAC_VER_38:
1804 case RTL_GIGA_MAC_VER_40:
1805 case RTL_GIGA_MAC_VER_41:
1806 case RTL_GIGA_MAC_VER_42:
1807 case RTL_GIGA_MAC_VER_43:
1808 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001809 case RTL_GIGA_MAC_VER_45:
1810 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001811 case RTL_GIGA_MAC_VER_47:
1812 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001813 case RTL_GIGA_MAC_VER_49:
1814 case RTL_GIGA_MAC_VER_50:
1815 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001816 tmp = ARRAY_SIZE(cfg) - 1;
1817 if (wolopts & WAKE_MAGIC)
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001818 rtl_w0w1_eri(tp,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001819 0x0dc,
1820 ERIAR_MASK_0100,
1821 MagicPacket_v2,
1822 0x0000,
1823 ERIAR_EXGMAC);
1824 else
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001825 rtl_w0w1_eri(tp,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001826 0x0dc,
1827 ERIAR_MASK_0100,
1828 0x0000,
1829 MagicPacket_v2,
1830 ERIAR_EXGMAC);
1831 break;
1832 default:
1833 tmp = ARRAY_SIZE(cfg);
1834 break;
1835 }
1836
1837 for (i = 0; i < tmp; i++) {
Francois Romieu851e6022012-04-17 11:10:11 +02001838 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001839 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001840 options |= cfg[i].mask;
1841 RTL_W8(cfg[i].reg, options);
1842 }
1843
Francois Romieu851e6022012-04-17 11:10:11 +02001844 switch (tp->mac_version) {
1845 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1846 options = RTL_R8(Config1) & ~PMEnable;
1847 if (wolopts)
1848 options |= PMEnable;
1849 RTL_W8(Config1, options);
1850 break;
1851 default:
Francois Romieud387b422012-04-17 11:12:01 +02001852 options = RTL_R8(Config2) & ~PME_SIGNAL;
1853 if (wolopts)
1854 options |= PME_SIGNAL;
1855 RTL_W8(Config2, options);
Francois Romieu851e6022012-04-17 11:10:11 +02001856 break;
1857 }
1858
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001859 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001860}
1861
1862static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1863{
1864 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001865 struct device *d = &tp->pci_dev->dev;
1866
1867 pm_runtime_get_noresume(d);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001868
Francois Romieuda78dbf2012-01-26 14:18:23 +01001869 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001870
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001871 if (wol->wolopts)
1872 tp->features |= RTL_FEATURE_WOL;
1873 else
1874 tp->features &= ~RTL_FEATURE_WOL;
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001875 if (pm_runtime_active(d))
1876 __rtl8169_set_wol(tp, wol->wolopts);
1877 else
1878 tp->saved_wolopts = wol->wolopts;
Francois Romieuda78dbf2012-01-26 14:18:23 +01001879
1880 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001881
françois romieuea809072010-11-08 13:23:58 +00001882 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1883
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001884 pm_runtime_put_noidle(d);
1885
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001886 return 0;
1887}
1888
Francois Romieu31bd2042011-04-26 18:58:59 +02001889static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1890{
Francois Romieu85bffe62011-04-27 08:22:39 +02001891 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001892}
1893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894static void rtl8169_get_drvinfo(struct net_device *dev,
1895 struct ethtool_drvinfo *info)
1896{
1897 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001898 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Rick Jones68aad782011-11-07 13:29:27 +00001900 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1901 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1902 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001903 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001904 if (!IS_ERR_OR_NULL(rtl_fw))
1905 strlcpy(info->fw_version, rtl_fw->version,
1906 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908
1909static int rtl8169_get_regs_len(struct net_device *dev)
1910{
1911 return R8169_REGS_SIZE;
1912}
1913
1914static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001915 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 struct rtl8169_private *tp = netdev_priv(dev);
1918 void __iomem *ioaddr = tp->mmio_addr;
1919 int ret = 0;
1920 u32 reg;
1921
1922 reg = RTL_R32(TBICSR);
1923 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1924 (duplex == DUPLEX_FULL)) {
1925 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1926 } else if (autoneg == AUTONEG_ENABLE)
1927 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1928 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001929 netif_warn(tp, link, dev,
1930 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 ret = -EOPNOTSUPP;
1932 }
1933
1934 return ret;
1935}
1936
1937static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001938 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
1940 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001941 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001942 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Hayes Wang716b50a2011-02-22 17:26:18 +08001944 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001947 int auto_nego;
1948
françois romieu4da19632011-01-03 15:07:55 +00001949 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001950 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1951 ADVERTISE_100HALF | ADVERTISE_100FULL);
1952
1953 if (adv & ADVERTISED_10baseT_Half)
1954 auto_nego |= ADVERTISE_10HALF;
1955 if (adv & ADVERTISED_10baseT_Full)
1956 auto_nego |= ADVERTISE_10FULL;
1957 if (adv & ADVERTISED_100baseT_Half)
1958 auto_nego |= ADVERTISE_100HALF;
1959 if (adv & ADVERTISED_100baseT_Full)
1960 auto_nego |= ADVERTISE_100FULL;
1961
françois romieu3577aa12009-05-19 10:46:48 +00001962 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1963
françois romieu4da19632011-01-03 15:07:55 +00001964 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001965 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1966
1967 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001968 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001969 if (adv & ADVERTISED_1000baseT_Half)
1970 giga_ctrl |= ADVERTISE_1000HALF;
1971 if (adv & ADVERTISED_1000baseT_Full)
1972 giga_ctrl |= ADVERTISE_1000FULL;
1973 } else if (adv & (ADVERTISED_1000baseT_Half |
1974 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001975 netif_info(tp, link, dev,
1976 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001977 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
françois romieu3577aa12009-05-19 10:46:48 +00001980 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001981
françois romieu4da19632011-01-03 15:07:55 +00001982 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1983 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001984 } else {
françois romieu3577aa12009-05-19 10:46:48 +00001985 if (speed == SPEED_10)
1986 bmcr = 0;
1987 else if (speed == SPEED_100)
1988 bmcr = BMCR_SPEED100;
1989 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001990 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001991
1992 if (duplex == DUPLEX_FULL)
1993 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001994 }
1995
françois romieu4da19632011-01-03 15:07:55 +00001996 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001997
Francois Romieucecb5fd2011-04-01 10:21:07 +02001998 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1999 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00002000 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00002001 rtl_writephy(tp, 0x17, 0x2138);
2002 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00002003 } else {
françois romieu4da19632011-01-03 15:07:55 +00002004 rtl_writephy(tp, 0x17, 0x2108);
2005 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00002006 }
2007 }
2008
Oliver Neukum54405cd2011-01-06 21:55:13 +01002009 rc = 0;
2010out:
2011 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013
2014static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01002015 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
2017 struct rtl8169_private *tp = netdev_priv(dev);
2018 int ret;
2019
Oliver Neukum54405cd2011-01-06 21:55:13 +01002020 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01002021 if (ret < 0)
2022 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Francois Romieu4876cc12011-03-11 21:07:11 +01002024 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
Chun-Hao Linc4556972016-03-11 14:21:14 +08002025 (advertising & ADVERTISED_1000baseT_Full) &&
2026 !pci_is_pcie(tp->pci_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01002028 }
2029out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 return ret;
2031}
2032
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002033static netdev_features_t rtl8169_fix_features(struct net_device *dev,
2034 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Francois Romieud58d46b2011-05-03 16:38:29 +02002036 struct rtl8169_private *tp = netdev_priv(dev);
2037
Francois Romieu2b7b4312011-04-18 22:53:24 -07002038 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00002039 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Francois Romieud58d46b2011-05-03 16:38:29 +02002041 if (dev->mtu > JUMBO_1K &&
2042 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
2043 features &= ~NETIF_F_IP_CSUM;
2044
Michał Mirosław350fb322011-04-08 06:35:56 +00002045 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046}
2047
Francois Romieuda78dbf2012-01-26 14:18:23 +01002048static void __rtl8169_set_features(struct net_device *dev,
2049 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
2051 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002052 void __iomem *ioaddr = tp->mmio_addr;
hayeswang929a0312014-09-16 11:40:47 +08002053 u32 rx_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
hayeswang929a0312014-09-16 11:40:47 +08002055 rx_config = RTL_R32(RxConfig);
2056 if (features & NETIF_F_RXALL)
2057 rx_config |= (AcceptErr | AcceptRunt);
2058 else
2059 rx_config &= ~(AcceptErr | AcceptRunt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
hayeswang929a0312014-09-16 11:40:47 +08002061 RTL_W32(RxConfig, rx_config);
Michał Mirosław350fb322011-04-08 06:35:56 +00002062
hayeswang929a0312014-09-16 11:40:47 +08002063 if (features & NETIF_F_RXCSUM)
2064 tp->cp_cmd |= RxChkSum;
2065 else
2066 tp->cp_cmd &= ~RxChkSum;
Ben Greear6bbe0212012-02-10 15:04:33 +00002067
hayeswang929a0312014-09-16 11:40:47 +08002068 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2069 tp->cp_cmd |= RxVlan;
2070 else
2071 tp->cp_cmd &= ~RxVlan;
2072
2073 tp->cp_cmd |= RTL_R16(CPlusCmd) & ~(RxVlan | RxChkSum);
2074
2075 RTL_W16(CPlusCmd, tp->cp_cmd);
2076 RTL_R16(CPlusCmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002077}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Francois Romieuda78dbf2012-01-26 14:18:23 +01002079static int rtl8169_set_features(struct net_device *dev,
2080 netdev_features_t features)
2081{
2082 struct rtl8169_private *tp = netdev_priv(dev);
2083
hayeswang929a0312014-09-16 11:40:47 +08002084 features &= NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX;
2085
Francois Romieuda78dbf2012-01-26 14:18:23 +01002086 rtl_lock_work(tp);
Dan Carpenter85911d72014-09-19 13:40:25 +03002087 if (features ^ dev->features)
hayeswang929a0312014-09-16 11:40:47 +08002088 __rtl8169_set_features(dev, features);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002089 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091 return 0;
2092}
2093
Francois Romieuda78dbf2012-01-26 14:18:23 +01002094
Kirill Smelkov810f4892012-11-10 21:11:02 +04002095static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002097 return (skb_vlan_tag_present(skb)) ?
2098 TxVlanTag | swab16(skb_vlan_tag_get(skb)) : 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
Francois Romieu7a8fc772011-03-01 17:18:33 +01002101static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Francois Romieu7a8fc772011-03-01 17:18:33 +01002105 if (opts2 & RxVlanTag)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00002106 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002109static int rtl8169_get_link_ksettings_tbi(struct net_device *dev,
2110 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
2112 struct rtl8169_private *tp = netdev_priv(dev);
2113 void __iomem *ioaddr = tp->mmio_addr;
2114 u32 status;
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002115 u32 supported, advertising;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002117 supported =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002119 cmd->base.port = PORT_FIBRE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 status = RTL_R32(TBICSR);
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002122 advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
2123 cmd->base.autoneg = !!(status & TBINwEnable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002125 cmd->base.speed = SPEED_1000;
2126 cmd->base.duplex = DUPLEX_FULL; /* Always set */
2127
2128 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
2129 supported);
2130 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
2131 advertising);
Francois Romieuccdffb92008-07-26 14:26:06 +02002132
2133 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002136static int rtl8169_get_link_ksettings_xmii(struct net_device *dev,
2137 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
2139 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
yuval.shaia@oracle.com82c01a82017-06-04 20:22:00 +03002141 mii_ethtool_get_link_ksettings(&tp->mii, cmd);
2142
2143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144}
2145
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002146static int rtl8169_get_link_ksettings(struct net_device *dev,
2147 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
2149 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02002150 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Francois Romieuda78dbf2012-01-26 14:18:23 +01002152 rtl_lock_work(tp);
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002153 rc = tp->get_link_ksettings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002154 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Francois Romieuccdffb92008-07-26 14:26:06 +02002156 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157}
2158
Tobias Jakobi9e77d7a2017-11-21 16:15:57 +01002159static int rtl8169_set_link_ksettings(struct net_device *dev,
2160 const struct ethtool_link_ksettings *cmd)
2161{
2162 struct rtl8169_private *tp = netdev_priv(dev);
2163 int rc;
2164 u32 advertising;
2165
2166 if (!ethtool_convert_link_mode_to_legacy_u32(&advertising,
2167 cmd->link_modes.advertising))
2168 return -EINVAL;
2169
2170 del_timer_sync(&tp->timer);
2171
2172 rtl_lock_work(tp);
2173 rc = rtl8169_set_speed(dev, cmd->base.autoneg, cmd->base.speed,
2174 cmd->base.duplex, advertising);
2175 rtl_unlock_work(tp);
2176
2177 return rc;
2178}
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2181 void *p)
2182{
Francois Romieu5b0384f2006-08-16 16:00:01 +02002183 struct rtl8169_private *tp = netdev_priv(dev);
Peter Wu15edae92013-08-21 23:17:11 +02002184 u32 __iomem *data = tp->mmio_addr;
2185 u32 *dw = p;
2186 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Francois Romieuda78dbf2012-01-26 14:18:23 +01002188 rtl_lock_work(tp);
Peter Wu15edae92013-08-21 23:17:11 +02002189 for (i = 0; i < R8169_REGS_SIZE; i += 4)
2190 memcpy_fromio(dw++, data++, 4);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002191 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002194static u32 rtl8169_get_msglevel(struct net_device *dev)
2195{
2196 struct rtl8169_private *tp = netdev_priv(dev);
2197
2198 return tp->msg_enable;
2199}
2200
2201static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
2202{
2203 struct rtl8169_private *tp = netdev_priv(dev);
2204
2205 tp->msg_enable = value;
2206}
2207
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002208static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
2209 "tx_packets",
2210 "rx_packets",
2211 "tx_errors",
2212 "rx_errors",
2213 "rx_missed",
2214 "align_errors",
2215 "tx_single_collisions",
2216 "tx_multi_collisions",
2217 "unicast",
2218 "broadcast",
2219 "multicast",
2220 "tx_aborted",
2221 "tx_underrun",
2222};
2223
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002224static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002225{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002226 switch (sset) {
2227 case ETH_SS_STATS:
2228 return ARRAY_SIZE(rtl8169_gstrings);
2229 default:
2230 return -EOPNOTSUPP;
2231 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002232}
2233
Corinna Vinschen42020322015-09-10 10:47:35 +02002234DECLARE_RTL_COND(rtl_counters_cond)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002235{
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002236 void __iomem *ioaddr = tp->mmio_addr;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002237
Corinna Vinschen42020322015-09-10 10:47:35 +02002238 return RTL_R32(CounterAddrLow) & (CounterReset | CounterDump);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002239}
2240
Corinna Vinschen42020322015-09-10 10:47:35 +02002241static bool rtl8169_do_counters(struct net_device *dev, u32 counter_cmd)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002242{
2243 struct rtl8169_private *tp = netdev_priv(dev);
2244 void __iomem *ioaddr = tp->mmio_addr;
Corinna Vinschen42020322015-09-10 10:47:35 +02002245 dma_addr_t paddr = tp->counters_phys_addr;
2246 u32 cmd;
Corinna Vinschen42020322015-09-10 10:47:35 +02002247
2248 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Francois Romieua78e9362018-01-26 01:53:26 +01002249 RTL_R32(CounterAddrHigh);
Corinna Vinschen42020322015-09-10 10:47:35 +02002250 cmd = (u64)paddr & DMA_BIT_MASK(32);
2251 RTL_W32(CounterAddrLow, cmd);
2252 RTL_W32(CounterAddrLow, cmd | counter_cmd);
2253
Francois Romieua78e9362018-01-26 01:53:26 +01002254 return rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002255}
2256
2257static bool rtl8169_reset_counters(struct net_device *dev)
2258{
2259 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002260
2261 /*
2262 * Versions prior to RTL_GIGA_MAC_VER_19 don't support resetting the
2263 * tally counters.
2264 */
2265 if (tp->mac_version < RTL_GIGA_MAC_VER_19)
2266 return true;
2267
Corinna Vinschen42020322015-09-10 10:47:35 +02002268 return rtl8169_do_counters(dev, CounterReset);
Francois Romieuffc46952012-07-06 14:19:23 +02002269}
2270
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002271static bool rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002272{
2273 struct rtl8169_private *tp = netdev_priv(dev);
2274 void __iomem *ioaddr = tp->mmio_addr;
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 Vinschen42020322015-09-10 10:47:35 +02002283 return rtl8169_do_counters(dev, CounterDump);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002284}
2285
2286static bool rtl8169_init_counter_offsets(struct net_device *dev)
2287{
2288 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen42020322015-09-10 10:47:35 +02002289 struct rtl8169_counters *counters = tp->counters;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002290 bool ret = false;
2291
2292 /*
2293 * rtl8169_init_counter_offsets is called from rtl_open. On chip
2294 * versions prior to RTL_GIGA_MAC_VER_19 the tally counters are only
2295 * reset by a power cycle, while the counter values collected by the
2296 * driver are reset at every driver unload/load cycle.
2297 *
2298 * To make sure the HW values returned by @get_stats64 match the SW
2299 * values, we collect the initial values at first open(*) and use them
2300 * as offsets to normalize the values returned by @get_stats64.
2301 *
2302 * (*) We can't call rtl8169_init_counter_offsets from rtl_init_one
2303 * for the reason stated in rtl8169_update_counters; CmdRxEnb is only
2304 * set at open time by rtl_hw_start.
2305 */
2306
2307 if (tp->tc_offset.inited)
2308 return true;
2309
2310 /* If both, reset and update fail, propagate to caller. */
2311 if (rtl8169_reset_counters(dev))
2312 ret = true;
2313
2314 if (rtl8169_update_counters(dev))
2315 ret = true;
2316
Corinna Vinschen42020322015-09-10 10:47:35 +02002317 tp->tc_offset.tx_errors = counters->tx_errors;
2318 tp->tc_offset.tx_multi_collision = counters->tx_multi_collision;
2319 tp->tc_offset.tx_aborted = counters->tx_aborted;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002320 tp->tc_offset.inited = true;
2321
2322 return ret;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002323}
2324
Ivan Vecera355423d2009-02-06 21:49:57 -08002325static void rtl8169_get_ethtool_stats(struct net_device *dev,
2326 struct ethtool_stats *stats, u64 *data)
2327{
2328 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Line0636232016-07-29 16:37:55 +08002329 struct device *d = &tp->pci_dev->dev;
Corinna Vinschen42020322015-09-10 10:47:35 +02002330 struct rtl8169_counters *counters = tp->counters;
Ivan Vecera355423d2009-02-06 21:49:57 -08002331
2332 ASSERT_RTNL();
2333
Chun-Hao Line0636232016-07-29 16:37:55 +08002334 pm_runtime_get_noresume(d);
2335
2336 if (pm_runtime_active(d))
2337 rtl8169_update_counters(dev);
2338
2339 pm_runtime_put_noidle(d);
Ivan Vecera355423d2009-02-06 21:49:57 -08002340
Corinna Vinschen42020322015-09-10 10:47:35 +02002341 data[0] = le64_to_cpu(counters->tx_packets);
2342 data[1] = le64_to_cpu(counters->rx_packets);
2343 data[2] = le64_to_cpu(counters->tx_errors);
2344 data[3] = le32_to_cpu(counters->rx_errors);
2345 data[4] = le16_to_cpu(counters->rx_missed);
2346 data[5] = le16_to_cpu(counters->align_errors);
2347 data[6] = le32_to_cpu(counters->tx_one_collision);
2348 data[7] = le32_to_cpu(counters->tx_multi_collision);
2349 data[8] = le64_to_cpu(counters->rx_unicast);
2350 data[9] = le64_to_cpu(counters->rx_broadcast);
2351 data[10] = le32_to_cpu(counters->rx_multicast);
2352 data[11] = le16_to_cpu(counters->tx_aborted);
2353 data[12] = le16_to_cpu(counters->tx_underun);
Ivan Vecera355423d2009-02-06 21:49:57 -08002354}
2355
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002356static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2357{
2358 switch(stringset) {
2359 case ETH_SS_STATS:
2360 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
2361 break;
2362 }
2363}
2364
Florian Fainellif0903ea2016-12-03 12:01:19 -08002365static int rtl8169_nway_reset(struct net_device *dev)
2366{
2367 struct rtl8169_private *tp = netdev_priv(dev);
2368
2369 return mii_nway_restart(&tp->mii);
2370}
2371
Francois Romieu50970832017-10-27 13:24:49 +03002372/*
2373 * Interrupt coalescing
2374 *
2375 * > 1 - the availability of the IntrMitigate (0xe2) register through the
2376 * > 8169, 8168 and 810x line of chipsets
2377 *
2378 * 8169, 8168, and 8136(810x) serial chipsets support it.
2379 *
2380 * > 2 - the Tx timer unit at gigabit speed
2381 *
2382 * The unit of the timer depends on both the speed and the setting of CPlusCmd
2383 * (0xe0) bit 1 and bit 0.
2384 *
2385 * For 8169
2386 * bit[1:0] \ speed 1000M 100M 10M
2387 * 0 0 320ns 2.56us 40.96us
2388 * 0 1 2.56us 20.48us 327.7us
2389 * 1 0 5.12us 40.96us 655.4us
2390 * 1 1 10.24us 81.92us 1.31ms
2391 *
2392 * For the other
2393 * bit[1:0] \ speed 1000M 100M 10M
2394 * 0 0 5us 2.56us 40.96us
2395 * 0 1 40us 20.48us 327.7us
2396 * 1 0 80us 40.96us 655.4us
2397 * 1 1 160us 81.92us 1.31ms
2398 */
2399
2400/* rx/tx scale factors for one particular CPlusCmd[0:1] value */
2401struct rtl_coalesce_scale {
2402 /* Rx / Tx */
2403 u32 nsecs[2];
2404};
2405
2406/* rx/tx scale factors for all CPlusCmd[0:1] cases */
2407struct rtl_coalesce_info {
2408 u32 speed;
2409 struct rtl_coalesce_scale scalev[4]; /* each CPlusCmd[0:1] case */
2410};
2411
2412/* produce (r,t) pairs with each being in series of *1, *8, *8*2, *8*2*2 */
2413#define rxtx_x1822(r, t) { \
2414 {{(r), (t)}}, \
2415 {{(r)*8, (t)*8}}, \
2416 {{(r)*8*2, (t)*8*2}}, \
2417 {{(r)*8*2*2, (t)*8*2*2}}, \
2418}
2419static const struct rtl_coalesce_info rtl_coalesce_info_8169[] = {
2420 /* speed delays: rx00 tx00 */
2421 { SPEED_10, rxtx_x1822(40960, 40960) },
2422 { SPEED_100, rxtx_x1822( 2560, 2560) },
2423 { SPEED_1000, rxtx_x1822( 320, 320) },
2424 { 0 },
2425};
2426
2427static const struct rtl_coalesce_info rtl_coalesce_info_8168_8136[] = {
2428 /* speed delays: rx00 tx00 */
2429 { SPEED_10, rxtx_x1822(40960, 40960) },
2430 { SPEED_100, rxtx_x1822( 2560, 2560) },
2431 { SPEED_1000, rxtx_x1822( 5000, 5000) },
2432 { 0 },
2433};
2434#undef rxtx_x1822
2435
2436/* get rx/tx scale vector corresponding to current speed */
2437static const struct rtl_coalesce_info *rtl_coalesce_info(struct net_device *dev)
2438{
2439 struct rtl8169_private *tp = netdev_priv(dev);
2440 struct ethtool_link_ksettings ecmd;
2441 const struct rtl_coalesce_info *ci;
2442 int rc;
2443
2444 rc = rtl8169_get_link_ksettings(dev, &ecmd);
2445 if (rc < 0)
2446 return ERR_PTR(rc);
2447
2448 for (ci = tp->coalesce_info; ci->speed != 0; ci++) {
2449 if (ecmd.base.speed == ci->speed) {
2450 return ci;
2451 }
2452 }
2453
2454 return ERR_PTR(-ELNRNG);
2455}
2456
2457static int rtl_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
2458{
2459 struct rtl8169_private *tp = netdev_priv(dev);
2460 void __iomem *ioaddr = tp->mmio_addr;
2461 const struct rtl_coalesce_info *ci;
2462 const struct rtl_coalesce_scale *scale;
2463 struct {
2464 u32 *max_frames;
2465 u32 *usecs;
2466 } coal_settings [] = {
2467 { &ec->rx_max_coalesced_frames, &ec->rx_coalesce_usecs },
2468 { &ec->tx_max_coalesced_frames, &ec->tx_coalesce_usecs }
2469 }, *p = coal_settings;
2470 int i;
2471 u16 w;
2472
2473 memset(ec, 0, sizeof(*ec));
2474
2475 /* get rx/tx scale corresponding to current speed and CPlusCmd[0:1] */
2476 ci = rtl_coalesce_info(dev);
2477 if (IS_ERR(ci))
2478 return PTR_ERR(ci);
2479
2480 scale = &ci->scalev[RTL_R16(CPlusCmd) & 3];
2481
2482 /* read IntrMitigate and adjust according to scale */
2483 for (w = RTL_R16(IntrMitigate); w; w >>= RTL_COALESCE_SHIFT, p++) {
2484 *p->max_frames = (w & RTL_COALESCE_MASK) << 2;
2485 w >>= RTL_COALESCE_SHIFT;
2486 *p->usecs = w & RTL_COALESCE_MASK;
2487 }
2488
2489 for (i = 0; i < 2; i++) {
2490 p = coal_settings + i;
2491 *p->usecs = (*p->usecs * scale->nsecs[i]) / 1000;
2492
2493 /*
2494 * ethtool_coalesce says it is illegal to set both usecs and
2495 * max_frames to 0.
2496 */
2497 if (!*p->usecs && !*p->max_frames)
2498 *p->max_frames = 1;
2499 }
2500
2501 return 0;
2502}
2503
2504/* choose appropriate scale factor and CPlusCmd[0:1] for (speed, nsec) */
2505static const struct rtl_coalesce_scale *rtl_coalesce_choose_scale(
2506 struct net_device *dev, u32 nsec, u16 *cp01)
2507{
2508 const struct rtl_coalesce_info *ci;
2509 u16 i;
2510
2511 ci = rtl_coalesce_info(dev);
2512 if (IS_ERR(ci))
2513 return ERR_CAST(ci);
2514
2515 for (i = 0; i < 4; i++) {
2516 u32 rxtx_maxscale = max(ci->scalev[i].nsecs[0],
2517 ci->scalev[i].nsecs[1]);
2518 if (nsec <= rxtx_maxscale * RTL_COALESCE_T_MAX) {
2519 *cp01 = i;
2520 return &ci->scalev[i];
2521 }
2522 }
2523
2524 return ERR_PTR(-EINVAL);
2525}
2526
2527static int rtl_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
2528{
2529 struct rtl8169_private *tp = netdev_priv(dev);
2530 void __iomem *ioaddr = tp->mmio_addr;
2531 const struct rtl_coalesce_scale *scale;
2532 struct {
2533 u32 frames;
2534 u32 usecs;
2535 } coal_settings [] = {
2536 { ec->rx_max_coalesced_frames, ec->rx_coalesce_usecs },
2537 { ec->tx_max_coalesced_frames, ec->tx_coalesce_usecs }
2538 }, *p = coal_settings;
2539 u16 w = 0, cp01;
2540 int i;
2541
2542 scale = rtl_coalesce_choose_scale(dev,
2543 max(p[0].usecs, p[1].usecs) * 1000, &cp01);
2544 if (IS_ERR(scale))
2545 return PTR_ERR(scale);
2546
2547 for (i = 0; i < 2; i++, p++) {
2548 u32 units;
2549
2550 /*
2551 * accept max_frames=1 we returned in rtl_get_coalesce.
2552 * accept it not only when usecs=0 because of e.g. the following scenario:
2553 *
2554 * - both rx_usecs=0 & rx_frames=0 in hardware (no delay on RX)
2555 * - rtl_get_coalesce returns rx_usecs=0, rx_frames=1
2556 * - then user does `ethtool -C eth0 rx-usecs 100`
2557 *
2558 * since ethtool sends to kernel whole ethtool_coalesce
2559 * settings, if we do not handle rx_usecs=!0, rx_frames=1
2560 * we'll reject it below in `frames % 4 != 0`.
2561 */
2562 if (p->frames == 1) {
2563 p->frames = 0;
2564 }
2565
2566 units = p->usecs * 1000 / scale->nsecs[i];
2567 if (p->frames > RTL_COALESCE_FRAME_MAX || p->frames % 4)
2568 return -EINVAL;
2569
2570 w <<= RTL_COALESCE_SHIFT;
2571 w |= units;
2572 w <<= RTL_COALESCE_SHIFT;
2573 w |= p->frames >> 2;
2574 }
2575
2576 rtl_lock_work(tp);
2577
2578 RTL_W16(IntrMitigate, swab16(w));
2579
2580 tp->cp_cmd = (tp->cp_cmd & ~3) | cp01;
2581 RTL_W16(CPlusCmd, tp->cp_cmd);
2582 RTL_R16(CPlusCmd);
2583
2584 rtl_unlock_work(tp);
2585
2586 return 0;
2587}
2588
Jeff Garzik7282d492006-09-13 14:30:00 -04002589static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 .get_drvinfo = rtl8169_get_drvinfo,
2591 .get_regs_len = rtl8169_get_regs_len,
2592 .get_link = ethtool_op_get_link,
Francois Romieu50970832017-10-27 13:24:49 +03002593 .get_coalesce = rtl_get_coalesce,
2594 .set_coalesce = rtl_set_coalesce,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002595 .get_msglevel = rtl8169_get_msglevel,
2596 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002598 .get_wol = rtl8169_get_wol,
2599 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002600 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002601 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002602 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00002603 .get_ts_info = ethtool_op_get_ts_info,
Florian Fainellif0903ea2016-12-03 12:01:19 -08002604 .nway_reset = rtl8169_nway_reset,
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01002605 .get_link_ksettings = rtl8169_get_link_ksettings,
Tobias Jakobi9e77d7a2017-11-21 16:15:57 +01002606 .set_link_ksettings = rtl8169_set_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607};
2608
Francois Romieu07d3f512007-02-21 22:40:46 +01002609static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02002610 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
Francois Romieu5d320a22011-05-08 17:47:36 +02002612 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002613 /*
2614 * The driver currently handles the 8168Bf and the 8168Be identically
2615 * but they can be identified more specifically through the test below
2616 * if needed:
2617 *
2618 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01002619 *
2620 * Same thing for the 8101Eb and the 8101Ec:
2621 *
2622 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01002623 */
Francois Romieu37441002011-06-17 22:58:54 +02002624 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002626 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 int mac_version;
2628 } mac_info[] = {
Chun-Hao Lin935e2212014-10-07 15:10:41 +08002629 /* 8168EP family. */
2630 { 0x7cf00000, 0x50200000, RTL_GIGA_MAC_VER_51 },
2631 { 0x7cf00000, 0x50100000, RTL_GIGA_MAC_VER_50 },
2632 { 0x7cf00000, 0x50000000, RTL_GIGA_MAC_VER_49 },
2633
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002634 /* 8168H family. */
2635 { 0x7cf00000, 0x54100000, RTL_GIGA_MAC_VER_46 },
2636 { 0x7cf00000, 0x54000000, RTL_GIGA_MAC_VER_45 },
2637
Hayes Wangc5583862012-07-02 17:23:22 +08002638 /* 8168G family. */
hayeswang45dd95c2013-07-08 17:09:01 +08002639 { 0x7cf00000, 0x5c800000, RTL_GIGA_MAC_VER_44 },
hayeswang57538c42013-04-01 22:23:40 +00002640 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42 },
Hayes Wangc5583862012-07-02 17:23:22 +08002641 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2642 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2643
Hayes Wangc2218922011-09-06 16:55:18 +08002644 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08002645 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08002646 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2647 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2648
hayeswang01dc7fe2011-03-21 01:50:28 +00002649 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08002650 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00002651 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
2652 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2653 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2654
Francois Romieu5b538df2008-07-20 16:22:45 +02002655 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00002656 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
2657 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00002658 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002659
françois romieue6de30d2011-01-03 15:08:37 +00002660 /* 8168DP family. */
2661 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2662 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00002663 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00002664
Francois Romieuef808d52008-06-29 13:10:54 +02002665 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07002666 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02002667 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02002668 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002669 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002670 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2671 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02002672 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02002673 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02002674 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002675
2676 /* 8168B family. */
2677 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2678 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
2679 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2680 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2681
2682 /* 8101 family. */
Hayes Wang5598bfe2012-07-02 17:23:21 +08002683 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39 },
2684 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
Hayes Wang7e18dca2012-03-30 14:33:02 +08002685 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00002686 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08002687 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
2688 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2689 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002690 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
2691 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
2692 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2693 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2694 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2695 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002696 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002697 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002698 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002699 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2700 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002701 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2702 /* FIXME: where did these entries come from ? -- FR */
2703 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2704 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2705
2706 /* 8110 family. */
2707 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2708 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2709 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2710 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2711 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2712 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2713
Jean Delvaref21b75e2009-05-26 20:54:48 -07002714 /* Catch-all */
2715 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02002716 };
2717 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 u32 reg;
2719
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002720 reg = RTL_R32(TxConfig);
2721 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 p++;
2723 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02002724
2725 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2726 netif_notice(tp, probe, dev,
2727 "unknown MAC, using family default\n");
2728 tp->mac_version = default_version;
hayeswang58152cd2013-04-01 22:23:42 +00002729 } else if (tp->mac_version == RTL_GIGA_MAC_VER_42) {
2730 tp->mac_version = tp->mii.supports_gmii ?
2731 RTL_GIGA_MAC_VER_42 :
2732 RTL_GIGA_MAC_VER_43;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002733 } else if (tp->mac_version == RTL_GIGA_MAC_VER_45) {
2734 tp->mac_version = tp->mii.supports_gmii ?
2735 RTL_GIGA_MAC_VER_45 :
2736 RTL_GIGA_MAC_VER_47;
2737 } else if (tp->mac_version == RTL_GIGA_MAC_VER_46) {
2738 tp->mac_version = tp->mii.supports_gmii ?
2739 RTL_GIGA_MAC_VER_46 :
2740 RTL_GIGA_MAC_VER_48;
Francois Romieu5d320a22011-05-08 17:47:36 +02002741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
2743
2744static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2745{
Francois Romieubcf0bf92006-07-26 23:14:13 +02002746 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747}
2748
Francois Romieu867763c2007-08-17 18:21:58 +02002749struct phy_reg {
2750 u16 reg;
2751 u16 val;
2752};
2753
françois romieu4da19632011-01-03 15:07:55 +00002754static void rtl_writephy_batch(struct rtl8169_private *tp,
2755 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02002756{
2757 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00002758 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02002759 regs++;
2760 }
2761}
2762
françois romieubca03d52011-01-03 15:07:31 +00002763#define PHY_READ 0x00000000
2764#define PHY_DATA_OR 0x10000000
2765#define PHY_DATA_AND 0x20000000
2766#define PHY_BJMPN 0x30000000
hayeswangeee37862013-04-01 22:23:38 +00002767#define PHY_MDIO_CHG 0x40000000
françois romieubca03d52011-01-03 15:07:31 +00002768#define PHY_CLEAR_READCOUNT 0x70000000
2769#define PHY_WRITE 0x80000000
2770#define PHY_READCOUNT_EQ_SKIP 0x90000000
2771#define PHY_COMP_EQ_SKIPN 0xa0000000
2772#define PHY_COMP_NEQ_SKIPN 0xb0000000
2773#define PHY_WRITE_PREVIOUS 0xc0000000
2774#define PHY_SKIPN 0xd0000000
2775#define PHY_DELAY_MS 0xe0000000
françois romieubca03d52011-01-03 15:07:31 +00002776
Hayes Wang960aee62011-06-18 11:37:48 +02002777struct fw_info {
2778 u32 magic;
2779 char version[RTL_VER_SIZE];
2780 __le32 fw_start;
2781 __le32 fw_len;
2782 u8 chksum;
2783} __packed;
2784
Francois Romieu1c361ef2011-06-17 17:16:24 +02002785#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2786
2787static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002788{
Francois Romieub6ffd972011-06-17 17:00:05 +02002789 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002790 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002791 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2792 char *version = rtl_fw->version;
2793 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002794
Francois Romieu1c361ef2011-06-17 17:16:24 +02002795 if (fw->size < FW_OPCODE_SIZE)
2796 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002797
2798 if (!fw_info->magic) {
2799 size_t i, size, start;
2800 u8 checksum = 0;
2801
2802 if (fw->size < sizeof(*fw_info))
2803 goto out;
2804
2805 for (i = 0; i < fw->size; i++)
2806 checksum += fw->data[i];
2807 if (checksum != 0)
2808 goto out;
2809
2810 start = le32_to_cpu(fw_info->fw_start);
2811 if (start > fw->size)
2812 goto out;
2813
2814 size = le32_to_cpu(fw_info->fw_len);
2815 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2816 goto out;
2817
2818 memcpy(version, fw_info->version, RTL_VER_SIZE);
2819
2820 pa->code = (__le32 *)(fw->data + start);
2821 pa->size = size;
2822 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002823 if (fw->size % FW_OPCODE_SIZE)
2824 goto out;
2825
2826 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2827
2828 pa->code = (__le32 *)fw->data;
2829 pa->size = fw->size / FW_OPCODE_SIZE;
2830 }
2831 version[RTL_VER_SIZE - 1] = 0;
2832
2833 rc = true;
2834out:
2835 return rc;
2836}
2837
Francois Romieufd112f22011-06-18 00:10:29 +02002838static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2839 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002840{
Francois Romieufd112f22011-06-18 00:10:29 +02002841 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002842 size_t index;
2843
Francois Romieu1c361ef2011-06-17 17:16:24 +02002844 for (index = 0; index < pa->size; index++) {
2845 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002846 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002847
hayeswang42b82dc2011-01-10 02:07:25 +00002848 switch(action & 0xf0000000) {
2849 case PHY_READ:
2850 case PHY_DATA_OR:
2851 case PHY_DATA_AND:
hayeswangeee37862013-04-01 22:23:38 +00002852 case PHY_MDIO_CHG:
hayeswang42b82dc2011-01-10 02:07:25 +00002853 case PHY_CLEAR_READCOUNT:
2854 case PHY_WRITE:
2855 case PHY_WRITE_PREVIOUS:
2856 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002857 break;
2858
hayeswang42b82dc2011-01-10 02:07:25 +00002859 case PHY_BJMPN:
2860 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002861 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002862 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002863 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002864 }
2865 break;
2866 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002867 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002868 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002869 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002870 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002871 }
2872 break;
2873 case PHY_COMP_EQ_SKIPN:
2874 case PHY_COMP_NEQ_SKIPN:
2875 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002876 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002877 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002878 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002879 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002880 }
2881 break;
2882
hayeswang42b82dc2011-01-10 02:07:25 +00002883 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002884 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002885 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002886 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002887 }
2888 }
Francois Romieufd112f22011-06-18 00:10:29 +02002889 rc = true;
2890out:
2891 return rc;
2892}
françois romieubca03d52011-01-03 15:07:31 +00002893
Francois Romieufd112f22011-06-18 00:10:29 +02002894static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2895{
2896 struct net_device *dev = tp->dev;
2897 int rc = -EINVAL;
2898
2899 if (!rtl_fw_format_ok(tp, rtl_fw)) {
Yannick Guerrini5c2d2b12015-02-24 13:03:51 +01002900 netif_err(tp, ifup, dev, "invalid firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002901 goto out;
2902 }
2903
2904 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2905 rc = 0;
2906out:
2907 return rc;
2908}
2909
2910static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2911{
2912 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
hayeswangeee37862013-04-01 22:23:38 +00002913 struct mdio_ops org, *ops = &tp->mdio_ops;
Francois Romieufd112f22011-06-18 00:10:29 +02002914 u32 predata, count;
2915 size_t index;
2916
2917 predata = count = 0;
hayeswangeee37862013-04-01 22:23:38 +00002918 org.write = ops->write;
2919 org.read = ops->read;
hayeswang42b82dc2011-01-10 02:07:25 +00002920
Francois Romieu1c361ef2011-06-17 17:16:24 +02002921 for (index = 0; index < pa->size; ) {
2922 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002923 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002924 u32 regno = (action & 0x0fff0000) >> 16;
2925
2926 if (!action)
2927 break;
françois romieubca03d52011-01-03 15:07:31 +00002928
2929 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002930 case PHY_READ:
2931 predata = rtl_readphy(tp, regno);
2932 count++;
2933 index++;
françois romieubca03d52011-01-03 15:07:31 +00002934 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002935 case PHY_DATA_OR:
2936 predata |= data;
2937 index++;
2938 break;
2939 case PHY_DATA_AND:
2940 predata &= data;
2941 index++;
2942 break;
2943 case PHY_BJMPN:
2944 index -= regno;
2945 break;
hayeswangeee37862013-04-01 22:23:38 +00002946 case PHY_MDIO_CHG:
2947 if (data == 0) {
2948 ops->write = org.write;
2949 ops->read = org.read;
2950 } else if (data == 1) {
2951 ops->write = mac_mcu_write;
2952 ops->read = mac_mcu_read;
2953 }
2954
hayeswang42b82dc2011-01-10 02:07:25 +00002955 index++;
2956 break;
2957 case PHY_CLEAR_READCOUNT:
2958 count = 0;
2959 index++;
2960 break;
2961 case PHY_WRITE:
2962 rtl_writephy(tp, regno, data);
2963 index++;
2964 break;
2965 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002966 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002967 break;
2968 case PHY_COMP_EQ_SKIPN:
2969 if (predata == data)
2970 index += regno;
2971 index++;
2972 break;
2973 case PHY_COMP_NEQ_SKIPN:
2974 if (predata != data)
2975 index += regno;
2976 index++;
2977 break;
2978 case PHY_WRITE_PREVIOUS:
2979 rtl_writephy(tp, regno, predata);
2980 index++;
2981 break;
2982 case PHY_SKIPN:
2983 index += regno + 1;
2984 break;
2985 case PHY_DELAY_MS:
2986 mdelay(data);
2987 index++;
2988 break;
2989
françois romieubca03d52011-01-03 15:07:31 +00002990 default:
2991 BUG();
2992 }
2993 }
hayeswangeee37862013-04-01 22:23:38 +00002994
2995 ops->write = org.write;
2996 ops->read = org.read;
françois romieubca03d52011-01-03 15:07:31 +00002997}
2998
françois romieuf1e02ed2011-01-13 13:07:53 +00002999static void rtl_release_firmware(struct rtl8169_private *tp)
3000{
Francois Romieub6ffd972011-06-17 17:00:05 +02003001 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
3002 release_firmware(tp->rtl_fw->fw);
3003 kfree(tp->rtl_fw);
3004 }
3005 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00003006}
3007
François Romieu953a12c2011-04-24 17:38:48 +02003008static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00003009{
Francois Romieub6ffd972011-06-17 17:00:05 +02003010 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00003011
3012 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieueef63cc2013-02-08 23:43:20 +01003013 if (!IS_ERR_OR_NULL(rtl_fw))
Francois Romieub6ffd972011-06-17 17:00:05 +02003014 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02003015}
3016
3017static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
3018{
3019 if (rtl_readphy(tp, reg) != val)
3020 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
3021 else
3022 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00003023}
3024
françois romieu4da19632011-01-03 15:07:55 +00003025static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003027 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00003028 { 0x1f, 0x0001 },
3029 { 0x06, 0x006e },
3030 { 0x08, 0x0708 },
3031 { 0x15, 0x4000 },
3032 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
françois romieu0b9b5712009-08-10 19:44:56 +00003034 { 0x1f, 0x0001 },
3035 { 0x03, 0x00a1 },
3036 { 0x02, 0x0008 },
3037 { 0x01, 0x0120 },
3038 { 0x00, 0x1000 },
3039 { 0x04, 0x0800 },
3040 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
françois romieu0b9b5712009-08-10 19:44:56 +00003042 { 0x03, 0xff41 },
3043 { 0x02, 0xdf60 },
3044 { 0x01, 0x0140 },
3045 { 0x00, 0x0077 },
3046 { 0x04, 0x7800 },
3047 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
françois romieu0b9b5712009-08-10 19:44:56 +00003049 { 0x03, 0x802f },
3050 { 0x02, 0x4f02 },
3051 { 0x01, 0x0409 },
3052 { 0x00, 0xf0f9 },
3053 { 0x04, 0x9800 },
3054 { 0x04, 0x9000 },
3055
3056 { 0x03, 0xdf01 },
3057 { 0x02, 0xdf20 },
3058 { 0x01, 0xff95 },
3059 { 0x00, 0xba00 },
3060 { 0x04, 0xa800 },
3061 { 0x04, 0xa000 },
3062
3063 { 0x03, 0xff41 },
3064 { 0x02, 0xdf20 },
3065 { 0x01, 0x0140 },
3066 { 0x00, 0x00bb },
3067 { 0x04, 0xb800 },
3068 { 0x04, 0xb000 },
3069
3070 { 0x03, 0xdf41 },
3071 { 0x02, 0xdc60 },
3072 { 0x01, 0x6340 },
3073 { 0x00, 0x007d },
3074 { 0x04, 0xd800 },
3075 { 0x04, 0xd000 },
3076
3077 { 0x03, 0xdf01 },
3078 { 0x02, 0xdf20 },
3079 { 0x01, 0x100a },
3080 { 0x00, 0xa0ff },
3081 { 0x04, 0xf800 },
3082 { 0x04, 0xf000 },
3083
3084 { 0x1f, 0x0000 },
3085 { 0x0b, 0x0000 },
3086 { 0x00, 0x9200 }
3087 };
3088
françois romieu4da19632011-01-03 15:07:55 +00003089 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090}
3091
françois romieu4da19632011-01-03 15:07:55 +00003092static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02003093{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003094 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02003095 { 0x1f, 0x0002 },
3096 { 0x01, 0x90d0 },
3097 { 0x1f, 0x0000 }
3098 };
3099
françois romieu4da19632011-01-03 15:07:55 +00003100 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02003101}
3102
françois romieu4da19632011-01-03 15:07:55 +00003103static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00003104{
3105 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00003106
Sergei Shtylyovccbae552011-07-22 05:37:24 +00003107 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
3108 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00003109 return;
3110
françois romieu4da19632011-01-03 15:07:55 +00003111 rtl_writephy(tp, 0x1f, 0x0001);
3112 rtl_writephy(tp, 0x10, 0xf01b);
3113 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00003114}
3115
françois romieu4da19632011-01-03 15:07:55 +00003116static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00003117{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003118 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00003119 { 0x1f, 0x0001 },
3120 { 0x04, 0x0000 },
3121 { 0x03, 0x00a1 },
3122 { 0x02, 0x0008 },
3123 { 0x01, 0x0120 },
3124 { 0x00, 0x1000 },
3125 { 0x04, 0x0800 },
3126 { 0x04, 0x9000 },
3127 { 0x03, 0x802f },
3128 { 0x02, 0x4f02 },
3129 { 0x01, 0x0409 },
3130 { 0x00, 0xf099 },
3131 { 0x04, 0x9800 },
3132 { 0x04, 0xa000 },
3133 { 0x03, 0xdf01 },
3134 { 0x02, 0xdf20 },
3135 { 0x01, 0xff95 },
3136 { 0x00, 0xba00 },
3137 { 0x04, 0xa800 },
3138 { 0x04, 0xf000 },
3139 { 0x03, 0xdf01 },
3140 { 0x02, 0xdf20 },
3141 { 0x01, 0x101a },
3142 { 0x00, 0xa0ff },
3143 { 0x04, 0xf800 },
3144 { 0x04, 0x0000 },
3145 { 0x1f, 0x0000 },
3146
3147 { 0x1f, 0x0001 },
3148 { 0x10, 0xf41b },
3149 { 0x14, 0xfb54 },
3150 { 0x18, 0xf5c7 },
3151 { 0x1f, 0x0000 },
3152
3153 { 0x1f, 0x0001 },
3154 { 0x17, 0x0cc0 },
3155 { 0x1f, 0x0000 }
3156 };
3157
françois romieu4da19632011-01-03 15:07:55 +00003158 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00003159
françois romieu4da19632011-01-03 15:07:55 +00003160 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00003161}
3162
françois romieu4da19632011-01-03 15:07:55 +00003163static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00003164{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003165 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00003166 { 0x1f, 0x0001 },
3167 { 0x04, 0x0000 },
3168 { 0x03, 0x00a1 },
3169 { 0x02, 0x0008 },
3170 { 0x01, 0x0120 },
3171 { 0x00, 0x1000 },
3172 { 0x04, 0x0800 },
3173 { 0x04, 0x9000 },
3174 { 0x03, 0x802f },
3175 { 0x02, 0x4f02 },
3176 { 0x01, 0x0409 },
3177 { 0x00, 0xf099 },
3178 { 0x04, 0x9800 },
3179 { 0x04, 0xa000 },
3180 { 0x03, 0xdf01 },
3181 { 0x02, 0xdf20 },
3182 { 0x01, 0xff95 },
3183 { 0x00, 0xba00 },
3184 { 0x04, 0xa800 },
3185 { 0x04, 0xf000 },
3186 { 0x03, 0xdf01 },
3187 { 0x02, 0xdf20 },
3188 { 0x01, 0x101a },
3189 { 0x00, 0xa0ff },
3190 { 0x04, 0xf800 },
3191 { 0x04, 0x0000 },
3192 { 0x1f, 0x0000 },
3193
3194 { 0x1f, 0x0001 },
3195 { 0x0b, 0x8480 },
3196 { 0x1f, 0x0000 },
3197
3198 { 0x1f, 0x0001 },
3199 { 0x18, 0x67c7 },
3200 { 0x04, 0x2000 },
3201 { 0x03, 0x002f },
3202 { 0x02, 0x4360 },
3203 { 0x01, 0x0109 },
3204 { 0x00, 0x3022 },
3205 { 0x04, 0x2800 },
3206 { 0x1f, 0x0000 },
3207
3208 { 0x1f, 0x0001 },
3209 { 0x17, 0x0cc0 },
3210 { 0x1f, 0x0000 }
3211 };
3212
françois romieu4da19632011-01-03 15:07:55 +00003213 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00003214}
3215
françois romieu4da19632011-01-03 15:07:55 +00003216static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02003217{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003218 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02003219 { 0x10, 0xf41b },
3220 { 0x1f, 0x0000 }
3221 };
3222
françois romieu4da19632011-01-03 15:07:55 +00003223 rtl_writephy(tp, 0x1f, 0x0001);
3224 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02003225
françois romieu4da19632011-01-03 15:07:55 +00003226 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02003227}
3228
françois romieu4da19632011-01-03 15:07:55 +00003229static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02003230{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003231 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02003232 { 0x1f, 0x0001 },
3233 { 0x10, 0xf41b },
3234 { 0x1f, 0x0000 }
3235 };
3236
françois romieu4da19632011-01-03 15:07:55 +00003237 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02003238}
3239
françois romieu4da19632011-01-03 15:07:55 +00003240static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02003241{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003242 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02003243 { 0x1f, 0x0000 },
3244 { 0x1d, 0x0f00 },
3245 { 0x1f, 0x0002 },
3246 { 0x0c, 0x1ec8 },
3247 { 0x1f, 0x0000 }
3248 };
3249
françois romieu4da19632011-01-03 15:07:55 +00003250 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02003251}
3252
françois romieu4da19632011-01-03 15:07:55 +00003253static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02003254{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003255 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02003256 { 0x1f, 0x0001 },
3257 { 0x1d, 0x3d98 },
3258 { 0x1f, 0x0000 }
3259 };
3260
françois romieu4da19632011-01-03 15:07:55 +00003261 rtl_writephy(tp, 0x1f, 0x0000);
3262 rtl_patchphy(tp, 0x14, 1 << 5);
3263 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02003264
françois romieu4da19632011-01-03 15:07:55 +00003265 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02003266}
3267
françois romieu4da19632011-01-03 15:07:55 +00003268static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02003269{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003270 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02003271 { 0x1f, 0x0001 },
3272 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02003273 { 0x1f, 0x0002 },
3274 { 0x00, 0x88d4 },
3275 { 0x01, 0x82b1 },
3276 { 0x03, 0x7002 },
3277 { 0x08, 0x9e30 },
3278 { 0x09, 0x01f0 },
3279 { 0x0a, 0x5500 },
3280 { 0x0c, 0x00c8 },
3281 { 0x1f, 0x0003 },
3282 { 0x12, 0xc096 },
3283 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02003284 { 0x1f, 0x0000 },
3285 { 0x1f, 0x0000 },
3286 { 0x09, 0x2000 },
3287 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02003288 };
3289
françois romieu4da19632011-01-03 15:07:55 +00003290 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003291
françois romieu4da19632011-01-03 15:07:55 +00003292 rtl_patchphy(tp, 0x14, 1 << 5);
3293 rtl_patchphy(tp, 0x0d, 1 << 5);
3294 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02003295}
3296
françois romieu4da19632011-01-03 15:07:55 +00003297static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02003298{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003299 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02003300 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003301 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003302 { 0x03, 0x802f },
3303 { 0x02, 0x4f02 },
3304 { 0x01, 0x0409 },
3305 { 0x00, 0xf099 },
3306 { 0x04, 0x9800 },
3307 { 0x04, 0x9000 },
3308 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003309 { 0x1f, 0x0002 },
3310 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003311 { 0x06, 0x0761 },
3312 { 0x1f, 0x0003 },
3313 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003314 { 0x1f, 0x0000 }
3315 };
3316
françois romieu4da19632011-01-03 15:07:55 +00003317 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003318
françois romieu4da19632011-01-03 15:07:55 +00003319 rtl_patchphy(tp, 0x16, 1 << 0);
3320 rtl_patchphy(tp, 0x14, 1 << 5);
3321 rtl_patchphy(tp, 0x0d, 1 << 5);
3322 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003323}
3324
françois romieu4da19632011-01-03 15:07:55 +00003325static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02003326{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003327 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02003328 { 0x1f, 0x0001 },
3329 { 0x12, 0x2300 },
3330 { 0x1d, 0x3d98 },
3331 { 0x1f, 0x0002 },
3332 { 0x0c, 0x7eb8 },
3333 { 0x06, 0x5461 },
3334 { 0x1f, 0x0003 },
3335 { 0x16, 0x0f0a },
3336 { 0x1f, 0x0000 }
3337 };
3338
françois romieu4da19632011-01-03 15:07:55 +00003339 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02003340
françois romieu4da19632011-01-03 15:07:55 +00003341 rtl_patchphy(tp, 0x16, 1 << 0);
3342 rtl_patchphy(tp, 0x14, 1 << 5);
3343 rtl_patchphy(tp, 0x0d, 1 << 5);
3344 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02003345}
3346
françois romieu4da19632011-01-03 15:07:55 +00003347static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02003348{
françois romieu4da19632011-01-03 15:07:55 +00003349 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003350}
3351
françois romieubca03d52011-01-03 15:07:31 +00003352static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02003353{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003354 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003355 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02003356 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00003357 { 0x06, 0x4064 },
3358 { 0x07, 0x2863 },
3359 { 0x08, 0x059c },
3360 { 0x09, 0x26b4 },
3361 { 0x0a, 0x6a19 },
3362 { 0x0b, 0xdcc8 },
3363 { 0x10, 0xf06d },
3364 { 0x14, 0x7f68 },
3365 { 0x18, 0x7fd9 },
3366 { 0x1c, 0xf0ff },
3367 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02003368 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00003369 { 0x12, 0xf49f },
3370 { 0x13, 0x070b },
3371 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00003372 { 0x14, 0x94c0 },
3373
3374 /*
3375 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003376 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003377 */
Francois Romieu5b538df2008-07-20 16:22:45 +02003378 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00003379 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003380 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003381 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003382 { 0x06, 0x5561 },
3383
3384 /*
3385 * Can not link to 1Gbps with bad cable
3386 * Decrease SNR threshold form 21.07dB to 19.04dB
3387 */
3388 { 0x1f, 0x0001 },
3389 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003390
3391 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003392 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003393 };
3394
françois romieu4da19632011-01-03 15:07:55 +00003395 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02003396
françois romieubca03d52011-01-03 15:07:31 +00003397 /*
3398 * Rx Error Issue
3399 * Fine Tune Switching regulator parameter
3400 */
françois romieu4da19632011-01-03 15:07:55 +00003401 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003402 rtl_w0w1_phy(tp, 0x0b, 0x0010, 0x00ef);
3403 rtl_w0w1_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00003404
Francois Romieufdf6fc02012-07-06 22:40:38 +02003405 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003406 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003407 { 0x1f, 0x0002 },
3408 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02003409 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003410 { 0x05, 0x8330 },
3411 { 0x06, 0x669a },
3412 { 0x1f, 0x0002 }
3413 };
3414 int val;
3415
françois romieu4da19632011-01-03 15:07:55 +00003416 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003417
françois romieu4da19632011-01-03 15:07:55 +00003418 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003419
3420 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003421 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003422 0x0065, 0x0066, 0x0067, 0x0068,
3423 0x0069, 0x006a, 0x006b, 0x006c
3424 };
3425 int i;
3426
françois romieu4da19632011-01-03 15:07:55 +00003427 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003428
3429 val &= 0xff00;
3430 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003431 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003432 }
3433 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003434 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003435 { 0x1f, 0x0002 },
3436 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003437 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003438 { 0x05, 0x8330 },
3439 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003440 };
3441
françois romieu4da19632011-01-03 15:07:55 +00003442 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003443 }
3444
françois romieubca03d52011-01-03 15:07:31 +00003445 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00003446 rtl_writephy(tp, 0x1f, 0x0002);
3447 rtl_patchphy(tp, 0x0d, 0x0300);
3448 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00003449
françois romieubca03d52011-01-03 15:07:31 +00003450 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003451 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003452 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3453 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003454
françois romieu4da19632011-01-03 15:07:55 +00003455 rtl_writephy(tp, 0x1f, 0x0005);
3456 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003457
3458 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00003459
françois romieu4da19632011-01-03 15:07:55 +00003460 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003461}
3462
françois romieubca03d52011-01-03 15:07:31 +00003463static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003464{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003465 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003466 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00003467 { 0x1f, 0x0001 },
3468 { 0x06, 0x4064 },
3469 { 0x07, 0x2863 },
3470 { 0x08, 0x059c },
3471 { 0x09, 0x26b4 },
3472 { 0x0a, 0x6a19 },
3473 { 0x0b, 0xdcc8 },
3474 { 0x10, 0xf06d },
3475 { 0x14, 0x7f68 },
3476 { 0x18, 0x7fd9 },
3477 { 0x1c, 0xf0ff },
3478 { 0x1d, 0x3d9c },
3479 { 0x1f, 0x0003 },
3480 { 0x12, 0xf49f },
3481 { 0x13, 0x070b },
3482 { 0x1a, 0x05ad },
3483 { 0x14, 0x94c0 },
3484
françois romieubca03d52011-01-03 15:07:31 +00003485 /*
3486 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003487 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003488 */
françois romieudaf9df62009-10-07 12:44:20 +00003489 { 0x1f, 0x0002 },
3490 { 0x06, 0x5561 },
3491 { 0x1f, 0x0005 },
3492 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003493 { 0x06, 0x5561 },
3494
3495 /*
3496 * Can not link to 1Gbps with bad cable
3497 * Decrease SNR threshold form 21.07dB to 19.04dB
3498 */
3499 { 0x1f, 0x0001 },
3500 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003501
3502 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003503 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00003504 };
3505
françois romieu4da19632011-01-03 15:07:55 +00003506 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00003507
Francois Romieufdf6fc02012-07-06 22:40:38 +02003508 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003509 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003510 { 0x1f, 0x0002 },
3511 { 0x05, 0x669a },
3512 { 0x1f, 0x0005 },
3513 { 0x05, 0x8330 },
3514 { 0x06, 0x669a },
3515
3516 { 0x1f, 0x0002 }
3517 };
3518 int val;
3519
françois romieu4da19632011-01-03 15:07:55 +00003520 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003521
françois romieu4da19632011-01-03 15:07:55 +00003522 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003523 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08003524 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003525 0x0065, 0x0066, 0x0067, 0x0068,
3526 0x0069, 0x006a, 0x006b, 0x006c
3527 };
3528 int i;
3529
françois romieu4da19632011-01-03 15:07:55 +00003530 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003531
3532 val &= 0xff00;
3533 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003534 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003535 }
3536 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003537 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003538 { 0x1f, 0x0002 },
3539 { 0x05, 0x2642 },
3540 { 0x1f, 0x0005 },
3541 { 0x05, 0x8330 },
3542 { 0x06, 0x2642 }
3543 };
3544
françois romieu4da19632011-01-03 15:07:55 +00003545 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003546 }
3547
françois romieubca03d52011-01-03 15:07:31 +00003548 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003549 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003550 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3551 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003552
françois romieubca03d52011-01-03 15:07:31 +00003553 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00003554 rtl_writephy(tp, 0x1f, 0x0002);
3555 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00003556
françois romieu4da19632011-01-03 15:07:55 +00003557 rtl_writephy(tp, 0x1f, 0x0005);
3558 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003559
3560 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00003561
françois romieu4da19632011-01-03 15:07:55 +00003562 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003563}
3564
françois romieu4da19632011-01-03 15:07:55 +00003565static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003566{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003567 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003568 { 0x1f, 0x0002 },
3569 { 0x10, 0x0008 },
3570 { 0x0d, 0x006c },
3571
3572 { 0x1f, 0x0000 },
3573 { 0x0d, 0xf880 },
3574
3575 { 0x1f, 0x0001 },
3576 { 0x17, 0x0cc0 },
3577
3578 { 0x1f, 0x0001 },
3579 { 0x0b, 0xa4d8 },
3580 { 0x09, 0x281c },
3581 { 0x07, 0x2883 },
3582 { 0x0a, 0x6b35 },
3583 { 0x1d, 0x3da4 },
3584 { 0x1c, 0xeffd },
3585 { 0x14, 0x7f52 },
3586 { 0x18, 0x7fc6 },
3587 { 0x08, 0x0601 },
3588 { 0x06, 0x4063 },
3589 { 0x10, 0xf074 },
3590 { 0x1f, 0x0003 },
3591 { 0x13, 0x0789 },
3592 { 0x12, 0xf4bd },
3593 { 0x1a, 0x04fd },
3594 { 0x14, 0x84b0 },
3595 { 0x1f, 0x0000 },
3596 { 0x00, 0x9200 },
3597
3598 { 0x1f, 0x0005 },
3599 { 0x01, 0x0340 },
3600 { 0x1f, 0x0001 },
3601 { 0x04, 0x4000 },
3602 { 0x03, 0x1d21 },
3603 { 0x02, 0x0c32 },
3604 { 0x01, 0x0200 },
3605 { 0x00, 0x5554 },
3606 { 0x04, 0x4800 },
3607 { 0x04, 0x4000 },
3608 { 0x04, 0xf000 },
3609 { 0x03, 0xdf01 },
3610 { 0x02, 0xdf20 },
3611 { 0x01, 0x101a },
3612 { 0x00, 0xa0ff },
3613 { 0x04, 0xf800 },
3614 { 0x04, 0xf000 },
3615 { 0x1f, 0x0000 },
3616
3617 { 0x1f, 0x0007 },
3618 { 0x1e, 0x0023 },
3619 { 0x16, 0x0000 },
3620 { 0x1f, 0x0000 }
3621 };
3622
françois romieu4da19632011-01-03 15:07:55 +00003623 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003624}
3625
françois romieue6de30d2011-01-03 15:08:37 +00003626static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
3627{
3628 static const struct phy_reg phy_reg_init[] = {
3629 { 0x1f, 0x0001 },
3630 { 0x17, 0x0cc0 },
3631
3632 { 0x1f, 0x0007 },
3633 { 0x1e, 0x002d },
3634 { 0x18, 0x0040 },
3635 { 0x1f, 0x0000 }
3636 };
3637
3638 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3639 rtl_patchphy(tp, 0x0d, 1 << 5);
3640}
3641
Hayes Wang70090422011-07-06 15:58:06 +08003642static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00003643{
3644 static const struct phy_reg phy_reg_init[] = {
3645 /* Enable Delay cap */
3646 { 0x1f, 0x0005 },
3647 { 0x05, 0x8b80 },
3648 { 0x06, 0xc896 },
3649 { 0x1f, 0x0000 },
3650
3651 /* Channel estimation fine tune */
3652 { 0x1f, 0x0001 },
3653 { 0x0b, 0x6c20 },
3654 { 0x07, 0x2872 },
3655 { 0x1c, 0xefff },
3656 { 0x1f, 0x0003 },
3657 { 0x14, 0x6420 },
3658 { 0x1f, 0x0000 },
3659
3660 /* Update PFM & 10M TX idle timer */
3661 { 0x1f, 0x0007 },
3662 { 0x1e, 0x002f },
3663 { 0x15, 0x1919 },
3664 { 0x1f, 0x0000 },
3665
3666 { 0x1f, 0x0007 },
3667 { 0x1e, 0x00ac },
3668 { 0x18, 0x0006 },
3669 { 0x1f, 0x0000 }
3670 };
3671
Francois Romieu15ecd032011-04-27 13:52:22 -07003672 rtl_apply_firmware(tp);
3673
hayeswang01dc7fe2011-03-21 01:50:28 +00003674 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3675
3676 /* DCO enable for 10M IDLE Power */
3677 rtl_writephy(tp, 0x1f, 0x0007);
3678 rtl_writephy(tp, 0x1e, 0x0023);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003679 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003680 rtl_writephy(tp, 0x1f, 0x0000);
3681
3682 /* For impedance matching */
3683 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003684 rtl_w0w1_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003685 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003686
3687 /* PHY auto speed down */
3688 rtl_writephy(tp, 0x1f, 0x0007);
3689 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003690 rtl_w0w1_phy(tp, 0x18, 0x0050, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003691 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003692 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003693
3694 rtl_writephy(tp, 0x1f, 0x0005);
3695 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003696 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003697 rtl_writephy(tp, 0x1f, 0x0000);
3698
3699 rtl_writephy(tp, 0x1f, 0x0005);
3700 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003701 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003702 rtl_writephy(tp, 0x1f, 0x0007);
3703 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003704 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x1100);
hayeswang01dc7fe2011-03-21 01:50:28 +00003705 rtl_writephy(tp, 0x1f, 0x0006);
3706 rtl_writephy(tp, 0x00, 0x5a00);
3707 rtl_writephy(tp, 0x1f, 0x0000);
3708 rtl_writephy(tp, 0x0d, 0x0007);
3709 rtl_writephy(tp, 0x0e, 0x003c);
3710 rtl_writephy(tp, 0x0d, 0x4007);
3711 rtl_writephy(tp, 0x0e, 0x0000);
3712 rtl_writephy(tp, 0x0d, 0x0000);
3713}
3714
françois romieu9ecb9aa2012-12-07 11:20:21 +00003715static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3716{
3717 const u16 w[] = {
3718 addr[0] | (addr[1] << 8),
3719 addr[2] | (addr[3] << 8),
3720 addr[4] | (addr[5] << 8)
3721 };
3722 const struct exgmac_reg e[] = {
3723 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3724 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3725 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3726 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3727 };
3728
3729 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3730}
3731
Hayes Wang70090422011-07-06 15:58:06 +08003732static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3733{
3734 static const struct phy_reg phy_reg_init[] = {
3735 /* Enable Delay cap */
3736 { 0x1f, 0x0004 },
3737 { 0x1f, 0x0007 },
3738 { 0x1e, 0x00ac },
3739 { 0x18, 0x0006 },
3740 { 0x1f, 0x0002 },
3741 { 0x1f, 0x0000 },
3742 { 0x1f, 0x0000 },
3743
3744 /* Channel estimation fine tune */
3745 { 0x1f, 0x0003 },
3746 { 0x09, 0xa20f },
3747 { 0x1f, 0x0000 },
3748 { 0x1f, 0x0000 },
3749
3750 /* Green Setting */
3751 { 0x1f, 0x0005 },
3752 { 0x05, 0x8b5b },
3753 { 0x06, 0x9222 },
3754 { 0x05, 0x8b6d },
3755 { 0x06, 0x8000 },
3756 { 0x05, 0x8b76 },
3757 { 0x06, 0x8000 },
3758 { 0x1f, 0x0000 }
3759 };
3760
3761 rtl_apply_firmware(tp);
3762
3763 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3764
3765 /* For 4-corner performance improve */
3766 rtl_writephy(tp, 0x1f, 0x0005);
3767 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003768 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003769 rtl_writephy(tp, 0x1f, 0x0000);
3770
3771 /* PHY auto speed down */
3772 rtl_writephy(tp, 0x1f, 0x0004);
3773 rtl_writephy(tp, 0x1f, 0x0007);
3774 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003775 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003776 rtl_writephy(tp, 0x1f, 0x0002);
3777 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003778 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003779
3780 /* improve 10M EEE waveform */
3781 rtl_writephy(tp, 0x1f, 0x0005);
3782 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003783 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003784 rtl_writephy(tp, 0x1f, 0x0000);
3785
3786 /* Improve 2-pair detection performance */
3787 rtl_writephy(tp, 0x1f, 0x0005);
3788 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003789 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003790 rtl_writephy(tp, 0x1f, 0x0000);
3791
3792 /* EEE setting */
Heiner Kallweit1814d6a2017-11-19 11:09:58 +01003793 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0003, 0x0000, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08003794 rtl_writephy(tp, 0x1f, 0x0005);
3795 rtl_writephy(tp, 0x05, 0x8b85);
Heiner Kallweit1814d6a2017-11-19 11:09:58 +01003796 rtl_w0w1_phy(tp, 0x06, 0x2000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003797 rtl_writephy(tp, 0x1f, 0x0004);
3798 rtl_writephy(tp, 0x1f, 0x0007);
3799 rtl_writephy(tp, 0x1e, 0x0020);
Heiner Kallweit1814d6a2017-11-19 11:09:58 +01003800 rtl_w0w1_phy(tp, 0x15, 0x0100, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003801 rtl_writephy(tp, 0x1f, 0x0002);
3802 rtl_writephy(tp, 0x1f, 0x0000);
3803 rtl_writephy(tp, 0x0d, 0x0007);
3804 rtl_writephy(tp, 0x0e, 0x003c);
3805 rtl_writephy(tp, 0x0d, 0x4007);
Heiner Kallweit1814d6a2017-11-19 11:09:58 +01003806 rtl_writephy(tp, 0x0e, 0x0006);
Hayes Wang70090422011-07-06 15:58:06 +08003807 rtl_writephy(tp, 0x0d, 0x0000);
3808
3809 /* Green feature */
3810 rtl_writephy(tp, 0x1f, 0x0003);
Heiner Kallweit1814d6a2017-11-19 11:09:58 +01003811 rtl_w0w1_phy(tp, 0x19, 0x0001, 0x0000);
3812 rtl_w0w1_phy(tp, 0x10, 0x0400, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003813 rtl_writephy(tp, 0x1f, 0x0000);
Heiner Kallweitb399a392017-11-19 11:15:46 +01003814 rtl_writephy(tp, 0x1f, 0x0005);
3815 rtl_w0w1_phy(tp, 0x01, 0x0100, 0x0000);
3816 rtl_writephy(tp, 0x1f, 0x0000);
3817 /* soft-reset phy */
3818 rtl_writephy(tp, MII_BMCR, BMCR_RESET | BMCR_ANENABLE | BMCR_ANRESTART);
hayeswange0c07552012-10-23 20:24:03 +00003819
françois romieu9ecb9aa2012-12-07 11:20:21 +00003820 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3821 rtl_rar_exgmac_set(tp, tp->dev->dev_addr);
Hayes Wang70090422011-07-06 15:58:06 +08003822}
3823
Hayes Wang5f886e02012-03-30 14:33:03 +08003824static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3825{
3826 /* For 4-corner performance improve */
3827 rtl_writephy(tp, 0x1f, 0x0005);
3828 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003829 rtl_w0w1_phy(tp, 0x06, 0x0006, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003830 rtl_writephy(tp, 0x1f, 0x0000);
3831
3832 /* PHY auto speed down */
3833 rtl_writephy(tp, 0x1f, 0x0007);
3834 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003835 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003836 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003837 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003838
3839 /* Improve 10M EEE waveform */
3840 rtl_writephy(tp, 0x1f, 0x0005);
3841 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003842 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003843 rtl_writephy(tp, 0x1f, 0x0000);
3844}
3845
Hayes Wangc2218922011-09-06 16:55:18 +08003846static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3847{
3848 static const struct phy_reg phy_reg_init[] = {
3849 /* Channel estimation fine tune */
3850 { 0x1f, 0x0003 },
3851 { 0x09, 0xa20f },
3852 { 0x1f, 0x0000 },
3853
3854 /* Modify green table for giga & fnet */
3855 { 0x1f, 0x0005 },
3856 { 0x05, 0x8b55 },
3857 { 0x06, 0x0000 },
3858 { 0x05, 0x8b5e },
3859 { 0x06, 0x0000 },
3860 { 0x05, 0x8b67 },
3861 { 0x06, 0x0000 },
3862 { 0x05, 0x8b70 },
3863 { 0x06, 0x0000 },
3864 { 0x1f, 0x0000 },
3865 { 0x1f, 0x0007 },
3866 { 0x1e, 0x0078 },
3867 { 0x17, 0x0000 },
3868 { 0x19, 0x00fb },
3869 { 0x1f, 0x0000 },
3870
3871 /* Modify green table for 10M */
3872 { 0x1f, 0x0005 },
3873 { 0x05, 0x8b79 },
3874 { 0x06, 0xaa00 },
3875 { 0x1f, 0x0000 },
3876
3877 /* Disable hiimpedance detection (RTCT) */
3878 { 0x1f, 0x0003 },
3879 { 0x01, 0x328a },
3880 { 0x1f, 0x0000 }
3881 };
3882
3883 rtl_apply_firmware(tp);
3884
3885 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3886
Hayes Wang5f886e02012-03-30 14:33:03 +08003887 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003888
3889 /* Improve 2-pair detection performance */
3890 rtl_writephy(tp, 0x1f, 0x0005);
3891 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003892 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangc2218922011-09-06 16:55:18 +08003893 rtl_writephy(tp, 0x1f, 0x0000);
3894}
3895
3896static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3897{
3898 rtl_apply_firmware(tp);
3899
Hayes Wang5f886e02012-03-30 14:33:03 +08003900 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003901}
3902
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003903static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3904{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003905 static const struct phy_reg phy_reg_init[] = {
3906 /* Channel estimation fine tune */
3907 { 0x1f, 0x0003 },
3908 { 0x09, 0xa20f },
3909 { 0x1f, 0x0000 },
3910
3911 /* Modify green table for giga & fnet */
3912 { 0x1f, 0x0005 },
3913 { 0x05, 0x8b55 },
3914 { 0x06, 0x0000 },
3915 { 0x05, 0x8b5e },
3916 { 0x06, 0x0000 },
3917 { 0x05, 0x8b67 },
3918 { 0x06, 0x0000 },
3919 { 0x05, 0x8b70 },
3920 { 0x06, 0x0000 },
3921 { 0x1f, 0x0000 },
3922 { 0x1f, 0x0007 },
3923 { 0x1e, 0x0078 },
3924 { 0x17, 0x0000 },
3925 { 0x19, 0x00aa },
3926 { 0x1f, 0x0000 },
3927
3928 /* Modify green table for 10M */
3929 { 0x1f, 0x0005 },
3930 { 0x05, 0x8b79 },
3931 { 0x06, 0xaa00 },
3932 { 0x1f, 0x0000 },
3933
3934 /* Disable hiimpedance detection (RTCT) */
3935 { 0x1f, 0x0003 },
3936 { 0x01, 0x328a },
3937 { 0x1f, 0x0000 }
3938 };
3939
3940
3941 rtl_apply_firmware(tp);
3942
3943 rtl8168f_hw_phy_config(tp);
3944
3945 /* Improve 2-pair detection performance */
3946 rtl_writephy(tp, 0x1f, 0x0005);
3947 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003948 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003949 rtl_writephy(tp, 0x1f, 0x0000);
3950
3951 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3952
3953 /* Modify green table for giga */
3954 rtl_writephy(tp, 0x1f, 0x0005);
3955 rtl_writephy(tp, 0x05, 0x8b54);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003956 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003957 rtl_writephy(tp, 0x05, 0x8b5d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003958 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003959 rtl_writephy(tp, 0x05, 0x8a7c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003960 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003961 rtl_writephy(tp, 0x05, 0x8a7f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003962 rtl_w0w1_phy(tp, 0x06, 0x0100, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003963 rtl_writephy(tp, 0x05, 0x8a82);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003964 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003965 rtl_writephy(tp, 0x05, 0x8a85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003966 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003967 rtl_writephy(tp, 0x05, 0x8a88);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003968 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003969 rtl_writephy(tp, 0x1f, 0x0000);
3970
3971 /* uc same-seed solution */
3972 rtl_writephy(tp, 0x1f, 0x0005);
3973 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003974 rtl_w0w1_phy(tp, 0x06, 0x8000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003975 rtl_writephy(tp, 0x1f, 0x0000);
3976
3977 /* eee setting */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08003978 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003979 rtl_writephy(tp, 0x1f, 0x0005);
3980 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003981 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003982 rtl_writephy(tp, 0x1f, 0x0004);
3983 rtl_writephy(tp, 0x1f, 0x0007);
3984 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003985 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003986 rtl_writephy(tp, 0x1f, 0x0000);
3987 rtl_writephy(tp, 0x0d, 0x0007);
3988 rtl_writephy(tp, 0x0e, 0x003c);
3989 rtl_writephy(tp, 0x0d, 0x4007);
3990 rtl_writephy(tp, 0x0e, 0x0000);
3991 rtl_writephy(tp, 0x0d, 0x0000);
3992
3993 /* Green feature */
3994 rtl_writephy(tp, 0x1f, 0x0003);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003995 rtl_w0w1_phy(tp, 0x19, 0x0000, 0x0001);
3996 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0400);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003997 rtl_writephy(tp, 0x1f, 0x0000);
3998}
3999
Hayes Wangc5583862012-07-02 17:23:22 +08004000static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp)
4001{
Hayes Wangc5583862012-07-02 17:23:22 +08004002 rtl_apply_firmware(tp);
4003
hayeswang41f44d12013-04-01 22:23:36 +00004004 rtl_writephy(tp, 0x1f, 0x0a46);
4005 if (rtl_readphy(tp, 0x10) & 0x0100) {
4006 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004007 rtl_w0w1_phy(tp, 0x12, 0x0000, 0x8000);
hayeswang41f44d12013-04-01 22:23:36 +00004008 } else {
4009 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004010 rtl_w0w1_phy(tp, 0x12, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00004011 }
Hayes Wangc5583862012-07-02 17:23:22 +08004012
hayeswang41f44d12013-04-01 22:23:36 +00004013 rtl_writephy(tp, 0x1f, 0x0a46);
4014 if (rtl_readphy(tp, 0x13) & 0x0100) {
4015 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004016 rtl_w0w1_phy(tp, 0x15, 0x0002, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00004017 } else {
hayeswangfe7524c2013-04-01 22:23:37 +00004018 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004019 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0002);
hayeswang41f44d12013-04-01 22:23:36 +00004020 }
Hayes Wangc5583862012-07-02 17:23:22 +08004021
hayeswang41f44d12013-04-01 22:23:36 +00004022 /* Enable PHY auto speed down */
4023 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004024 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08004025
hayeswangfe7524c2013-04-01 22:23:37 +00004026 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004027 rtl_w0w1_phy(tp, 0x14, 0x0100, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00004028 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004029 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00004030 rtl_writephy(tp, 0x1f, 0x0a43);
4031 rtl_writephy(tp, 0x13, 0x8084);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004032 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
4033 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00004034
hayeswang41f44d12013-04-01 22:23:36 +00004035 /* EEE auto-fallback function */
4036 rtl_writephy(tp, 0x1f, 0x0a4b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004037 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08004038
hayeswang41f44d12013-04-01 22:23:36 +00004039 /* Enable UC LPF tune function */
4040 rtl_writephy(tp, 0x1f, 0x0a43);
4041 rtl_writephy(tp, 0x13, 0x8012);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004042 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00004043
4044 rtl_writephy(tp, 0x1f, 0x0c42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004045 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
hayeswang41f44d12013-04-01 22:23:36 +00004046
hayeswangfe7524c2013-04-01 22:23:37 +00004047 /* Improve SWR Efficiency */
4048 rtl_writephy(tp, 0x1f, 0x0bcd);
4049 rtl_writephy(tp, 0x14, 0x5065);
4050 rtl_writephy(tp, 0x14, 0xd065);
4051 rtl_writephy(tp, 0x1f, 0x0bc8);
4052 rtl_writephy(tp, 0x11, 0x5655);
4053 rtl_writephy(tp, 0x1f, 0x0bcd);
4054 rtl_writephy(tp, 0x14, 0x1065);
4055 rtl_writephy(tp, 0x14, 0x9065);
4056 rtl_writephy(tp, 0x14, 0x1065);
4057
David Chang1bac1072013-11-27 15:48:36 +08004058 /* Check ALDPS bit, disable it if enabled */
4059 rtl_writephy(tp, 0x1f, 0x0a43);
4060 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08004061 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
David Chang1bac1072013-11-27 15:48:36 +08004062
hayeswang41f44d12013-04-01 22:23:36 +00004063 rtl_writephy(tp, 0x1f, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08004064}
4065
hayeswang57538c42013-04-01 22:23:40 +00004066static void rtl8168g_2_hw_phy_config(struct rtl8169_private *tp)
4067{
4068 rtl_apply_firmware(tp);
4069}
4070
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004071static void rtl8168h_1_hw_phy_config(struct rtl8169_private *tp)
4072{
4073 u16 dout_tapbin;
4074 u32 data;
4075
4076 rtl_apply_firmware(tp);
4077
4078 /* CHN EST parameters adjust - giga master */
4079 rtl_writephy(tp, 0x1f, 0x0a43);
4080 rtl_writephy(tp, 0x13, 0x809b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004081 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004082 rtl_writephy(tp, 0x13, 0x80a2);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004083 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004084 rtl_writephy(tp, 0x13, 0x80a4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004085 rtl_w0w1_phy(tp, 0x14, 0x8500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004086 rtl_writephy(tp, 0x13, 0x809c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004087 rtl_w0w1_phy(tp, 0x14, 0xbd00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004088 rtl_writephy(tp, 0x1f, 0x0000);
4089
4090 /* CHN EST parameters adjust - giga slave */
4091 rtl_writephy(tp, 0x1f, 0x0a43);
4092 rtl_writephy(tp, 0x13, 0x80ad);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004093 rtl_w0w1_phy(tp, 0x14, 0x7000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004094 rtl_writephy(tp, 0x13, 0x80b4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004095 rtl_w0w1_phy(tp, 0x14, 0x5000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004096 rtl_writephy(tp, 0x13, 0x80ac);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004097 rtl_w0w1_phy(tp, 0x14, 0x4000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004098 rtl_writephy(tp, 0x1f, 0x0000);
4099
4100 /* CHN EST parameters adjust - fnet */
4101 rtl_writephy(tp, 0x1f, 0x0a43);
4102 rtl_writephy(tp, 0x13, 0x808e);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004103 rtl_w0w1_phy(tp, 0x14, 0x1200, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004104 rtl_writephy(tp, 0x13, 0x8090);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004105 rtl_w0w1_phy(tp, 0x14, 0xe500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004106 rtl_writephy(tp, 0x13, 0x8092);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004107 rtl_w0w1_phy(tp, 0x14, 0x9f00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004108 rtl_writephy(tp, 0x1f, 0x0000);
4109
4110 /* enable R-tune & PGA-retune function */
4111 dout_tapbin = 0;
4112 rtl_writephy(tp, 0x1f, 0x0a46);
4113 data = rtl_readphy(tp, 0x13);
4114 data &= 3;
4115 data <<= 2;
4116 dout_tapbin |= data;
4117 data = rtl_readphy(tp, 0x12);
4118 data &= 0xc000;
4119 data >>= 14;
4120 dout_tapbin |= data;
4121 dout_tapbin = ~(dout_tapbin^0x08);
4122 dout_tapbin <<= 12;
4123 dout_tapbin &= 0xf000;
4124 rtl_writephy(tp, 0x1f, 0x0a43);
4125 rtl_writephy(tp, 0x13, 0x827a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004126 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004127 rtl_writephy(tp, 0x13, 0x827b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004128 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004129 rtl_writephy(tp, 0x13, 0x827c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004130 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004131 rtl_writephy(tp, 0x13, 0x827d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004132 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004133
4134 rtl_writephy(tp, 0x1f, 0x0a43);
4135 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004136 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004137 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004138 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004139 rtl_writephy(tp, 0x1f, 0x0000);
4140
4141 /* enable GPHY 10M */
4142 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004143 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004144 rtl_writephy(tp, 0x1f, 0x0000);
4145
4146 /* SAR ADC performance */
4147 rtl_writephy(tp, 0x1f, 0x0bca);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004148 rtl_w0w1_phy(tp, 0x17, 0x4000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004149 rtl_writephy(tp, 0x1f, 0x0000);
4150
4151 rtl_writephy(tp, 0x1f, 0x0a43);
4152 rtl_writephy(tp, 0x13, 0x803f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004153 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004154 rtl_writephy(tp, 0x13, 0x8047);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004155 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004156 rtl_writephy(tp, 0x13, 0x804f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004157 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004158 rtl_writephy(tp, 0x13, 0x8057);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004159 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004160 rtl_writephy(tp, 0x13, 0x805f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004161 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004162 rtl_writephy(tp, 0x13, 0x8067);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004163 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004164 rtl_writephy(tp, 0x13, 0x806f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004165 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004166 rtl_writephy(tp, 0x1f, 0x0000);
4167
4168 /* disable phy pfm mode */
4169 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Linc832c35f2015-12-29 22:13:38 +08004170 rtl_w0w1_phy(tp, 0x11, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004171 rtl_writephy(tp, 0x1f, 0x0000);
4172
4173 /* Check ALDPS bit, disable it if enabled */
4174 rtl_writephy(tp, 0x1f, 0x0a43);
4175 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08004176 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004177
4178 rtl_writephy(tp, 0x1f, 0x0000);
4179}
4180
4181static void rtl8168h_2_hw_phy_config(struct rtl8169_private *tp)
4182{
4183 u16 ioffset_p3, ioffset_p2, ioffset_p1, ioffset_p0;
4184 u16 rlen;
4185 u32 data;
4186
4187 rtl_apply_firmware(tp);
4188
4189 /* CHIN EST parameter update */
4190 rtl_writephy(tp, 0x1f, 0x0a43);
4191 rtl_writephy(tp, 0x13, 0x808a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004192 rtl_w0w1_phy(tp, 0x14, 0x000a, 0x003f);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004193 rtl_writephy(tp, 0x1f, 0x0000);
4194
4195 /* enable R-tune & PGA-retune function */
4196 rtl_writephy(tp, 0x1f, 0x0a43);
4197 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004198 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004199 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004200 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004201 rtl_writephy(tp, 0x1f, 0x0000);
4202
4203 /* enable GPHY 10M */
4204 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08004205 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004206 rtl_writephy(tp, 0x1f, 0x0000);
4207
4208 r8168_mac_ocp_write(tp, 0xdd02, 0x807d);
4209 data = r8168_mac_ocp_read(tp, 0xdd02);
4210 ioffset_p3 = ((data & 0x80)>>7);
4211 ioffset_p3 <<= 3;
4212
4213 data = r8168_mac_ocp_read(tp, 0xdd00);
4214 ioffset_p3 |= ((data & (0xe000))>>13);
4215 ioffset_p2 = ((data & (0x1e00))>>9);
4216 ioffset_p1 = ((data & (0x01e0))>>5);
4217 ioffset_p0 = ((data & 0x0010)>>4);
4218 ioffset_p0 <<= 3;
4219 ioffset_p0 |= (data & (0x07));
4220 data = (ioffset_p3<<12)|(ioffset_p2<<8)|(ioffset_p1<<4)|(ioffset_p0);
4221
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004222 if ((ioffset_p3 != 0x0f) || (ioffset_p2 != 0x0f) ||
Chun-Hao Line2e27882015-12-24 21:15:26 +08004223 (ioffset_p1 != 0x0f) || (ioffset_p0 != 0x0f)) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004224 rtl_writephy(tp, 0x1f, 0x0bcf);
4225 rtl_writephy(tp, 0x16, data);
4226 rtl_writephy(tp, 0x1f, 0x0000);
4227 }
4228
4229 /* Modify rlen (TX LPF corner frequency) level */
4230 rtl_writephy(tp, 0x1f, 0x0bcd);
4231 data = rtl_readphy(tp, 0x16);
4232 data &= 0x000f;
4233 rlen = 0;
4234 if (data > 3)
4235 rlen = data - 3;
4236 data = rlen | (rlen<<4) | (rlen<<8) | (rlen<<12);
4237 rtl_writephy(tp, 0x17, data);
4238 rtl_writephy(tp, 0x1f, 0x0bcd);
4239 rtl_writephy(tp, 0x1f, 0x0000);
4240
4241 /* disable phy pfm mode */
4242 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Linc832c35f2015-12-29 22:13:38 +08004243 rtl_w0w1_phy(tp, 0x11, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004244 rtl_writephy(tp, 0x1f, 0x0000);
4245
4246 /* Check ALDPS bit, disable it if enabled */
4247 rtl_writephy(tp, 0x1f, 0x0a43);
4248 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08004249 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004250
4251 rtl_writephy(tp, 0x1f, 0x0000);
4252}
4253
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004254static void rtl8168ep_1_hw_phy_config(struct rtl8169_private *tp)
4255{
4256 /* Enable PHY auto speed down */
4257 rtl_writephy(tp, 0x1f, 0x0a44);
4258 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
4259 rtl_writephy(tp, 0x1f, 0x0000);
4260
4261 /* patch 10M & ALDPS */
4262 rtl_writephy(tp, 0x1f, 0x0bcc);
4263 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
4264 rtl_writephy(tp, 0x1f, 0x0a44);
4265 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
4266 rtl_writephy(tp, 0x1f, 0x0a43);
4267 rtl_writephy(tp, 0x13, 0x8084);
4268 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
4269 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
4270 rtl_writephy(tp, 0x1f, 0x0000);
4271
4272 /* Enable EEE auto-fallback function */
4273 rtl_writephy(tp, 0x1f, 0x0a4b);
4274 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
4275 rtl_writephy(tp, 0x1f, 0x0000);
4276
4277 /* Enable UC LPF tune function */
4278 rtl_writephy(tp, 0x1f, 0x0a43);
4279 rtl_writephy(tp, 0x13, 0x8012);
4280 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4281 rtl_writephy(tp, 0x1f, 0x0000);
4282
4283 /* set rg_sel_sdm_rate */
4284 rtl_writephy(tp, 0x1f, 0x0c42);
4285 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4286 rtl_writephy(tp, 0x1f, 0x0000);
4287
4288 /* Check ALDPS bit, disable it if enabled */
4289 rtl_writephy(tp, 0x1f, 0x0a43);
4290 if (rtl_readphy(tp, 0x10) & 0x0004)
4291 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4292
4293 rtl_writephy(tp, 0x1f, 0x0000);
4294}
4295
4296static void rtl8168ep_2_hw_phy_config(struct rtl8169_private *tp)
4297{
4298 /* patch 10M & ALDPS */
4299 rtl_writephy(tp, 0x1f, 0x0bcc);
4300 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
4301 rtl_writephy(tp, 0x1f, 0x0a44);
4302 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
4303 rtl_writephy(tp, 0x1f, 0x0a43);
4304 rtl_writephy(tp, 0x13, 0x8084);
4305 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
4306 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
4307 rtl_writephy(tp, 0x1f, 0x0000);
4308
4309 /* Enable UC LPF tune function */
4310 rtl_writephy(tp, 0x1f, 0x0a43);
4311 rtl_writephy(tp, 0x13, 0x8012);
4312 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4313 rtl_writephy(tp, 0x1f, 0x0000);
4314
4315 /* Set rg_sel_sdm_rate */
4316 rtl_writephy(tp, 0x1f, 0x0c42);
4317 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4318 rtl_writephy(tp, 0x1f, 0x0000);
4319
4320 /* Channel estimation parameters */
4321 rtl_writephy(tp, 0x1f, 0x0a43);
4322 rtl_writephy(tp, 0x13, 0x80f3);
4323 rtl_w0w1_phy(tp, 0x14, 0x8b00, ~0x8bff);
4324 rtl_writephy(tp, 0x13, 0x80f0);
4325 rtl_w0w1_phy(tp, 0x14, 0x3a00, ~0x3aff);
4326 rtl_writephy(tp, 0x13, 0x80ef);
4327 rtl_w0w1_phy(tp, 0x14, 0x0500, ~0x05ff);
4328 rtl_writephy(tp, 0x13, 0x80f6);
4329 rtl_w0w1_phy(tp, 0x14, 0x6e00, ~0x6eff);
4330 rtl_writephy(tp, 0x13, 0x80ec);
4331 rtl_w0w1_phy(tp, 0x14, 0x6800, ~0x68ff);
4332 rtl_writephy(tp, 0x13, 0x80ed);
4333 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4334 rtl_writephy(tp, 0x13, 0x80f2);
4335 rtl_w0w1_phy(tp, 0x14, 0xf400, ~0xf4ff);
4336 rtl_writephy(tp, 0x13, 0x80f4);
4337 rtl_w0w1_phy(tp, 0x14, 0x8500, ~0x85ff);
4338 rtl_writephy(tp, 0x1f, 0x0a43);
4339 rtl_writephy(tp, 0x13, 0x8110);
4340 rtl_w0w1_phy(tp, 0x14, 0xa800, ~0xa8ff);
4341 rtl_writephy(tp, 0x13, 0x810f);
4342 rtl_w0w1_phy(tp, 0x14, 0x1d00, ~0x1dff);
4343 rtl_writephy(tp, 0x13, 0x8111);
4344 rtl_w0w1_phy(tp, 0x14, 0xf500, ~0xf5ff);
4345 rtl_writephy(tp, 0x13, 0x8113);
4346 rtl_w0w1_phy(tp, 0x14, 0x6100, ~0x61ff);
4347 rtl_writephy(tp, 0x13, 0x8115);
4348 rtl_w0w1_phy(tp, 0x14, 0x9200, ~0x92ff);
4349 rtl_writephy(tp, 0x13, 0x810e);
4350 rtl_w0w1_phy(tp, 0x14, 0x0400, ~0x04ff);
4351 rtl_writephy(tp, 0x13, 0x810c);
4352 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4353 rtl_writephy(tp, 0x13, 0x810b);
4354 rtl_w0w1_phy(tp, 0x14, 0x5a00, ~0x5aff);
4355 rtl_writephy(tp, 0x1f, 0x0a43);
4356 rtl_writephy(tp, 0x13, 0x80d1);
4357 rtl_w0w1_phy(tp, 0x14, 0xff00, ~0xffff);
4358 rtl_writephy(tp, 0x13, 0x80cd);
4359 rtl_w0w1_phy(tp, 0x14, 0x9e00, ~0x9eff);
4360 rtl_writephy(tp, 0x13, 0x80d3);
4361 rtl_w0w1_phy(tp, 0x14, 0x0e00, ~0x0eff);
4362 rtl_writephy(tp, 0x13, 0x80d5);
4363 rtl_w0w1_phy(tp, 0x14, 0xca00, ~0xcaff);
4364 rtl_writephy(tp, 0x13, 0x80d7);
4365 rtl_w0w1_phy(tp, 0x14, 0x8400, ~0x84ff);
4366
4367 /* Force PWM-mode */
4368 rtl_writephy(tp, 0x1f, 0x0bcd);
4369 rtl_writephy(tp, 0x14, 0x5065);
4370 rtl_writephy(tp, 0x14, 0xd065);
4371 rtl_writephy(tp, 0x1f, 0x0bc8);
4372 rtl_writephy(tp, 0x12, 0x00ed);
4373 rtl_writephy(tp, 0x1f, 0x0bcd);
4374 rtl_writephy(tp, 0x14, 0x1065);
4375 rtl_writephy(tp, 0x14, 0x9065);
4376 rtl_writephy(tp, 0x14, 0x1065);
4377 rtl_writephy(tp, 0x1f, 0x0000);
4378
4379 /* Check ALDPS bit, disable it if enabled */
4380 rtl_writephy(tp, 0x1f, 0x0a43);
4381 if (rtl_readphy(tp, 0x10) & 0x0004)
4382 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4383
4384 rtl_writephy(tp, 0x1f, 0x0000);
4385}
4386
françois romieu4da19632011-01-03 15:07:55 +00004387static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004388{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004389 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004390 { 0x1f, 0x0003 },
4391 { 0x08, 0x441d },
4392 { 0x01, 0x9100 },
4393 { 0x1f, 0x0000 }
4394 };
4395
françois romieu4da19632011-01-03 15:07:55 +00004396 rtl_writephy(tp, 0x1f, 0x0000);
4397 rtl_patchphy(tp, 0x11, 1 << 12);
4398 rtl_patchphy(tp, 0x19, 1 << 13);
4399 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004400
françois romieu4da19632011-01-03 15:07:55 +00004401 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02004402}
4403
Hayes Wang5a5e4442011-02-22 17:26:21 +08004404static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
4405{
4406 static const struct phy_reg phy_reg_init[] = {
4407 { 0x1f, 0x0005 },
4408 { 0x1a, 0x0000 },
4409 { 0x1f, 0x0000 },
4410
4411 { 0x1f, 0x0004 },
4412 { 0x1c, 0x0000 },
4413 { 0x1f, 0x0000 },
4414
4415 { 0x1f, 0x0001 },
4416 { 0x15, 0x7701 },
4417 { 0x1f, 0x0000 }
4418 };
4419
4420 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004421 rtl_writephy(tp, 0x1f, 0x0000);
4422 rtl_writephy(tp, 0x18, 0x0310);
4423 msleep(100);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004424
François Romieu953a12c2011-04-24 17:38:48 +02004425 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004426
4427 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4428}
4429
Hayes Wang7e18dca2012-03-30 14:33:02 +08004430static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
4431{
Hayes Wang7e18dca2012-03-30 14:33:02 +08004432 /* Disable ALDPS before setting firmware */
Francois Romieueef63cc2013-02-08 23:43:20 +01004433 rtl_writephy(tp, 0x1f, 0x0000);
4434 rtl_writephy(tp, 0x18, 0x0310);
4435 msleep(20);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004436
4437 rtl_apply_firmware(tp);
4438
4439 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02004440 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004441 rtl_writephy(tp, 0x1f, 0x0004);
4442 rtl_writephy(tp, 0x10, 0x401f);
4443 rtl_writephy(tp, 0x19, 0x7030);
4444 rtl_writephy(tp, 0x1f, 0x0000);
4445}
4446
Hayes Wang5598bfe2012-07-02 17:23:21 +08004447static void rtl8106e_hw_phy_config(struct rtl8169_private *tp)
4448{
Hayes Wang5598bfe2012-07-02 17:23:21 +08004449 static const struct phy_reg phy_reg_init[] = {
4450 { 0x1f, 0x0004 },
4451 { 0x10, 0xc07f },
4452 { 0x19, 0x7030 },
4453 { 0x1f, 0x0000 }
4454 };
4455
4456 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004457 rtl_writephy(tp, 0x1f, 0x0000);
4458 rtl_writephy(tp, 0x18, 0x0310);
4459 msleep(100);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004460
4461 rtl_apply_firmware(tp);
4462
Francois Romieufdf6fc02012-07-06 22:40:38 +02004463 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004464 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4465
Francois Romieufdf6fc02012-07-06 22:40:38 +02004466 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004467}
4468
Francois Romieu5615d9f2007-08-17 17:50:46 +02004469static void rtl_hw_phy_config(struct net_device *dev)
4470{
4471 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004472
4473 rtl8169_print_mac_version(tp);
4474
4475 switch (tp->mac_version) {
4476 case RTL_GIGA_MAC_VER_01:
4477 break;
4478 case RTL_GIGA_MAC_VER_02:
4479 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00004480 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004481 break;
4482 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00004483 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004484 break;
françois romieu2e9558562009-08-10 19:44:19 +00004485 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00004486 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00004487 break;
françois romieu8c7006a2009-08-10 19:43:29 +00004488 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00004489 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00004490 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02004491 case RTL_GIGA_MAC_VER_07:
4492 case RTL_GIGA_MAC_VER_08:
4493 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00004494 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004495 break;
Francois Romieu236b8082008-05-30 16:11:48 +02004496 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00004497 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004498 break;
4499 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00004500 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004501 break;
4502 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00004503 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004504 break;
Francois Romieu867763c2007-08-17 18:21:58 +02004505 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00004506 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004507 break;
4508 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00004509 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004510 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02004511 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00004512 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02004513 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004514 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00004515 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02004516 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004517 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00004518 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004519 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004520 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004521 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00004522 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004523 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004524 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00004525 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004526 break;
4527 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00004528 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004529 break;
4530 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00004531 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02004532 break;
françois romieue6de30d2011-01-03 15:08:37 +00004533 case RTL_GIGA_MAC_VER_28:
4534 rtl8168d_4_hw_phy_config(tp);
4535 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004536 case RTL_GIGA_MAC_VER_29:
4537 case RTL_GIGA_MAC_VER_30:
4538 rtl8105e_hw_phy_config(tp);
4539 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004540 case RTL_GIGA_MAC_VER_31:
4541 /* None. */
4542 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00004543 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00004544 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004545 rtl8168e_1_hw_phy_config(tp);
4546 break;
4547 case RTL_GIGA_MAC_VER_34:
4548 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00004549 break;
Hayes Wangc2218922011-09-06 16:55:18 +08004550 case RTL_GIGA_MAC_VER_35:
4551 rtl8168f_1_hw_phy_config(tp);
4552 break;
4553 case RTL_GIGA_MAC_VER_36:
4554 rtl8168f_2_hw_phy_config(tp);
4555 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004556
Hayes Wang7e18dca2012-03-30 14:33:02 +08004557 case RTL_GIGA_MAC_VER_37:
4558 rtl8402_hw_phy_config(tp);
4559 break;
4560
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004561 case RTL_GIGA_MAC_VER_38:
4562 rtl8411_hw_phy_config(tp);
4563 break;
4564
Hayes Wang5598bfe2012-07-02 17:23:21 +08004565 case RTL_GIGA_MAC_VER_39:
4566 rtl8106e_hw_phy_config(tp);
4567 break;
4568
Hayes Wangc5583862012-07-02 17:23:22 +08004569 case RTL_GIGA_MAC_VER_40:
4570 rtl8168g_1_hw_phy_config(tp);
4571 break;
hayeswang57538c42013-04-01 22:23:40 +00004572 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004573 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004574 case RTL_GIGA_MAC_VER_44:
hayeswang57538c42013-04-01 22:23:40 +00004575 rtl8168g_2_hw_phy_config(tp);
4576 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004577 case RTL_GIGA_MAC_VER_45:
4578 case RTL_GIGA_MAC_VER_47:
4579 rtl8168h_1_hw_phy_config(tp);
4580 break;
4581 case RTL_GIGA_MAC_VER_46:
4582 case RTL_GIGA_MAC_VER_48:
4583 rtl8168h_2_hw_phy_config(tp);
4584 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004585
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004586 case RTL_GIGA_MAC_VER_49:
4587 rtl8168ep_1_hw_phy_config(tp);
4588 break;
4589 case RTL_GIGA_MAC_VER_50:
4590 case RTL_GIGA_MAC_VER_51:
4591 rtl8168ep_2_hw_phy_config(tp);
4592 break;
4593
Hayes Wangc5583862012-07-02 17:23:22 +08004594 case RTL_GIGA_MAC_VER_41:
Francois Romieu5615d9f2007-08-17 17:50:46 +02004595 default:
4596 break;
4597 }
4598}
4599
Francois Romieuda78dbf2012-01-26 14:18:23 +01004600static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 struct timer_list *timer = &tp->timer;
4603 void __iomem *ioaddr = tp->mmio_addr;
4604 unsigned long timeout = RTL8169_PHY_TIMEOUT;
4605
Francois Romieubcf0bf92006-07-26 23:14:13 +02004606 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
françois romieu4da19632011-01-03 15:07:55 +00004608 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02004609 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 * A busy loop could burn quite a few cycles on nowadays CPU.
4611 * Let's delay the execution of the timer for a few ticks.
4612 */
4613 timeout = HZ/10;
4614 goto out_mod_timer;
4615 }
4616
4617 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01004618 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619
Lekensteyn9bb8eeb2013-08-02 10:36:55 +02004620 netif_dbg(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
françois romieu4da19632011-01-03 15:07:55 +00004622 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623
4624out_mod_timer:
4625 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004626}
4627
4628static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
4629{
Francois Romieuda78dbf2012-01-26 14:18:23 +01004630 if (!test_and_set_bit(flag, tp->wk.flags))
4631 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004632}
4633
Kees Cook9de36cc2017-10-25 03:53:12 -07004634static void rtl8169_phy_timer(struct timer_list *t)
Francois Romieuda78dbf2012-01-26 14:18:23 +01004635{
Kees Cook9de36cc2017-10-25 03:53:12 -07004636 struct rtl8169_private *tp = from_timer(tp, t, timer);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004637
Francois Romieu98ddf982012-01-31 10:47:34 +01004638 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639}
4640
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
4642 void __iomem *ioaddr)
4643{
4644 iounmap(ioaddr);
4645 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00004646 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 pci_disable_device(pdev);
4648 free_netdev(dev);
4649}
4650
Francois Romieuffc46952012-07-06 14:19:23 +02004651DECLARE_RTL_COND(rtl_phy_reset_cond)
4652{
4653 return tp->phy_reset_pending(tp);
4654}
4655
Francois Romieubf793292006-11-01 00:53:05 +01004656static void rtl8169_phy_reset(struct net_device *dev,
4657 struct rtl8169_private *tp)
4658{
françois romieu4da19632011-01-03 15:07:55 +00004659 tp->phy_reset_enable(tp);
Francois Romieuffc46952012-07-06 14:19:23 +02004660 rtl_msleep_loop_wait_low(tp, &rtl_phy_reset_cond, 1, 100);
Francois Romieubf793292006-11-01 00:53:05 +01004661}
4662
David S. Miller8decf862011-09-22 03:23:13 -04004663static bool rtl_tbi_enabled(struct rtl8169_private *tp)
4664{
4665 void __iomem *ioaddr = tp->mmio_addr;
4666
4667 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
4668 (RTL_R8(PHYstatus) & TBI_Enable);
4669}
4670
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004671static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004673 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004674
Francois Romieu5615d9f2007-08-17 17:50:46 +02004675 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004676
Marcus Sundberg773328942008-07-10 21:28:08 +02004677 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
4678 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4679 RTL_W8(0x82, 0x01);
4680 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004681
Francois Romieu6dccd162007-02-13 23:38:05 +01004682 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
4683
4684 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
4685 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004686
Francois Romieubcf0bf92006-07-26 23:14:13 +02004687 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004688 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4689 RTL_W8(0x82, 0x01);
4690 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00004691 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004692 }
4693
Francois Romieubf793292006-11-01 00:53:05 +01004694 rtl8169_phy_reset(dev, tp);
4695
Oliver Neukum54405cd2011-01-06 21:55:13 +01004696 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02004697 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4698 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4699 (tp->mii.supports_gmii ?
4700 ADVERTISED_1000baseT_Half |
4701 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004702
David S. Miller8decf862011-09-22 03:23:13 -04004703 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00004704 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004705}
4706
Francois Romieu773d2022007-01-31 23:47:43 +01004707static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
4708{
4709 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu773d2022007-01-31 23:47:43 +01004710
Francois Romieuda78dbf2012-01-26 14:18:23 +01004711 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004712
4713 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2bf2010-04-26 11:42:58 +00004714
françois romieu9ecb9aa2012-12-07 11:20:21 +00004715 RTL_W32(MAC4, addr[4] | addr[5] << 8);
françois romieu908ba2bf2010-04-26 11:42:58 +00004716 RTL_R32(MAC4);
4717
françois romieu9ecb9aa2012-12-07 11:20:21 +00004718 RTL_W32(MAC0, addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
françois romieu908ba2bf2010-04-26 11:42:58 +00004719 RTL_R32(MAC0);
4720
françois romieu9ecb9aa2012-12-07 11:20:21 +00004721 if (tp->mac_version == RTL_GIGA_MAC_VER_34)
4722 rtl_rar_exgmac_set(tp, addr);
françois romieuc28aa382011-08-02 03:53:43 +00004723
Francois Romieu773d2022007-01-31 23:47:43 +01004724 RTL_W8(Cfg9346, Cfg9346_Lock);
4725
Francois Romieuda78dbf2012-01-26 14:18:23 +01004726 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004727}
4728
4729static int rtl_set_mac_address(struct net_device *dev, void *p)
4730{
4731 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Linf51d4a12016-07-29 16:37:56 +08004732 struct device *d = &tp->pci_dev->dev;
Francois Romieu773d2022007-01-31 23:47:43 +01004733 struct sockaddr *addr = p;
4734
4735 if (!is_valid_ether_addr(addr->sa_data))
4736 return -EADDRNOTAVAIL;
4737
4738 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
4739
Chun-Hao Linf51d4a12016-07-29 16:37:56 +08004740 pm_runtime_get_noresume(d);
4741
4742 if (pm_runtime_active(d))
4743 rtl_rar_set(tp, dev->dev_addr);
4744
4745 pm_runtime_put_noidle(d);
Francois Romieu773d2022007-01-31 23:47:43 +01004746
4747 return 0;
4748}
4749
Francois Romieu5f787a12006-08-17 13:02:36 +02004750static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4751{
4752 struct rtl8169_private *tp = netdev_priv(dev);
4753 struct mii_ioctl_data *data = if_mii(ifr);
4754
Francois Romieu8b4ab282008-11-19 22:05:25 -08004755 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
4756}
Francois Romieu5f787a12006-08-17 13:02:36 +02004757
Francois Romieucecb5fd2011-04-01 10:21:07 +02004758static int rtl_xmii_ioctl(struct rtl8169_private *tp,
4759 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08004760{
Francois Romieu5f787a12006-08-17 13:02:36 +02004761 switch (cmd) {
4762 case SIOCGMIIPHY:
4763 data->phy_id = 32; /* Internal PHY */
4764 return 0;
4765
4766 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004767 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02004768 return 0;
4769
4770 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004771 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02004772 return 0;
4773 }
4774 return -EOPNOTSUPP;
4775}
4776
Francois Romieu8b4ab282008-11-19 22:05:25 -08004777static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
4778{
4779 return -EOPNOTSUPP;
4780}
4781
Francois Romieufbac58f2007-10-04 22:51:38 +02004782static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
4783{
4784 if (tp->features & RTL_FEATURE_MSI) {
4785 pci_disable_msi(pdev);
4786 tp->features &= ~RTL_FEATURE_MSI;
4787 }
4788}
4789
Bill Pembertonbaf63292012-12-03 09:23:28 -05004790static void rtl_init_mdio_ops(struct rtl8169_private *tp)
françois romieuc0e45c12011-01-03 15:08:04 +00004791{
4792 struct mdio_ops *ops = &tp->mdio_ops;
4793
4794 switch (tp->mac_version) {
4795 case RTL_GIGA_MAC_VER_27:
4796 ops->write = r8168dp_1_mdio_write;
4797 ops->read = r8168dp_1_mdio_read;
4798 break;
françois romieue6de30d2011-01-03 15:08:37 +00004799 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004800 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00004801 ops->write = r8168dp_2_mdio_write;
4802 ops->read = r8168dp_2_mdio_read;
4803 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004804 case RTL_GIGA_MAC_VER_40:
4805 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004806 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004807 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004808 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004809 case RTL_GIGA_MAC_VER_45:
4810 case RTL_GIGA_MAC_VER_46:
4811 case RTL_GIGA_MAC_VER_47:
4812 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004813 case RTL_GIGA_MAC_VER_49:
4814 case RTL_GIGA_MAC_VER_50:
4815 case RTL_GIGA_MAC_VER_51:
Hayes Wangc5583862012-07-02 17:23:22 +08004816 ops->write = r8168g_mdio_write;
4817 ops->read = r8168g_mdio_read;
4818 break;
françois romieuc0e45c12011-01-03 15:08:04 +00004819 default:
4820 ops->write = r8169_mdio_write;
4821 ops->read = r8169_mdio_read;
4822 break;
4823 }
4824}
4825
hayeswange2409d82013-03-31 17:02:04 +00004826static void rtl_speed_down(struct rtl8169_private *tp)
4827{
4828 u32 adv;
4829 int lpa;
4830
4831 rtl_writephy(tp, 0x1f, 0x0000);
4832 lpa = rtl_readphy(tp, MII_LPA);
4833
4834 if (lpa & (LPA_10HALF | LPA_10FULL))
4835 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full;
4836 else if (lpa & (LPA_100HALF | LPA_100FULL))
4837 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4838 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full;
4839 else
4840 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4841 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4842 (tp->mii.supports_gmii ?
4843 ADVERTISED_1000baseT_Half |
4844 ADVERTISED_1000baseT_Full : 0);
4845
4846 rtl8169_set_speed(tp->dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
4847 adv);
4848}
4849
David S. Miller1805b2f2011-10-24 18:18:09 -04004850static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
4851{
4852 void __iomem *ioaddr = tp->mmio_addr;
4853
4854 switch (tp->mac_version) {
Cyril Bruleboisb00e69d2012-10-31 14:00:46 +00004855 case RTL_GIGA_MAC_VER_25:
4856 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04004857 case RTL_GIGA_MAC_VER_29:
4858 case RTL_GIGA_MAC_VER_30:
4859 case RTL_GIGA_MAC_VER_32:
4860 case RTL_GIGA_MAC_VER_33:
4861 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004862 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004863 case RTL_GIGA_MAC_VER_38:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004864 case RTL_GIGA_MAC_VER_39:
Hayes Wangc5583862012-07-02 17:23:22 +08004865 case RTL_GIGA_MAC_VER_40:
4866 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004867 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004868 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004869 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004870 case RTL_GIGA_MAC_VER_45:
4871 case RTL_GIGA_MAC_VER_46:
4872 case RTL_GIGA_MAC_VER_47:
4873 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004874 case RTL_GIGA_MAC_VER_49:
4875 case RTL_GIGA_MAC_VER_50:
4876 case RTL_GIGA_MAC_VER_51:
David S. Miller1805b2f2011-10-24 18:18:09 -04004877 RTL_W32(RxConfig, RTL_R32(RxConfig) |
4878 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
4879 break;
4880 default:
4881 break;
4882 }
4883}
4884
4885static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
4886{
4887 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
4888 return false;
4889
hayeswange2409d82013-03-31 17:02:04 +00004890 rtl_speed_down(tp);
David S. Miller1805b2f2011-10-24 18:18:09 -04004891 rtl_wol_suspend_quirk(tp);
4892
4893 return true;
4894}
4895
françois romieu065c27c2011-01-03 15:08:12 +00004896static void r810x_phy_power_down(struct rtl8169_private *tp)
4897{
4898 rtl_writephy(tp, 0x1f, 0x0000);
4899 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4900}
4901
4902static void r810x_phy_power_up(struct rtl8169_private *tp)
4903{
4904 rtl_writephy(tp, 0x1f, 0x0000);
4905 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4906}
4907
4908static void r810x_pll_power_down(struct rtl8169_private *tp)
4909{
Hayes Wang00042992012-03-30 14:33:00 +08004910 void __iomem *ioaddr = tp->mmio_addr;
4911
David S. Miller1805b2f2011-10-24 18:18:09 -04004912 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004913 return;
françois romieu065c27c2011-01-03 15:08:12 +00004914
4915 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004916
4917 switch (tp->mac_version) {
4918 case RTL_GIGA_MAC_VER_07:
4919 case RTL_GIGA_MAC_VER_08:
4920 case RTL_GIGA_MAC_VER_09:
4921 case RTL_GIGA_MAC_VER_10:
4922 case RTL_GIGA_MAC_VER_13:
4923 case RTL_GIGA_MAC_VER_16:
4924 break;
4925 default:
4926 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4927 break;
4928 }
françois romieu065c27c2011-01-03 15:08:12 +00004929}
4930
4931static void r810x_pll_power_up(struct rtl8169_private *tp)
4932{
Hayes Wang00042992012-03-30 14:33:00 +08004933 void __iomem *ioaddr = tp->mmio_addr;
4934
françois romieu065c27c2011-01-03 15:08:12 +00004935 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004936
4937 switch (tp->mac_version) {
4938 case RTL_GIGA_MAC_VER_07:
4939 case RTL_GIGA_MAC_VER_08:
4940 case RTL_GIGA_MAC_VER_09:
4941 case RTL_GIGA_MAC_VER_10:
4942 case RTL_GIGA_MAC_VER_13:
4943 case RTL_GIGA_MAC_VER_16:
4944 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004945 case RTL_GIGA_MAC_VER_47:
4946 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004947 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004948 break;
Hayes Wang00042992012-03-30 14:33:00 +08004949 default:
4950 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4951 break;
4952 }
françois romieu065c27c2011-01-03 15:08:12 +00004953}
4954
4955static void r8168_phy_power_up(struct rtl8169_private *tp)
4956{
4957 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004958 switch (tp->mac_version) {
4959 case RTL_GIGA_MAC_VER_11:
4960 case RTL_GIGA_MAC_VER_12:
4961 case RTL_GIGA_MAC_VER_17:
4962 case RTL_GIGA_MAC_VER_18:
4963 case RTL_GIGA_MAC_VER_19:
4964 case RTL_GIGA_MAC_VER_20:
4965 case RTL_GIGA_MAC_VER_21:
4966 case RTL_GIGA_MAC_VER_22:
4967 case RTL_GIGA_MAC_VER_23:
4968 case RTL_GIGA_MAC_VER_24:
4969 case RTL_GIGA_MAC_VER_25:
4970 case RTL_GIGA_MAC_VER_26:
4971 case RTL_GIGA_MAC_VER_27:
4972 case RTL_GIGA_MAC_VER_28:
4973 case RTL_GIGA_MAC_VER_31:
4974 rtl_writephy(tp, 0x0e, 0x0000);
4975 break;
4976 default:
4977 break;
4978 }
françois romieu065c27c2011-01-03 15:08:12 +00004979 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4980}
4981
4982static void r8168_phy_power_down(struct rtl8169_private *tp)
4983{
4984 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004985 switch (tp->mac_version) {
4986 case RTL_GIGA_MAC_VER_32:
4987 case RTL_GIGA_MAC_VER_33:
hayeswangbeb330a2013-04-01 22:23:39 +00004988 case RTL_GIGA_MAC_VER_40:
4989 case RTL_GIGA_MAC_VER_41:
hayeswang01dc7fe2011-03-21 01:50:28 +00004990 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
4991 break;
4992
4993 case RTL_GIGA_MAC_VER_11:
4994 case RTL_GIGA_MAC_VER_12:
4995 case RTL_GIGA_MAC_VER_17:
4996 case RTL_GIGA_MAC_VER_18:
4997 case RTL_GIGA_MAC_VER_19:
4998 case RTL_GIGA_MAC_VER_20:
4999 case RTL_GIGA_MAC_VER_21:
5000 case RTL_GIGA_MAC_VER_22:
5001 case RTL_GIGA_MAC_VER_23:
5002 case RTL_GIGA_MAC_VER_24:
5003 case RTL_GIGA_MAC_VER_25:
5004 case RTL_GIGA_MAC_VER_26:
5005 case RTL_GIGA_MAC_VER_27:
5006 case RTL_GIGA_MAC_VER_28:
5007 case RTL_GIGA_MAC_VER_31:
5008 rtl_writephy(tp, 0x0e, 0x0200);
5009 default:
5010 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
5011 break;
5012 }
françois romieu065c27c2011-01-03 15:08:12 +00005013}
5014
5015static void r8168_pll_power_down(struct rtl8169_private *tp)
5016{
5017 void __iomem *ioaddr = tp->mmio_addr;
5018
Francois Romieucecb5fd2011-04-01 10:21:07 +02005019 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
5020 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005021 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
5022 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
5023 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
5024 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Lin2f8c0402014-10-01 23:17:19 +08005025 r8168_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00005026 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08005027 }
françois romieu065c27c2011-01-03 15:08:12 +00005028
Francois Romieucecb5fd2011-04-01 10:21:07 +02005029 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
5030 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00005031 (RTL_R16(CPlusCmd) & ASF)) {
5032 return;
5033 }
5034
hayeswang01dc7fe2011-03-21 01:50:28 +00005035 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
5036 tp->mac_version == RTL_GIGA_MAC_VER_33)
Francois Romieufdf6fc02012-07-06 22:40:38 +02005037 rtl_ephy_write(tp, 0x19, 0xff64);
hayeswang01dc7fe2011-03-21 01:50:28 +00005038
David S. Miller1805b2f2011-10-24 18:18:09 -04005039 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00005040 return;
françois romieu065c27c2011-01-03 15:08:12 +00005041
5042 r8168_phy_power_down(tp);
5043
5044 switch (tp->mac_version) {
5045 case RTL_GIGA_MAC_VER_25:
5046 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08005047 case RTL_GIGA_MAC_VER_27:
5048 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00005049 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00005050 case RTL_GIGA_MAC_VER_32:
5051 case RTL_GIGA_MAC_VER_33:
Chun-Hao Lin42fde732014-10-01 23:17:14 +08005052 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005053 case RTL_GIGA_MAC_VER_45:
5054 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005055 case RTL_GIGA_MAC_VER_50:
5056 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00005057 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
5058 break;
hayeswangbeb330a2013-04-01 22:23:39 +00005059 case RTL_GIGA_MAC_VER_40:
5060 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005061 case RTL_GIGA_MAC_VER_49:
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005062 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0x00000000,
hayeswangbeb330a2013-04-01 22:23:39 +00005063 0xfc000000, ERIAR_EXGMAC);
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08005064 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
hayeswangbeb330a2013-04-01 22:23:39 +00005065 break;
françois romieu065c27c2011-01-03 15:08:12 +00005066 }
5067}
5068
5069static void r8168_pll_power_up(struct rtl8169_private *tp)
5070{
5071 void __iomem *ioaddr = tp->mmio_addr;
5072
françois romieu065c27c2011-01-03 15:08:12 +00005073 switch (tp->mac_version) {
5074 case RTL_GIGA_MAC_VER_25:
5075 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08005076 case RTL_GIGA_MAC_VER_27:
5077 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00005078 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00005079 case RTL_GIGA_MAC_VER_32:
5080 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00005081 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
5082 break;
Chun-Hao Lin42fde732014-10-01 23:17:14 +08005083 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005084 case RTL_GIGA_MAC_VER_45:
5085 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005086 case RTL_GIGA_MAC_VER_50:
5087 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005088 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005089 break;
hayeswangbeb330a2013-04-01 22:23:39 +00005090 case RTL_GIGA_MAC_VER_40:
5091 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005092 case RTL_GIGA_MAC_VER_49:
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08005093 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005094 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0xfc000000,
hayeswangbeb330a2013-04-01 22:23:39 +00005095 0x00000000, ERIAR_EXGMAC);
5096 break;
françois romieu065c27c2011-01-03 15:08:12 +00005097 }
5098
5099 r8168_phy_power_up(tp);
5100}
5101
Francois Romieud58d46b2011-05-03 16:38:29 +02005102static void rtl_generic_op(struct rtl8169_private *tp,
5103 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00005104{
5105 if (op)
5106 op(tp);
5107}
5108
5109static void rtl_pll_power_down(struct rtl8169_private *tp)
5110{
Francois Romieud58d46b2011-05-03 16:38:29 +02005111 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00005112}
5113
5114static void rtl_pll_power_up(struct rtl8169_private *tp)
5115{
Francois Romieud58d46b2011-05-03 16:38:29 +02005116 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00005117}
5118
Bill Pembertonbaf63292012-12-03 09:23:28 -05005119static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
françois romieu065c27c2011-01-03 15:08:12 +00005120{
5121 struct pll_power_ops *ops = &tp->pll_power_ops;
5122
5123 switch (tp->mac_version) {
5124 case RTL_GIGA_MAC_VER_07:
5125 case RTL_GIGA_MAC_VER_08:
5126 case RTL_GIGA_MAC_VER_09:
5127 case RTL_GIGA_MAC_VER_10:
5128 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08005129 case RTL_GIGA_MAC_VER_29:
5130 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08005131 case RTL_GIGA_MAC_VER_37:
Hayes Wang5598bfe2012-07-02 17:23:21 +08005132 case RTL_GIGA_MAC_VER_39:
hayeswang58152cd2013-04-01 22:23:42 +00005133 case RTL_GIGA_MAC_VER_43:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005134 case RTL_GIGA_MAC_VER_47:
5135 case RTL_GIGA_MAC_VER_48:
françois romieu065c27c2011-01-03 15:08:12 +00005136 ops->down = r810x_pll_power_down;
5137 ops->up = r810x_pll_power_up;
5138 break;
5139
5140 case RTL_GIGA_MAC_VER_11:
5141 case RTL_GIGA_MAC_VER_12:
5142 case RTL_GIGA_MAC_VER_17:
5143 case RTL_GIGA_MAC_VER_18:
5144 case RTL_GIGA_MAC_VER_19:
5145 case RTL_GIGA_MAC_VER_20:
5146 case RTL_GIGA_MAC_VER_21:
5147 case RTL_GIGA_MAC_VER_22:
5148 case RTL_GIGA_MAC_VER_23:
5149 case RTL_GIGA_MAC_VER_24:
5150 case RTL_GIGA_MAC_VER_25:
5151 case RTL_GIGA_MAC_VER_26:
5152 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00005153 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00005154 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00005155 case RTL_GIGA_MAC_VER_32:
5156 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08005157 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08005158 case RTL_GIGA_MAC_VER_35:
5159 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005160 case RTL_GIGA_MAC_VER_38:
Hayes Wangc5583862012-07-02 17:23:22 +08005161 case RTL_GIGA_MAC_VER_40:
5162 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00005163 case RTL_GIGA_MAC_VER_42:
hayeswang45dd95c2013-07-08 17:09:01 +08005164 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005165 case RTL_GIGA_MAC_VER_45:
5166 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005167 case RTL_GIGA_MAC_VER_49:
5168 case RTL_GIGA_MAC_VER_50:
5169 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00005170 ops->down = r8168_pll_power_down;
5171 ops->up = r8168_pll_power_up;
5172 break;
5173
5174 default:
5175 ops->down = NULL;
5176 ops->up = NULL;
5177 break;
5178 }
5179}
5180
Hayes Wange542a222011-07-06 15:58:04 +08005181static void rtl_init_rxcfg(struct rtl8169_private *tp)
5182{
5183 void __iomem *ioaddr = tp->mmio_addr;
5184
5185 switch (tp->mac_version) {
5186 case RTL_GIGA_MAC_VER_01:
5187 case RTL_GIGA_MAC_VER_02:
5188 case RTL_GIGA_MAC_VER_03:
5189 case RTL_GIGA_MAC_VER_04:
5190 case RTL_GIGA_MAC_VER_05:
5191 case RTL_GIGA_MAC_VER_06:
5192 case RTL_GIGA_MAC_VER_10:
5193 case RTL_GIGA_MAC_VER_11:
5194 case RTL_GIGA_MAC_VER_12:
5195 case RTL_GIGA_MAC_VER_13:
5196 case RTL_GIGA_MAC_VER_14:
5197 case RTL_GIGA_MAC_VER_15:
5198 case RTL_GIGA_MAC_VER_16:
5199 case RTL_GIGA_MAC_VER_17:
5200 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
5201 break;
5202 case RTL_GIGA_MAC_VER_18:
5203 case RTL_GIGA_MAC_VER_19:
5204 case RTL_GIGA_MAC_VER_20:
5205 case RTL_GIGA_MAC_VER_21:
5206 case RTL_GIGA_MAC_VER_22:
5207 case RTL_GIGA_MAC_VER_23:
5208 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00005209 case RTL_GIGA_MAC_VER_34:
françois romieu3ced8c92013-09-08 01:15:35 +02005210 case RTL_GIGA_MAC_VER_35:
Hayes Wange542a222011-07-06 15:58:04 +08005211 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
5212 break;
hayeswangbeb330a2013-04-01 22:23:39 +00005213 case RTL_GIGA_MAC_VER_40:
5214 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00005215 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00005216 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08005217 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005218 case RTL_GIGA_MAC_VER_45:
5219 case RTL_GIGA_MAC_VER_46:
5220 case RTL_GIGA_MAC_VER_47:
5221 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005222 case RTL_GIGA_MAC_VER_49:
5223 case RTL_GIGA_MAC_VER_50:
5224 case RTL_GIGA_MAC_VER_51:
Ivan Vecera7ebc4822015-08-04 22:11:43 +02005225 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST | RX_EARLY_OFF);
hayeswangbeb330a2013-04-01 22:23:39 +00005226 break;
Hayes Wange542a222011-07-06 15:58:04 +08005227 default:
5228 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
5229 break;
5230 }
5231}
5232
Hayes Wang92fc43b2011-07-06 15:58:03 +08005233static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
5234{
Timo Teräs9fba0812013-01-15 21:01:24 +00005235 tp->dirty_tx = tp->cur_tx = tp->cur_rx = 0;
Hayes Wang92fc43b2011-07-06 15:58:03 +08005236}
5237
Francois Romieud58d46b2011-05-03 16:38:29 +02005238static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
5239{
françois romieu9c5028e2012-03-02 04:43:14 +00005240 void __iomem *ioaddr = tp->mmio_addr;
5241
5242 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02005243 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00005244 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02005245}
5246
5247static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
5248{
françois romieu9c5028e2012-03-02 04:43:14 +00005249 void __iomem *ioaddr = tp->mmio_addr;
5250
5251 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02005252 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00005253 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02005254}
5255
5256static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
5257{
5258 void __iomem *ioaddr = tp->mmio_addr;
5259
5260 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5261 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005262 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02005263}
5264
5265static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
5266{
5267 void __iomem *ioaddr = tp->mmio_addr;
5268
5269 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5270 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
5271 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
5272}
5273
5274static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
5275{
5276 void __iomem *ioaddr = tp->mmio_addr;
5277
5278 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5279}
5280
5281static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
5282{
5283 void __iomem *ioaddr = tp->mmio_addr;
5284
5285 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5286}
5287
5288static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
5289{
5290 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005291
5292 RTL_W8(MaxTxPacketSize, 0x3f);
5293 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5294 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005295 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02005296}
5297
5298static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
5299{
5300 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005301
5302 RTL_W8(MaxTxPacketSize, 0x0c);
5303 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5304 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01005305 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02005306}
5307
5308static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
5309{
5310 rtl_tx_performance_tweak(tp->pci_dev,
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005311 PCI_EXP_DEVCTL_READRQ_512B | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieud58d46b2011-05-03 16:38:29 +02005312}
5313
5314static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
5315{
5316 rtl_tx_performance_tweak(tp->pci_dev,
5317 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
5318}
5319
5320static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
5321{
5322 void __iomem *ioaddr = tp->mmio_addr;
5323
5324 r8168b_0_hw_jumbo_enable(tp);
5325
5326 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
5327}
5328
5329static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
5330{
5331 void __iomem *ioaddr = tp->mmio_addr;
5332
5333 r8168b_0_hw_jumbo_disable(tp);
5334
5335 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
5336}
5337
Bill Pembertonbaf63292012-12-03 09:23:28 -05005338static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
Francois Romieud58d46b2011-05-03 16:38:29 +02005339{
5340 struct jumbo_ops *ops = &tp->jumbo_ops;
5341
5342 switch (tp->mac_version) {
5343 case RTL_GIGA_MAC_VER_11:
5344 ops->disable = r8168b_0_hw_jumbo_disable;
5345 ops->enable = r8168b_0_hw_jumbo_enable;
5346 break;
5347 case RTL_GIGA_MAC_VER_12:
5348 case RTL_GIGA_MAC_VER_17:
5349 ops->disable = r8168b_1_hw_jumbo_disable;
5350 ops->enable = r8168b_1_hw_jumbo_enable;
5351 break;
5352 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
5353 case RTL_GIGA_MAC_VER_19:
5354 case RTL_GIGA_MAC_VER_20:
5355 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
5356 case RTL_GIGA_MAC_VER_22:
5357 case RTL_GIGA_MAC_VER_23:
5358 case RTL_GIGA_MAC_VER_24:
5359 case RTL_GIGA_MAC_VER_25:
5360 case RTL_GIGA_MAC_VER_26:
5361 ops->disable = r8168c_hw_jumbo_disable;
5362 ops->enable = r8168c_hw_jumbo_enable;
5363 break;
5364 case RTL_GIGA_MAC_VER_27:
5365 case RTL_GIGA_MAC_VER_28:
5366 ops->disable = r8168dp_hw_jumbo_disable;
5367 ops->enable = r8168dp_hw_jumbo_enable;
5368 break;
5369 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
5370 case RTL_GIGA_MAC_VER_32:
5371 case RTL_GIGA_MAC_VER_33:
5372 case RTL_GIGA_MAC_VER_34:
5373 ops->disable = r8168e_hw_jumbo_disable;
5374 ops->enable = r8168e_hw_jumbo_enable;
5375 break;
5376
5377 /*
5378 * No action needed for jumbo frames with 8169.
5379 * No jumbo for 810x at all.
5380 */
Hayes Wangc5583862012-07-02 17:23:22 +08005381 case RTL_GIGA_MAC_VER_40:
5382 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00005383 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00005384 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08005385 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005386 case RTL_GIGA_MAC_VER_45:
5387 case RTL_GIGA_MAC_VER_46:
5388 case RTL_GIGA_MAC_VER_47:
5389 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005390 case RTL_GIGA_MAC_VER_49:
5391 case RTL_GIGA_MAC_VER_50:
5392 case RTL_GIGA_MAC_VER_51:
Francois Romieud58d46b2011-05-03 16:38:29 +02005393 default:
5394 ops->disable = NULL;
5395 ops->enable = NULL;
5396 break;
5397 }
5398}
5399
Francois Romieuffc46952012-07-06 14:19:23 +02005400DECLARE_RTL_COND(rtl_chipcmd_cond)
5401{
5402 void __iomem *ioaddr = tp->mmio_addr;
5403
5404 return RTL_R8(ChipCmd) & CmdReset;
5405}
5406
Francois Romieu6f43adc2011-04-29 15:05:51 +02005407static void rtl_hw_reset(struct rtl8169_private *tp)
5408{
5409 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu6f43adc2011-04-29 15:05:51 +02005410
Francois Romieu6f43adc2011-04-29 15:05:51 +02005411 RTL_W8(ChipCmd, CmdReset);
5412
Francois Romieuffc46952012-07-06 14:19:23 +02005413 rtl_udelay_loop_wait_low(tp, &rtl_chipcmd_cond, 100, 100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02005414}
5415
Francois Romieub6ffd972011-06-17 17:00:05 +02005416static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
5417{
5418 struct rtl_fw *rtl_fw;
5419 const char *name;
5420 int rc = -ENOMEM;
5421
5422 name = rtl_lookup_firmware_name(tp);
5423 if (!name)
5424 goto out_no_firmware;
5425
5426 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
5427 if (!rtl_fw)
5428 goto err_warn;
5429
5430 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
5431 if (rc < 0)
5432 goto err_free;
5433
Francois Romieufd112f22011-06-18 00:10:29 +02005434 rc = rtl_check_firmware(tp, rtl_fw);
5435 if (rc < 0)
5436 goto err_release_firmware;
5437
Francois Romieub6ffd972011-06-17 17:00:05 +02005438 tp->rtl_fw = rtl_fw;
5439out:
5440 return;
5441
Francois Romieufd112f22011-06-18 00:10:29 +02005442err_release_firmware:
5443 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02005444err_free:
5445 kfree(rtl_fw);
5446err_warn:
5447 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
5448 name, rc);
5449out_no_firmware:
5450 tp->rtl_fw = NULL;
5451 goto out;
5452}
5453
François Romieu953a12c2011-04-24 17:38:48 +02005454static void rtl_request_firmware(struct rtl8169_private *tp)
5455{
Francois Romieub6ffd972011-06-17 17:00:05 +02005456 if (IS_ERR(tp->rtl_fw))
5457 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02005458}
5459
Hayes Wang92fc43b2011-07-06 15:58:03 +08005460static void rtl_rx_close(struct rtl8169_private *tp)
5461{
5462 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08005463
Francois Romieu1687b562011-07-19 17:21:29 +02005464 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005465}
5466
Francois Romieuffc46952012-07-06 14:19:23 +02005467DECLARE_RTL_COND(rtl_npq_cond)
5468{
5469 void __iomem *ioaddr = tp->mmio_addr;
5470
5471 return RTL_R8(TxPoll) & NPQ;
5472}
5473
5474DECLARE_RTL_COND(rtl_txcfg_empty_cond)
5475{
5476 void __iomem *ioaddr = tp->mmio_addr;
5477
5478 return RTL_R32(TxConfig) & TXCFG_EMPTY;
5479}
5480
françois romieue6de30d2011-01-03 15:08:37 +00005481static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482{
françois romieue6de30d2011-01-03 15:08:37 +00005483 void __iomem *ioaddr = tp->mmio_addr;
5484
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00005486 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487
Hayes Wang92fc43b2011-07-06 15:58:03 +08005488 rtl_rx_close(tp);
5489
Hayes Wang5d2e1952011-02-22 17:26:22 +08005490 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00005491 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
5492 tp->mac_version == RTL_GIGA_MAC_VER_31) {
Francois Romieuffc46952012-07-06 14:19:23 +02005493 rtl_udelay_loop_wait_low(tp, &rtl_npq_cond, 20, 42*42);
Hayes Wangc2218922011-09-06 16:55:18 +08005494 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005495 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
5496 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
5497 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
5498 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
5499 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
5500 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
5501 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
5502 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
5503 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
5504 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
5505 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
5506 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005507 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
5508 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
5509 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
5510 tp->mac_version == RTL_GIGA_MAC_VER_51) {
David S. Miller8decf862011-09-22 03:23:13 -04005511 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Francois Romieuffc46952012-07-06 14:19:23 +02005512 rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005513 } else {
5514 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
5515 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00005516 }
5517
Hayes Wang92fc43b2011-07-06 15:58:03 +08005518 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519}
5520
Francois Romieu7f796d832007-06-11 23:04:41 +02005521static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005522{
5523 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01005524
5525 /* Set DMA burst size and Interframe Gap Time */
5526 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
5527 (InterFrameGap << TxInterFrameGapShift));
5528}
5529
Francois Romieu07ce4062007-02-23 23:36:39 +01005530static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531{
5532 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533
Francois Romieu07ce4062007-02-23 23:36:39 +01005534 tp->hw_start(dev);
5535
Francois Romieuda78dbf2012-01-26 14:18:23 +01005536 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01005537}
5538
Francois Romieu7f796d832007-06-11 23:04:41 +02005539static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
5540 void __iomem *ioaddr)
5541{
5542 /*
5543 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
5544 * register to be written before TxDescAddrLow to work.
5545 * Switching from MMIO to I/O access fixes the issue as well.
5546 */
5547 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005548 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005549 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005550 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005551}
5552
5553static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
5554{
5555 u16 cmd;
5556
5557 cmd = RTL_R16(CPlusCmd);
5558 RTL_W16(CPlusCmd, cmd);
5559 return cmd;
5560}
5561
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07005562static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02005563{
5564 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00005565 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02005566}
5567
Francois Romieu6dccd162007-02-13 23:38:05 +01005568static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
5569{
Francois Romieu37441002011-06-17 22:58:54 +02005570 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01005571 u32 mac_version;
5572 u32 clk;
5573 u32 val;
5574 } cfg2_info [] = {
5575 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
5576 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
5577 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
5578 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02005579 };
5580 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01005581 unsigned int i;
5582 u32 clk;
5583
5584 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01005585 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01005586 if ((p->mac_version == mac_version) && (p->clk == clk)) {
5587 RTL_W32(0x7c, p->val);
5588 break;
5589 }
5590 }
5591}
5592
Francois Romieue6b763e2012-03-08 09:35:39 +01005593static void rtl_set_rx_mode(struct net_device *dev)
5594{
5595 struct rtl8169_private *tp = netdev_priv(dev);
5596 void __iomem *ioaddr = tp->mmio_addr;
5597 u32 mc_filter[2]; /* Multicast hash filter */
5598 int rx_mode;
5599 u32 tmp = 0;
5600
5601 if (dev->flags & IFF_PROMISC) {
5602 /* Unconditionally log net taps. */
5603 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
5604 rx_mode =
5605 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
5606 AcceptAllPhys;
5607 mc_filter[1] = mc_filter[0] = 0xffffffff;
5608 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
5609 (dev->flags & IFF_ALLMULTI)) {
5610 /* Too many to filter perfectly -- accept all multicasts. */
5611 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
5612 mc_filter[1] = mc_filter[0] = 0xffffffff;
5613 } else {
5614 struct netdev_hw_addr *ha;
5615
5616 rx_mode = AcceptBroadcast | AcceptMyPhys;
5617 mc_filter[1] = mc_filter[0] = 0;
5618 netdev_for_each_mc_addr(ha, dev) {
5619 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
5620 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
5621 rx_mode |= AcceptMulticast;
5622 }
5623 }
5624
5625 if (dev->features & NETIF_F_RXALL)
5626 rx_mode |= (AcceptErr | AcceptRunt);
5627
5628 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
5629
5630 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
5631 u32 data = mc_filter[0];
5632
5633 mc_filter[0] = swab32(mc_filter[1]);
5634 mc_filter[1] = swab32(data);
5635 }
5636
Nathan Walp04817762012-11-01 12:08:47 +00005637 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
5638 mc_filter[1] = mc_filter[0] = 0xffffffff;
5639
Francois Romieue6b763e2012-03-08 09:35:39 +01005640 RTL_W32(MAR0 + 4, mc_filter[1]);
5641 RTL_W32(MAR0 + 0, mc_filter[0]);
5642
5643 RTL_W32(RxConfig, tmp);
5644}
5645
Francois Romieu07ce4062007-02-23 23:36:39 +01005646static void rtl_hw_start_8169(struct net_device *dev)
5647{
5648 struct rtl8169_private *tp = netdev_priv(dev);
5649 void __iomem *ioaddr = tp->mmio_addr;
5650 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01005651
Francois Romieu9cb427b2006-11-02 00:10:16 +01005652 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
5653 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
5654 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
5655 }
5656
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02005658 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5659 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5660 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5661 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005662 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5663
Hayes Wange542a222011-07-06 15:58:04 +08005664 rtl_init_rxcfg(tp);
5665
françois romieuf0298f82011-01-03 15:07:42 +00005666 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005668 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669
Francois Romieucecb5fd2011-04-01 10:21:07 +02005670 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5671 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5672 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5673 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02005674 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675
Francois Romieu7f796d832007-06-11 23:04:41 +02005676 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005677
Francois Romieucecb5fd2011-04-01 10:21:07 +02005678 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5679 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005680 dprintk("Set MAC Reg C+CR Offset 0xe0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02005682 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 }
5684
Francois Romieubcf0bf92006-07-26 23:14:13 +02005685 RTL_W16(CPlusCmd, tp->cp_cmd);
5686
Francois Romieu6dccd162007-02-13 23:38:05 +01005687 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
5688
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689 /*
5690 * Undocumented corner. Supposedly:
5691 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
5692 */
5693 RTL_W16(IntrMitigate, 0x0000);
5694
Francois Romieu7f796d832007-06-11 23:04:41 +02005695 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01005696
Francois Romieucecb5fd2011-04-01 10:21:07 +02005697 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
5698 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
5699 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
5700 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02005701 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5702 rtl_set_rx_tx_config_registers(tp);
5703 }
5704
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02005706
5707 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
5708 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709
5710 RTL_W32(RxMissed, 0);
5711
Francois Romieu07ce4062007-02-23 23:36:39 +01005712 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713
5714 /* no early-rx interrupts */
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005715 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005716}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005718static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
5719{
5720 if (tp->csi_ops.write)
Francois Romieu52989f02012-07-06 13:37:00 +02005721 tp->csi_ops.write(tp, addr, value);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005722}
5723
5724static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
5725{
Francois Romieu52989f02012-07-06 13:37:00 +02005726 return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005727}
5728
5729static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02005730{
5731 u32 csi;
5732
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005733 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
5734 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00005735}
5736
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005737static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005738{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005739 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00005740}
5741
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005742static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00005743{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005744 rtl_csi_access_enable(tp, 0x27000000);
5745}
5746
Francois Romieuffc46952012-07-06 14:19:23 +02005747DECLARE_RTL_COND(rtl_csiar_cond)
5748{
5749 void __iomem *ioaddr = tp->mmio_addr;
5750
5751 return RTL_R32(CSIAR) & CSIAR_FLAG;
5752}
5753
Francois Romieu52989f02012-07-06 13:37:00 +02005754static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005755{
Francois Romieu52989f02012-07-06 13:37:00 +02005756 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005757
5758 RTL_W32(CSIDR, value);
5759 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5760 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5761
Francois Romieuffc46952012-07-06 14:19:23 +02005762 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005763}
5764
Francois Romieu52989f02012-07-06 13:37:00 +02005765static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005766{
Francois Romieu52989f02012-07-06 13:37:00 +02005767 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005768
5769 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
5770 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5771
Francois Romieuffc46952012-07-06 14:19:23 +02005772 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5773 RTL_R32(CSIDR) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005774}
5775
Francois Romieu52989f02012-07-06 13:37:00 +02005776static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005777{
Francois Romieu52989f02012-07-06 13:37:00 +02005778 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005779
5780 RTL_W32(CSIDR, value);
5781 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5782 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5783 CSIAR_FUNC_NIC);
5784
Francois Romieuffc46952012-07-06 14:19:23 +02005785 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wang7e18dca2012-03-30 14:33:02 +08005786}
5787
Francois Romieu52989f02012-07-06 13:37:00 +02005788static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005789{
Francois Romieu52989f02012-07-06 13:37:00 +02005790 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005791
5792 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
5793 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5794
Francois Romieuffc46952012-07-06 14:19:23 +02005795 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5796 RTL_R32(CSIDR) : ~0;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005797}
5798
hayeswang45dd95c2013-07-08 17:09:01 +08005799static void r8411_csi_write(struct rtl8169_private *tp, int addr, int value)
5800{
5801 void __iomem *ioaddr = tp->mmio_addr;
5802
5803 RTL_W32(CSIDR, value);
5804 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5805 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5806 CSIAR_FUNC_NIC2);
5807
5808 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
5809}
5810
5811static u32 r8411_csi_read(struct rtl8169_private *tp, int addr)
5812{
5813 void __iomem *ioaddr = tp->mmio_addr;
5814
5815 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC2 |
5816 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5817
5818 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5819 RTL_R32(CSIDR) : ~0;
5820}
5821
Bill Pembertonbaf63292012-12-03 09:23:28 -05005822static void rtl_init_csi_ops(struct rtl8169_private *tp)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005823{
5824 struct csi_ops *ops = &tp->csi_ops;
5825
5826 switch (tp->mac_version) {
5827 case RTL_GIGA_MAC_VER_01:
5828 case RTL_GIGA_MAC_VER_02:
5829 case RTL_GIGA_MAC_VER_03:
5830 case RTL_GIGA_MAC_VER_04:
5831 case RTL_GIGA_MAC_VER_05:
5832 case RTL_GIGA_MAC_VER_06:
5833 case RTL_GIGA_MAC_VER_10:
5834 case RTL_GIGA_MAC_VER_11:
5835 case RTL_GIGA_MAC_VER_12:
5836 case RTL_GIGA_MAC_VER_13:
5837 case RTL_GIGA_MAC_VER_14:
5838 case RTL_GIGA_MAC_VER_15:
5839 case RTL_GIGA_MAC_VER_16:
5840 case RTL_GIGA_MAC_VER_17:
5841 ops->write = NULL;
5842 ops->read = NULL;
5843 break;
5844
Hayes Wang7e18dca2012-03-30 14:33:02 +08005845 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005846 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08005847 ops->write = r8402_csi_write;
5848 ops->read = r8402_csi_read;
5849 break;
5850
hayeswang45dd95c2013-07-08 17:09:01 +08005851 case RTL_GIGA_MAC_VER_44:
5852 ops->write = r8411_csi_write;
5853 ops->read = r8411_csi_read;
5854 break;
5855
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005856 default:
5857 ops->write = r8169_csi_write;
5858 ops->read = r8169_csi_read;
5859 break;
5860 }
Francois Romieudacf8152008-08-02 20:44:13 +02005861}
5862
5863struct ephy_info {
5864 unsigned int offset;
5865 u16 mask;
5866 u16 bits;
5867};
5868
Francois Romieufdf6fc02012-07-06 22:40:38 +02005869static void rtl_ephy_init(struct rtl8169_private *tp, const struct ephy_info *e,
5870 int len)
Francois Romieudacf8152008-08-02 20:44:13 +02005871{
5872 u16 w;
5873
5874 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02005875 w = (rtl_ephy_read(tp, e->offset) & ~e->mask) | e->bits;
5876 rtl_ephy_write(tp, e->offset, w);
Francois Romieudacf8152008-08-02 20:44:13 +02005877 e++;
5878 }
5879}
5880
Francois Romieub726e492008-06-28 12:22:59 +02005881static void rtl_disable_clock_request(struct pci_dev *pdev)
5882{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005883 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL,
5884 PCI_EXP_LNKCTL_CLKREQ_EN);
Francois Romieub726e492008-06-28 12:22:59 +02005885}
5886
françois romieue6de30d2011-01-03 15:08:37 +00005887static void rtl_enable_clock_request(struct pci_dev *pdev)
5888{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005889 pcie_capability_set_word(pdev, PCI_EXP_LNKCTL,
5890 PCI_EXP_LNKCTL_CLKREQ_EN);
françois romieue6de30d2011-01-03 15:08:37 +00005891}
5892
hayeswangb51ecea2014-07-09 14:52:51 +08005893static void rtl_pcie_state_l2l3_enable(struct rtl8169_private *tp, bool enable)
5894{
5895 void __iomem *ioaddr = tp->mmio_addr;
5896 u8 data;
5897
5898 data = RTL_R8(Config3);
5899
5900 if (enable)
5901 data |= Rdy_to_L23;
5902 else
5903 data &= ~Rdy_to_L23;
5904
5905 RTL_W8(Config3, data);
5906}
5907
Francois Romieub726e492008-06-28 12:22:59 +02005908#define R8168_CPCMD_QUIRK_MASK (\
5909 EnableBist | \
5910 Mac_dbgo_oe | \
5911 Force_half_dup | \
5912 Force_rxflow_en | \
5913 Force_txflow_en | \
5914 Cxpl_dbg_sel | \
5915 ASF | \
5916 PktCntrDisable | \
5917 Mac_dbgo_sel)
5918
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005919static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005920{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005921 void __iomem *ioaddr = tp->mmio_addr;
5922 struct pci_dev *pdev = tp->pci_dev;
5923
Francois Romieub726e492008-06-28 12:22:59 +02005924 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5925
5926 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5927
françois romieufaf1e782013-02-27 13:01:57 +00005928 if (tp->dev->mtu <= ETH_DATA_LEN) {
5929 rtl_tx_performance_tweak(pdev, (0x5 << MAX_READ_REQUEST_SHIFT) |
5930 PCI_EXP_DEVCTL_NOSNOOP_EN);
5931 }
Francois Romieu219a1e92008-06-28 11:58:39 +02005932}
5933
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005934static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005935{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005936 void __iomem *ioaddr = tp->mmio_addr;
5937
5938 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005939
françois romieuf0298f82011-01-03 15:07:42 +00005940 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02005941
5942 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02005943}
5944
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005945static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005946{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005947 void __iomem *ioaddr = tp->mmio_addr;
5948 struct pci_dev *pdev = tp->pci_dev;
5949
Francois Romieub726e492008-06-28 12:22:59 +02005950 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
5951
5952 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5953
françois romieufaf1e782013-02-27 13:01:57 +00005954 if (tp->dev->mtu <= ETH_DATA_LEN)
5955 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02005956
5957 rtl_disable_clock_request(pdev);
5958
5959 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02005960}
5961
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005962static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005963{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005964 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005965 { 0x01, 0, 0x0001 },
5966 { 0x02, 0x0800, 0x1000 },
5967 { 0x03, 0, 0x0042 },
5968 { 0x06, 0x0080, 0x0000 },
5969 { 0x07, 0, 0x2000 }
5970 };
5971
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005972 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005973
Francois Romieufdf6fc02012-07-06 22:40:38 +02005974 rtl_ephy_init(tp, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
Francois Romieub726e492008-06-28 12:22:59 +02005975
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005976 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005977}
5978
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005979static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02005980{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005981 void __iomem *ioaddr = tp->mmio_addr;
5982 struct pci_dev *pdev = tp->pci_dev;
5983
5984 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02005985
5986 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5987
françois romieufaf1e782013-02-27 13:01:57 +00005988 if (tp->dev->mtu <= ETH_DATA_LEN)
5989 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieuef3386f2008-06-29 12:24:30 +02005990
5991 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5992}
5993
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005994static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005995{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005996 void __iomem *ioaddr = tp->mmio_addr;
5997 struct pci_dev *pdev = tp->pci_dev;
5998
5999 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006000
6001 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
6002
6003 /* Magic. */
6004 RTL_W8(DBG_REG, 0x20);
6005
françois romieuf0298f82011-01-03 15:07:42 +00006006 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006007
françois romieufaf1e782013-02-27 13:01:57 +00006008 if (tp->dev->mtu <= ETH_DATA_LEN)
6009 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006010
6011 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
6012}
6013
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006014static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02006015{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006016 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08006017 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02006018 { 0x02, 0x0800, 0x1000 },
6019 { 0x03, 0, 0x0002 },
6020 { 0x06, 0x0080, 0x0000 }
6021 };
6022
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006023 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02006024
6025 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
6026
Francois Romieufdf6fc02012-07-06 22:40:38 +02006027 rtl_ephy_init(tp, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
Francois Romieub726e492008-06-28 12:22:59 +02006028
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006029 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02006030}
6031
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006032static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02006033{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08006034 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02006035 { 0x01, 0, 0x0001 },
6036 { 0x03, 0x0400, 0x0220 }
6037 };
6038
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006039 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02006040
Francois Romieufdf6fc02012-07-06 22:40:38 +02006041 rtl_ephy_init(tp, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
Francois Romieub726e492008-06-28 12:22:59 +02006042
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006043 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02006044}
6045
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006046static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02006047{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006048 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02006049}
6050
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006051static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02006052{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006053 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02006054
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006055 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02006056}
6057
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006058static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02006059{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006060 void __iomem *ioaddr = tp->mmio_addr;
6061 struct pci_dev *pdev = tp->pci_dev;
6062
6063 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02006064
6065 rtl_disable_clock_request(pdev);
6066
françois romieuf0298f82011-01-03 15:07:42 +00006067 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02006068
françois romieufaf1e782013-02-27 13:01:57 +00006069 if (tp->dev->mtu <= ETH_DATA_LEN)
6070 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu5b538df2008-07-20 16:22:45 +02006071
6072 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
6073}
6074
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006075static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00006076{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006077 void __iomem *ioaddr = tp->mmio_addr;
6078 struct pci_dev *pdev = tp->pci_dev;
6079
6080 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006081
françois romieufaf1e782013-02-27 13:01:57 +00006082 if (tp->dev->mtu <= ETH_DATA_LEN)
6083 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang4804b3b2011-03-21 01:50:29 +00006084
6085 RTL_W8(MaxTxPacketSize, TxPacketMax);
6086
6087 rtl_disable_clock_request(pdev);
6088}
6089
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006090static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00006091{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006092 void __iomem *ioaddr = tp->mmio_addr;
6093 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00006094 static const struct ephy_info e_info_8168d_4[] = {
Chun-Hao Lin1016a4a2015-12-29 22:13:39 +08006095 { 0x0b, 0x0000, 0x0048 },
6096 { 0x19, 0x0020, 0x0050 },
6097 { 0x0c, 0x0100, 0x0020 }
françois romieue6de30d2011-01-03 15:08:37 +00006098 };
françois romieue6de30d2011-01-03 15:08:37 +00006099
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006100 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00006101
6102 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6103
6104 RTL_W8(MaxTxPacketSize, TxPacketMax);
6105
Chun-Hao Lin1016a4a2015-12-29 22:13:39 +08006106 rtl_ephy_init(tp, e_info_8168d_4, ARRAY_SIZE(e_info_8168d_4));
françois romieue6de30d2011-01-03 15:08:37 +00006107
6108 rtl_enable_clock_request(pdev);
6109}
6110
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006111static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00006112{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006113 void __iomem *ioaddr = tp->mmio_addr;
6114 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08006115 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00006116 { 0x00, 0x0200, 0x0100 },
6117 { 0x00, 0x0000, 0x0004 },
6118 { 0x06, 0x0002, 0x0001 },
6119 { 0x06, 0x0000, 0x0030 },
6120 { 0x07, 0x0000, 0x2000 },
6121 { 0x00, 0x0000, 0x0020 },
6122 { 0x03, 0x5800, 0x2000 },
6123 { 0x03, 0x0000, 0x0001 },
6124 { 0x01, 0x0800, 0x1000 },
6125 { 0x07, 0x0000, 0x4000 },
6126 { 0x1e, 0x0000, 0x2000 },
6127 { 0x19, 0xffff, 0xfe6c },
6128 { 0x0a, 0x0000, 0x0040 }
6129 };
6130
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006131 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00006132
Francois Romieufdf6fc02012-07-06 22:40:38 +02006133 rtl_ephy_init(tp, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00006134
françois romieufaf1e782013-02-27 13:01:57 +00006135 if (tp->dev->mtu <= ETH_DATA_LEN)
6136 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang01dc7fe2011-03-21 01:50:28 +00006137
6138 RTL_W8(MaxTxPacketSize, TxPacketMax);
6139
6140 rtl_disable_clock_request(pdev);
6141
6142 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02006143 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
6144 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00006145
Francois Romieucecb5fd2011-04-01 10:21:07 +02006146 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00006147}
6148
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006149static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08006150{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006151 void __iomem *ioaddr = tp->mmio_addr;
6152 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08006153 static const struct ephy_info e_info_8168e_2[] = {
6154 { 0x09, 0x0000, 0x0080 },
6155 { 0x19, 0x0000, 0x0224 }
6156 };
6157
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006158 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08006159
Francois Romieufdf6fc02012-07-06 22:40:38 +02006160 rtl_ephy_init(tp, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
Hayes Wang70090422011-07-06 15:58:06 +08006161
françois romieufaf1e782013-02-27 13:01:57 +00006162 if (tp->dev->mtu <= ETH_DATA_LEN)
6163 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Hayes Wang70090422011-07-06 15:58:06 +08006164
Francois Romieufdf6fc02012-07-06 22:40:38 +02006165 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6166 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6167 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
6168 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6169 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
6170 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006171 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
6172 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08006173
Hayes Wang3090bd92011-09-06 16:55:15 +08006174 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08006175
Francois Romieu4521e1a92012-11-01 16:46:28 +00006176 rtl_disable_clock_request(pdev);
6177
Hayes Wang70090422011-07-06 15:58:06 +08006178 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6179 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6180
6181 /* Adjust EEE LED frequency */
6182 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6183
6184 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
6185 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00006186 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wang70090422011-07-06 15:58:06 +08006187}
6188
Hayes Wang5f886e02012-03-30 14:33:03 +08006189static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08006190{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006191 void __iomem *ioaddr = tp->mmio_addr;
6192 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08006193
Hayes Wang5f886e02012-03-30 14:33:03 +08006194 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08006195
6196 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6197
Francois Romieufdf6fc02012-07-06 22:40:38 +02006198 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6199 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6200 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
6201 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006202 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6203 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
6204 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
6205 rtl_w0w1_eri(tp, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006206 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
6207 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08006208
6209 RTL_W8(MaxTxPacketSize, EarlySize);
6210
Francois Romieu4521e1a92012-11-01 16:46:28 +00006211 rtl_disable_clock_request(pdev);
6212
Hayes Wangc2218922011-09-06 16:55:18 +08006213 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6214 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08006215 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00006216 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
6217 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wangc2218922011-09-06 16:55:18 +08006218}
6219
Hayes Wang5f886e02012-03-30 14:33:03 +08006220static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
6221{
6222 void __iomem *ioaddr = tp->mmio_addr;
6223 static const struct ephy_info e_info_8168f_1[] = {
6224 { 0x06, 0x00c0, 0x0020 },
6225 { 0x08, 0x0001, 0x0002 },
6226 { 0x09, 0x0000, 0x0080 },
6227 { 0x19, 0x0000, 0x0224 }
6228 };
6229
6230 rtl_hw_start_8168f(tp);
6231
Francois Romieufdf6fc02012-07-06 22:40:38 +02006232 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wang5f886e02012-03-30 14:33:03 +08006233
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006234 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang5f886e02012-03-30 14:33:03 +08006235
6236 /* Adjust EEE LED frequency */
6237 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6238}
6239
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006240static void rtl_hw_start_8411(struct rtl8169_private *tp)
6241{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006242 static const struct ephy_info e_info_8168f_1[] = {
6243 { 0x06, 0x00c0, 0x0020 },
6244 { 0x0f, 0xffff, 0x5200 },
6245 { 0x1e, 0x0000, 0x4000 },
6246 { 0x19, 0x0000, 0x0224 }
6247 };
6248
6249 rtl_hw_start_8168f(tp);
hayeswangb51ecea2014-07-09 14:52:51 +08006250 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006251
Francois Romieufdf6fc02012-07-06 22:40:38 +02006252 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006253
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006254 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006255}
6256
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006257static void rtl_hw_start_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006258{
6259 void __iomem *ioaddr = tp->mmio_addr;
6260 struct pci_dev *pdev = tp->pci_dev;
6261
hayeswangbeb330a2013-04-01 22:23:39 +00006262 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6263
Hayes Wangc5583862012-07-02 17:23:22 +08006264 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x080002, ERIAR_EXGMAC);
6265 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
6266 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
6267 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6268
6269 rtl_csi_access_enable_1(tp);
6270
6271 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6272
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006273 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6274 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
hayeswangbeb330a2013-04-01 22:23:39 +00006275 rtl_eri_write(tp, 0x2f8, ERIAR_MASK_0011, 0x1d8f, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08006276
Francois Romieu4521e1a92012-11-01 16:46:28 +00006277 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
Hayes Wangc5583862012-07-02 17:23:22 +08006278 RTL_W8(MaxTxPacketSize, EarlySize);
6279
6280 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6281 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6282
6283 /* Adjust EEE LED frequency */
6284 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6285
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006286 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6287 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006288
6289 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangc5583862012-07-02 17:23:22 +08006290}
6291
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006292static void rtl_hw_start_8168g_1(struct rtl8169_private *tp)
6293{
6294 void __iomem *ioaddr = tp->mmio_addr;
6295 static const struct ephy_info e_info_8168g_1[] = {
6296 { 0x00, 0x0000, 0x0008 },
6297 { 0x0c, 0x37d0, 0x0820 },
6298 { 0x1e, 0x0000, 0x0001 },
6299 { 0x19, 0x8000, 0x0000 }
6300 };
6301
6302 rtl_hw_start_8168g(tp);
6303
6304 /* disable aspm and clock request before access ephy */
6305 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6306 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6307 rtl_ephy_init(tp, e_info_8168g_1, ARRAY_SIZE(e_info_8168g_1));
6308}
6309
hayeswang57538c42013-04-01 22:23:40 +00006310static void rtl_hw_start_8168g_2(struct rtl8169_private *tp)
6311{
6312 void __iomem *ioaddr = tp->mmio_addr;
6313 static const struct ephy_info e_info_8168g_2[] = {
6314 { 0x00, 0x0000, 0x0008 },
6315 { 0x0c, 0x3df0, 0x0200 },
6316 { 0x19, 0xffff, 0xfc00 },
6317 { 0x1e, 0xffff, 0x20eb }
6318 };
6319
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006320 rtl_hw_start_8168g(tp);
hayeswang57538c42013-04-01 22:23:40 +00006321
6322 /* disable aspm and clock request before access ephy */
6323 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6324 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6325 rtl_ephy_init(tp, e_info_8168g_2, ARRAY_SIZE(e_info_8168g_2));
6326}
6327
hayeswang45dd95c2013-07-08 17:09:01 +08006328static void rtl_hw_start_8411_2(struct rtl8169_private *tp)
6329{
6330 void __iomem *ioaddr = tp->mmio_addr;
6331 static const struct ephy_info e_info_8411_2[] = {
6332 { 0x00, 0x0000, 0x0008 },
6333 { 0x0c, 0x3df0, 0x0200 },
6334 { 0x0f, 0xffff, 0x5200 },
6335 { 0x19, 0x0020, 0x0000 },
6336 { 0x1e, 0x0000, 0x2000 }
6337 };
6338
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006339 rtl_hw_start_8168g(tp);
hayeswang45dd95c2013-07-08 17:09:01 +08006340
6341 /* disable aspm and clock request before access ephy */
6342 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6343 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6344 rtl_ephy_init(tp, e_info_8411_2, ARRAY_SIZE(e_info_8411_2));
6345}
6346
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006347static void rtl_hw_start_8168h_1(struct rtl8169_private *tp)
6348{
6349 void __iomem *ioaddr = tp->mmio_addr;
6350 struct pci_dev *pdev = tp->pci_dev;
Andrzej Hajda72521ea2015-09-24 16:00:24 +02006351 int rg_saw_cnt;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006352 u32 data;
6353 static const struct ephy_info e_info_8168h_1[] = {
6354 { 0x1e, 0x0800, 0x0001 },
6355 { 0x1d, 0x0000, 0x0800 },
6356 { 0x05, 0xffff, 0x2089 },
6357 { 0x06, 0xffff, 0x5881 },
6358 { 0x04, 0xffff, 0x154a },
6359 { 0x01, 0xffff, 0x068b }
6360 };
6361
6362 /* disable aspm and clock request before access ephy */
6363 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6364 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6365 rtl_ephy_init(tp, e_info_8168h_1, ARRAY_SIZE(e_info_8168h_1));
6366
6367 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6368
6369 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6370 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
6371 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
6372 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6373
6374 rtl_csi_access_enable_1(tp);
6375
6376 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6377
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006378 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6379 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006380
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006381 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_1111, 0x0010, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006382
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006383 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f00, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006384
6385 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6386
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006387 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6388 RTL_W8(MaxTxPacketSize, EarlySize);
6389
6390 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6391 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6392
6393 /* Adjust EEE LED frequency */
6394 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6395
6396 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006397 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006398
6399 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6400
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006401 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006402
6403 rtl_pcie_state_l2l3_enable(tp, false);
6404
6405 rtl_writephy(tp, 0x1f, 0x0c42);
Chun-Hao Lin58493332015-12-24 21:15:27 +08006406 rg_saw_cnt = (rtl_readphy(tp, 0x13) & 0x3fff);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006407 rtl_writephy(tp, 0x1f, 0x0000);
6408 if (rg_saw_cnt > 0) {
6409 u16 sw_cnt_1ms_ini;
6410
6411 sw_cnt_1ms_ini = 16000000/rg_saw_cnt;
6412 sw_cnt_1ms_ini &= 0x0fff;
6413 data = r8168_mac_ocp_read(tp, 0xd412);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006414 data &= ~0x0fff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006415 data |= sw_cnt_1ms_ini;
6416 r8168_mac_ocp_write(tp, 0xd412, data);
6417 }
6418
6419 data = r8168_mac_ocp_read(tp, 0xe056);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006420 data &= ~0xf0;
6421 data |= 0x70;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006422 r8168_mac_ocp_write(tp, 0xe056, data);
6423
6424 data = r8168_mac_ocp_read(tp, 0xe052);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006425 data &= ~0x6000;
6426 data |= 0x8008;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006427 r8168_mac_ocp_write(tp, 0xe052, data);
6428
6429 data = r8168_mac_ocp_read(tp, 0xe0d6);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006430 data &= ~0x01ff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006431 data |= 0x017f;
6432 r8168_mac_ocp_write(tp, 0xe0d6, data);
6433
6434 data = r8168_mac_ocp_read(tp, 0xd420);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006435 data &= ~0x0fff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006436 data |= 0x047f;
6437 r8168_mac_ocp_write(tp, 0xd420, data);
6438
6439 r8168_mac_ocp_write(tp, 0xe63e, 0x0001);
6440 r8168_mac_ocp_write(tp, 0xe63e, 0x0000);
6441 r8168_mac_ocp_write(tp, 0xc094, 0x0000);
6442 r8168_mac_ocp_write(tp, 0xc09e, 0x0000);
6443}
6444
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006445static void rtl_hw_start_8168ep(struct rtl8169_private *tp)
6446{
6447 void __iomem *ioaddr = tp->mmio_addr;
6448 struct pci_dev *pdev = tp->pci_dev;
6449
Chun-Hao Lin003609d2014-12-02 16:48:31 +08006450 rtl8168ep_stop_cmac(tp);
6451
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006452 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6453
6454 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6455 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x2f, ERIAR_EXGMAC);
6456 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x5f, ERIAR_EXGMAC);
6457 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6458
6459 rtl_csi_access_enable_1(tp);
6460
6461 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6462
6463 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6464 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
6465
6466 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f80, 0x00, ERIAR_EXGMAC);
6467
6468 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6469
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006470 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6471 RTL_W8(MaxTxPacketSize, EarlySize);
6472
6473 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6474 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6475
6476 /* Adjust EEE LED frequency */
6477 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6478
6479 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6480
6481 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6482
6483 rtl_pcie_state_l2l3_enable(tp, false);
6484}
6485
6486static void rtl_hw_start_8168ep_1(struct rtl8169_private *tp)
6487{
6488 void __iomem *ioaddr = tp->mmio_addr;
6489 static const struct ephy_info e_info_8168ep_1[] = {
6490 { 0x00, 0xffff, 0x10ab },
6491 { 0x06, 0xffff, 0xf030 },
6492 { 0x08, 0xffff, 0x2006 },
6493 { 0x0d, 0xffff, 0x1666 },
6494 { 0x0c, 0x3ff0, 0x0000 }
6495 };
6496
6497 /* disable aspm and clock request before access ephy */
6498 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6499 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6500 rtl_ephy_init(tp, e_info_8168ep_1, ARRAY_SIZE(e_info_8168ep_1));
6501
6502 rtl_hw_start_8168ep(tp);
6503}
6504
6505static void rtl_hw_start_8168ep_2(struct rtl8169_private *tp)
6506{
6507 void __iomem *ioaddr = tp->mmio_addr;
6508 static const struct ephy_info e_info_8168ep_2[] = {
6509 { 0x00, 0xffff, 0x10a3 },
6510 { 0x19, 0xffff, 0xfc00 },
6511 { 0x1e, 0xffff, 0x20ea }
6512 };
6513
6514 /* disable aspm and clock request before access ephy */
6515 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6516 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6517 rtl_ephy_init(tp, e_info_8168ep_2, ARRAY_SIZE(e_info_8168ep_2));
6518
6519 rtl_hw_start_8168ep(tp);
6520
6521 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006522 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006523}
6524
6525static void rtl_hw_start_8168ep_3(struct rtl8169_private *tp)
6526{
6527 void __iomem *ioaddr = tp->mmio_addr;
6528 u32 data;
6529 static const struct ephy_info e_info_8168ep_3[] = {
6530 { 0x00, 0xffff, 0x10a3 },
6531 { 0x19, 0xffff, 0x7c00 },
6532 { 0x1e, 0xffff, 0x20eb },
6533 { 0x0d, 0xffff, 0x1666 }
6534 };
6535
6536 /* disable aspm and clock request before access ephy */
6537 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6538 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6539 rtl_ephy_init(tp, e_info_8168ep_3, ARRAY_SIZE(e_info_8168ep_3));
6540
6541 rtl_hw_start_8168ep(tp);
6542
6543 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006544 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006545
6546 data = r8168_mac_ocp_read(tp, 0xd3e2);
6547 data &= 0xf000;
6548 data |= 0x0271;
6549 r8168_mac_ocp_write(tp, 0xd3e2, data);
6550
6551 data = r8168_mac_ocp_read(tp, 0xd3e4);
6552 data &= 0xff00;
6553 r8168_mac_ocp_write(tp, 0xd3e4, data);
6554
6555 data = r8168_mac_ocp_read(tp, 0xe860);
6556 data |= 0x0080;
6557 r8168_mac_ocp_write(tp, 0xe860, data);
6558}
6559
Francois Romieu07ce4062007-02-23 23:36:39 +01006560static void rtl_hw_start_8168(struct net_device *dev)
6561{
Francois Romieu2dd99532007-06-11 23:22:52 +02006562 struct rtl8169_private *tp = netdev_priv(dev);
6563 void __iomem *ioaddr = tp->mmio_addr;
6564
6565 RTL_W8(Cfg9346, Cfg9346_Unlock);
6566
françois romieuf0298f82011-01-03 15:07:42 +00006567 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02006568
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006569 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02006570
Francois Romieu0e485152007-02-20 00:00:26 +01006571 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02006572
6573 RTL_W16(CPlusCmd, tp->cp_cmd);
6574
Francois Romieu0e485152007-02-20 00:00:26 +01006575 RTL_W16(IntrMitigate, 0x5151);
6576
6577 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00006578 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01006579 tp->event_slow |= RxFIFOOver | PCSTimeout;
6580 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01006581 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006582
6583 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6584
hayeswang1a964642013-04-01 22:23:41 +00006585 rtl_set_rx_tx_config_registers(tp);
Francois Romieu2dd99532007-06-11 23:22:52 +02006586
6587 RTL_R8(IntrMask);
6588
Francois Romieu219a1e92008-06-28 11:58:39 +02006589 switch (tp->mac_version) {
6590 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006591 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006592 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006593
6594 case RTL_GIGA_MAC_VER_12:
6595 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006596 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006597 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006598
6599 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006600 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006601 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006602
6603 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006604 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006605 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006606
6607 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006608 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006609 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006610
Francois Romieu197ff762008-06-28 13:16:02 +02006611 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006612 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006613 break;
Francois Romieu197ff762008-06-28 13:16:02 +02006614
Francois Romieu6fb07052008-06-29 11:54:28 +02006615 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006616 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006617 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02006618
Francois Romieuef3386f2008-06-29 12:24:30 +02006619 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006620 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006621 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02006622
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006623 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006624 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006625 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006626
Francois Romieu5b538df2008-07-20 16:22:45 +02006627 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00006628 case RTL_GIGA_MAC_VER_26:
6629 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006630 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006631 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02006632
françois romieue6de30d2011-01-03 15:08:37 +00006633 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006634 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006635 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02006636
hayeswang4804b3b2011-03-21 01:50:29 +00006637 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006638 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006639 break;
6640
hayeswang01dc7fe2011-03-21 01:50:28 +00006641 case RTL_GIGA_MAC_VER_32:
6642 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006643 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08006644 break;
6645 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006646 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00006647 break;
françois romieue6de30d2011-01-03 15:08:37 +00006648
Hayes Wangc2218922011-09-06 16:55:18 +08006649 case RTL_GIGA_MAC_VER_35:
6650 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006651 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08006652 break;
6653
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006654 case RTL_GIGA_MAC_VER_38:
6655 rtl_hw_start_8411(tp);
6656 break;
6657
Hayes Wangc5583862012-07-02 17:23:22 +08006658 case RTL_GIGA_MAC_VER_40:
6659 case RTL_GIGA_MAC_VER_41:
6660 rtl_hw_start_8168g_1(tp);
6661 break;
hayeswang57538c42013-04-01 22:23:40 +00006662 case RTL_GIGA_MAC_VER_42:
6663 rtl_hw_start_8168g_2(tp);
6664 break;
Hayes Wangc5583862012-07-02 17:23:22 +08006665
hayeswang45dd95c2013-07-08 17:09:01 +08006666 case RTL_GIGA_MAC_VER_44:
6667 rtl_hw_start_8411_2(tp);
6668 break;
6669
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006670 case RTL_GIGA_MAC_VER_45:
6671 case RTL_GIGA_MAC_VER_46:
6672 rtl_hw_start_8168h_1(tp);
6673 break;
6674
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006675 case RTL_GIGA_MAC_VER_49:
6676 rtl_hw_start_8168ep_1(tp);
6677 break;
6678
6679 case RTL_GIGA_MAC_VER_50:
6680 rtl_hw_start_8168ep_2(tp);
6681 break;
6682
6683 case RTL_GIGA_MAC_VER_51:
6684 rtl_hw_start_8168ep_3(tp);
6685 break;
6686
Francois Romieu219a1e92008-06-28 11:58:39 +02006687 default:
6688 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
6689 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00006690 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006691 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006692
hayeswang1a964642013-04-01 22:23:41 +00006693 RTL_W8(Cfg9346, Cfg9346_Lock);
6694
Francois Romieu0e485152007-02-20 00:00:26 +01006695 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
6696
hayeswang1a964642013-04-01 22:23:41 +00006697 rtl_set_rx_mode(dev);
Francois Romieub8363902008-06-01 12:31:57 +02006698
Chun-Hao Lin05b96872014-10-01 23:17:12 +08006699 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01006700}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701
Francois Romieu2857ffb2008-08-02 21:08:49 +02006702#define R810X_CPCMD_QUIRK_MASK (\
6703 EnableBist | \
6704 Mac_dbgo_oe | \
6705 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00006706 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02006707 Force_txflow_en | \
6708 Cxpl_dbg_sel | \
6709 ASF | \
6710 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006711 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006712
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006713static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006714{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006715 void __iomem *ioaddr = tp->mmio_addr;
6716 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08006717 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02006718 { 0x01, 0, 0x6e65 },
6719 { 0x02, 0, 0x091f },
6720 { 0x03, 0, 0xc2f9 },
6721 { 0x06, 0, 0xafb5 },
6722 { 0x07, 0, 0x0e00 },
6723 { 0x19, 0, 0xec80 },
6724 { 0x01, 0, 0x2e65 },
6725 { 0x01, 0, 0x6e65 }
6726 };
6727 u8 cfg1;
6728
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006729 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006730
6731 RTL_W8(DBG_REG, FIX_NAK_1);
6732
6733 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6734
6735 RTL_W8(Config1,
6736 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
6737 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
6738
6739 cfg1 = RTL_R8(Config1);
6740 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
6741 RTL_W8(Config1, cfg1 & ~LEDS0);
6742
Francois Romieufdf6fc02012-07-06 22:40:38 +02006743 rtl_ephy_init(tp, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
Francois Romieu2857ffb2008-08-02 21:08:49 +02006744}
6745
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006746static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006747{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006748 void __iomem *ioaddr = tp->mmio_addr;
6749 struct pci_dev *pdev = tp->pci_dev;
6750
6751 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006752
6753 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6754
6755 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
6756 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006757}
6758
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006759static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006760{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006761 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006762
Francois Romieufdf6fc02012-07-06 22:40:38 +02006763 rtl_ephy_write(tp, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006764}
6765
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006766static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006767{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006768 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006769 static const struct ephy_info e_info_8105e_1[] = {
6770 { 0x07, 0, 0x4000 },
6771 { 0x19, 0, 0x0200 },
6772 { 0x19, 0, 0x0020 },
6773 { 0x1e, 0, 0x2000 },
6774 { 0x03, 0, 0x0001 },
6775 { 0x19, 0, 0x0100 },
6776 { 0x19, 0, 0x0004 },
6777 { 0x0a, 0, 0x0020 }
6778 };
6779
Francois Romieucecb5fd2011-04-01 10:21:07 +02006780 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006781 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6782
Francois Romieucecb5fd2011-04-01 10:21:07 +02006783 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006784 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
6785
6786 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08006787 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006788
Francois Romieufdf6fc02012-07-06 22:40:38 +02006789 rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
hayeswangb51ecea2014-07-09 14:52:51 +08006790
6791 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006792}
6793
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006794static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006795{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006796 rtl_hw_start_8105e_1(tp);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006797 rtl_ephy_write(tp, 0x1e, rtl_ephy_read(tp, 0x1e) | 0x8000);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006798}
6799
Hayes Wang7e18dca2012-03-30 14:33:02 +08006800static void rtl_hw_start_8402(struct rtl8169_private *tp)
6801{
6802 void __iomem *ioaddr = tp->mmio_addr;
6803 static const struct ephy_info e_info_8402[] = {
6804 { 0x19, 0xffff, 0xff64 },
6805 { 0x1e, 0, 0x4000 }
6806 };
6807
6808 rtl_csi_access_enable_2(tp);
6809
6810 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6811 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6812
6813 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6814 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6815
Francois Romieufdf6fc02012-07-06 22:40:38 +02006816 rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402));
Hayes Wang7e18dca2012-03-30 14:33:02 +08006817
6818 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
6819
Francois Romieufdf6fc02012-07-06 22:40:38 +02006820 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
6821 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006822 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6823 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006824 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6825 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006826 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006827
6828 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang7e18dca2012-03-30 14:33:02 +08006829}
6830
Hayes Wang5598bfe2012-07-02 17:23:21 +08006831static void rtl_hw_start_8106(struct rtl8169_private *tp)
6832{
6833 void __iomem *ioaddr = tp->mmio_addr;
6834
6835 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6836 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6837
Francois Romieu4521e1a92012-11-01 16:46:28 +00006838 RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006839 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
6840 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
hayeswangb51ecea2014-07-09 14:52:51 +08006841
6842 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006843}
6844
Francois Romieu07ce4062007-02-23 23:36:39 +01006845static void rtl_hw_start_8101(struct net_device *dev)
6846{
Francois Romieucdf1a602007-06-11 23:29:50 +02006847 struct rtl8169_private *tp = netdev_priv(dev);
6848 void __iomem *ioaddr = tp->mmio_addr;
6849 struct pci_dev *pdev = tp->pci_dev;
6850
Francois Romieuda78dbf2012-01-26 14:18:23 +01006851 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
6852 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00006853
Francois Romieucecb5fd2011-04-01 10:21:07 +02006854 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
Jiang Liu7d7903b2012-07-24 17:20:16 +08006855 tp->mac_version == RTL_GIGA_MAC_VER_16)
Bjorn Helgaas8200bc72012-08-22 10:29:42 -06006856 pcie_capability_set_word(pdev, PCI_EXP_DEVCTL,
6857 PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieucdf1a602007-06-11 23:29:50 +02006858
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006859 RTL_W8(Cfg9346, Cfg9346_Unlock);
6860
hayeswang1a964642013-04-01 22:23:41 +00006861 RTL_W8(MaxTxPacketSize, TxPacketMax);
6862
6863 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
6864
6865 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
6866 RTL_W16(CPlusCmd, tp->cp_cmd);
6867
6868 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6869
6870 rtl_set_rx_tx_config_registers(tp);
6871
Francois Romieu2857ffb2008-08-02 21:08:49 +02006872 switch (tp->mac_version) {
6873 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006874 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006875 break;
6876
6877 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006878 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006879 break;
6880
6881 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006882 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006883 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006884
6885 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006886 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006887 break;
6888 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006889 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006890 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08006891
6892 case RTL_GIGA_MAC_VER_37:
6893 rtl_hw_start_8402(tp);
6894 break;
Hayes Wang5598bfe2012-07-02 17:23:21 +08006895
6896 case RTL_GIGA_MAC_VER_39:
6897 rtl_hw_start_8106(tp);
6898 break;
hayeswang58152cd2013-04-01 22:23:42 +00006899 case RTL_GIGA_MAC_VER_43:
6900 rtl_hw_start_8168g_2(tp);
6901 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006902 case RTL_GIGA_MAC_VER_47:
6903 case RTL_GIGA_MAC_VER_48:
6904 rtl_hw_start_8168h_1(tp);
6905 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02006906 }
6907
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006908 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02006909
Francois Romieucdf1a602007-06-11 23:29:50 +02006910 RTL_W16(IntrMitigate, 0x0000);
6911
Francois Romieucdf1a602007-06-11 23:29:50 +02006912 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieucdf1a602007-06-11 23:29:50 +02006913
Francois Romieucdf1a602007-06-11 23:29:50 +02006914 rtl_set_rx_mode(dev);
6915
hayeswang1a964642013-04-01 22:23:41 +00006916 RTL_R8(IntrMask);
6917
Francois Romieucdf1a602007-06-11 23:29:50 +02006918 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919}
6920
6921static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
6922{
Francois Romieud58d46b2011-05-03 16:38:29 +02006923 struct rtl8169_private *tp = netdev_priv(dev);
6924
Francois Romieud58d46b2011-05-03 16:38:29 +02006925 if (new_mtu > ETH_DATA_LEN)
6926 rtl_hw_jumbo_enable(tp);
6927 else
6928 rtl_hw_jumbo_disable(tp);
6929
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00006931 netdev_update_features(dev);
6932
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006933 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934}
6935
6936static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
6937{
Al Viro95e09182007-12-22 18:55:39 +00006938 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006939 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
6940}
6941
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006942static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
6943 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006945 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006946 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006947
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006948 kfree(*data_buff);
6949 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950 rtl8169_make_unusable_by_asic(desc);
6951}
6952
6953static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
6954{
6955 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
6956
Alexander Duycka0750132014-12-11 15:02:17 -08006957 /* Force memory writes to complete before releasing descriptor */
6958 dma_wmb();
6959
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
6961}
6962
6963static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
6964 u32 rx_buf_sz)
6965{
6966 desc->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006967 rtl8169_mark_to_asic(desc, rx_buf_sz);
6968}
6969
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006970static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006972 return (void *)ALIGN((long)data, 16);
6973}
6974
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006975static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
6976 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006977{
6978 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006980 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006981 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006982 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006984 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
6985 if (!data)
6986 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01006987
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006988 if (rtl8169_align(data) != data) {
6989 kfree(data);
6990 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
6991 if (!data)
6992 return NULL;
6993 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006994
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006995 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006996 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006997 if (unlikely(dma_mapping_error(d, mapping))) {
6998 if (net_ratelimit())
6999 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007000 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002
7003 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007004 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007005
7006err_out:
7007 kfree(data);
7008 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009}
7010
7011static void rtl8169_rx_clear(struct rtl8169_private *tp)
7012{
Francois Romieu07d3f512007-02-21 22:40:46 +01007013 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014
7015 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007016 if (tp->Rx_databuff[i]) {
7017 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018 tp->RxDescArray + i);
7019 }
7020 }
7021}
7022
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00007023static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00007025 desc->opts1 |= cpu_to_le32(RingEnd);
7026}
Francois Romieu5b0384f2006-08-16 16:00:01 +02007027
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00007028static int rtl8169_rx_fill(struct rtl8169_private *tp)
7029{
7030 unsigned int i;
7031
7032 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007033 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02007034
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007035 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02007037
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00007038 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007039 if (!data) {
7040 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00007041 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007042 }
7043 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00007046 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
7047 return 0;
7048
7049err_out:
7050 rtl8169_rx_clear(tp);
7051 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052}
7053
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054static int rtl8169_init_ring(struct net_device *dev)
7055{
7056 struct rtl8169_private *tp = netdev_priv(dev);
7057
7058 rtl8169_init_ring_indexes(tp);
7059
7060 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007061 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00007063 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064}
7065
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007066static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067 struct TxDesc *desc)
7068{
7069 unsigned int len = tx_skb->len;
7070
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007071 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
7072
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073 desc->opts1 = 0x00;
7074 desc->opts2 = 0x00;
7075 desc->addr = 0x00;
7076 tx_skb->len = 0;
7077}
7078
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007079static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
7080 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081{
7082 unsigned int i;
7083
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007084 for (i = 0; i < n; i++) {
7085 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007086 struct ring_info *tx_skb = tp->tx_skb + entry;
7087 unsigned int len = tx_skb->len;
7088
7089 if (len) {
7090 struct sk_buff *skb = tx_skb->skb;
7091
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007092 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007093 tp->TxDescArray + entry);
7094 if (skb) {
Florian Fainelli7a4b813c2017-08-24 18:34:44 -07007095 dev_consume_skb_any(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096 tx_skb->skb = NULL;
7097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098 }
7099 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007100}
7101
7102static void rtl8169_tx_clear(struct rtl8169_private *tp)
7103{
7104 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105 tp->cur_tx = tp->dirty_tx = 0;
7106}
7107
Francois Romieu4422bcd2012-01-26 11:23:32 +01007108static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109{
David Howellsc4028952006-11-22 14:57:56 +00007110 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01007111 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112
Francois Romieuda78dbf2012-01-26 14:18:23 +01007113 napi_disable(&tp->napi);
7114 netif_stop_queue(dev);
7115 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116
françois romieuc7c2c392011-12-04 20:30:52 +00007117 rtl8169_hw_reset(tp);
7118
Francois Romieu56de4142011-03-15 17:29:31 +01007119 for (i = 0; i < NUM_RX_DESC; i++)
7120 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
7121
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00007123 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124
Francois Romieuda78dbf2012-01-26 14:18:23 +01007125 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01007126 rtl_hw_start(dev);
7127 netif_wake_queue(dev);
7128 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129}
7130
7131static void rtl8169_tx_timeout(struct net_device *dev)
7132{
Francois Romieuda78dbf2012-01-26 14:18:23 +01007133 struct rtl8169_private *tp = netdev_priv(dev);
7134
7135 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136}
7137
7138static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07007139 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140{
7141 struct skb_shared_info *info = skb_shinfo(skb);
7142 unsigned int cur_frag, entry;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08007143 struct TxDesc *uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007144 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007145
7146 entry = tp->cur_tx;
7147 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00007148 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149 dma_addr_t mapping;
7150 u32 status, len;
7151 void *addr;
7152
7153 entry = (entry + 1) % NUM_TX_DESC;
7154
7155 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00007156 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00007157 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007158 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007159 if (unlikely(dma_mapping_error(d, mapping))) {
7160 if (net_ratelimit())
7161 netif_err(tp, drv, tp->dev,
7162 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007163 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165
Francois Romieucecb5fd2011-04-01 10:21:07 +02007166 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07007167 status = opts[0] | len |
7168 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007169
7170 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07007171 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172 txd->addr = cpu_to_le64(mapping);
7173
7174 tp->tx_skb[entry].len = len;
7175 }
7176
7177 if (cur_frag) {
7178 tp->tx_skb[entry].skb = skb;
7179 txd->opts1 |= cpu_to_le32(LastFrag);
7180 }
7181
7182 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007183
7184err_out:
7185 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
7186 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007187}
7188
françois romieub423e9a2013-05-18 01:24:46 +00007189static bool rtl_test_hw_pad_bug(struct rtl8169_private *tp, struct sk_buff *skb)
7190{
7191 return skb->len < ETH_ZLEN && tp->mac_version == RTL_GIGA_MAC_VER_34;
7192}
7193
hayeswange9746042014-07-11 16:25:58 +08007194static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
7195 struct net_device *dev);
7196/* r8169_csum_workaround()
7197 * The hw limites the value the transport offset. When the offset is out of the
7198 * range, calculate the checksum by sw.
7199 */
7200static void r8169_csum_workaround(struct rtl8169_private *tp,
7201 struct sk_buff *skb)
7202{
7203 if (skb_shinfo(skb)->gso_size) {
7204 netdev_features_t features = tp->dev->features;
7205 struct sk_buff *segs, *nskb;
7206
7207 features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
7208 segs = skb_gso_segment(skb, features);
7209 if (IS_ERR(segs) || !segs)
7210 goto drop;
7211
7212 do {
7213 nskb = segs;
7214 segs = segs->next;
7215 nskb->next = NULL;
7216 rtl8169_start_xmit(nskb, tp->dev);
7217 } while (segs);
7218
Alexander Duyckeb781392015-05-01 10:34:44 -07007219 dev_consume_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08007220 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
7221 if (skb_checksum_help(skb) < 0)
7222 goto drop;
7223
7224 rtl8169_start_xmit(skb, tp->dev);
7225 } else {
7226 struct net_device_stats *stats;
7227
7228drop:
7229 stats = &tp->dev->stats;
7230 stats->tx_dropped++;
Alexander Duyckeb781392015-05-01 10:34:44 -07007231 dev_kfree_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08007232 }
7233}
7234
7235/* msdn_giant_send_check()
7236 * According to the document of microsoft, the TCP Pseudo Header excludes the
7237 * packet length for IPv6 TCP large packets.
7238 */
7239static int msdn_giant_send_check(struct sk_buff *skb)
7240{
7241 const struct ipv6hdr *ipv6h;
7242 struct tcphdr *th;
7243 int ret;
7244
7245 ret = skb_cow_head(skb, 0);
7246 if (ret)
7247 return ret;
7248
7249 ipv6h = ipv6_hdr(skb);
7250 th = tcp_hdr(skb);
7251
7252 th->check = 0;
7253 th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0);
7254
7255 return ret;
7256}
7257
7258static inline __be16 get_protocol(struct sk_buff *skb)
7259{
7260 __be16 protocol;
7261
7262 if (skb->protocol == htons(ETH_P_8021Q))
7263 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
7264 else
7265 protocol = skb->protocol;
7266
7267 return protocol;
7268}
7269
hayeswang5888d3f2014-07-11 16:25:56 +08007270static bool rtl8169_tso_csum_v1(struct rtl8169_private *tp,
7271 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007272{
Michał Mirosław350fb322011-04-08 06:35:56 +00007273 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007274
Francois Romieu2b7b4312011-04-18 22:53:24 -07007275 if (mss) {
7276 opts[0] |= TD_LSO;
hayeswang5888d3f2014-07-11 16:25:56 +08007277 opts[0] |= min(mss, TD_MSS_MAX) << TD0_MSS_SHIFT;
7278 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
7279 const struct iphdr *ip = ip_hdr(skb);
7280
7281 if (ip->protocol == IPPROTO_TCP)
7282 opts[0] |= TD0_IP_CS | TD0_TCP_CS;
7283 else if (ip->protocol == IPPROTO_UDP)
7284 opts[0] |= TD0_IP_CS | TD0_UDP_CS;
7285 else
7286 WARN_ON_ONCE(1);
7287 }
7288
7289 return true;
7290}
7291
7292static bool rtl8169_tso_csum_v2(struct rtl8169_private *tp,
7293 struct sk_buff *skb, u32 *opts)
7294{
hayeswangbdfa4ed2014-07-11 16:25:57 +08007295 u32 transport_offset = (u32)skb_transport_offset(skb);
hayeswang5888d3f2014-07-11 16:25:56 +08007296 u32 mss = skb_shinfo(skb)->gso_size;
7297
7298 if (mss) {
hayeswange9746042014-07-11 16:25:58 +08007299 if (transport_offset > GTTCPHO_MAX) {
7300 netif_warn(tp, tx_err, tp->dev,
7301 "Invalid transport offset 0x%x for TSO\n",
7302 transport_offset);
7303 return false;
7304 }
7305
7306 switch (get_protocol(skb)) {
7307 case htons(ETH_P_IP):
7308 opts[0] |= TD1_GTSENV4;
7309 break;
7310
7311 case htons(ETH_P_IPV6):
7312 if (msdn_giant_send_check(skb))
7313 return false;
7314
7315 opts[0] |= TD1_GTSENV6;
7316 break;
7317
7318 default:
7319 WARN_ON_ONCE(1);
7320 break;
7321 }
7322
hayeswangbdfa4ed2014-07-11 16:25:57 +08007323 opts[0] |= transport_offset << GTTCPHO_SHIFT;
hayeswang5888d3f2014-07-11 16:25:56 +08007324 opts[1] |= min(mss, TD_MSS_MAX) << TD1_MSS_SHIFT;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007325 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
hayeswange9746042014-07-11 16:25:58 +08007326 u8 ip_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327
françois romieub423e9a2013-05-18 01:24:46 +00007328 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007329 return !(skb_checksum_help(skb) || eth_skb_pad(skb));
françois romieub423e9a2013-05-18 01:24:46 +00007330
hayeswange9746042014-07-11 16:25:58 +08007331 if (transport_offset > TCPHO_MAX) {
7332 netif_warn(tp, tx_err, tp->dev,
7333 "Invalid transport offset 0x%x\n",
7334 transport_offset);
7335 return false;
7336 }
7337
7338 switch (get_protocol(skb)) {
7339 case htons(ETH_P_IP):
7340 opts[1] |= TD1_IPv4_CS;
7341 ip_protocol = ip_hdr(skb)->protocol;
7342 break;
7343
7344 case htons(ETH_P_IPV6):
7345 opts[1] |= TD1_IPv6_CS;
7346 ip_protocol = ipv6_hdr(skb)->nexthdr;
7347 break;
7348
7349 default:
7350 ip_protocol = IPPROTO_RAW;
7351 break;
7352 }
7353
7354 if (ip_protocol == IPPROTO_TCP)
7355 opts[1] |= TD1_TCP_CS;
7356 else if (ip_protocol == IPPROTO_UDP)
7357 opts[1] |= TD1_UDP_CS;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007358 else
7359 WARN_ON_ONCE(1);
hayeswange9746042014-07-11 16:25:58 +08007360
7361 opts[1] |= transport_offset << TCPHO_SHIFT;
françois romieub423e9a2013-05-18 01:24:46 +00007362 } else {
7363 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007364 return !eth_skb_pad(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365 }
hayeswang5888d3f2014-07-11 16:25:56 +08007366
françois romieub423e9a2013-05-18 01:24:46 +00007367 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368}
7369
Stephen Hemminger613573252009-08-31 19:50:58 +00007370static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
7371 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372{
7373 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007374 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007375 struct TxDesc *txd = tp->TxDescArray + entry;
7376 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007377 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378 dma_addr_t mapping;
7379 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007380 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007381 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02007382
Julien Ducourthial477206a2012-05-09 00:00:06 +02007383 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007384 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007385 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386 }
7387
7388 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007389 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007390
françois romieub423e9a2013-05-18 01:24:46 +00007391 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb));
7392 opts[0] = DescOwn;
7393
hayeswange9746042014-07-11 16:25:58 +08007394 if (!tp->tso_csum(tp, skb, opts)) {
7395 r8169_csum_workaround(tp, skb);
7396 return NETDEV_TX_OK;
7397 }
françois romieub423e9a2013-05-18 01:24:46 +00007398
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007399 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007400 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007401 if (unlikely(dma_mapping_error(d, mapping))) {
7402 if (net_ratelimit())
7403 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007404 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007406
7407 tp->tx_skb[entry].len = len;
7408 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409
Francois Romieu2b7b4312011-04-18 22:53:24 -07007410 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007411 if (frags < 0)
7412 goto err_dma_1;
7413 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07007414 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007415 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07007416 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007417 tp->tx_skb[entry].skb = skb;
7418 }
7419
Francois Romieu2b7b4312011-04-18 22:53:24 -07007420 txd->opts2 = cpu_to_le32(opts[1]);
7421
Richard Cochran5047fb52012-03-10 07:29:42 +00007422 skb_tx_timestamp(skb);
7423
Alexander Duycka0750132014-12-11 15:02:17 -08007424 /* Force memory writes to complete before releasing descriptor */
7425 dma_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426
Francois Romieucecb5fd2011-04-01 10:21:07 +02007427 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07007428 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429 txd->opts1 = cpu_to_le32(status);
7430
Alexander Duycka0750132014-12-11 15:02:17 -08007431 /* Force all memory writes to complete before notifying device */
David Dillow4c020a92010-03-03 16:33:10 +00007432 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433
Alexander Duycka0750132014-12-11 15:02:17 -08007434 tp->cur_tx += frags + 1;
7435
David S. Miller87cda7c2015-02-22 15:54:29 -05007436 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437
David S. Miller87cda7c2015-02-22 15:54:29 -05007438 mmiowb();
Francois Romieuda78dbf2012-01-26 14:18:23 +01007439
David S. Miller87cda7c2015-02-22 15:54:29 -05007440 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01007441 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
7442 * not miss a ring update when it notices a stopped queue.
7443 */
7444 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01007446 /* Sync with rtl_tx:
7447 * - publish queue status and cur_tx ring index (write barrier)
7448 * - refresh dirty_tx ring index (read barrier).
7449 * May the current thread have a pessimistic view of the ring
7450 * status and forget to wake up queue, a racing rtl_tx thread
7451 * can't.
7452 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007453 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02007454 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455 netif_wake_queue(dev);
7456 }
7457
Stephen Hemminger613573252009-08-31 19:50:58 +00007458 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007460err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007461 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007462err_dma_0:
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07007463 dev_kfree_skb_any(skb);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007464 dev->stats.tx_dropped++;
7465 return NETDEV_TX_OK;
7466
7467err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007469 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00007470 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471}
7472
7473static void rtl8169_pcierr_interrupt(struct net_device *dev)
7474{
7475 struct rtl8169_private *tp = netdev_priv(dev);
7476 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477 u16 pci_status, pci_cmd;
7478
7479 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
7480 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
7481
Joe Perchesbf82c182010-02-09 11:49:50 +00007482 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
7483 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484
7485 /*
7486 * The recovery sequence below admits a very elaborated explanation:
7487 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01007488 * - I did not see what else could be done;
7489 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007490 *
7491 * Feel free to adjust to your needs.
7492 */
Francois Romieua27993f2006-12-18 00:04:19 +01007493 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01007494 pci_cmd &= ~PCI_COMMAND_PARITY;
7495 else
7496 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
7497
7498 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499
7500 pci_write_config_word(pdev, PCI_STATUS,
7501 pci_status & (PCI_STATUS_DETECTED_PARITY |
7502 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
7503 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
7504
7505 /* The infamous DAC f*ckup only happens at boot time */
Timo Teräs9fba0812013-01-15 21:01:24 +00007506 if ((tp->cp_cmd & PCIDAC) && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00007507 void __iomem *ioaddr = tp->mmio_addr;
7508
Joe Perchesbf82c182010-02-09 11:49:50 +00007509 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510 tp->cp_cmd &= ~PCIDAC;
7511 RTL_W16(CPlusCmd, tp->cp_cmd);
7512 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007513 }
7514
françois romieue6de30d2011-01-03 15:08:37 +00007515 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01007516
Francois Romieu98ddf982012-01-31 10:47:34 +01007517 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518}
7519
Francois Romieuda78dbf2012-01-26 14:18:23 +01007520static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007521{
7522 unsigned int dirty_tx, tx_left;
7523
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524 dirty_tx = tp->dirty_tx;
7525 smp_rmb();
7526 tx_left = tp->cur_tx - dirty_tx;
7527
7528 while (tx_left > 0) {
7529 unsigned int entry = dirty_tx % NUM_TX_DESC;
7530 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531 u32 status;
7532
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
7534 if (status & DescOwn)
7535 break;
7536
Alexander Duycka0750132014-12-11 15:02:17 -08007537 /* This barrier is needed to keep us from reading
7538 * any other fields out of the Tx descriptor until
7539 * we know the status of DescOwn
7540 */
7541 dma_rmb();
7542
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007543 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
7544 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007545 if (status & LastFrag) {
David S. Miller87cda7c2015-02-22 15:54:29 -05007546 u64_stats_update_begin(&tp->tx_stats.syncp);
7547 tp->tx_stats.packets++;
7548 tp->tx_stats.bytes += tx_skb->skb->len;
7549 u64_stats_update_end(&tp->tx_stats.syncp);
Florian Fainelli7a4b813c2017-08-24 18:34:44 -07007550 dev_consume_skb_any(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551 tx_skb->skb = NULL;
7552 }
7553 dirty_tx++;
7554 tx_left--;
7555 }
7556
7557 if (tp->dirty_tx != dirty_tx) {
7558 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01007559 /* Sync with rtl8169_start_xmit:
7560 * - publish dirty_tx ring index (write barrier)
7561 * - refresh cur_tx ring index and queue status (read barrier)
7562 * May the current thread miss the stopped queue condition,
7563 * a racing xmit thread can only have a right view of the
7564 * ring status.
7565 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007566 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02007568 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569 netif_wake_queue(dev);
7570 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02007571 /*
7572 * 8168 hack: TxPoll requests are lost when the Tx packets are
7573 * too close. Let's kick an extra TxPoll request when a burst
7574 * of start_xmit activity is detected (if it is not detected,
7575 * it is slow enough). -- FR
7576 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007577 if (tp->cur_tx != dirty_tx) {
7578 void __iomem *ioaddr = tp->mmio_addr;
7579
Francois Romieud78ae2d2007-08-26 20:08:19 +02007580 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582 }
7583}
7584
Francois Romieu126fa4b2005-05-12 20:09:17 -04007585static inline int rtl8169_fragmented_frame(u32 status)
7586{
7587 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
7588}
7589
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007590static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007592 u32 status = opts1 & RxProtoMask;
7593
7594 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00007595 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007596 skb->ip_summed = CHECKSUM_UNNECESSARY;
7597 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07007598 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599}
7600
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007601static struct sk_buff *rtl8169_try_rx_copy(void *data,
7602 struct rtl8169_private *tp,
7603 int pkt_size,
7604 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02007606 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007607 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007608
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007609 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007610 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007611 prefetch(data);
Alexander Duycke2338f82014-12-09 19:41:09 -08007612 skb = napi_alloc_skb(&tp->napi, pkt_size);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007613 if (skb)
7614 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007615 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
7616
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007617 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007618}
7619
Francois Romieuda78dbf2012-01-26 14:18:23 +01007620static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621{
7622 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007623 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007624
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625 cur_rx = tp->cur_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626
Timo Teräs9fba0812013-01-15 21:01:24 +00007627 for (rx_left = min(budget, NUM_RX_DESC); rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007629 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630 u32 status;
7631
David S. Miller8decf862011-09-22 03:23:13 -04007632 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633 if (status & DescOwn)
7634 break;
Alexander Duycka0750132014-12-11 15:02:17 -08007635
7636 /* This barrier is needed to keep us from reading
7637 * any other fields out of the Rx descriptor until
7638 * we know the status of DescOwn
7639 */
7640 dma_rmb();
7641
Richard Dawe4dcb7d32005-05-27 21:12:00 +02007642 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007643 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
7644 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007645 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02007647 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02007649 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007650 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01007651 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007652 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007653 }
Ben Greear6bbe0212012-02-10 15:04:33 +00007654 if ((status & (RxRUNT | RxCRC)) &&
7655 !(status & (RxRWT | RxFOVF)) &&
7656 (dev->features & NETIF_F_RXALL))
7657 goto process_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007659 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00007660 dma_addr_t addr;
7661 int pkt_size;
7662
7663process_pkt:
7664 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00007665 if (likely(!(dev->features & NETIF_F_RXFCS)))
7666 pkt_size = (status & 0x00003fff) - 4;
7667 else
7668 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007669
Francois Romieu126fa4b2005-05-12 20:09:17 -04007670 /*
7671 * The driver does not support incoming fragmented
7672 * frames. They are seen as a symptom of over-mtu
7673 * sized frames.
7674 */
7675 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02007676 dev->stats.rx_dropped++;
7677 dev->stats.rx_length_errors++;
françois romieuce11ff52013-01-24 13:30:06 +00007678 goto release_descriptor;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007679 }
7680
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007681 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
7682 tp, pkt_size, addr);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007683 if (!skb) {
7684 dev->stats.rx_dropped++;
françois romieuce11ff52013-01-24 13:30:06 +00007685 goto release_descriptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007686 }
7687
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007688 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689 skb_put(skb, pkt_size);
7690 skb->protocol = eth_type_trans(skb, dev);
7691
Francois Romieu7a8fc772011-03-01 17:18:33 +01007692 rtl8169_rx_vlan_tag(desc, skb);
7693
françois romieu39174292015-11-11 23:35:18 +01007694 if (skb->pkt_type == PACKET_MULTICAST)
7695 dev->stats.multicast++;
7696
Francois Romieu56de4142011-03-15 17:29:31 +01007697 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698
Junchang Wang8027aa22012-03-04 23:30:32 +01007699 u64_stats_update_begin(&tp->rx_stats.syncp);
7700 tp->rx_stats.packets++;
7701 tp->rx_stats.bytes += pkt_size;
7702 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703 }
françois romieuce11ff52013-01-24 13:30:06 +00007704release_descriptor:
7705 desc->opts2 = 0;
françois romieuce11ff52013-01-24 13:30:06 +00007706 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007707 }
7708
7709 count = cur_rx - tp->cur_rx;
7710 tp->cur_rx = cur_rx;
7711
Linus Torvalds1da177e2005-04-16 15:20:36 -07007712 return count;
7713}
7714
Francois Romieu07d3f512007-02-21 22:40:46 +01007715static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716{
Francois Romieu07d3f512007-02-21 22:40:46 +01007717 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007719 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007720 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007722 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007723 if (status && status != 0xffff) {
7724 status &= RTL_EVENT_NAPI | tp->event_slow;
7725 if (status) {
7726 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00007727
Francois Romieuda78dbf2012-01-26 14:18:23 +01007728 rtl_irq_disable(tp);
7729 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732 return IRQ_RETVAL(handled);
7733}
7734
Francois Romieuda78dbf2012-01-26 14:18:23 +01007735/*
7736 * Workqueue context.
7737 */
7738static void rtl_slow_event_work(struct rtl8169_private *tp)
7739{
7740 struct net_device *dev = tp->dev;
7741 u16 status;
7742
7743 status = rtl_get_events(tp) & tp->event_slow;
7744 rtl_ack_events(tp, status);
7745
7746 if (unlikely(status & RxFIFOOver)) {
7747 switch (tp->mac_version) {
7748 /* Work around for rx fifo overflow */
7749 case RTL_GIGA_MAC_VER_11:
7750 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01007751 /* XXX - Hack alert. See rtl_task(). */
7752 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007753 default:
7754 break;
7755 }
7756 }
7757
7758 if (unlikely(status & SYSErr))
7759 rtl8169_pcierr_interrupt(dev);
7760
7761 if (status & LinkChg)
7762 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
7763
françois romieu7dbb4912012-06-09 10:53:16 +00007764 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007765}
7766
Francois Romieu4422bcd2012-01-26 11:23:32 +01007767static void rtl_task(struct work_struct *work)
7768{
Francois Romieuda78dbf2012-01-26 14:18:23 +01007769 static const struct {
7770 int bitnr;
7771 void (*action)(struct rtl8169_private *);
7772 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01007773 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007774 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
7775 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
7776 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
7777 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01007778 struct rtl8169_private *tp =
7779 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007780 struct net_device *dev = tp->dev;
7781 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01007782
Francois Romieuda78dbf2012-01-26 14:18:23 +01007783 rtl_lock_work(tp);
7784
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007785 if (!netif_running(dev) ||
7786 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01007787 goto out_unlock;
7788
7789 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
7790 bool pending;
7791
Francois Romieuda78dbf2012-01-26 14:18:23 +01007792 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007793 if (pending)
7794 rtl_work[i].action(tp);
7795 }
7796
7797out_unlock:
7798 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01007799}
7800
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007801static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007803 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
7804 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01007805 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
7806 int work_done= 0;
7807 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007808
Francois Romieuda78dbf2012-01-26 14:18:23 +01007809 status = rtl_get_events(tp);
7810 rtl_ack_events(tp, status & ~tp->event_slow);
7811
7812 if (status & RTL_EVENT_NAPI_RX)
7813 work_done = rtl_rx(dev, tp, (u32) budget);
7814
7815 if (status & RTL_EVENT_NAPI_TX)
7816 rtl_tx(dev, tp);
7817
7818 if (status & tp->event_slow) {
7819 enable_mask &= ~tp->event_slow;
7820
7821 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
7822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007824 if (work_done < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08007825 napi_complete_done(napi, work_done);
David Dillowf11a3772009-05-22 15:29:34 +00007826
Francois Romieuda78dbf2012-01-26 14:18:23 +01007827 rtl_irq_enable(tp, enable_mask);
7828 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829 }
7830
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007831 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007832}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833
Francois Romieu523a6092008-09-10 22:28:56 +02007834static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
7835{
7836 struct rtl8169_private *tp = netdev_priv(dev);
7837
7838 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
7839 return;
7840
7841 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
7842 RTL_W32(RxMissed, 0);
7843}
7844
Linus Torvalds1da177e2005-04-16 15:20:36 -07007845static void rtl8169_down(struct net_device *dev)
7846{
7847 struct rtl8169_private *tp = netdev_priv(dev);
7848 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849
Francois Romieu4876cc12011-03-11 21:07:11 +01007850 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007851
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01007852 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007853 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007854
Hayes Wang92fc43b2011-07-06 15:58:03 +08007855 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007856 /*
7857 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01007858 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
7859 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007860 */
Francois Romieu523a6092008-09-10 22:28:56 +02007861 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007864 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866 rtl8169_tx_clear(tp);
7867
7868 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00007869
7870 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871}
7872
7873static int rtl8169_close(struct net_device *dev)
7874{
7875 struct rtl8169_private *tp = netdev_priv(dev);
7876 struct pci_dev *pdev = tp->pci_dev;
7877
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007878 pm_runtime_get_sync(&pdev->dev);
7879
Francois Romieucecb5fd2011-04-01 10:21:07 +02007880 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08007881 rtl8169_update_counters(dev);
7882
Francois Romieuda78dbf2012-01-26 14:18:23 +01007883 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007884 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007885
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007887 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007888
Lekensteyn4ea72442013-07-22 09:53:30 +02007889 cancel_work_sync(&tp->wk.work);
7890
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007891 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007892
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00007893 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7894 tp->RxPhyAddr);
7895 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7896 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897 tp->TxDescArray = NULL;
7898 tp->RxDescArray = NULL;
7899
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007900 pm_runtime_put_sync(&pdev->dev);
7901
Linus Torvalds1da177e2005-04-16 15:20:36 -07007902 return 0;
7903}
7904
Francois Romieudc1c00c2012-03-08 10:06:18 +01007905#ifdef CONFIG_NET_POLL_CONTROLLER
7906static void rtl8169_netpoll(struct net_device *dev)
7907{
7908 struct rtl8169_private *tp = netdev_priv(dev);
7909
7910 rtl8169_interrupt(tp->pci_dev->irq, dev);
7911}
7912#endif
7913
Francois Romieudf43ac72012-03-08 09:48:40 +01007914static int rtl_open(struct net_device *dev)
7915{
7916 struct rtl8169_private *tp = netdev_priv(dev);
7917 void __iomem *ioaddr = tp->mmio_addr;
7918 struct pci_dev *pdev = tp->pci_dev;
7919 int retval = -ENOMEM;
7920
7921 pm_runtime_get_sync(&pdev->dev);
7922
7923 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02007924 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01007925 * dma_alloc_coherent provides more.
7926 */
7927 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
7928 &tp->TxPhyAddr, GFP_KERNEL);
7929 if (!tp->TxDescArray)
7930 goto err_pm_runtime_put;
7931
7932 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
7933 &tp->RxPhyAddr, GFP_KERNEL);
7934 if (!tp->RxDescArray)
7935 goto err_free_tx_0;
7936
7937 retval = rtl8169_init_ring(dev);
7938 if (retval < 0)
7939 goto err_free_rx_1;
7940
7941 INIT_WORK(&tp->wk.work, rtl_task);
7942
7943 smp_mb();
7944
7945 rtl_request_firmware(tp);
7946
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007947 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01007948 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
7949 dev->name, dev);
7950 if (retval < 0)
7951 goto err_release_fw_2;
7952
7953 rtl_lock_work(tp);
7954
7955 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
7956
7957 napi_enable(&tp->napi);
7958
7959 rtl8169_init_phy(dev, tp);
7960
7961 __rtl8169_set_features(dev, dev->features);
7962
7963 rtl_pll_power_up(tp);
7964
7965 rtl_hw_start(dev);
7966
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007967 if (!rtl8169_init_counter_offsets(dev))
7968 netif_warn(tp, hw, dev, "counter reset/update failed\n");
7969
Francois Romieudf43ac72012-03-08 09:48:40 +01007970 netif_start_queue(dev);
7971
7972 rtl_unlock_work(tp);
7973
7974 tp->saved_wolopts = 0;
7975 pm_runtime_put_noidle(&pdev->dev);
7976
7977 rtl8169_check_link_status(dev, tp, ioaddr);
7978out:
7979 return retval;
7980
7981err_release_fw_2:
7982 rtl_release_firmware(tp);
7983 rtl8169_rx_clear(tp);
7984err_free_rx_1:
7985 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7986 tp->RxPhyAddr);
7987 tp->RxDescArray = NULL;
7988err_free_tx_0:
7989 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7990 tp->TxPhyAddr);
7991 tp->TxDescArray = NULL;
7992err_pm_runtime_put:
7993 pm_runtime_put_noidle(&pdev->dev);
7994 goto out;
7995}
7996
stephen hemmingerbc1f4472017-01-06 19:12:52 -08007997static void
Junchang Wang8027aa22012-03-04 23:30:32 +01007998rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007999{
8000 struct rtl8169_private *tp = netdev_priv(dev);
8001 void __iomem *ioaddr = tp->mmio_addr;
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08008002 struct pci_dev *pdev = tp->pci_dev;
Corinna Vinschen42020322015-09-10 10:47:35 +02008003 struct rtl8169_counters *counters = tp->counters;
Junchang Wang8027aa22012-03-04 23:30:32 +01008004 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08008006 pm_runtime_get_noresume(&pdev->dev);
8007
8008 if (netif_running(dev) && pm_runtime_active(&pdev->dev))
Francois Romieu523a6092008-09-10 22:28:56 +02008009 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02008010
Junchang Wang8027aa22012-03-04 23:30:32 +01008011 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07008012 start = u64_stats_fetch_begin_irq(&tp->rx_stats.syncp);
Junchang Wang8027aa22012-03-04 23:30:32 +01008013 stats->rx_packets = tp->rx_stats.packets;
8014 stats->rx_bytes = tp->rx_stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07008015 } while (u64_stats_fetch_retry_irq(&tp->rx_stats.syncp, start));
Junchang Wang8027aa22012-03-04 23:30:32 +01008016
Junchang Wang8027aa22012-03-04 23:30:32 +01008017 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07008018 start = u64_stats_fetch_begin_irq(&tp->tx_stats.syncp);
Junchang Wang8027aa22012-03-04 23:30:32 +01008019 stats->tx_packets = tp->tx_stats.packets;
8020 stats->tx_bytes = tp->tx_stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07008021 } while (u64_stats_fetch_retry_irq(&tp->tx_stats.syncp, start));
Junchang Wang8027aa22012-03-04 23:30:32 +01008022
8023 stats->rx_dropped = dev->stats.rx_dropped;
8024 stats->tx_dropped = dev->stats.tx_dropped;
8025 stats->rx_length_errors = dev->stats.rx_length_errors;
8026 stats->rx_errors = dev->stats.rx_errors;
8027 stats->rx_crc_errors = dev->stats.rx_crc_errors;
8028 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
8029 stats->rx_missed_errors = dev->stats.rx_missed_errors;
Corinna Vinschend7d2d892015-08-27 17:11:48 +02008030 stats->multicast = dev->stats.multicast;
Junchang Wang8027aa22012-03-04 23:30:32 +01008031
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02008032 /*
8033 * Fetch additonal counter values missing in stats collected by driver
8034 * from tally counters.
8035 */
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08008036 if (pm_runtime_active(&pdev->dev))
8037 rtl8169_update_counters(dev);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02008038
8039 /*
8040 * Subtract values fetched during initalization.
8041 * See rtl8169_init_counter_offsets for a description why we do that.
8042 */
Corinna Vinschen42020322015-09-10 10:47:35 +02008043 stats->tx_errors = le64_to_cpu(counters->tx_errors) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02008044 le64_to_cpu(tp->tc_offset.tx_errors);
Corinna Vinschen42020322015-09-10 10:47:35 +02008045 stats->collisions = le32_to_cpu(counters->tx_multi_collision) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02008046 le32_to_cpu(tp->tc_offset.tx_multi_collision);
Corinna Vinschen42020322015-09-10 10:47:35 +02008047 stats->tx_aborted_errors = le16_to_cpu(counters->tx_aborted) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02008048 le16_to_cpu(tp->tc_offset.tx_aborted);
8049
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08008050 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051}
8052
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008053static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01008054{
françois romieu065c27c2011-01-03 15:08:12 +00008055 struct rtl8169_private *tp = netdev_priv(dev);
8056
Francois Romieu5d06a992006-02-23 00:47:58 +01008057 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008058 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01008059
8060 netif_device_detach(dev);
8061 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01008062
8063 rtl_lock_work(tp);
8064 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01008065 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01008066 rtl_unlock_work(tp);
8067
8068 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008069}
Francois Romieu5d06a992006-02-23 00:47:58 +01008070
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008071#ifdef CONFIG_PM
8072
8073static int rtl8169_suspend(struct device *device)
8074{
8075 struct pci_dev *pdev = to_pci_dev(device);
8076 struct net_device *dev = pci_get_drvdata(pdev);
8077
8078 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02008079
Francois Romieu5d06a992006-02-23 00:47:58 +01008080 return 0;
8081}
8082
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008083static void __rtl8169_resume(struct net_device *dev)
8084{
françois romieu065c27c2011-01-03 15:08:12 +00008085 struct rtl8169_private *tp = netdev_priv(dev);
8086
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008087 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00008088
8089 rtl_pll_power_up(tp);
8090
Artem Savkovcff4c162012-04-03 10:29:11 +00008091 rtl_lock_work(tp);
8092 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01008093 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00008094 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01008095
Francois Romieu98ddf982012-01-31 10:47:34 +01008096 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008097}
8098
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008099static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01008100{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008101 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01008102 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00008103 struct rtl8169_private *tp = netdev_priv(dev);
8104
8105 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01008106
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008107 if (netif_running(dev))
8108 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01008109
Francois Romieu5d06a992006-02-23 00:47:58 +01008110 return 0;
8111}
8112
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008113static int rtl8169_runtime_suspend(struct device *device)
8114{
8115 struct pci_dev *pdev = to_pci_dev(device);
8116 struct net_device *dev = pci_get_drvdata(pdev);
8117 struct rtl8169_private *tp = netdev_priv(dev);
8118
8119 if (!tp->TxDescArray)
8120 return 0;
8121
Francois Romieuda78dbf2012-01-26 14:18:23 +01008122 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008123 tp->saved_wolopts = __rtl8169_get_wol(tp);
8124 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01008125 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008126
8127 rtl8169_net_suspend(dev);
8128
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08008129 /* Update counters before going runtime suspend */
8130 rtl8169_rx_missed(dev, tp->mmio_addr);
8131 rtl8169_update_counters(dev);
8132
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008133 return 0;
8134}
8135
8136static int rtl8169_runtime_resume(struct device *device)
8137{
8138 struct pci_dev *pdev = to_pci_dev(device);
8139 struct net_device *dev = pci_get_drvdata(pdev);
8140 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Linf51d4a12016-07-29 16:37:56 +08008141 rtl_rar_set(tp, dev->dev_addr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008142
8143 if (!tp->TxDescArray)
8144 return 0;
8145
Francois Romieuda78dbf2012-01-26 14:18:23 +01008146 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008147 __rtl8169_set_wol(tp, tp->saved_wolopts);
8148 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01008149 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008150
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00008151 rtl8169_init_phy(dev, tp);
8152
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008153 __rtl8169_resume(dev);
8154
8155 return 0;
8156}
8157
8158static int rtl8169_runtime_idle(struct device *device)
8159{
8160 struct pci_dev *pdev = to_pci_dev(device);
8161 struct net_device *dev = pci_get_drvdata(pdev);
8162 struct rtl8169_private *tp = netdev_priv(dev);
8163
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00008164 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00008165}
8166
Alexey Dobriyan47145212009-12-14 18:00:08 -08008167static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02008168 .suspend = rtl8169_suspend,
8169 .resume = rtl8169_resume,
8170 .freeze = rtl8169_suspend,
8171 .thaw = rtl8169_resume,
8172 .poweroff = rtl8169_suspend,
8173 .restore = rtl8169_resume,
8174 .runtime_suspend = rtl8169_runtime_suspend,
8175 .runtime_resume = rtl8169_runtime_resume,
8176 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008177};
8178
8179#define RTL8169_PM_OPS (&rtl8169_pm_ops)
8180
8181#else /* !CONFIG_PM */
8182
8183#define RTL8169_PM_OPS NULL
8184
8185#endif /* !CONFIG_PM */
8186
David S. Miller1805b2f2011-10-24 18:18:09 -04008187static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
8188{
8189 void __iomem *ioaddr = tp->mmio_addr;
8190
8191 /* WoL fails with 8168b when the receiver is disabled. */
8192 switch (tp->mac_version) {
8193 case RTL_GIGA_MAC_VER_11:
8194 case RTL_GIGA_MAC_VER_12:
8195 case RTL_GIGA_MAC_VER_17:
8196 pci_clear_master(tp->pci_dev);
8197
8198 RTL_W8(ChipCmd, CmdRxEnb);
8199 /* PCI commit */
8200 RTL_R8(ChipCmd);
8201 break;
8202 default:
8203 break;
8204 }
8205}
8206
Francois Romieu1765f952008-09-13 17:21:40 +02008207static void rtl_shutdown(struct pci_dev *pdev)
8208{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008209 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00008210 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00008211 struct device *d = &pdev->dev;
8212
8213 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02008214
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008215 rtl8169_net_suspend(dev);
8216
Francois Romieucecb5fd2011-04-01 10:21:07 +02008217 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08008218 rtl_rar_set(tp, dev->perm_addr);
8219
Hayes Wang92fc43b2011-07-06 15:58:03 +08008220 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00008221
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008222 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04008223 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
8224 rtl_wol_suspend_quirk(tp);
8225 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00008226 }
8227
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008228 pci_wake_from_d3(pdev, true);
8229 pci_set_power_state(pdev, PCI_D3hot);
8230 }
françois romieu2a15cd22012-03-06 01:14:12 +00008231
8232 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008233}
Francois Romieu5d06a992006-02-23 00:47:58 +01008234
Bill Pembertonbaf63292012-12-03 09:23:28 -05008235static void rtl_remove_one(struct pci_dev *pdev)
Francois Romieue27566e2012-03-08 09:54:01 +01008236{
8237 struct net_device *dev = pci_get_drvdata(pdev);
8238 struct rtl8169_private *tp = netdev_priv(dev);
8239
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008240 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
8241 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008242 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
8243 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8244 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8245 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008246 r8168_check_dash(tp)) {
Francois Romieue27566e2012-03-08 09:54:01 +01008247 rtl8168_driver_stop(tp);
8248 }
8249
Devendra Nagaad1be8d2012-05-31 01:51:20 +00008250 netif_napi_del(&tp->napi);
8251
Francois Romieue27566e2012-03-08 09:54:01 +01008252 unregister_netdev(dev);
8253
Corinna Vinschen42020322015-09-10 10:47:35 +02008254 dma_free_coherent(&tp->pci_dev->dev, sizeof(*tp->counters),
8255 tp->counters, tp->counters_phys_addr);
8256
Francois Romieue27566e2012-03-08 09:54:01 +01008257 rtl_release_firmware(tp);
8258
8259 if (pci_dev_run_wake(pdev))
8260 pm_runtime_get_noresume(&pdev->dev);
8261
8262 /* restore original MAC address */
8263 rtl_rar_set(tp, dev->perm_addr);
8264
8265 rtl_disable_msi(pdev, tp);
8266 rtl8169_release_board(pdev, dev, tp->mmio_addr);
Francois Romieue27566e2012-03-08 09:54:01 +01008267}
8268
Francois Romieufa9c3852012-03-08 10:01:50 +01008269static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01008270 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01008271 .ndo_stop = rtl8169_close,
8272 .ndo_get_stats64 = rtl8169_get_stats64,
8273 .ndo_start_xmit = rtl8169_start_xmit,
8274 .ndo_tx_timeout = rtl8169_tx_timeout,
8275 .ndo_validate_addr = eth_validate_addr,
8276 .ndo_change_mtu = rtl8169_change_mtu,
8277 .ndo_fix_features = rtl8169_fix_features,
8278 .ndo_set_features = rtl8169_set_features,
8279 .ndo_set_mac_address = rtl_set_mac_address,
8280 .ndo_do_ioctl = rtl8169_ioctl,
8281 .ndo_set_rx_mode = rtl_set_rx_mode,
8282#ifdef CONFIG_NET_POLL_CONTROLLER
8283 .ndo_poll_controller = rtl8169_netpoll,
8284#endif
8285
8286};
8287
Francois Romieu31fa8b12012-03-08 10:09:40 +01008288static const struct rtl_cfg_info {
8289 void (*hw_start)(struct net_device *);
8290 unsigned int region;
8291 unsigned int align;
8292 u16 event_slow;
8293 unsigned features;
Francois Romieu50970832017-10-27 13:24:49 +03008294 const struct rtl_coalesce_info *coalesce_info;
Francois Romieu31fa8b12012-03-08 10:09:40 +01008295 u8 default_ver;
8296} rtl_cfg_infos [] = {
8297 [RTL_CFG_0] = {
8298 .hw_start = rtl_hw_start_8169,
8299 .region = 1,
8300 .align = 0,
8301 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
8302 .features = RTL_FEATURE_GMII,
Francois Romieu50970832017-10-27 13:24:49 +03008303 .coalesce_info = rtl_coalesce_info_8169,
Francois Romieu31fa8b12012-03-08 10:09:40 +01008304 .default_ver = RTL_GIGA_MAC_VER_01,
8305 },
8306 [RTL_CFG_1] = {
8307 .hw_start = rtl_hw_start_8168,
8308 .region = 2,
8309 .align = 8,
8310 .event_slow = SYSErr | LinkChg | RxOverflow,
8311 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
Francois Romieu50970832017-10-27 13:24:49 +03008312 .coalesce_info = rtl_coalesce_info_8168_8136,
Francois Romieu31fa8b12012-03-08 10:09:40 +01008313 .default_ver = RTL_GIGA_MAC_VER_11,
8314 },
8315 [RTL_CFG_2] = {
8316 .hw_start = rtl_hw_start_8101,
8317 .region = 2,
8318 .align = 8,
8319 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
8320 PCSTimeout,
8321 .features = RTL_FEATURE_MSI,
Francois Romieu50970832017-10-27 13:24:49 +03008322 .coalesce_info = rtl_coalesce_info_8168_8136,
Francois Romieu31fa8b12012-03-08 10:09:40 +01008323 .default_ver = RTL_GIGA_MAC_VER_13,
8324 }
8325};
8326
8327/* Cfg9346_Unlock assumed. */
8328static unsigned rtl_try_msi(struct rtl8169_private *tp,
8329 const struct rtl_cfg_info *cfg)
8330{
8331 void __iomem *ioaddr = tp->mmio_addr;
8332 unsigned msi = 0;
8333 u8 cfg2;
8334
8335 cfg2 = RTL_R8(Config2) & ~MSIEnable;
8336 if (cfg->features & RTL_FEATURE_MSI) {
8337 if (pci_enable_msi(tp->pci_dev)) {
8338 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
8339 } else {
8340 cfg2 |= MSIEnable;
8341 msi = RTL_FEATURE_MSI;
8342 }
8343 }
8344 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
8345 RTL_W8(Config2, cfg2);
8346 return msi;
8347}
8348
Hayes Wangc5583862012-07-02 17:23:22 +08008349DECLARE_RTL_COND(rtl_link_list_ready_cond)
8350{
8351 void __iomem *ioaddr = tp->mmio_addr;
8352
8353 return RTL_R8(MCU) & LINK_LIST_RDY;
8354}
8355
8356DECLARE_RTL_COND(rtl_rxtx_empty_cond)
8357{
8358 void __iomem *ioaddr = tp->mmio_addr;
8359
8360 return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
8361}
8362
Bill Pembertonbaf63292012-12-03 09:23:28 -05008363static void rtl_hw_init_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008364{
8365 void __iomem *ioaddr = tp->mmio_addr;
8366 u32 data;
8367
8368 tp->ocp_base = OCP_STD_PHY_BASE;
8369
8370 RTL_W32(MISC, RTL_R32(MISC) | RXDV_GATED_EN);
8371
8372 if (!rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 42))
8373 return;
8374
8375 if (!rtl_udelay_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42))
8376 return;
8377
8378 RTL_W8(ChipCmd, RTL_R8(ChipCmd) & ~(CmdTxEnb | CmdRxEnb));
8379 msleep(1);
8380 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
8381
Hayes Wang5f8bcce2012-07-10 08:47:05 +02008382 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08008383 data &= ~(1 << 14);
8384 r8168_mac_ocp_write(tp, 0xe8de, data);
8385
8386 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
8387 return;
8388
Hayes Wang5f8bcce2012-07-10 08:47:05 +02008389 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08008390 data |= (1 << 15);
8391 r8168_mac_ocp_write(tp, 0xe8de, data);
8392
8393 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
8394 return;
8395}
8396
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008397static void rtl_hw_init_8168ep(struct rtl8169_private *tp)
8398{
8399 rtl8168ep_stop_cmac(tp);
8400 rtl_hw_init_8168g(tp);
8401}
8402
Bill Pembertonbaf63292012-12-03 09:23:28 -05008403static void rtl_hw_initialize(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008404{
8405 switch (tp->mac_version) {
8406 case RTL_GIGA_MAC_VER_40:
8407 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00008408 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00008409 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08008410 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008411 case RTL_GIGA_MAC_VER_45:
8412 case RTL_GIGA_MAC_VER_46:
8413 case RTL_GIGA_MAC_VER_47:
8414 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008415 rtl_hw_init_8168g(tp);
8416 break;
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008417 case RTL_GIGA_MAC_VER_49:
8418 case RTL_GIGA_MAC_VER_50:
8419 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008420 rtl_hw_init_8168ep(tp);
Hayes Wangc5583862012-07-02 17:23:22 +08008421 break;
Hayes Wangc5583862012-07-02 17:23:22 +08008422 default:
8423 break;
8424 }
8425}
8426
hayeswang929a0312014-09-16 11:40:47 +08008427static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Francois Romieu3b6cf252012-03-08 09:59:04 +01008428{
8429 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
8430 const unsigned int region = cfg->region;
8431 struct rtl8169_private *tp;
8432 struct mii_if_info *mii;
8433 struct net_device *dev;
8434 void __iomem *ioaddr;
8435 int chipset, i;
8436 int rc;
8437
8438 if (netif_msg_drv(&debug)) {
8439 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
8440 MODULENAME, RTL8169_VERSION);
8441 }
8442
8443 dev = alloc_etherdev(sizeof (*tp));
8444 if (!dev) {
8445 rc = -ENOMEM;
8446 goto out;
8447 }
8448
8449 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01008450 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008451 tp = netdev_priv(dev);
8452 tp->dev = dev;
8453 tp->pci_dev = pdev;
8454 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
8455
8456 mii = &tp->mii;
8457 mii->dev = dev;
8458 mii->mdio_read = rtl_mdio_read;
8459 mii->mdio_write = rtl_mdio_write;
8460 mii->phy_id_mask = 0x1f;
8461 mii->reg_num_mask = 0x1f;
8462 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
8463
8464 /* disable ASPM completely as that cause random device stop working
8465 * problems as well as full system hangs for some PCIe devices users */
8466 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
8467 PCIE_LINK_STATE_CLKPM);
8468
8469 /* enable device (incl. PCI PM wakeup and hotplug setup) */
8470 rc = pci_enable_device(pdev);
8471 if (rc < 0) {
8472 netif_err(tp, probe, dev, "enable failure\n");
8473 goto err_out_free_dev_1;
8474 }
8475
8476 if (pci_set_mwi(pdev) < 0)
8477 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
8478
8479 /* make sure PCI base addr 1 is MMIO */
8480 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
8481 netif_err(tp, probe, dev,
8482 "region #%d not an MMIO resource, aborting\n",
8483 region);
8484 rc = -ENODEV;
8485 goto err_out_mwi_2;
8486 }
8487
8488 /* check for weird/broken PCI region reporting */
8489 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
8490 netif_err(tp, probe, dev,
8491 "Invalid PCI region size(s), aborting\n");
8492 rc = -ENODEV;
8493 goto err_out_mwi_2;
8494 }
8495
8496 rc = pci_request_regions(pdev, MODULENAME);
8497 if (rc < 0) {
8498 netif_err(tp, probe, dev, "could not request regions\n");
8499 goto err_out_mwi_2;
8500 }
8501
Francois Romieu3b6cf252012-03-08 09:59:04 +01008502 /* ioremap MMIO region */
8503 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
8504 if (!ioaddr) {
8505 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
8506 rc = -EIO;
8507 goto err_out_free_res_3;
8508 }
8509 tp->mmio_addr = ioaddr;
8510
8511 if (!pci_is_pcie(pdev))
8512 netif_info(tp, probe, dev, "not PCI Express\n");
8513
8514 /* Identify chip attached to board */
8515 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
8516
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008517 tp->cp_cmd = 0;
8518
8519 if ((sizeof(dma_addr_t) > 4) &&
8520 (use_dac == 1 || (use_dac == -1 && pci_is_pcie(pdev) &&
8521 tp->mac_version >= RTL_GIGA_MAC_VER_18)) &&
Ard Biesheuvelf0076432016-10-14 14:40:33 +01008522 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) &&
8523 !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) {
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008524
8525 /* CPlusCmd Dual Access Cycle is only needed for non-PCIe */
8526 if (!pci_is_pcie(pdev))
8527 tp->cp_cmd |= PCIDAC;
8528 dev->features |= NETIF_F_HIGHDMA;
8529 } else {
8530 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8531 if (rc < 0) {
8532 netif_err(tp, probe, dev, "DMA configuration failed\n");
8533 goto err_out_unmap_4;
8534 }
8535 }
8536
Francois Romieu3b6cf252012-03-08 09:59:04 +01008537 rtl_init_rxcfg(tp);
8538
8539 rtl_irq_disable(tp);
8540
Hayes Wangc5583862012-07-02 17:23:22 +08008541 rtl_hw_initialize(tp);
8542
Francois Romieu3b6cf252012-03-08 09:59:04 +01008543 rtl_hw_reset(tp);
8544
8545 rtl_ack_events(tp, 0xffff);
8546
8547 pci_set_master(pdev);
8548
Francois Romieu3b6cf252012-03-08 09:59:04 +01008549 rtl_init_mdio_ops(tp);
8550 rtl_init_pll_power_ops(tp);
8551 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08008552 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008553
8554 rtl8169_print_mac_version(tp);
8555
8556 chipset = tp->mac_version;
8557 tp->txd_version = rtl_chip_infos[chipset].txd_version;
8558
8559 RTL_W8(Cfg9346, Cfg9346_Unlock);
8560 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
Peter Wu8f9d5132013-08-17 11:00:02 +02008561 RTL_W8(Config5, RTL_R8(Config5) & (BWF | MWF | UWF | LanWake | PMEStatus));
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008562 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008563 case RTL_GIGA_MAC_VER_34:
8564 case RTL_GIGA_MAC_VER_35:
8565 case RTL_GIGA_MAC_VER_36:
8566 case RTL_GIGA_MAC_VER_37:
8567 case RTL_GIGA_MAC_VER_38:
8568 case RTL_GIGA_MAC_VER_40:
8569 case RTL_GIGA_MAC_VER_41:
8570 case RTL_GIGA_MAC_VER_42:
8571 case RTL_GIGA_MAC_VER_43:
8572 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008573 case RTL_GIGA_MAC_VER_45:
8574 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008575 case RTL_GIGA_MAC_VER_47:
8576 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008577 case RTL_GIGA_MAC_VER_49:
8578 case RTL_GIGA_MAC_VER_50:
8579 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008580 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
8581 tp->features |= RTL_FEATURE_WOL;
8582 if ((RTL_R8(Config3) & LinkUp) != 0)
8583 tp->features |= RTL_FEATURE_WOL;
8584 break;
8585 default:
8586 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
8587 tp->features |= RTL_FEATURE_WOL;
8588 break;
8589 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008590 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
8591 tp->features |= RTL_FEATURE_WOL;
8592 tp->features |= rtl_try_msi(tp, cfg);
8593 RTL_W8(Cfg9346, Cfg9346_Lock);
8594
8595 if (rtl_tbi_enabled(tp)) {
8596 tp->set_speed = rtl8169_set_speed_tbi;
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01008597 tp->get_link_ksettings = rtl8169_get_link_ksettings_tbi;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008598 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
8599 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
8600 tp->link_ok = rtl8169_tbi_link_ok;
8601 tp->do_ioctl = rtl_tbi_ioctl;
8602 } else {
8603 tp->set_speed = rtl8169_set_speed_xmii;
Philippe Reynes6fa1ba62017-02-23 22:34:43 +01008604 tp->get_link_ksettings = rtl8169_get_link_ksettings_xmii;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008605 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
8606 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
8607 tp->link_ok = rtl8169_xmii_link_ok;
8608 tp->do_ioctl = rtl_xmii_ioctl;
8609 }
8610
8611 mutex_init(&tp->wk.mutex);
Kyle McMartin340fea32014-02-24 20:12:28 -05008612 u64_stats_init(&tp->rx_stats.syncp);
8613 u64_stats_init(&tp->tx_stats.syncp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008614
8615 /* Get MAC address */
Chun-Hao Lin89cceb22014-10-01 23:17:15 +08008616 if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
8617 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
8618 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
8619 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
8620 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
8621 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
8622 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
8623 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
8624 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
8625 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008626 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
8627 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008628 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
8629 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8630 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8631 tp->mac_version == RTL_GIGA_MAC_VER_51) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008632 u16 mac_addr[3];
8633
Chun-Hao Lin05b96872014-10-01 23:17:12 +08008634 *(u32 *)&mac_addr[0] = rtl_eri_read(tp, 0xe0, ERIAR_EXGMAC);
8635 *(u16 *)&mac_addr[2] = rtl_eri_read(tp, 0xe4, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008636
8637 if (is_valid_ether_addr((u8 *)mac_addr))
8638 rtl_rar_set(tp, (u8 *)mac_addr);
8639 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008640 for (i = 0; i < ETH_ALEN; i++)
8641 dev->dev_addr[i] = RTL_R8(MAC0 + i);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008642
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00008643 dev->ethtool_ops = &rtl8169_ethtool_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008644 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008645
8646 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
8647
8648 /* don't enable SG, IP_CSUM and TSO by default - it might not work
8649 * properly for all devices */
8650 dev->features |= NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00008651 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008652
8653 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
Patrick McHardyf6469682013-04-19 02:04:27 +00008654 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_TX |
8655 NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008656 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
8657 NETIF_F_HIGHDMA;
8658
hayeswang929a0312014-09-16 11:40:47 +08008659 tp->cp_cmd |= RxChkSum | RxVlan;
8660
8661 /*
8662 * Pretend we are using VLANs; This bypasses a nasty bug where
8663 * Interrupts stop flowing on high load on 8110SCd controllers.
8664 */
Francois Romieu3b6cf252012-03-08 09:59:04 +01008665 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
hayeswang929a0312014-09-16 11:40:47 +08008666 /* Disallow toggling */
Patrick McHardyf6469682013-04-19 02:04:27 +00008667 dev->hw_features &= ~NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008668
hayeswang5888d3f2014-07-11 16:25:56 +08008669 if (tp->txd_version == RTL_TD_0)
8670 tp->tso_csum = rtl8169_tso_csum_v1;
hayeswange9746042014-07-11 16:25:58 +08008671 else if (tp->txd_version == RTL_TD_1) {
hayeswang5888d3f2014-07-11 16:25:56 +08008672 tp->tso_csum = rtl8169_tso_csum_v2;
hayeswange9746042014-07-11 16:25:58 +08008673 dev->hw_features |= NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
8674 } else
hayeswang5888d3f2014-07-11 16:25:56 +08008675 WARN_ON_ONCE(1);
8676
Francois Romieu3b6cf252012-03-08 09:59:04 +01008677 dev->hw_features |= NETIF_F_RXALL;
8678 dev->hw_features |= NETIF_F_RXFCS;
8679
Jarod Wilsonc7315a92016-10-17 15:54:09 -04008680 /* MTU range: 60 - hw-specific max */
8681 dev->min_mtu = ETH_ZLEN;
8682 dev->max_mtu = rtl_chip_infos[chipset].jumbo_max;
8683
Francois Romieu3b6cf252012-03-08 09:59:04 +01008684 tp->hw_start = cfg->hw_start;
8685 tp->event_slow = cfg->event_slow;
Francois Romieu50970832017-10-27 13:24:49 +03008686 tp->coalesce_info = cfg->coalesce_info;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008687
8688 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
8689 ~(RxBOVF | RxFOVF) : ~0;
8690
Kees Cook9de36cc2017-10-25 03:53:12 -07008691 timer_setup(&tp->timer, rtl8169_phy_timer, 0);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008692
8693 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
8694
Corinna Vinschen42020322015-09-10 10:47:35 +02008695 tp->counters = dma_alloc_coherent (&pdev->dev, sizeof(*tp->counters),
8696 &tp->counters_phys_addr, GFP_KERNEL);
8697 if (!tp->counters) {
8698 rc = -ENOMEM;
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008699 goto err_out_msi_5;
Corinna Vinschen42020322015-09-10 10:47:35 +02008700 }
8701
Francois Romieu3b6cf252012-03-08 09:59:04 +01008702 rc = register_netdev(dev);
8703 if (rc < 0)
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008704 goto err_out_cnt_6;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008705
8706 pci_set_drvdata(pdev, dev);
8707
Francois Romieu92a7c4e2012-03-10 10:42:12 +01008708 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
8709 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
8710 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008711 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
8712 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
8713 "tx checksumming: %s]\n",
8714 rtl_chip_infos[chipset].jumbo_max,
8715 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
8716 }
8717
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008718 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
8719 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008720 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
8721 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8722 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8723 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008724 r8168_check_dash(tp)) {
Francois Romieu3b6cf252012-03-08 09:59:04 +01008725 rtl8168_driver_start(tp);
8726 }
8727
Francois Romieu3b6cf252012-03-08 09:59:04 +01008728 if (pci_dev_run_wake(pdev))
8729 pm_runtime_put_noidle(&pdev->dev);
8730
8731 netif_carrier_off(dev);
8732
8733out:
8734 return rc;
8735
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008736err_out_cnt_6:
Corinna Vinschen42020322015-09-10 10:47:35 +02008737 dma_free_coherent(&pdev->dev, sizeof(*tp->counters), tp->counters,
8738 tp->counters_phys_addr);
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008739err_out_msi_5:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00008740 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008741 rtl_disable_msi(pdev, tp);
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008742err_out_unmap_4:
Francois Romieu3b6cf252012-03-08 09:59:04 +01008743 iounmap(ioaddr);
8744err_out_free_res_3:
8745 pci_release_regions(pdev);
8746err_out_mwi_2:
8747 pci_clear_mwi(pdev);
8748 pci_disable_device(pdev);
8749err_out_free_dev_1:
8750 free_netdev(dev);
8751 goto out;
8752}
8753
Linus Torvalds1da177e2005-04-16 15:20:36 -07008754static struct pci_driver rtl8169_pci_driver = {
8755 .name = MODULENAME,
8756 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01008757 .probe = rtl_init_one,
Bill Pembertonbaf63292012-12-03 09:23:28 -05008758 .remove = rtl_remove_one,
Francois Romieu1765f952008-09-13 17:21:40 +02008759 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008760 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008761};
8762
Devendra Naga3eeb7da2012-10-26 09:27:42 +00008763module_pci_driver(rtl8169_pci_driver);