blob: 298b74ebc1e90b39eb3f8ab39629ee42c1813f74 [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 Romieuf0e837d2005-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 Lin82338e92016-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,
402 RxDescAddrLow = 0xe4,
403 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000404 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
405
406#define NoEarlyTx 0x3f /* Max value : no early transmit. */
407
408 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
409
410#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800411#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000412
Francois Romieu07d3f512007-02-21 22:40:46 +0100413 FuncEvent = 0xf0,
414 FuncEventMask = 0xf4,
415 FuncPresetState = 0xf8,
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800416 IBCR0 = 0xf8,
417 IBCR2 = 0xf9,
418 IBIMR0 = 0xfa,
419 IBISR0 = 0xfb,
Francois Romieu07d3f512007-02-21 22:40:46 +0100420 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421};
422
Francois Romieuf162a5d2008-06-01 22:37:49 +0200423enum rtl8110_registers {
424 TBICSR = 0x64,
425 TBI_ANAR = 0x68,
426 TBI_LPAR = 0x6a,
427};
428
429enum rtl8168_8101_registers {
430 CSIDR = 0x64,
431 CSIAR = 0x68,
432#define CSIAR_FLAG 0x80000000
433#define CSIAR_WRITE_CMD 0x80000000
434#define CSIAR_BYTE_ENABLE 0x0f
435#define CSIAR_BYTE_ENABLE_SHIFT 12
436#define CSIAR_ADDR_MASK 0x0fff
Hayes Wang7e18dca2012-03-30 14:33:02 +0800437#define CSIAR_FUNC_CARD 0x00000000
438#define CSIAR_FUNC_SDIO 0x00010000
439#define CSIAR_FUNC_NIC 0x00020000
hayeswang45dd95c2013-07-08 17:09:01 +0800440#define CSIAR_FUNC_NIC2 0x00010000
françois romieu065c27c2011-01-03 15:08:12 +0000441 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200442 EPHYAR = 0x80,
443#define EPHYAR_FLAG 0x80000000
444#define EPHYAR_WRITE_CMD 0x80000000
445#define EPHYAR_REG_MASK 0x1f
446#define EPHYAR_REG_SHIFT 16
447#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800448 DLLPR = 0xd0,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800449#define PFM_EN (1 << 6)
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800450#define TX_10M_PS_EN (1 << 7)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200451 DBG_REG = 0xd1,
452#define FIX_NAK_1 (1 << 4)
453#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800454 TWSI = 0xd2,
455 MCU = 0xd3,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800456#define NOW_IS_OOB (1 << 7)
Hayes Wangc5583862012-07-02 17:23:22 +0800457#define TX_EMPTY (1 << 5)
458#define RX_EMPTY (1 << 4)
459#define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800460#define EN_NDP (1 << 3)
461#define EN_OOB_RESET (1 << 2)
Hayes Wangc5583862012-07-02 17:23:22 +0800462#define LINK_LIST_RDY (1 << 1)
françois romieudaf9df62009-10-07 12:44:20 +0000463 EFUSEAR = 0xdc,
464#define EFUSEAR_FLAG 0x80000000
465#define EFUSEAR_WRITE_CMD 0x80000000
466#define EFUSEAR_READ_CMD 0x00000000
467#define EFUSEAR_REG_MASK 0x03ff
468#define EFUSEAR_REG_SHIFT 8
469#define EFUSEAR_DATA_MASK 0xff
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800470 MISC_1 = 0xf2,
471#define PFM_D3COLD_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200472};
473
françois romieuc0e45c12011-01-03 15:08:04 +0000474enum rtl8168_registers {
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800475 LED_FREQ = 0x1a,
476 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000477 ERIDR = 0x70,
478 ERIAR = 0x74,
479#define ERIAR_FLAG 0x80000000
480#define ERIAR_WRITE_CMD 0x80000000
481#define ERIAR_READ_CMD 0x00000000
482#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000483#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800484#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
485#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
486#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800487#define ERIAR_OOB (0x02 << ERIAR_TYPE_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800488#define ERIAR_MASK_SHIFT 12
489#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
490#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800491#define ERIAR_MASK_0100 (0x4 << ERIAR_MASK_SHIFT)
Hayes Wangc5583862012-07-02 17:23:22 +0800492#define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800493#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000494 EPHY_RXER_NUM = 0x7c,
495 OCPDR = 0xb0, /* OCP GPHY access */
496#define OCPDR_WRITE_CMD 0x80000000
497#define OCPDR_READ_CMD 0x00000000
498#define OCPDR_REG_MASK 0x7f
499#define OCPDR_GPHY_REG_SHIFT 16
500#define OCPDR_DATA_MASK 0xffff
501 OCPAR = 0xb4,
502#define OCPAR_FLAG 0x80000000
503#define OCPAR_GPHY_WRITE_CMD 0x8000f060
504#define OCPAR_GPHY_READ_CMD 0x0000f060
Hayes Wangc5583862012-07-02 17:23:22 +0800505 GPHY_OCP = 0xb8,
hayeswang01dc7fe2011-03-21 01:50:28 +0000506 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
507 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200508#define TXPLA_RST (1 << 29)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800509#define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800510#define PWM_EN (1 << 22)
Hayes Wangc5583862012-07-02 17:23:22 +0800511#define RXDV_GATED_EN (1 << 19)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800512#define EARLY_TALLY_EN (1 << 16)
françois romieuc0e45c12011-01-03 15:08:04 +0000513};
514
Francois Romieu07d3f512007-02-21 22:40:46 +0100515enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100517 SYSErr = 0x8000,
518 PCSTimeout = 0x4000,
519 SWInt = 0x0100,
520 TxDescUnavail = 0x0080,
521 RxFIFOOver = 0x0040,
522 LinkChg = 0x0020,
523 RxOverflow = 0x0010,
524 TxErr = 0x0008,
525 TxOK = 0x0004,
526 RxErr = 0x0002,
527 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400530 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200531 RxFOVF = (1 << 23),
532 RxRWT = (1 << 22),
533 RxRES = (1 << 21),
534 RxRUNT = (1 << 20),
535 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 /* ChipCmdBits */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800538 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100539 CmdReset = 0x10,
540 CmdRxEnb = 0x08,
541 CmdTxEnb = 0x04,
542 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Francois Romieu275391a2007-02-23 23:50:28 +0100544 /* TXPoll register p.5 */
545 HPQ = 0x80, /* Poll cmd on the high prio queue */
546 NPQ = 0x40, /* Poll cmd on the low prio queue */
547 FSWInt = 0x01, /* Forced software interrupt */
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100550 Cfg9346_Lock = 0x00,
551 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100554 AcceptErr = 0x20,
555 AcceptRunt = 0x10,
556 AcceptBroadcast = 0x08,
557 AcceptMulticast = 0x04,
558 AcceptMyPhys = 0x02,
559 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200560#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* TxConfigBits */
563 TxInterFrameGapShift = 24,
564 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
565
Francois Romieu5d06a992006-02-23 00:47:58 +0100566 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200567 LEDS1 = (1 << 7),
568 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200569 Speed_down = (1 << 4),
570 MEMMAP = (1 << 3),
571 IOMAP = (1 << 2),
572 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100573 PMEnable = (1 << 0), /* Power Management Enable */
574
Francois Romieu6dccd162007-02-13 23:38:05 +0100575 /* Config2 register p. 25 */
hayeswang57538c42013-04-01 22:23:40 +0000576 ClkReqEn = (1 << 7), /* Clock Request Enable */
françois romieu2ca6cf02011-12-15 08:37:43 +0000577 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100578 PCI_Clock_66MHz = 0x01,
579 PCI_Clock_33MHz = 0x00,
580
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100581 /* Config3 register p.25 */
582 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
583 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200584 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
hayeswangb51ecea2014-07-09 14:52:51 +0800585 Rdy_to_L23 = (1 << 1), /* L23 Enable */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200586 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100587
Francois Romieud58d46b2011-05-03 16:38:29 +0200588 /* Config4 register */
589 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
590
Francois Romieu5d06a992006-02-23 00:47:58 +0100591 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100592 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
593 MWF = (1 << 5), /* Accept Multicast wakeup frame */
594 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200595 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100596 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100597 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
hayeswang57538c42013-04-01 22:23:40 +0000598 ASPM_en = (1 << 0), /* ASPM enable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /* TBICSR p.28 */
601 TBIReset = 0x80000000,
602 TBILoopback = 0x40000000,
603 TBINwEnable = 0x20000000,
604 TBINwRestart = 0x10000000,
605 TBILinkOk = 0x02000000,
606 TBINwComplete = 0x01000000,
607
608 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200609 EnableBist = (1 << 15), // 8168 8101
610 Mac_dbgo_oe = (1 << 14), // 8168 8101
611 Normal_mode = (1 << 13), // unused
612 Force_half_dup = (1 << 12), // 8168 8101
613 Force_rxflow_en = (1 << 11), // 8168 8101
614 Force_txflow_en = (1 << 10), // 8168 8101
615 Cxpl_dbg_sel = (1 << 9), // 8168 8101
616 ASF = (1 << 8), // 8168 8101
617 PktCntrDisable = (1 << 7), // 8168 8101
618 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 RxVlan = (1 << 6),
620 RxChkSum = (1 << 5),
621 PCIDAC = (1 << 4),
622 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100623 INTT_0 = 0x0000, // 8168
624 INTT_1 = 0x0001, // 8168
625 INTT_2 = 0x0002, // 8168
626 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100629 TBI_Enable = 0x80,
630 TxFlowCtrl = 0x40,
631 RxFlowCtrl = 0x20,
632 _1000bpsF = 0x10,
633 _100bps = 0x08,
634 _10bps = 0x04,
635 LinkStatus = 0x02,
636 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100639 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200640
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200641 /* ResetCounterCommand */
642 CounterReset = 0x1,
643
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200644 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100645 CounterDump = 0x8,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800646
647 /* magic enable v2 */
648 MagicPacket_v2 = (1 << 16), /* Wake up when receives a Magic Packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649};
650
Francois Romieu2b7b4312011-04-18 22:53:24 -0700651enum rtl_desc_bit {
652 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
654 RingEnd = (1 << 30), /* End of descriptor ring */
655 FirstFrag = (1 << 29), /* First segment of a packet */
656 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700657};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Francois Romieu2b7b4312011-04-18 22:53:24 -0700659/* Generic case. */
660enum rtl_tx_desc_bit {
661 /* First doubleword. */
662 TD_LSO = (1 << 27), /* Large Send Offload */
663#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Francois Romieu2b7b4312011-04-18 22:53:24 -0700665 /* Second doubleword. */
666 TxVlanTag = (1 << 17), /* Add VLAN tag */
667};
668
669/* 8169, 8168b and 810x except 8102e. */
670enum rtl_tx_desc_bit_0 {
671 /* First doubleword. */
672#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
673 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
674 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
675 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
676};
677
678/* 8102e, 8168c and beyond. */
679enum rtl_tx_desc_bit_1 {
hayeswangbdfa4ed2014-07-11 16:25:57 +0800680 /* First doubleword. */
681 TD1_GTSENV4 = (1 << 26), /* Giant Send for IPv4 */
hayeswange9746042014-07-11 16:25:58 +0800682 TD1_GTSENV6 = (1 << 25), /* Giant Send for IPv6 */
hayeswangbdfa4ed2014-07-11 16:25:57 +0800683#define GTTCPHO_SHIFT 18
hayeswange9746042014-07-11 16:25:58 +0800684#define GTTCPHO_MAX 0x7fU
hayeswangbdfa4ed2014-07-11 16:25:57 +0800685
Francois Romieu2b7b4312011-04-18 22:53:24 -0700686 /* Second doubleword. */
hayeswange9746042014-07-11 16:25:58 +0800687#define TCPHO_SHIFT 18
688#define TCPHO_MAX 0x3ffU
Francois Romieu2b7b4312011-04-18 22:53:24 -0700689#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
hayeswange9746042014-07-11 16:25:58 +0800690 TD1_IPv6_CS = (1 << 28), /* Calculate IPv6 checksum */
691 TD1_IPv4_CS = (1 << 29), /* Calculate IPv4 checksum */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700692 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
693 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
694};
695
Francois Romieu2b7b4312011-04-18 22:53:24 -0700696enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 /* Rx private */
698 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
699 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
700
701#define RxProtoUDP (PID1)
702#define RxProtoTCP (PID0)
703#define RxProtoIP (PID1 | PID0)
704#define RxProtoMask RxProtoIP
705
706 IPFail = (1 << 16), /* IP checksum failed */
707 UDPFail = (1 << 15), /* UDP/IP checksum failed */
708 TCPFail = (1 << 14), /* TCP/IP checksum failed */
709 RxVlanTag = (1 << 16), /* VLAN tag available */
710};
711
712#define RsvdMask 0x3fffc000
713
714struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200715 __le32 opts1;
716 __le32 opts2;
717 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718};
719
720struct RxDesc {
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 ring_info {
727 struct sk_buff *skb;
728 u32 len;
729 u8 __pad[sizeof(void *) - sizeof(u32)];
730};
731
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200732enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200733 RTL_FEATURE_WOL = (1 << 0),
734 RTL_FEATURE_MSI = (1 << 1),
735 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200736};
737
Ivan Vecera355423d2009-02-06 21:49:57 -0800738struct rtl8169_counters {
739 __le64 tx_packets;
740 __le64 rx_packets;
741 __le64 tx_errors;
742 __le32 rx_errors;
743 __le16 rx_missed;
744 __le16 align_errors;
745 __le32 tx_one_collision;
746 __le32 tx_multi_collision;
747 __le64 rx_unicast;
748 __le64 rx_broadcast;
749 __le32 rx_multicast;
750 __le16 tx_aborted;
751 __le16 tx_underun;
752};
753
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200754struct rtl8169_tc_offsets {
755 bool inited;
756 __le64 tx_errors;
757 __le32 tx_multi_collision;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200758 __le16 tx_aborted;
759};
760
Francois Romieuda78dbf2012-01-26 14:18:23 +0100761enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100762 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100763 RTL_FLAG_TASK_SLOW_PENDING,
764 RTL_FLAG_TASK_RESET_PENDING,
765 RTL_FLAG_TASK_PHY_PENDING,
766 RTL_FLAG_MAX
767};
768
Junchang Wang8027aa22012-03-04 23:30:32 +0100769struct rtl8169_stats {
770 u64 packets;
771 u64 bytes;
772 struct u64_stats_sync syncp;
773};
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775struct rtl8169_private {
776 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200777 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000778 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700779 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200780 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700781 u16 txd_version;
782 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
784 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100786 struct rtl8169_stats rx_stats;
787 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
789 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
790 dma_addr_t TxPhyAddr;
791 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000792 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct timer_list timer;
795 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100796
797 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000798
799 struct mdio_ops {
Francois Romieu24192212012-07-06 20:19:42 +0200800 void (*write)(struct rtl8169_private *, int, int);
801 int (*read)(struct rtl8169_private *, int);
françois romieuc0e45c12011-01-03 15:08:04 +0000802 } mdio_ops;
803
françois romieu065c27c2011-01-03 15:08:12 +0000804 struct pll_power_ops {
805 void (*down)(struct rtl8169_private *);
806 void (*up)(struct rtl8169_private *);
807 } pll_power_ops;
808
Francois Romieud58d46b2011-05-03 16:38:29 +0200809 struct jumbo_ops {
810 void (*enable)(struct rtl8169_private *);
811 void (*disable)(struct rtl8169_private *);
812 } jumbo_ops;
813
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800814 struct csi_ops {
Francois Romieu52989f02012-07-06 13:37:00 +0200815 void (*write)(struct rtl8169_private *, int, int);
816 u32 (*read)(struct rtl8169_private *, int);
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800817 } csi_ops;
818
Oliver Neukum54405cd2011-01-06 21:55:13 +0100819 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200820 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000821 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100822 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000823 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800825 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
hayeswang5888d3f2014-07-11 16:25:56 +0800826 bool (*tso_csum)(struct rtl8169_private *, struct sk_buff *, u32 *);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100827
828 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100829 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
830 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100831 struct work_struct work;
832 } wk;
833
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200834 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200835
836 struct mii_if_info mii;
Corinna Vinschen42020322015-09-10 10:47:35 +0200837 dma_addr_t counters_phys_addr;
838 struct rtl8169_counters *counters;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200839 struct rtl8169_tc_offsets tc_offset;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000840 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400841 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000842
Francois Romieub6ffd972011-06-17 17:00:05 +0200843 struct rtl_fw {
844 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200845
846#define RTL_VER_SIZE 32
847
848 char version[RTL_VER_SIZE];
849
850 struct rtl_fw_phy_action {
851 __le32 *code;
852 size_t size;
853 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200854 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300855#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Hayes Wangc5583862012-07-02 17:23:22 +0800856
857 u32 ocp_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858};
859
Ralf Baechle979b6c12005-06-13 14:30:40 -0700860MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700863MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200864module_param_named(debug, debug.msg_enable, int, 0);
865MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866MODULE_LICENSE("GPL");
867MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000868MODULE_FIRMWARE(FIRMWARE_8168D_1);
869MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000870MODULE_FIRMWARE(FIRMWARE_8168E_1);
871MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400872MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800873MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800874MODULE_FIRMWARE(FIRMWARE_8168F_1);
875MODULE_FIRMWARE(FIRMWARE_8168F_2);
Hayes Wang7e18dca2012-03-30 14:33:02 +0800876MODULE_FIRMWARE(FIRMWARE_8402_1);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800877MODULE_FIRMWARE(FIRMWARE_8411_1);
hayeswang45dd95c2013-07-08 17:09:01 +0800878MODULE_FIRMWARE(FIRMWARE_8411_2);
Hayes Wang5598bfe2012-07-02 17:23:21 +0800879MODULE_FIRMWARE(FIRMWARE_8106E_1);
hayeswang58152cd2013-04-01 22:23:42 +0000880MODULE_FIRMWARE(FIRMWARE_8106E_2);
hayeswangbeb330a2013-04-01 22:23:39 +0000881MODULE_FIRMWARE(FIRMWARE_8168G_2);
hayeswang57538c42013-04-01 22:23:40 +0000882MODULE_FIRMWARE(FIRMWARE_8168G_3);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800883MODULE_FIRMWARE(FIRMWARE_8168H_1);
884MODULE_FIRMWARE(FIRMWARE_8168H_2);
Francois Romieua3bf5c42014-08-26 22:40:38 +0200885MODULE_FIRMWARE(FIRMWARE_8107E_1);
886MODULE_FIRMWARE(FIRMWARE_8107E_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Francois Romieuda78dbf2012-01-26 14:18:23 +0100888static void rtl_lock_work(struct rtl8169_private *tp)
889{
890 mutex_lock(&tp->wk.mutex);
891}
892
893static void rtl_unlock_work(struct rtl8169_private *tp)
894{
895 mutex_unlock(&tp->wk.mutex);
896}
897
Francois Romieud58d46b2011-05-03 16:38:29 +0200898static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
899{
Jiang Liu7d7903b2012-07-24 17:20:16 +0800900 pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
901 PCI_EXP_DEVCTL_READRQ, force);
Francois Romieud58d46b2011-05-03 16:38:29 +0200902}
903
Francois Romieuffc46952012-07-06 14:19:23 +0200904struct rtl_cond {
905 bool (*check)(struct rtl8169_private *);
906 const char *msg;
907};
908
909static void rtl_udelay(unsigned int d)
910{
911 udelay(d);
912}
913
914static bool rtl_loop_wait(struct rtl8169_private *tp, const struct rtl_cond *c,
915 void (*delay)(unsigned int), unsigned int d, int n,
916 bool high)
917{
918 int i;
919
920 for (i = 0; i < n; i++) {
921 delay(d);
922 if (c->check(tp) == high)
923 return true;
924 }
Francois Romieu82e316e2012-07-11 23:39:51 +0200925 netif_err(tp, drv, tp->dev, "%s == %d (loop: %d, delay: %d).\n",
926 c->msg, !high, n, d);
Francois Romieuffc46952012-07-06 14:19:23 +0200927 return false;
928}
929
930static bool rtl_udelay_loop_wait_high(struct rtl8169_private *tp,
931 const struct rtl_cond *c,
932 unsigned int d, int n)
933{
934 return rtl_loop_wait(tp, c, rtl_udelay, d, n, true);
935}
936
937static bool rtl_udelay_loop_wait_low(struct rtl8169_private *tp,
938 const struct rtl_cond *c,
939 unsigned int d, int n)
940{
941 return rtl_loop_wait(tp, c, rtl_udelay, d, n, false);
942}
943
944static bool rtl_msleep_loop_wait_high(struct rtl8169_private *tp,
945 const struct rtl_cond *c,
946 unsigned int d, int n)
947{
948 return rtl_loop_wait(tp, c, msleep, d, n, true);
949}
950
951static bool rtl_msleep_loop_wait_low(struct rtl8169_private *tp,
952 const struct rtl_cond *c,
953 unsigned int d, int n)
954{
955 return rtl_loop_wait(tp, c, msleep, d, n, false);
956}
957
958#define DECLARE_RTL_COND(name) \
959static bool name ## _check(struct rtl8169_private *); \
960 \
961static const struct rtl_cond name = { \
962 .check = name ## _check, \
963 .msg = #name \
964}; \
965 \
966static bool name ## _check(struct rtl8169_private *tp)
967
Hayes Wangc5583862012-07-02 17:23:22 +0800968static bool rtl_ocp_reg_failure(struct rtl8169_private *tp, u32 reg)
969{
970 if (reg & 0xffff0001) {
971 netif_err(tp, drv, tp->dev, "Invalid ocp reg %x!\n", reg);
972 return true;
973 }
974 return false;
975}
976
977DECLARE_RTL_COND(rtl_ocp_gphy_cond)
978{
979 void __iomem *ioaddr = tp->mmio_addr;
980
981 return RTL_R32(GPHY_OCP) & OCPAR_FLAG;
982}
983
984static void r8168_phy_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
985{
986 void __iomem *ioaddr = tp->mmio_addr;
987
988 if (rtl_ocp_reg_failure(tp, reg))
989 return;
990
991 RTL_W32(GPHY_OCP, OCPAR_FLAG | (reg << 15) | data);
992
993 rtl_udelay_loop_wait_low(tp, &rtl_ocp_gphy_cond, 25, 10);
994}
995
996static u16 r8168_phy_ocp_read(struct rtl8169_private *tp, u32 reg)
997{
998 void __iomem *ioaddr = tp->mmio_addr;
999
1000 if (rtl_ocp_reg_failure(tp, reg))
1001 return 0;
1002
1003 RTL_W32(GPHY_OCP, reg << 15);
1004
1005 return rtl_udelay_loop_wait_high(tp, &rtl_ocp_gphy_cond, 25, 10) ?
1006 (RTL_R32(GPHY_OCP) & 0xffff) : ~0;
1007}
1008
Hayes Wangc5583862012-07-02 17:23:22 +08001009static void r8168_mac_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1010{
1011 void __iomem *ioaddr = tp->mmio_addr;
1012
1013 if (rtl_ocp_reg_failure(tp, reg))
1014 return;
1015
1016 RTL_W32(OCPDR, OCPAR_FLAG | (reg << 15) | data);
Hayes Wangc5583862012-07-02 17:23:22 +08001017}
1018
1019static u16 r8168_mac_ocp_read(struct rtl8169_private *tp, u32 reg)
1020{
1021 void __iomem *ioaddr = tp->mmio_addr;
1022
1023 if (rtl_ocp_reg_failure(tp, reg))
1024 return 0;
1025
1026 RTL_W32(OCPDR, reg << 15);
1027
Hayes Wang3a83ad12012-07-11 20:31:56 +08001028 return RTL_R32(OCPDR);
Hayes Wangc5583862012-07-02 17:23:22 +08001029}
1030
1031#define OCP_STD_PHY_BASE 0xa400
1032
1033static void r8168g_mdio_write(struct rtl8169_private *tp, int reg, int value)
1034{
1035 if (reg == 0x1f) {
1036 tp->ocp_base = value ? value << 4 : OCP_STD_PHY_BASE;
1037 return;
1038 }
1039
1040 if (tp->ocp_base != OCP_STD_PHY_BASE)
1041 reg -= 0x10;
1042
1043 r8168_phy_ocp_write(tp, tp->ocp_base + reg * 2, value);
1044}
1045
1046static int r8168g_mdio_read(struct rtl8169_private *tp, int reg)
1047{
1048 if (tp->ocp_base != OCP_STD_PHY_BASE)
1049 reg -= 0x10;
1050
1051 return r8168_phy_ocp_read(tp, tp->ocp_base + reg * 2);
1052}
1053
hayeswangeee37862013-04-01 22:23:38 +00001054static void mac_mcu_write(struct rtl8169_private *tp, int reg, int value)
1055{
1056 if (reg == 0x1f) {
1057 tp->ocp_base = value << 4;
1058 return;
1059 }
1060
1061 r8168_mac_ocp_write(tp, tp->ocp_base + reg, value);
1062}
1063
1064static int mac_mcu_read(struct rtl8169_private *tp, int reg)
1065{
1066 return r8168_mac_ocp_read(tp, tp->ocp_base + reg);
1067}
1068
Francois Romieuffc46952012-07-06 14:19:23 +02001069DECLARE_RTL_COND(rtl_phyar_cond)
1070{
1071 void __iomem *ioaddr = tp->mmio_addr;
1072
1073 return RTL_R32(PHYAR) & 0x80000000;
1074}
1075
Francois Romieu24192212012-07-06 20:19:42 +02001076static void r8169_mdio_write(struct rtl8169_private *tp, int reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Francois Romieu24192212012-07-06 20:19:42 +02001078 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Francois Romieu24192212012-07-06 20:19:42 +02001080 RTL_W32(PHYAR, 0x80000000 | (reg & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Francois Romieuffc46952012-07-06 14:19:23 +02001082 rtl_udelay_loop_wait_low(tp, &rtl_phyar_cond, 25, 20);
Timo Teräs024a07b2010-06-06 15:38:47 -07001083 /*
Timo Teräs81a95f02010-06-09 17:31:48 -07001084 * According to hardware specs a 20us delay is required after write
1085 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -07001086 */
Timo Teräs81a95f02010-06-09 17:31:48 -07001087 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
Francois Romieu24192212012-07-06 20:19:42 +02001090static int r8169_mdio_read(struct rtl8169_private *tp, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Francois Romieu24192212012-07-06 20:19:42 +02001092 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieuffc46952012-07-06 14:19:23 +02001093 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Francois Romieu24192212012-07-06 20:19:42 +02001095 RTL_W32(PHYAR, 0x0 | (reg & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Francois Romieuffc46952012-07-06 14:19:23 +02001097 value = rtl_udelay_loop_wait_high(tp, &rtl_phyar_cond, 25, 20) ?
1098 RTL_R32(PHYAR) & 0xffff : ~0;
1099
Timo Teräs81a95f02010-06-09 17:31:48 -07001100 /*
1101 * According to hardware specs a 20us delay is required after read
1102 * complete indication, but before sending next command.
1103 */
1104 udelay(20);
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return value;
1107}
1108
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001109DECLARE_RTL_COND(rtl_ocpar_cond)
1110{
1111 void __iomem *ioaddr = tp->mmio_addr;
1112
1113 return RTL_R32(OCPAR) & OCPAR_FLAG;
1114}
1115
Francois Romieu24192212012-07-06 20:19:42 +02001116static void r8168dp_1_mdio_access(struct rtl8169_private *tp, int reg, u32 data)
françois romieuc0e45c12011-01-03 15:08:04 +00001117{
Francois Romieu24192212012-07-06 20:19:42 +02001118 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001119
Francois Romieu24192212012-07-06 20:19:42 +02001120 RTL_W32(OCPDR, data | ((reg & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
françois romieuc0e45c12011-01-03 15:08:04 +00001121 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
1122 RTL_W32(EPHY_RXER_NUM, 0);
1123
Francois Romieuffc46952012-07-06 14:19:23 +02001124 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 1000, 100);
françois romieuc0e45c12011-01-03 15:08:04 +00001125}
1126
Francois Romieu24192212012-07-06 20:19:42 +02001127static void r8168dp_1_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieuc0e45c12011-01-03 15:08:04 +00001128{
Francois Romieu24192212012-07-06 20:19:42 +02001129 r8168dp_1_mdio_access(tp, reg,
1130 OCPDR_WRITE_CMD | (value & OCPDR_DATA_MASK));
françois romieuc0e45c12011-01-03 15:08:04 +00001131}
1132
Francois Romieu24192212012-07-06 20:19:42 +02001133static int r8168dp_1_mdio_read(struct rtl8169_private *tp, int reg)
françois romieuc0e45c12011-01-03 15:08:04 +00001134{
Francois Romieu24192212012-07-06 20:19:42 +02001135 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001136
Francois Romieu24192212012-07-06 20:19:42 +02001137 r8168dp_1_mdio_access(tp, reg, OCPDR_READ_CMD);
françois romieuc0e45c12011-01-03 15:08:04 +00001138
1139 mdelay(1);
1140 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
1141 RTL_W32(EPHY_RXER_NUM, 0);
1142
Francois Romieuffc46952012-07-06 14:19:23 +02001143 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 1000, 100) ?
1144 RTL_R32(OCPDR) & OCPDR_DATA_MASK : ~0;
françois romieuc0e45c12011-01-03 15:08:04 +00001145}
1146
françois romieue6de30d2011-01-03 15:08:37 +00001147#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1148
1149static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1150{
1151 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1152}
1153
1154static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1155{
1156 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1157}
1158
Francois Romieu24192212012-07-06 20:19:42 +02001159static void r8168dp_2_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieue6de30d2011-01-03 15:08:37 +00001160{
Francois Romieu24192212012-07-06 20:19:42 +02001161 void __iomem *ioaddr = tp->mmio_addr;
1162
françois romieue6de30d2011-01-03 15:08:37 +00001163 r8168dp_2_mdio_start(ioaddr);
1164
Francois Romieu24192212012-07-06 20:19:42 +02001165 r8169_mdio_write(tp, reg, value);
françois romieue6de30d2011-01-03 15:08:37 +00001166
1167 r8168dp_2_mdio_stop(ioaddr);
1168}
1169
Francois Romieu24192212012-07-06 20:19:42 +02001170static int r8168dp_2_mdio_read(struct rtl8169_private *tp, int reg)
françois romieue6de30d2011-01-03 15:08:37 +00001171{
Francois Romieu24192212012-07-06 20:19:42 +02001172 void __iomem *ioaddr = tp->mmio_addr;
françois romieue6de30d2011-01-03 15:08:37 +00001173 int value;
1174
1175 r8168dp_2_mdio_start(ioaddr);
1176
Francois Romieu24192212012-07-06 20:19:42 +02001177 value = r8169_mdio_read(tp, reg);
françois romieue6de30d2011-01-03 15:08:37 +00001178
1179 r8168dp_2_mdio_stop(ioaddr);
1180
1181 return value;
1182}
1183
françois romieu4da19632011-01-03 15:07:55 +00001184static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001185{
Francois Romieu24192212012-07-06 20:19:42 +02001186 tp->mdio_ops.write(tp, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001187}
1188
françois romieu4da19632011-01-03 15:07:55 +00001189static int rtl_readphy(struct rtl8169_private *tp, int location)
1190{
Francois Romieu24192212012-07-06 20:19:42 +02001191 return tp->mdio_ops.read(tp, location);
françois romieu4da19632011-01-03 15:07:55 +00001192}
1193
1194static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1195{
1196 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1197}
1198
Chun-Hao Lin76564422014-10-01 23:17:17 +08001199static void rtl_w0w1_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001200{
1201 int val;
1202
françois romieu4da19632011-01-03 15:07:55 +00001203 val = rtl_readphy(tp, reg_addr);
Chun-Hao Lin76564422014-10-01 23:17:17 +08001204 rtl_writephy(tp, reg_addr, (val & ~m) | p);
françois romieudaf9df62009-10-07 12:44:20 +00001205}
1206
Francois Romieuccdffb92008-07-26 14:26:06 +02001207static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1208 int val)
1209{
1210 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001211
françois romieu4da19632011-01-03 15:07:55 +00001212 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001213}
1214
1215static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1216{
1217 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001218
françois romieu4da19632011-01-03 15:07:55 +00001219 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001220}
1221
Francois Romieuffc46952012-07-06 14:19:23 +02001222DECLARE_RTL_COND(rtl_ephyar_cond)
1223{
1224 void __iomem *ioaddr = tp->mmio_addr;
1225
1226 return RTL_R32(EPHYAR) & EPHYAR_FLAG;
1227}
1228
Francois Romieufdf6fc02012-07-06 22:40:38 +02001229static void rtl_ephy_write(struct rtl8169_private *tp, int reg_addr, int value)
Francois Romieudacf8152008-08-02 20:44:13 +02001230{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001231 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001232
1233 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1234 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1235
Francois Romieuffc46952012-07-06 14:19:23 +02001236 rtl_udelay_loop_wait_low(tp, &rtl_ephyar_cond, 10, 100);
1237
1238 udelay(10);
Francois Romieudacf8152008-08-02 20:44:13 +02001239}
1240
Francois Romieufdf6fc02012-07-06 22:40:38 +02001241static u16 rtl_ephy_read(struct rtl8169_private *tp, int reg_addr)
Francois Romieudacf8152008-08-02 20:44:13 +02001242{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001243 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001244
1245 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1246
Francois Romieuffc46952012-07-06 14:19:23 +02001247 return rtl_udelay_loop_wait_high(tp, &rtl_ephyar_cond, 10, 100) ?
1248 RTL_R32(EPHYAR) & EPHYAR_DATA_MASK : ~0;
Francois Romieudacf8152008-08-02 20:44:13 +02001249}
1250
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001251DECLARE_RTL_COND(rtl_eriar_cond)
1252{
1253 void __iomem *ioaddr = tp->mmio_addr;
1254
1255 return RTL_R32(ERIAR) & ERIAR_FLAG;
1256}
1257
Francois Romieufdf6fc02012-07-06 22:40:38 +02001258static void rtl_eri_write(struct rtl8169_private *tp, int addr, u32 mask,
1259 u32 val, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001260{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001261 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001262
1263 BUG_ON((addr & 3) || (mask == 0));
1264 RTL_W32(ERIDR, val);
1265 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1266
Francois Romieuffc46952012-07-06 14:19:23 +02001267 rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 100);
Hayes Wang133ac402011-07-06 15:58:05 +08001268}
1269
Francois Romieufdf6fc02012-07-06 22:40:38 +02001270static u32 rtl_eri_read(struct rtl8169_private *tp, int addr, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001271{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001272 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001273
1274 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1275
Francois Romieuffc46952012-07-06 14:19:23 +02001276 return rtl_udelay_loop_wait_high(tp, &rtl_eriar_cond, 100, 100) ?
1277 RTL_R32(ERIDR) : ~0;
Hayes Wang133ac402011-07-06 15:58:05 +08001278}
1279
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001280static void rtl_w0w1_eri(struct rtl8169_private *tp, int addr, u32 mask, u32 p,
Francois Romieufdf6fc02012-07-06 22:40:38 +02001281 u32 m, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001282{
1283 u32 val;
1284
Francois Romieufdf6fc02012-07-06 22:40:38 +02001285 val = rtl_eri_read(tp, addr, type);
1286 rtl_eri_write(tp, addr, mask, (val & ~m) | p, type);
Hayes Wang133ac402011-07-06 15:58:05 +08001287}
1288
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001289static u32 r8168dp_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1290{
1291 void __iomem *ioaddr = tp->mmio_addr;
1292
1293 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1294 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 100, 20) ?
1295 RTL_R32(OCPDR) : ~0;
1296}
1297
1298static u32 r8168ep_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1299{
1300 return rtl_eri_read(tp, reg, ERIAR_OOB);
1301}
1302
1303static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1304{
1305 switch (tp->mac_version) {
1306 case RTL_GIGA_MAC_VER_27:
1307 case RTL_GIGA_MAC_VER_28:
1308 case RTL_GIGA_MAC_VER_31:
1309 return r8168dp_ocp_read(tp, mask, reg);
1310 case RTL_GIGA_MAC_VER_49:
1311 case RTL_GIGA_MAC_VER_50:
1312 case RTL_GIGA_MAC_VER_51:
1313 return r8168ep_ocp_read(tp, mask, reg);
1314 default:
1315 BUG();
1316 return ~0;
1317 }
1318}
1319
1320static void r8168dp_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1321 u32 data)
1322{
1323 void __iomem *ioaddr = tp->mmio_addr;
1324
1325 RTL_W32(OCPDR, data);
1326 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1327 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 100, 20);
1328}
1329
1330static void r8168ep_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1331 u32 data)
1332{
1333 rtl_eri_write(tp, reg, ((u32)mask & 0x0f) << ERIAR_MASK_SHIFT,
1334 data, ERIAR_OOB);
1335}
1336
1337static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
1338{
1339 switch (tp->mac_version) {
1340 case RTL_GIGA_MAC_VER_27:
1341 case RTL_GIGA_MAC_VER_28:
1342 case RTL_GIGA_MAC_VER_31:
1343 r8168dp_ocp_write(tp, mask, reg, data);
1344 break;
1345 case RTL_GIGA_MAC_VER_49:
1346 case RTL_GIGA_MAC_VER_50:
1347 case RTL_GIGA_MAC_VER_51:
1348 r8168ep_ocp_write(tp, mask, reg, data);
1349 break;
1350 default:
1351 BUG();
1352 break;
1353 }
1354}
1355
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001356static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
1357{
1358 rtl_eri_write(tp, 0xe8, ERIAR_MASK_0001, cmd, ERIAR_EXGMAC);
1359
1360 ocp_write(tp, 0x1, 0x30, 0x00000001);
1361}
1362
1363#define OOB_CMD_RESET 0x00
1364#define OOB_CMD_DRIVER_START 0x05
1365#define OOB_CMD_DRIVER_STOP 0x06
1366
1367static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
1368{
1369 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
1370}
1371
1372DECLARE_RTL_COND(rtl_ocp_read_cond)
1373{
1374 u16 reg;
1375
1376 reg = rtl8168_get_ocp_reg(tp);
1377
1378 return ocp_read(tp, 0x0f, reg) & 0x00000800;
1379}
1380
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001381DECLARE_RTL_COND(rtl_ep_ocp_read_cond)
1382{
1383 return ocp_read(tp, 0x0f, 0x124) & 0x00000001;
1384}
1385
1386DECLARE_RTL_COND(rtl_ocp_tx_cond)
1387{
1388 void __iomem *ioaddr = tp->mmio_addr;
1389
1390 return RTL_R8(IBISR0) & 0x02;
1391}
1392
Chun-Hao Lin003609d2014-12-02 16:48:31 +08001393static void rtl8168ep_stop_cmac(struct rtl8169_private *tp)
1394{
1395 void __iomem *ioaddr = tp->mmio_addr;
1396
1397 RTL_W8(IBCR2, RTL_R8(IBCR2) & ~0x01);
1398 rtl_msleep_loop_wait_low(tp, &rtl_ocp_tx_cond, 50, 2000);
1399 RTL_W8(IBISR0, RTL_R8(IBISR0) | 0x20);
1400 RTL_W8(IBCR0, RTL_R8(IBCR0) & ~0x01);
1401}
1402
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001403static void rtl8168dp_driver_start(struct rtl8169_private *tp)
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001404{
1405 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001406 rtl_msleep_loop_wait_high(tp, &rtl_ocp_read_cond, 10, 10);
1407}
1408
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001409static void rtl8168ep_driver_start(struct rtl8169_private *tp)
1410{
1411 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_START);
1412 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1413 rtl_msleep_loop_wait_high(tp, &rtl_ep_ocp_read_cond, 10, 10);
1414}
1415
1416static void rtl8168_driver_start(struct rtl8169_private *tp)
1417{
1418 switch (tp->mac_version) {
1419 case RTL_GIGA_MAC_VER_27:
1420 case RTL_GIGA_MAC_VER_28:
1421 case RTL_GIGA_MAC_VER_31:
1422 rtl8168dp_driver_start(tp);
1423 break;
1424 case RTL_GIGA_MAC_VER_49:
1425 case RTL_GIGA_MAC_VER_50:
1426 case RTL_GIGA_MAC_VER_51:
1427 rtl8168ep_driver_start(tp);
1428 break;
1429 default:
1430 BUG();
1431 break;
1432 }
1433}
1434
1435static void rtl8168dp_driver_stop(struct rtl8169_private *tp)
1436{
1437 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
1438 rtl_msleep_loop_wait_low(tp, &rtl_ocp_read_cond, 10, 10);
1439}
1440
1441static void rtl8168ep_driver_stop(struct rtl8169_private *tp)
1442{
Chun-Hao Lin003609d2014-12-02 16:48:31 +08001443 rtl8168ep_stop_cmac(tp);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001444 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_STOP);
1445 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1446 rtl_msleep_loop_wait_low(tp, &rtl_ep_ocp_read_cond, 10, 10);
1447}
1448
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001449static void rtl8168_driver_stop(struct rtl8169_private *tp)
1450{
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001451 switch (tp->mac_version) {
1452 case RTL_GIGA_MAC_VER_27:
1453 case RTL_GIGA_MAC_VER_28:
1454 case RTL_GIGA_MAC_VER_31:
1455 rtl8168dp_driver_stop(tp);
1456 break;
1457 case RTL_GIGA_MAC_VER_49:
1458 case RTL_GIGA_MAC_VER_50:
1459 case RTL_GIGA_MAC_VER_51:
1460 rtl8168ep_driver_stop(tp);
1461 break;
1462 default:
1463 BUG();
1464 break;
1465 }
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001466}
1467
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001468static int r8168dp_check_dash(struct rtl8169_private *tp)
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001469{
1470 u16 reg = rtl8168_get_ocp_reg(tp);
1471
1472 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
1473}
1474
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001475static int r8168ep_check_dash(struct rtl8169_private *tp)
1476{
1477 return (ocp_read(tp, 0x0f, 0x128) & 0x00000001) ? 1 : 0;
1478}
1479
1480static int r8168_check_dash(struct rtl8169_private *tp)
1481{
1482 switch (tp->mac_version) {
1483 case RTL_GIGA_MAC_VER_27:
1484 case RTL_GIGA_MAC_VER_28:
1485 case RTL_GIGA_MAC_VER_31:
1486 return r8168dp_check_dash(tp);
1487 case RTL_GIGA_MAC_VER_49:
1488 case RTL_GIGA_MAC_VER_50:
1489 case RTL_GIGA_MAC_VER_51:
1490 return r8168ep_check_dash(tp);
1491 default:
1492 return 0;
1493 }
1494}
1495
françois romieuc28aa382011-08-02 03:53:43 +00001496struct exgmac_reg {
1497 u16 addr;
1498 u16 mask;
1499 u32 val;
1500};
1501
Francois Romieufdf6fc02012-07-06 22:40:38 +02001502static void rtl_write_exgmac_batch(struct rtl8169_private *tp,
françois romieuc28aa382011-08-02 03:53:43 +00001503 const struct exgmac_reg *r, int len)
1504{
1505 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001506 rtl_eri_write(tp, r->addr, r->mask, r->val, ERIAR_EXGMAC);
françois romieuc28aa382011-08-02 03:53:43 +00001507 r++;
1508 }
1509}
1510
Francois Romieuffc46952012-07-06 14:19:23 +02001511DECLARE_RTL_COND(rtl_efusear_cond)
1512{
1513 void __iomem *ioaddr = tp->mmio_addr;
1514
1515 return RTL_R32(EFUSEAR) & EFUSEAR_FLAG;
1516}
1517
Francois Romieufdf6fc02012-07-06 22:40:38 +02001518static u8 rtl8168d_efuse_read(struct rtl8169_private *tp, int reg_addr)
françois romieudaf9df62009-10-07 12:44:20 +00001519{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001520 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00001521
1522 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1523
Francois Romieuffc46952012-07-06 14:19:23 +02001524 return rtl_udelay_loop_wait_high(tp, &rtl_efusear_cond, 100, 300) ?
1525 RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK : ~0;
françois romieudaf9df62009-10-07 12:44:20 +00001526}
1527
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001528static u16 rtl_get_events(struct rtl8169_private *tp)
1529{
1530 void __iomem *ioaddr = tp->mmio_addr;
1531
1532 return RTL_R16(IntrStatus);
1533}
1534
1535static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1536{
1537 void __iomem *ioaddr = tp->mmio_addr;
1538
1539 RTL_W16(IntrStatus, bits);
1540 mmiowb();
1541}
1542
1543static void rtl_irq_disable(struct rtl8169_private *tp)
1544{
1545 void __iomem *ioaddr = tp->mmio_addr;
1546
1547 RTL_W16(IntrMask, 0);
1548 mmiowb();
1549}
1550
Francois Romieu3e990ff2012-01-26 12:50:01 +01001551static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1552{
1553 void __iomem *ioaddr = tp->mmio_addr;
1554
1555 RTL_W16(IntrMask, bits);
1556}
1557
Francois Romieuda78dbf2012-01-26 14:18:23 +01001558#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1559#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1560#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1561
1562static void rtl_irq_enable_all(struct rtl8169_private *tp)
1563{
1564 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1565}
1566
françois romieu811fd302011-12-04 20:30:45 +00001567static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
françois romieu811fd302011-12-04 20:30:45 +00001569 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001571 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001572 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001573 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
françois romieu4da19632011-01-03 15:07:55 +00001576static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
françois romieu4da19632011-01-03 15:07:55 +00001578 void __iomem *ioaddr = tp->mmio_addr;
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return RTL_R32(TBICSR) & TBIReset;
1581}
1582
françois romieu4da19632011-01-03 15:07:55 +00001583static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
françois romieu4da19632011-01-03 15:07:55 +00001585 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
1588static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1589{
1590 return RTL_R32(TBICSR) & TBILinkOk;
1591}
1592
1593static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1594{
1595 return RTL_R8(PHYstatus) & LinkStatus;
1596}
1597
françois romieu4da19632011-01-03 15:07:55 +00001598static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
françois romieu4da19632011-01-03 15:07:55 +00001600 void __iomem *ioaddr = tp->mmio_addr;
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1603}
1604
françois romieu4da19632011-01-03 15:07:55 +00001605static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
1607 unsigned int val;
1608
françois romieu4da19632011-01-03 15:07:55 +00001609 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1610 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
Hayes Wang70090422011-07-06 15:58:06 +08001613static void rtl_link_chg_patch(struct rtl8169_private *tp)
1614{
1615 void __iomem *ioaddr = tp->mmio_addr;
1616 struct net_device *dev = tp->dev;
1617
1618 if (!netif_running(dev))
1619 return;
1620
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001621 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1622 tp->mac_version == RTL_GIGA_MAC_VER_38) {
Hayes Wang70090422011-07-06 15:58:06 +08001623 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001624 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1625 ERIAR_EXGMAC);
1626 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1627 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001628 } else if (RTL_R8(PHYstatus) & _100bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001629 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1630 ERIAR_EXGMAC);
1631 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1632 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001633 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001634 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1635 ERIAR_EXGMAC);
1636 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1637 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001638 }
1639 /* Reset packet filter */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001640 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
Hayes Wang70090422011-07-06 15:58:06 +08001641 ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001642 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
Hayes Wang70090422011-07-06 15:58:06 +08001643 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001644 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1645 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1646 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001647 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1648 ERIAR_EXGMAC);
1649 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1650 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001651 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001652 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1653 ERIAR_EXGMAC);
1654 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1655 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001656 }
Hayes Wang7e18dca2012-03-30 14:33:02 +08001657 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1658 if (RTL_R8(PHYstatus) & _10bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001659 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x4d02,
1660 ERIAR_EXGMAC);
1661 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_0011, 0x0060,
1662 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001663 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001664 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000,
1665 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001666 }
Hayes Wang70090422011-07-06 15:58:06 +08001667 }
1668}
1669
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001670static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001671 struct rtl8169_private *tp,
1672 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001675 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001676 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001677 if (pm)
1678 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001680 if (net_ratelimit())
1681 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001682 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001684 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001685 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001686 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688}
1689
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001690static void rtl8169_check_link_status(struct net_device *dev,
1691 struct rtl8169_private *tp,
1692 void __iomem *ioaddr)
1693{
1694 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1695}
1696
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001697#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1698
1699static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1700{
1701 void __iomem *ioaddr = tp->mmio_addr;
1702 u8 options;
1703 u32 wolopts = 0;
1704
1705 options = RTL_R8(Config1);
1706 if (!(options & PMEnable))
1707 return 0;
1708
1709 options = RTL_R8(Config3);
1710 if (options & LinkUp)
1711 wolopts |= WAKE_PHY;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001712 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001713 case RTL_GIGA_MAC_VER_34:
1714 case RTL_GIGA_MAC_VER_35:
1715 case RTL_GIGA_MAC_VER_36:
1716 case RTL_GIGA_MAC_VER_37:
1717 case RTL_GIGA_MAC_VER_38:
1718 case RTL_GIGA_MAC_VER_40:
1719 case RTL_GIGA_MAC_VER_41:
1720 case RTL_GIGA_MAC_VER_42:
1721 case RTL_GIGA_MAC_VER_43:
1722 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001723 case RTL_GIGA_MAC_VER_45:
1724 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001725 case RTL_GIGA_MAC_VER_47:
1726 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001727 case RTL_GIGA_MAC_VER_49:
1728 case RTL_GIGA_MAC_VER_50:
1729 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001730 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
1731 wolopts |= WAKE_MAGIC;
1732 break;
1733 default:
1734 if (options & MagicPacket)
1735 wolopts |= WAKE_MAGIC;
1736 break;
1737 }
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001738
1739 options = RTL_R8(Config5);
1740 if (options & UWF)
1741 wolopts |= WAKE_UCAST;
1742 if (options & BWF)
1743 wolopts |= WAKE_BCAST;
1744 if (options & MWF)
1745 wolopts |= WAKE_MCAST;
1746
1747 return wolopts;
1748}
1749
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001750static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1751{
1752 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001753 struct device *d = &tp->pci_dev->dev;
1754
1755 pm_runtime_get_noresume(d);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001756
Francois Romieuda78dbf2012-01-26 14:18:23 +01001757 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001758
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001759 wol->supported = WAKE_ANY;
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001760 if (pm_runtime_active(d))
1761 wol->wolopts = __rtl8169_get_wol(tp);
1762 else
1763 wol->wolopts = tp->saved_wolopts;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001764
Francois Romieuda78dbf2012-01-26 14:18:23 +01001765 rtl_unlock_work(tp);
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001766
1767 pm_runtime_put_noidle(d);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001768}
1769
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001770static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001771{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001772 void __iomem *ioaddr = tp->mmio_addr;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001773 unsigned int i, tmp;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001774 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001775 u32 opt;
1776 u16 reg;
1777 u8 mask;
1778 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001779 { WAKE_PHY, Config3, LinkUp },
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001780 { WAKE_UCAST, Config5, UWF },
1781 { WAKE_BCAST, Config5, BWF },
1782 { WAKE_MCAST, Config5, MWF },
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001783 { WAKE_ANY, Config5, LanWake },
1784 { WAKE_MAGIC, Config3, MagicPacket }
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001785 };
Francois Romieu851e6022012-04-17 11:10:11 +02001786 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001787
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001788 RTL_W8(Cfg9346, Cfg9346_Unlock);
1789
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001790 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001791 case RTL_GIGA_MAC_VER_34:
1792 case RTL_GIGA_MAC_VER_35:
1793 case RTL_GIGA_MAC_VER_36:
1794 case RTL_GIGA_MAC_VER_37:
1795 case RTL_GIGA_MAC_VER_38:
1796 case RTL_GIGA_MAC_VER_40:
1797 case RTL_GIGA_MAC_VER_41:
1798 case RTL_GIGA_MAC_VER_42:
1799 case RTL_GIGA_MAC_VER_43:
1800 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001801 case RTL_GIGA_MAC_VER_45:
1802 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001803 case RTL_GIGA_MAC_VER_47:
1804 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001805 case RTL_GIGA_MAC_VER_49:
1806 case RTL_GIGA_MAC_VER_50:
1807 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001808 tmp = ARRAY_SIZE(cfg) - 1;
1809 if (wolopts & WAKE_MAGIC)
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001810 rtl_w0w1_eri(tp,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001811 0x0dc,
1812 ERIAR_MASK_0100,
1813 MagicPacket_v2,
1814 0x0000,
1815 ERIAR_EXGMAC);
1816 else
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001817 rtl_w0w1_eri(tp,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001818 0x0dc,
1819 ERIAR_MASK_0100,
1820 0x0000,
1821 MagicPacket_v2,
1822 ERIAR_EXGMAC);
1823 break;
1824 default:
1825 tmp = ARRAY_SIZE(cfg);
1826 break;
1827 }
1828
1829 for (i = 0; i < tmp; i++) {
Francois Romieu851e6022012-04-17 11:10:11 +02001830 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001831 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001832 options |= cfg[i].mask;
1833 RTL_W8(cfg[i].reg, options);
1834 }
1835
Francois Romieu851e6022012-04-17 11:10:11 +02001836 switch (tp->mac_version) {
1837 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1838 options = RTL_R8(Config1) & ~PMEnable;
1839 if (wolopts)
1840 options |= PMEnable;
1841 RTL_W8(Config1, options);
1842 break;
1843 default:
Francois Romieud387b422012-04-17 11:12:01 +02001844 options = RTL_R8(Config2) & ~PME_SIGNAL;
1845 if (wolopts)
1846 options |= PME_SIGNAL;
1847 RTL_W8(Config2, options);
Francois Romieu851e6022012-04-17 11:10:11 +02001848 break;
1849 }
1850
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001851 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001852}
1853
1854static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1855{
1856 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001857 struct device *d = &tp->pci_dev->dev;
1858
1859 pm_runtime_get_noresume(d);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001860
Francois Romieuda78dbf2012-01-26 14:18:23 +01001861 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001862
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001863 if (wol->wolopts)
1864 tp->features |= RTL_FEATURE_WOL;
1865 else
1866 tp->features &= ~RTL_FEATURE_WOL;
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001867 if (pm_runtime_active(d))
1868 __rtl8169_set_wol(tp, wol->wolopts);
1869 else
1870 tp->saved_wolopts = wol->wolopts;
Francois Romieuda78dbf2012-01-26 14:18:23 +01001871
1872 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001873
françois romieuea809072010-11-08 13:23:58 +00001874 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1875
Chun-Hao Lin5fa80a32016-07-29 16:37:54 +08001876 pm_runtime_put_noidle(d);
1877
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001878 return 0;
1879}
1880
Francois Romieu31bd2042011-04-26 18:58:59 +02001881static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1882{
Francois Romieu85bffe62011-04-27 08:22:39 +02001883 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001884}
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886static void rtl8169_get_drvinfo(struct net_device *dev,
1887 struct ethtool_drvinfo *info)
1888{
1889 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001890 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Rick Jones68aad782011-11-07 13:29:27 +00001892 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1893 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1894 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001895 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001896 if (!IS_ERR_OR_NULL(rtl_fw))
1897 strlcpy(info->fw_version, rtl_fw->version,
1898 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899}
1900
1901static int rtl8169_get_regs_len(struct net_device *dev)
1902{
1903 return R8169_REGS_SIZE;
1904}
1905
1906static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001907 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908{
1909 struct rtl8169_private *tp = netdev_priv(dev);
1910 void __iomem *ioaddr = tp->mmio_addr;
1911 int ret = 0;
1912 u32 reg;
1913
1914 reg = RTL_R32(TBICSR);
1915 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1916 (duplex == DUPLEX_FULL)) {
1917 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1918 } else if (autoneg == AUTONEG_ENABLE)
1919 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1920 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001921 netif_warn(tp, link, dev,
1922 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 ret = -EOPNOTSUPP;
1924 }
1925
1926 return ret;
1927}
1928
1929static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001930 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
1932 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001933 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001934 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Hayes Wang716b50a2011-02-22 17:26:18 +08001936 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001939 int auto_nego;
1940
françois romieu4da19632011-01-03 15:07:55 +00001941 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001942 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1943 ADVERTISE_100HALF | ADVERTISE_100FULL);
1944
1945 if (adv & ADVERTISED_10baseT_Half)
1946 auto_nego |= ADVERTISE_10HALF;
1947 if (adv & ADVERTISED_10baseT_Full)
1948 auto_nego |= ADVERTISE_10FULL;
1949 if (adv & ADVERTISED_100baseT_Half)
1950 auto_nego |= ADVERTISE_100HALF;
1951 if (adv & ADVERTISED_100baseT_Full)
1952 auto_nego |= ADVERTISE_100FULL;
1953
françois romieu3577aa12009-05-19 10:46:48 +00001954 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1955
françois romieu4da19632011-01-03 15:07:55 +00001956 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001957 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1958
1959 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001960 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001961 if (adv & ADVERTISED_1000baseT_Half)
1962 giga_ctrl |= ADVERTISE_1000HALF;
1963 if (adv & ADVERTISED_1000baseT_Full)
1964 giga_ctrl |= ADVERTISE_1000FULL;
1965 } else if (adv & (ADVERTISED_1000baseT_Half |
1966 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001967 netif_info(tp, link, dev,
1968 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001969 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
françois romieu3577aa12009-05-19 10:46:48 +00001972 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001973
françois romieu4da19632011-01-03 15:07:55 +00001974 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1975 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001976 } else {
1977 giga_ctrl = 0;
1978
1979 if (speed == SPEED_10)
1980 bmcr = 0;
1981 else if (speed == SPEED_100)
1982 bmcr = BMCR_SPEED100;
1983 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001984 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001985
1986 if (duplex == DUPLEX_FULL)
1987 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001988 }
1989
françois romieu4da19632011-01-03 15:07:55 +00001990 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001991
Francois Romieucecb5fd2011-04-01 10:21:07 +02001992 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1993 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001994 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001995 rtl_writephy(tp, 0x17, 0x2138);
1996 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001997 } else {
françois romieu4da19632011-01-03 15:07:55 +00001998 rtl_writephy(tp, 0x17, 0x2108);
1999 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00002000 }
2001 }
2002
Oliver Neukum54405cd2011-01-06 21:55:13 +01002003 rc = 0;
2004out:
2005 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006}
2007
2008static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01002009 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
2011 struct rtl8169_private *tp = netdev_priv(dev);
2012 int ret;
2013
Oliver Neukum54405cd2011-01-06 21:55:13 +01002014 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01002015 if (ret < 0)
2016 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Francois Romieu4876cc12011-03-11 21:07:11 +01002018 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
Chun-Hao Linc4556972016-03-11 14:21:14 +08002019 (advertising & ADVERTISED_1000baseT_Full) &&
2020 !pci_is_pcie(tp->pci_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01002022 }
2023out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 return ret;
2025}
2026
2027static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2028{
2029 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 int ret;
2031
Francois Romieu4876cc12011-03-11 21:07:11 +01002032 del_timer_sync(&tp->timer);
2033
Francois Romieuda78dbf2012-01-26 14:18:23 +01002034 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002035 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00002036 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002037 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02002038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 return ret;
2040}
2041
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002042static netdev_features_t rtl8169_fix_features(struct net_device *dev,
2043 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Francois Romieud58d46b2011-05-03 16:38:29 +02002045 struct rtl8169_private *tp = netdev_priv(dev);
2046
Francois Romieu2b7b4312011-04-18 22:53:24 -07002047 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00002048 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Francois Romieud58d46b2011-05-03 16:38:29 +02002050 if (dev->mtu > JUMBO_1K &&
2051 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
2052 features &= ~NETIF_F_IP_CSUM;
2053
Michał Mirosław350fb322011-04-08 06:35:56 +00002054 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
Francois Romieuda78dbf2012-01-26 14:18:23 +01002057static void __rtl8169_set_features(struct net_device *dev,
2058 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002061 void __iomem *ioaddr = tp->mmio_addr;
hayeswang929a0312014-09-16 11:40:47 +08002062 u32 rx_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
hayeswang929a0312014-09-16 11:40:47 +08002064 rx_config = RTL_R32(RxConfig);
2065 if (features & NETIF_F_RXALL)
2066 rx_config |= (AcceptErr | AcceptRunt);
2067 else
2068 rx_config &= ~(AcceptErr | AcceptRunt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
hayeswang929a0312014-09-16 11:40:47 +08002070 RTL_W32(RxConfig, rx_config);
Michał Mirosław350fb322011-04-08 06:35:56 +00002071
hayeswang929a0312014-09-16 11:40:47 +08002072 if (features & NETIF_F_RXCSUM)
2073 tp->cp_cmd |= RxChkSum;
2074 else
2075 tp->cp_cmd &= ~RxChkSum;
Ben Greear6bbe0212012-02-10 15:04:33 +00002076
hayeswang929a0312014-09-16 11:40:47 +08002077 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2078 tp->cp_cmd |= RxVlan;
2079 else
2080 tp->cp_cmd &= ~RxVlan;
2081
2082 tp->cp_cmd |= RTL_R16(CPlusCmd) & ~(RxVlan | RxChkSum);
2083
2084 RTL_W16(CPlusCmd, tp->cp_cmd);
2085 RTL_R16(CPlusCmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002086}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Francois Romieuda78dbf2012-01-26 14:18:23 +01002088static int rtl8169_set_features(struct net_device *dev,
2089 netdev_features_t features)
2090{
2091 struct rtl8169_private *tp = netdev_priv(dev);
2092
hayeswang929a0312014-09-16 11:40:47 +08002093 features &= NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX;
2094
Francois Romieuda78dbf2012-01-26 14:18:23 +01002095 rtl_lock_work(tp);
Dan Carpenter85911d72014-09-19 13:40:25 +03002096 if (features ^ dev->features)
hayeswang929a0312014-09-16 11:40:47 +08002097 __rtl8169_set_features(dev, features);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002098 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 return 0;
2101}
2102
Francois Romieuda78dbf2012-01-26 14:18:23 +01002103
Kirill Smelkov810f4892012-11-10 21:11:02 +04002104static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002106 return (skb_vlan_tag_present(skb)) ?
2107 TxVlanTag | swab16(skb_vlan_tag_get(skb)) : 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109
Francois Romieu7a8fc772011-03-01 17:18:33 +01002110static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
2112 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Francois Romieu7a8fc772011-03-01 17:18:33 +01002114 if (opts2 & RxVlanTag)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00002115 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
2117
Francois Romieuccdffb92008-07-26 14:26:06 +02002118static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
2120 struct rtl8169_private *tp = netdev_priv(dev);
2121 void __iomem *ioaddr = tp->mmio_addr;
2122 u32 status;
2123
2124 cmd->supported =
2125 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
2126 cmd->port = PORT_FIBRE;
2127 cmd->transceiver = XCVR_INTERNAL;
2128
2129 status = RTL_R32(TBICSR);
2130 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
2131 cmd->autoneg = !!(status & TBINwEnable);
2132
David Decotigny70739492011-04-27 18:32:40 +00002133 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02002135
2136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138
Francois Romieuccdffb92008-07-26 14:26:06 +02002139static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
2141 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Francois Romieuccdffb92008-07-26 14:26:06 +02002143 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144}
2145
2146static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2147{
2148 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02002149 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Francois Romieuda78dbf2012-01-26 14:18:23 +01002151 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02002152 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002153 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Francois Romieuccdffb92008-07-26 14:26:06 +02002155 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
2158static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2159 void *p)
2160{
Francois Romieu5b0384f2006-08-16 16:00:01 +02002161 struct rtl8169_private *tp = netdev_priv(dev);
Peter Wu15edae92013-08-21 23:17:11 +02002162 u32 __iomem *data = tp->mmio_addr;
2163 u32 *dw = p;
2164 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Francois Romieuda78dbf2012-01-26 14:18:23 +01002166 rtl_lock_work(tp);
Peter Wu15edae92013-08-21 23:17:11 +02002167 for (i = 0; i < R8169_REGS_SIZE; i += 4)
2168 memcpy_fromio(dw++, data++, 4);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002169 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170}
2171
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002172static u32 rtl8169_get_msglevel(struct net_device *dev)
2173{
2174 struct rtl8169_private *tp = netdev_priv(dev);
2175
2176 return tp->msg_enable;
2177}
2178
2179static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
2180{
2181 struct rtl8169_private *tp = netdev_priv(dev);
2182
2183 tp->msg_enable = value;
2184}
2185
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002186static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
2187 "tx_packets",
2188 "rx_packets",
2189 "tx_errors",
2190 "rx_errors",
2191 "rx_missed",
2192 "align_errors",
2193 "tx_single_collisions",
2194 "tx_multi_collisions",
2195 "unicast",
2196 "broadcast",
2197 "multicast",
2198 "tx_aborted",
2199 "tx_underrun",
2200};
2201
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002202static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002203{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002204 switch (sset) {
2205 case ETH_SS_STATS:
2206 return ARRAY_SIZE(rtl8169_gstrings);
2207 default:
2208 return -EOPNOTSUPP;
2209 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002210}
2211
Corinna Vinschen42020322015-09-10 10:47:35 +02002212DECLARE_RTL_COND(rtl_counters_cond)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002213{
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002214 void __iomem *ioaddr = tp->mmio_addr;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002215
Corinna Vinschen42020322015-09-10 10:47:35 +02002216 return RTL_R32(CounterAddrLow) & (CounterReset | CounterDump);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002217}
2218
Corinna Vinschen42020322015-09-10 10:47:35 +02002219static bool rtl8169_do_counters(struct net_device *dev, u32 counter_cmd)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002220{
2221 struct rtl8169_private *tp = netdev_priv(dev);
2222 void __iomem *ioaddr = tp->mmio_addr;
Corinna Vinschen42020322015-09-10 10:47:35 +02002223 dma_addr_t paddr = tp->counters_phys_addr;
2224 u32 cmd;
Corinna Vinschen42020322015-09-10 10:47:35 +02002225
2226 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Francois Romieu0f514922018-01-26 01:53:26 +01002227 RTL_R32(CounterAddrHigh);
Corinna Vinschen42020322015-09-10 10:47:35 +02002228 cmd = (u64)paddr & DMA_BIT_MASK(32);
2229 RTL_W32(CounterAddrLow, cmd);
2230 RTL_W32(CounterAddrLow, cmd | counter_cmd);
2231
Francois Romieu0f514922018-01-26 01:53:26 +01002232 return rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002233}
2234
2235static bool rtl8169_reset_counters(struct net_device *dev)
2236{
2237 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002238
2239 /*
2240 * Versions prior to RTL_GIGA_MAC_VER_19 don't support resetting the
2241 * tally counters.
2242 */
2243 if (tp->mac_version < RTL_GIGA_MAC_VER_19)
2244 return true;
2245
Corinna Vinschen42020322015-09-10 10:47:35 +02002246 return rtl8169_do_counters(dev, CounterReset);
Francois Romieuffc46952012-07-06 14:19:23 +02002247}
2248
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002249static bool rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002250{
2251 struct rtl8169_private *tp = netdev_priv(dev);
2252 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002253
Ivan Vecera355423d2009-02-06 21:49:57 -08002254 /*
2255 * Some chips are unable to dump tally counters when the receiver
2256 * is disabled.
2257 */
2258 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002259 return true;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002260
Corinna Vinschen42020322015-09-10 10:47:35 +02002261 return rtl8169_do_counters(dev, CounterDump);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002262}
2263
2264static bool rtl8169_init_counter_offsets(struct net_device *dev)
2265{
2266 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen42020322015-09-10 10:47:35 +02002267 struct rtl8169_counters *counters = tp->counters;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002268 bool ret = false;
2269
2270 /*
2271 * rtl8169_init_counter_offsets is called from rtl_open. On chip
2272 * versions prior to RTL_GIGA_MAC_VER_19 the tally counters are only
2273 * reset by a power cycle, while the counter values collected by the
2274 * driver are reset at every driver unload/load cycle.
2275 *
2276 * To make sure the HW values returned by @get_stats64 match the SW
2277 * values, we collect the initial values at first open(*) and use them
2278 * as offsets to normalize the values returned by @get_stats64.
2279 *
2280 * (*) We can't call rtl8169_init_counter_offsets from rtl_init_one
2281 * for the reason stated in rtl8169_update_counters; CmdRxEnb is only
2282 * set at open time by rtl_hw_start.
2283 */
2284
2285 if (tp->tc_offset.inited)
2286 return true;
2287
2288 /* If both, reset and update fail, propagate to caller. */
2289 if (rtl8169_reset_counters(dev))
2290 ret = true;
2291
2292 if (rtl8169_update_counters(dev))
2293 ret = true;
2294
Corinna Vinschen42020322015-09-10 10:47:35 +02002295 tp->tc_offset.tx_errors = counters->tx_errors;
2296 tp->tc_offset.tx_multi_collision = counters->tx_multi_collision;
2297 tp->tc_offset.tx_aborted = counters->tx_aborted;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002298 tp->tc_offset.inited = true;
2299
2300 return ret;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002301}
2302
Ivan Vecera355423d2009-02-06 21:49:57 -08002303static void rtl8169_get_ethtool_stats(struct net_device *dev,
2304 struct ethtool_stats *stats, u64 *data)
2305{
2306 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Line0636232016-07-29 16:37:55 +08002307 struct device *d = &tp->pci_dev->dev;
Corinna Vinschen42020322015-09-10 10:47:35 +02002308 struct rtl8169_counters *counters = tp->counters;
Ivan Vecera355423d2009-02-06 21:49:57 -08002309
2310 ASSERT_RTNL();
2311
Chun-Hao Line0636232016-07-29 16:37:55 +08002312 pm_runtime_get_noresume(d);
2313
2314 if (pm_runtime_active(d))
2315 rtl8169_update_counters(dev);
2316
2317 pm_runtime_put_noidle(d);
Ivan Vecera355423d2009-02-06 21:49:57 -08002318
Corinna Vinschen42020322015-09-10 10:47:35 +02002319 data[0] = le64_to_cpu(counters->tx_packets);
2320 data[1] = le64_to_cpu(counters->rx_packets);
2321 data[2] = le64_to_cpu(counters->tx_errors);
2322 data[3] = le32_to_cpu(counters->rx_errors);
2323 data[4] = le16_to_cpu(counters->rx_missed);
2324 data[5] = le16_to_cpu(counters->align_errors);
2325 data[6] = le32_to_cpu(counters->tx_one_collision);
2326 data[7] = le32_to_cpu(counters->tx_multi_collision);
2327 data[8] = le64_to_cpu(counters->rx_unicast);
2328 data[9] = le64_to_cpu(counters->rx_broadcast);
2329 data[10] = le32_to_cpu(counters->rx_multicast);
2330 data[11] = le16_to_cpu(counters->tx_aborted);
2331 data[12] = le16_to_cpu(counters->tx_underun);
Ivan Vecera355423d2009-02-06 21:49:57 -08002332}
2333
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002334static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2335{
2336 switch(stringset) {
2337 case ETH_SS_STATS:
2338 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
2339 break;
2340 }
2341}
2342
Jeff Garzik7282d492006-09-13 14:30:00 -04002343static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 .get_drvinfo = rtl8169_get_drvinfo,
2345 .get_regs_len = rtl8169_get_regs_len,
2346 .get_link = ethtool_op_get_link,
2347 .get_settings = rtl8169_get_settings,
2348 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002349 .get_msglevel = rtl8169_get_msglevel,
2350 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002352 .get_wol = rtl8169_get_wol,
2353 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002354 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002355 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002356 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00002357 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358};
2359
Francois Romieu07d3f512007-02-21 22:40:46 +01002360static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02002361 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
Francois Romieu5d320a22011-05-08 17:47:36 +02002363 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002364 /*
2365 * The driver currently handles the 8168Bf and the 8168Be identically
2366 * but they can be identified more specifically through the test below
2367 * if needed:
2368 *
2369 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01002370 *
2371 * Same thing for the 8101Eb and the 8101Ec:
2372 *
2373 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01002374 */
Francois Romieu37441002011-06-17 22:58:54 +02002375 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002377 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 int mac_version;
2379 } mac_info[] = {
Chun-Hao Lin935e2212014-10-07 15:10:41 +08002380 /* 8168EP family. */
2381 { 0x7cf00000, 0x50200000, RTL_GIGA_MAC_VER_51 },
2382 { 0x7cf00000, 0x50100000, RTL_GIGA_MAC_VER_50 },
2383 { 0x7cf00000, 0x50000000, RTL_GIGA_MAC_VER_49 },
2384
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002385 /* 8168H family. */
2386 { 0x7cf00000, 0x54100000, RTL_GIGA_MAC_VER_46 },
2387 { 0x7cf00000, 0x54000000, RTL_GIGA_MAC_VER_45 },
2388
Hayes Wangc5583862012-07-02 17:23:22 +08002389 /* 8168G family. */
hayeswang45dd95c2013-07-08 17:09:01 +08002390 { 0x7cf00000, 0x5c800000, RTL_GIGA_MAC_VER_44 },
hayeswang57538c42013-04-01 22:23:40 +00002391 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42 },
Hayes Wangc5583862012-07-02 17:23:22 +08002392 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2393 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2394
Hayes Wangc2218922011-09-06 16:55:18 +08002395 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08002396 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08002397 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2398 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2399
hayeswang01dc7fe2011-03-21 01:50:28 +00002400 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08002401 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00002402 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
2403 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2404 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2405
Francois Romieu5b538df2008-07-20 16:22:45 +02002406 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00002407 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
2408 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00002409 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002410
françois romieue6de30d2011-01-03 15:08:37 +00002411 /* 8168DP family. */
2412 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2413 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00002414 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00002415
Francois Romieuef808d52008-06-29 13:10:54 +02002416 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07002417 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02002418 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02002419 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002420 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002421 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2422 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02002423 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02002424 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02002425 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002426
2427 /* 8168B family. */
2428 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2429 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
2430 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2431 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2432
2433 /* 8101 family. */
Hayes Wang5598bfe2012-07-02 17:23:21 +08002434 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39 },
2435 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
Hayes Wang7e18dca2012-03-30 14:33:02 +08002436 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00002437 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08002438 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
2439 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2440 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002441 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
2442 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
2443 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2444 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2445 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2446 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002447 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002448 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002449 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002450 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2451 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002452 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2453 /* FIXME: where did these entries come from ? -- FR */
2454 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2455 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2456
2457 /* 8110 family. */
2458 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2459 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2460 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2461 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2462 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2463 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2464
Jean Delvaref21b75e2009-05-26 20:54:48 -07002465 /* Catch-all */
2466 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02002467 };
2468 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 u32 reg;
2470
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002471 reg = RTL_R32(TxConfig);
2472 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 p++;
2474 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02002475
2476 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2477 netif_notice(tp, probe, dev,
2478 "unknown MAC, using family default\n");
2479 tp->mac_version = default_version;
hayeswang58152cd2013-04-01 22:23:42 +00002480 } else if (tp->mac_version == RTL_GIGA_MAC_VER_42) {
2481 tp->mac_version = tp->mii.supports_gmii ?
2482 RTL_GIGA_MAC_VER_42 :
2483 RTL_GIGA_MAC_VER_43;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002484 } else if (tp->mac_version == RTL_GIGA_MAC_VER_45) {
2485 tp->mac_version = tp->mii.supports_gmii ?
2486 RTL_GIGA_MAC_VER_45 :
2487 RTL_GIGA_MAC_VER_47;
2488 } else if (tp->mac_version == RTL_GIGA_MAC_VER_46) {
2489 tp->mac_version = tp->mii.supports_gmii ?
2490 RTL_GIGA_MAC_VER_46 :
2491 RTL_GIGA_MAC_VER_48;
Francois Romieu5d320a22011-05-08 17:47:36 +02002492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
2494
2495static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2496{
Francois Romieubcf0bf92006-07-26 23:14:13 +02002497 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
2499
Francois Romieu867763c2007-08-17 18:21:58 +02002500struct phy_reg {
2501 u16 reg;
2502 u16 val;
2503};
2504
françois romieu4da19632011-01-03 15:07:55 +00002505static void rtl_writephy_batch(struct rtl8169_private *tp,
2506 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02002507{
2508 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00002509 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02002510 regs++;
2511 }
2512}
2513
françois romieubca03d52011-01-03 15:07:31 +00002514#define PHY_READ 0x00000000
2515#define PHY_DATA_OR 0x10000000
2516#define PHY_DATA_AND 0x20000000
2517#define PHY_BJMPN 0x30000000
hayeswangeee37862013-04-01 22:23:38 +00002518#define PHY_MDIO_CHG 0x40000000
françois romieubca03d52011-01-03 15:07:31 +00002519#define PHY_CLEAR_READCOUNT 0x70000000
2520#define PHY_WRITE 0x80000000
2521#define PHY_READCOUNT_EQ_SKIP 0x90000000
2522#define PHY_COMP_EQ_SKIPN 0xa0000000
2523#define PHY_COMP_NEQ_SKIPN 0xb0000000
2524#define PHY_WRITE_PREVIOUS 0xc0000000
2525#define PHY_SKIPN 0xd0000000
2526#define PHY_DELAY_MS 0xe0000000
françois romieubca03d52011-01-03 15:07:31 +00002527
Hayes Wang960aee62011-06-18 11:37:48 +02002528struct fw_info {
2529 u32 magic;
2530 char version[RTL_VER_SIZE];
2531 __le32 fw_start;
2532 __le32 fw_len;
2533 u8 chksum;
2534} __packed;
2535
Francois Romieu1c361ef2011-06-17 17:16:24 +02002536#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2537
2538static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002539{
Francois Romieub6ffd972011-06-17 17:00:05 +02002540 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002541 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002542 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2543 char *version = rtl_fw->version;
2544 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002545
Francois Romieu1c361ef2011-06-17 17:16:24 +02002546 if (fw->size < FW_OPCODE_SIZE)
2547 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002548
2549 if (!fw_info->magic) {
2550 size_t i, size, start;
2551 u8 checksum = 0;
2552
2553 if (fw->size < sizeof(*fw_info))
2554 goto out;
2555
2556 for (i = 0; i < fw->size; i++)
2557 checksum += fw->data[i];
2558 if (checksum != 0)
2559 goto out;
2560
2561 start = le32_to_cpu(fw_info->fw_start);
2562 if (start > fw->size)
2563 goto out;
2564
2565 size = le32_to_cpu(fw_info->fw_len);
2566 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2567 goto out;
2568
2569 memcpy(version, fw_info->version, RTL_VER_SIZE);
2570
2571 pa->code = (__le32 *)(fw->data + start);
2572 pa->size = size;
2573 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002574 if (fw->size % FW_OPCODE_SIZE)
2575 goto out;
2576
2577 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2578
2579 pa->code = (__le32 *)fw->data;
2580 pa->size = fw->size / FW_OPCODE_SIZE;
2581 }
2582 version[RTL_VER_SIZE - 1] = 0;
2583
2584 rc = true;
2585out:
2586 return rc;
2587}
2588
Francois Romieufd112f22011-06-18 00:10:29 +02002589static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2590 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002591{
Francois Romieufd112f22011-06-18 00:10:29 +02002592 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002593 size_t index;
2594
Francois Romieu1c361ef2011-06-17 17:16:24 +02002595 for (index = 0; index < pa->size; index++) {
2596 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002597 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002598
hayeswang42b82dc2011-01-10 02:07:25 +00002599 switch(action & 0xf0000000) {
2600 case PHY_READ:
2601 case PHY_DATA_OR:
2602 case PHY_DATA_AND:
hayeswangeee37862013-04-01 22:23:38 +00002603 case PHY_MDIO_CHG:
hayeswang42b82dc2011-01-10 02:07:25 +00002604 case PHY_CLEAR_READCOUNT:
2605 case PHY_WRITE:
2606 case PHY_WRITE_PREVIOUS:
2607 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002608 break;
2609
hayeswang42b82dc2011-01-10 02:07:25 +00002610 case PHY_BJMPN:
2611 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002612 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002613 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002614 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002615 }
2616 break;
2617 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002618 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002619 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002620 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002621 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002622 }
2623 break;
2624 case PHY_COMP_EQ_SKIPN:
2625 case PHY_COMP_NEQ_SKIPN:
2626 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002627 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002628 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002629 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002630 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002631 }
2632 break;
2633
hayeswang42b82dc2011-01-10 02:07:25 +00002634 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002635 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002636 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002637 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002638 }
2639 }
Francois Romieufd112f22011-06-18 00:10:29 +02002640 rc = true;
2641out:
2642 return rc;
2643}
françois romieubca03d52011-01-03 15:07:31 +00002644
Francois Romieufd112f22011-06-18 00:10:29 +02002645static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2646{
2647 struct net_device *dev = tp->dev;
2648 int rc = -EINVAL;
2649
2650 if (!rtl_fw_format_ok(tp, rtl_fw)) {
Yannick Guerrini5c2d2b12015-02-24 13:03:51 +01002651 netif_err(tp, ifup, dev, "invalid firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002652 goto out;
2653 }
2654
2655 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2656 rc = 0;
2657out:
2658 return rc;
2659}
2660
2661static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2662{
2663 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
hayeswangeee37862013-04-01 22:23:38 +00002664 struct mdio_ops org, *ops = &tp->mdio_ops;
Francois Romieufd112f22011-06-18 00:10:29 +02002665 u32 predata, count;
2666 size_t index;
2667
2668 predata = count = 0;
hayeswangeee37862013-04-01 22:23:38 +00002669 org.write = ops->write;
2670 org.read = ops->read;
hayeswang42b82dc2011-01-10 02:07:25 +00002671
Francois Romieu1c361ef2011-06-17 17:16:24 +02002672 for (index = 0; index < pa->size; ) {
2673 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002674 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002675 u32 regno = (action & 0x0fff0000) >> 16;
2676
2677 if (!action)
2678 break;
françois romieubca03d52011-01-03 15:07:31 +00002679
2680 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002681 case PHY_READ:
2682 predata = rtl_readphy(tp, regno);
2683 count++;
2684 index++;
françois romieubca03d52011-01-03 15:07:31 +00002685 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002686 case PHY_DATA_OR:
2687 predata |= data;
2688 index++;
2689 break;
2690 case PHY_DATA_AND:
2691 predata &= data;
2692 index++;
2693 break;
2694 case PHY_BJMPN:
2695 index -= regno;
2696 break;
hayeswangeee37862013-04-01 22:23:38 +00002697 case PHY_MDIO_CHG:
2698 if (data == 0) {
2699 ops->write = org.write;
2700 ops->read = org.read;
2701 } else if (data == 1) {
2702 ops->write = mac_mcu_write;
2703 ops->read = mac_mcu_read;
2704 }
2705
hayeswang42b82dc2011-01-10 02:07:25 +00002706 index++;
2707 break;
2708 case PHY_CLEAR_READCOUNT:
2709 count = 0;
2710 index++;
2711 break;
2712 case PHY_WRITE:
2713 rtl_writephy(tp, regno, data);
2714 index++;
2715 break;
2716 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002717 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002718 break;
2719 case PHY_COMP_EQ_SKIPN:
2720 if (predata == data)
2721 index += regno;
2722 index++;
2723 break;
2724 case PHY_COMP_NEQ_SKIPN:
2725 if (predata != data)
2726 index += regno;
2727 index++;
2728 break;
2729 case PHY_WRITE_PREVIOUS:
2730 rtl_writephy(tp, regno, predata);
2731 index++;
2732 break;
2733 case PHY_SKIPN:
2734 index += regno + 1;
2735 break;
2736 case PHY_DELAY_MS:
2737 mdelay(data);
2738 index++;
2739 break;
2740
françois romieubca03d52011-01-03 15:07:31 +00002741 default:
2742 BUG();
2743 }
2744 }
hayeswangeee37862013-04-01 22:23:38 +00002745
2746 ops->write = org.write;
2747 ops->read = org.read;
françois romieubca03d52011-01-03 15:07:31 +00002748}
2749
françois romieuf1e02ed2011-01-13 13:07:53 +00002750static void rtl_release_firmware(struct rtl8169_private *tp)
2751{
Francois Romieub6ffd972011-06-17 17:00:05 +02002752 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2753 release_firmware(tp->rtl_fw->fw);
2754 kfree(tp->rtl_fw);
2755 }
2756 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002757}
2758
François Romieu953a12c2011-04-24 17:38:48 +02002759static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002760{
Francois Romieub6ffd972011-06-17 17:00:05 +02002761 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002762
2763 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieueef63cc2013-02-08 23:43:20 +01002764 if (!IS_ERR_OR_NULL(rtl_fw))
Francois Romieub6ffd972011-06-17 17:00:05 +02002765 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002766}
2767
2768static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2769{
2770 if (rtl_readphy(tp, reg) != val)
2771 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2772 else
2773 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002774}
2775
françois romieu4da19632011-01-03 15:07:55 +00002776static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002778 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002779 { 0x1f, 0x0001 },
2780 { 0x06, 0x006e },
2781 { 0x08, 0x0708 },
2782 { 0x15, 0x4000 },
2783 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
françois romieu0b9b5712009-08-10 19:44:56 +00002785 { 0x1f, 0x0001 },
2786 { 0x03, 0x00a1 },
2787 { 0x02, 0x0008 },
2788 { 0x01, 0x0120 },
2789 { 0x00, 0x1000 },
2790 { 0x04, 0x0800 },
2791 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
françois romieu0b9b5712009-08-10 19:44:56 +00002793 { 0x03, 0xff41 },
2794 { 0x02, 0xdf60 },
2795 { 0x01, 0x0140 },
2796 { 0x00, 0x0077 },
2797 { 0x04, 0x7800 },
2798 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
françois romieu0b9b5712009-08-10 19:44:56 +00002800 { 0x03, 0x802f },
2801 { 0x02, 0x4f02 },
2802 { 0x01, 0x0409 },
2803 { 0x00, 0xf0f9 },
2804 { 0x04, 0x9800 },
2805 { 0x04, 0x9000 },
2806
2807 { 0x03, 0xdf01 },
2808 { 0x02, 0xdf20 },
2809 { 0x01, 0xff95 },
2810 { 0x00, 0xba00 },
2811 { 0x04, 0xa800 },
2812 { 0x04, 0xa000 },
2813
2814 { 0x03, 0xff41 },
2815 { 0x02, 0xdf20 },
2816 { 0x01, 0x0140 },
2817 { 0x00, 0x00bb },
2818 { 0x04, 0xb800 },
2819 { 0x04, 0xb000 },
2820
2821 { 0x03, 0xdf41 },
2822 { 0x02, 0xdc60 },
2823 { 0x01, 0x6340 },
2824 { 0x00, 0x007d },
2825 { 0x04, 0xd800 },
2826 { 0x04, 0xd000 },
2827
2828 { 0x03, 0xdf01 },
2829 { 0x02, 0xdf20 },
2830 { 0x01, 0x100a },
2831 { 0x00, 0xa0ff },
2832 { 0x04, 0xf800 },
2833 { 0x04, 0xf000 },
2834
2835 { 0x1f, 0x0000 },
2836 { 0x0b, 0x0000 },
2837 { 0x00, 0x9200 }
2838 };
2839
françois romieu4da19632011-01-03 15:07:55 +00002840 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841}
2842
françois romieu4da19632011-01-03 15:07:55 +00002843static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002844{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002845 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002846 { 0x1f, 0x0002 },
2847 { 0x01, 0x90d0 },
2848 { 0x1f, 0x0000 }
2849 };
2850
françois romieu4da19632011-01-03 15:07:55 +00002851 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002852}
2853
françois romieu4da19632011-01-03 15:07:55 +00002854static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002855{
2856 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002857
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002858 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2859 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002860 return;
2861
françois romieu4da19632011-01-03 15:07:55 +00002862 rtl_writephy(tp, 0x1f, 0x0001);
2863 rtl_writephy(tp, 0x10, 0xf01b);
2864 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002865}
2866
françois romieu4da19632011-01-03 15:07:55 +00002867static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002868{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002869 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002870 { 0x1f, 0x0001 },
2871 { 0x04, 0x0000 },
2872 { 0x03, 0x00a1 },
2873 { 0x02, 0x0008 },
2874 { 0x01, 0x0120 },
2875 { 0x00, 0x1000 },
2876 { 0x04, 0x0800 },
2877 { 0x04, 0x9000 },
2878 { 0x03, 0x802f },
2879 { 0x02, 0x4f02 },
2880 { 0x01, 0x0409 },
2881 { 0x00, 0xf099 },
2882 { 0x04, 0x9800 },
2883 { 0x04, 0xa000 },
2884 { 0x03, 0xdf01 },
2885 { 0x02, 0xdf20 },
2886 { 0x01, 0xff95 },
2887 { 0x00, 0xba00 },
2888 { 0x04, 0xa800 },
2889 { 0x04, 0xf000 },
2890 { 0x03, 0xdf01 },
2891 { 0x02, 0xdf20 },
2892 { 0x01, 0x101a },
2893 { 0x00, 0xa0ff },
2894 { 0x04, 0xf800 },
2895 { 0x04, 0x0000 },
2896 { 0x1f, 0x0000 },
2897
2898 { 0x1f, 0x0001 },
2899 { 0x10, 0xf41b },
2900 { 0x14, 0xfb54 },
2901 { 0x18, 0xf5c7 },
2902 { 0x1f, 0x0000 },
2903
2904 { 0x1f, 0x0001 },
2905 { 0x17, 0x0cc0 },
2906 { 0x1f, 0x0000 }
2907 };
2908
françois romieu4da19632011-01-03 15:07:55 +00002909 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002910
françois romieu4da19632011-01-03 15:07:55 +00002911 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002912}
2913
françois romieu4da19632011-01-03 15:07:55 +00002914static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002915{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002916 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002917 { 0x1f, 0x0001 },
2918 { 0x04, 0x0000 },
2919 { 0x03, 0x00a1 },
2920 { 0x02, 0x0008 },
2921 { 0x01, 0x0120 },
2922 { 0x00, 0x1000 },
2923 { 0x04, 0x0800 },
2924 { 0x04, 0x9000 },
2925 { 0x03, 0x802f },
2926 { 0x02, 0x4f02 },
2927 { 0x01, 0x0409 },
2928 { 0x00, 0xf099 },
2929 { 0x04, 0x9800 },
2930 { 0x04, 0xa000 },
2931 { 0x03, 0xdf01 },
2932 { 0x02, 0xdf20 },
2933 { 0x01, 0xff95 },
2934 { 0x00, 0xba00 },
2935 { 0x04, 0xa800 },
2936 { 0x04, 0xf000 },
2937 { 0x03, 0xdf01 },
2938 { 0x02, 0xdf20 },
2939 { 0x01, 0x101a },
2940 { 0x00, 0xa0ff },
2941 { 0x04, 0xf800 },
2942 { 0x04, 0x0000 },
2943 { 0x1f, 0x0000 },
2944
2945 { 0x1f, 0x0001 },
2946 { 0x0b, 0x8480 },
2947 { 0x1f, 0x0000 },
2948
2949 { 0x1f, 0x0001 },
2950 { 0x18, 0x67c7 },
2951 { 0x04, 0x2000 },
2952 { 0x03, 0x002f },
2953 { 0x02, 0x4360 },
2954 { 0x01, 0x0109 },
2955 { 0x00, 0x3022 },
2956 { 0x04, 0x2800 },
2957 { 0x1f, 0x0000 },
2958
2959 { 0x1f, 0x0001 },
2960 { 0x17, 0x0cc0 },
2961 { 0x1f, 0x0000 }
2962 };
2963
françois romieu4da19632011-01-03 15:07:55 +00002964 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002965}
2966
françois romieu4da19632011-01-03 15:07:55 +00002967static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002968{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002969 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002970 { 0x10, 0xf41b },
2971 { 0x1f, 0x0000 }
2972 };
2973
françois romieu4da19632011-01-03 15:07:55 +00002974 rtl_writephy(tp, 0x1f, 0x0001);
2975 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002976
françois romieu4da19632011-01-03 15:07:55 +00002977 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002978}
2979
françois romieu4da19632011-01-03 15:07:55 +00002980static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002981{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002982 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002983 { 0x1f, 0x0001 },
2984 { 0x10, 0xf41b },
2985 { 0x1f, 0x0000 }
2986 };
2987
françois romieu4da19632011-01-03 15:07:55 +00002988 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002989}
2990
françois romieu4da19632011-01-03 15:07:55 +00002991static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002992{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002993 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002994 { 0x1f, 0x0000 },
2995 { 0x1d, 0x0f00 },
2996 { 0x1f, 0x0002 },
2997 { 0x0c, 0x1ec8 },
2998 { 0x1f, 0x0000 }
2999 };
3000
françois romieu4da19632011-01-03 15:07:55 +00003001 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02003002}
3003
françois romieu4da19632011-01-03 15:07:55 +00003004static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02003005{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003006 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02003007 { 0x1f, 0x0001 },
3008 { 0x1d, 0x3d98 },
3009 { 0x1f, 0x0000 }
3010 };
3011
françois romieu4da19632011-01-03 15:07:55 +00003012 rtl_writephy(tp, 0x1f, 0x0000);
3013 rtl_patchphy(tp, 0x14, 1 << 5);
3014 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02003015
françois romieu4da19632011-01-03 15:07:55 +00003016 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02003017}
3018
françois romieu4da19632011-01-03 15:07:55 +00003019static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02003020{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003021 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02003022 { 0x1f, 0x0001 },
3023 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02003024 { 0x1f, 0x0002 },
3025 { 0x00, 0x88d4 },
3026 { 0x01, 0x82b1 },
3027 { 0x03, 0x7002 },
3028 { 0x08, 0x9e30 },
3029 { 0x09, 0x01f0 },
3030 { 0x0a, 0x5500 },
3031 { 0x0c, 0x00c8 },
3032 { 0x1f, 0x0003 },
3033 { 0x12, 0xc096 },
3034 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02003035 { 0x1f, 0x0000 },
3036 { 0x1f, 0x0000 },
3037 { 0x09, 0x2000 },
3038 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02003039 };
3040
françois romieu4da19632011-01-03 15:07:55 +00003041 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003042
françois romieu4da19632011-01-03 15:07:55 +00003043 rtl_patchphy(tp, 0x14, 1 << 5);
3044 rtl_patchphy(tp, 0x0d, 1 << 5);
3045 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02003046}
3047
françois romieu4da19632011-01-03 15:07:55 +00003048static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02003049{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003050 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02003051 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003052 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003053 { 0x03, 0x802f },
3054 { 0x02, 0x4f02 },
3055 { 0x01, 0x0409 },
3056 { 0x00, 0xf099 },
3057 { 0x04, 0x9800 },
3058 { 0x04, 0x9000 },
3059 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003060 { 0x1f, 0x0002 },
3061 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003062 { 0x06, 0x0761 },
3063 { 0x1f, 0x0003 },
3064 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003065 { 0x1f, 0x0000 }
3066 };
3067
françois romieu4da19632011-01-03 15:07:55 +00003068 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003069
françois romieu4da19632011-01-03 15:07:55 +00003070 rtl_patchphy(tp, 0x16, 1 << 0);
3071 rtl_patchphy(tp, 0x14, 1 << 5);
3072 rtl_patchphy(tp, 0x0d, 1 << 5);
3073 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003074}
3075
françois romieu4da19632011-01-03 15:07:55 +00003076static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02003077{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003078 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02003079 { 0x1f, 0x0001 },
3080 { 0x12, 0x2300 },
3081 { 0x1d, 0x3d98 },
3082 { 0x1f, 0x0002 },
3083 { 0x0c, 0x7eb8 },
3084 { 0x06, 0x5461 },
3085 { 0x1f, 0x0003 },
3086 { 0x16, 0x0f0a },
3087 { 0x1f, 0x0000 }
3088 };
3089
françois romieu4da19632011-01-03 15:07:55 +00003090 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02003091
françois romieu4da19632011-01-03 15:07:55 +00003092 rtl_patchphy(tp, 0x16, 1 << 0);
3093 rtl_patchphy(tp, 0x14, 1 << 5);
3094 rtl_patchphy(tp, 0x0d, 1 << 5);
3095 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02003096}
3097
françois romieu4da19632011-01-03 15:07:55 +00003098static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02003099{
françois romieu4da19632011-01-03 15:07:55 +00003100 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003101}
3102
françois romieubca03d52011-01-03 15:07:31 +00003103static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02003104{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003105 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003106 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02003107 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00003108 { 0x06, 0x4064 },
3109 { 0x07, 0x2863 },
3110 { 0x08, 0x059c },
3111 { 0x09, 0x26b4 },
3112 { 0x0a, 0x6a19 },
3113 { 0x0b, 0xdcc8 },
3114 { 0x10, 0xf06d },
3115 { 0x14, 0x7f68 },
3116 { 0x18, 0x7fd9 },
3117 { 0x1c, 0xf0ff },
3118 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02003119 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00003120 { 0x12, 0xf49f },
3121 { 0x13, 0x070b },
3122 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00003123 { 0x14, 0x94c0 },
3124
3125 /*
3126 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003127 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003128 */
Francois Romieu5b538df2008-07-20 16:22:45 +02003129 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00003130 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003131 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003132 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003133 { 0x06, 0x5561 },
3134
3135 /*
3136 * Can not link to 1Gbps with bad cable
3137 * Decrease SNR threshold form 21.07dB to 19.04dB
3138 */
3139 { 0x1f, 0x0001 },
3140 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003141
3142 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003143 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003144 };
3145
françois romieu4da19632011-01-03 15:07:55 +00003146 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02003147
françois romieubca03d52011-01-03 15:07:31 +00003148 /*
3149 * Rx Error Issue
3150 * Fine Tune Switching regulator parameter
3151 */
françois romieu4da19632011-01-03 15:07:55 +00003152 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003153 rtl_w0w1_phy(tp, 0x0b, 0x0010, 0x00ef);
3154 rtl_w0w1_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00003155
Francois Romieufdf6fc02012-07-06 22:40:38 +02003156 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003157 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003158 { 0x1f, 0x0002 },
3159 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02003160 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003161 { 0x05, 0x8330 },
3162 { 0x06, 0x669a },
3163 { 0x1f, 0x0002 }
3164 };
3165 int val;
3166
françois romieu4da19632011-01-03 15:07:55 +00003167 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003168
françois romieu4da19632011-01-03 15:07:55 +00003169 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003170
3171 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003172 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003173 0x0065, 0x0066, 0x0067, 0x0068,
3174 0x0069, 0x006a, 0x006b, 0x006c
3175 };
3176 int i;
3177
françois romieu4da19632011-01-03 15:07:55 +00003178 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003179
3180 val &= 0xff00;
3181 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003182 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003183 }
3184 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003185 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003186 { 0x1f, 0x0002 },
3187 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003188 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003189 { 0x05, 0x8330 },
3190 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003191 };
3192
françois romieu4da19632011-01-03 15:07:55 +00003193 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003194 }
3195
françois romieubca03d52011-01-03 15:07:31 +00003196 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00003197 rtl_writephy(tp, 0x1f, 0x0002);
3198 rtl_patchphy(tp, 0x0d, 0x0300);
3199 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00003200
françois romieubca03d52011-01-03 15:07:31 +00003201 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003202 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003203 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3204 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003205
françois romieu4da19632011-01-03 15:07:55 +00003206 rtl_writephy(tp, 0x1f, 0x0005);
3207 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003208
3209 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00003210
françois romieu4da19632011-01-03 15:07:55 +00003211 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003212}
3213
françois romieubca03d52011-01-03 15:07:31 +00003214static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003215{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003216 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003217 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00003218 { 0x1f, 0x0001 },
3219 { 0x06, 0x4064 },
3220 { 0x07, 0x2863 },
3221 { 0x08, 0x059c },
3222 { 0x09, 0x26b4 },
3223 { 0x0a, 0x6a19 },
3224 { 0x0b, 0xdcc8 },
3225 { 0x10, 0xf06d },
3226 { 0x14, 0x7f68 },
3227 { 0x18, 0x7fd9 },
3228 { 0x1c, 0xf0ff },
3229 { 0x1d, 0x3d9c },
3230 { 0x1f, 0x0003 },
3231 { 0x12, 0xf49f },
3232 { 0x13, 0x070b },
3233 { 0x1a, 0x05ad },
3234 { 0x14, 0x94c0 },
3235
françois romieubca03d52011-01-03 15:07:31 +00003236 /*
3237 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003238 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003239 */
françois romieudaf9df62009-10-07 12:44:20 +00003240 { 0x1f, 0x0002 },
3241 { 0x06, 0x5561 },
3242 { 0x1f, 0x0005 },
3243 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003244 { 0x06, 0x5561 },
3245
3246 /*
3247 * Can not link to 1Gbps with bad cable
3248 * Decrease SNR threshold form 21.07dB to 19.04dB
3249 */
3250 { 0x1f, 0x0001 },
3251 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003252
3253 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003254 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00003255 };
3256
françois romieu4da19632011-01-03 15:07:55 +00003257 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00003258
Francois Romieufdf6fc02012-07-06 22:40:38 +02003259 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003260 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003261 { 0x1f, 0x0002 },
3262 { 0x05, 0x669a },
3263 { 0x1f, 0x0005 },
3264 { 0x05, 0x8330 },
3265 { 0x06, 0x669a },
3266
3267 { 0x1f, 0x0002 }
3268 };
3269 int val;
3270
françois romieu4da19632011-01-03 15:07:55 +00003271 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003272
françois romieu4da19632011-01-03 15:07:55 +00003273 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003274 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08003275 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003276 0x0065, 0x0066, 0x0067, 0x0068,
3277 0x0069, 0x006a, 0x006b, 0x006c
3278 };
3279 int i;
3280
françois romieu4da19632011-01-03 15:07:55 +00003281 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003282
3283 val &= 0xff00;
3284 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003285 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003286 }
3287 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003288 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003289 { 0x1f, 0x0002 },
3290 { 0x05, 0x2642 },
3291 { 0x1f, 0x0005 },
3292 { 0x05, 0x8330 },
3293 { 0x06, 0x2642 }
3294 };
3295
françois romieu4da19632011-01-03 15:07:55 +00003296 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003297 }
3298
françois romieubca03d52011-01-03 15:07:31 +00003299 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003300 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003301 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3302 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003303
françois romieubca03d52011-01-03 15:07:31 +00003304 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00003305 rtl_writephy(tp, 0x1f, 0x0002);
3306 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00003307
françois romieu4da19632011-01-03 15:07:55 +00003308 rtl_writephy(tp, 0x1f, 0x0005);
3309 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003310
3311 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00003312
françois romieu4da19632011-01-03 15:07:55 +00003313 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003314}
3315
françois romieu4da19632011-01-03 15:07:55 +00003316static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003317{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003318 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003319 { 0x1f, 0x0002 },
3320 { 0x10, 0x0008 },
3321 { 0x0d, 0x006c },
3322
3323 { 0x1f, 0x0000 },
3324 { 0x0d, 0xf880 },
3325
3326 { 0x1f, 0x0001 },
3327 { 0x17, 0x0cc0 },
3328
3329 { 0x1f, 0x0001 },
3330 { 0x0b, 0xa4d8 },
3331 { 0x09, 0x281c },
3332 { 0x07, 0x2883 },
3333 { 0x0a, 0x6b35 },
3334 { 0x1d, 0x3da4 },
3335 { 0x1c, 0xeffd },
3336 { 0x14, 0x7f52 },
3337 { 0x18, 0x7fc6 },
3338 { 0x08, 0x0601 },
3339 { 0x06, 0x4063 },
3340 { 0x10, 0xf074 },
3341 { 0x1f, 0x0003 },
3342 { 0x13, 0x0789 },
3343 { 0x12, 0xf4bd },
3344 { 0x1a, 0x04fd },
3345 { 0x14, 0x84b0 },
3346 { 0x1f, 0x0000 },
3347 { 0x00, 0x9200 },
3348
3349 { 0x1f, 0x0005 },
3350 { 0x01, 0x0340 },
3351 { 0x1f, 0x0001 },
3352 { 0x04, 0x4000 },
3353 { 0x03, 0x1d21 },
3354 { 0x02, 0x0c32 },
3355 { 0x01, 0x0200 },
3356 { 0x00, 0x5554 },
3357 { 0x04, 0x4800 },
3358 { 0x04, 0x4000 },
3359 { 0x04, 0xf000 },
3360 { 0x03, 0xdf01 },
3361 { 0x02, 0xdf20 },
3362 { 0x01, 0x101a },
3363 { 0x00, 0xa0ff },
3364 { 0x04, 0xf800 },
3365 { 0x04, 0xf000 },
3366 { 0x1f, 0x0000 },
3367
3368 { 0x1f, 0x0007 },
3369 { 0x1e, 0x0023 },
3370 { 0x16, 0x0000 },
3371 { 0x1f, 0x0000 }
3372 };
3373
françois romieu4da19632011-01-03 15:07:55 +00003374 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003375}
3376
françois romieue6de30d2011-01-03 15:08:37 +00003377static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
3378{
3379 static const struct phy_reg phy_reg_init[] = {
3380 { 0x1f, 0x0001 },
3381 { 0x17, 0x0cc0 },
3382
3383 { 0x1f, 0x0007 },
3384 { 0x1e, 0x002d },
3385 { 0x18, 0x0040 },
3386 { 0x1f, 0x0000 }
3387 };
3388
3389 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3390 rtl_patchphy(tp, 0x0d, 1 << 5);
3391}
3392
Hayes Wang70090422011-07-06 15:58:06 +08003393static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00003394{
3395 static const struct phy_reg phy_reg_init[] = {
3396 /* Enable Delay cap */
3397 { 0x1f, 0x0005 },
3398 { 0x05, 0x8b80 },
3399 { 0x06, 0xc896 },
3400 { 0x1f, 0x0000 },
3401
3402 /* Channel estimation fine tune */
3403 { 0x1f, 0x0001 },
3404 { 0x0b, 0x6c20 },
3405 { 0x07, 0x2872 },
3406 { 0x1c, 0xefff },
3407 { 0x1f, 0x0003 },
3408 { 0x14, 0x6420 },
3409 { 0x1f, 0x0000 },
3410
3411 /* Update PFM & 10M TX idle timer */
3412 { 0x1f, 0x0007 },
3413 { 0x1e, 0x002f },
3414 { 0x15, 0x1919 },
3415 { 0x1f, 0x0000 },
3416
3417 { 0x1f, 0x0007 },
3418 { 0x1e, 0x00ac },
3419 { 0x18, 0x0006 },
3420 { 0x1f, 0x0000 }
3421 };
3422
Francois Romieu15ecd032011-04-27 13:52:22 -07003423 rtl_apply_firmware(tp);
3424
hayeswang01dc7fe2011-03-21 01:50:28 +00003425 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3426
3427 /* DCO enable for 10M IDLE Power */
3428 rtl_writephy(tp, 0x1f, 0x0007);
3429 rtl_writephy(tp, 0x1e, 0x0023);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003430 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003431 rtl_writephy(tp, 0x1f, 0x0000);
3432
3433 /* For impedance matching */
3434 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003435 rtl_w0w1_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003436 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003437
3438 /* PHY auto speed down */
3439 rtl_writephy(tp, 0x1f, 0x0007);
3440 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003441 rtl_w0w1_phy(tp, 0x18, 0x0050, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003442 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003443 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003444
3445 rtl_writephy(tp, 0x1f, 0x0005);
3446 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003447 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003448 rtl_writephy(tp, 0x1f, 0x0000);
3449
3450 rtl_writephy(tp, 0x1f, 0x0005);
3451 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003452 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003453 rtl_writephy(tp, 0x1f, 0x0007);
3454 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003455 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x1100);
hayeswang01dc7fe2011-03-21 01:50:28 +00003456 rtl_writephy(tp, 0x1f, 0x0006);
3457 rtl_writephy(tp, 0x00, 0x5a00);
3458 rtl_writephy(tp, 0x1f, 0x0000);
3459 rtl_writephy(tp, 0x0d, 0x0007);
3460 rtl_writephy(tp, 0x0e, 0x003c);
3461 rtl_writephy(tp, 0x0d, 0x4007);
3462 rtl_writephy(tp, 0x0e, 0x0000);
3463 rtl_writephy(tp, 0x0d, 0x0000);
3464}
3465
françois romieu9ecb9aa2012-12-07 11:20:21 +00003466static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3467{
3468 const u16 w[] = {
3469 addr[0] | (addr[1] << 8),
3470 addr[2] | (addr[3] << 8),
3471 addr[4] | (addr[5] << 8)
3472 };
3473 const struct exgmac_reg e[] = {
3474 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3475 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3476 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3477 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3478 };
3479
3480 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3481}
3482
Hayes Wang70090422011-07-06 15:58:06 +08003483static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3484{
3485 static const struct phy_reg phy_reg_init[] = {
3486 /* Enable Delay cap */
3487 { 0x1f, 0x0004 },
3488 { 0x1f, 0x0007 },
3489 { 0x1e, 0x00ac },
3490 { 0x18, 0x0006 },
3491 { 0x1f, 0x0002 },
3492 { 0x1f, 0x0000 },
3493 { 0x1f, 0x0000 },
3494
3495 /* Channel estimation fine tune */
3496 { 0x1f, 0x0003 },
3497 { 0x09, 0xa20f },
3498 { 0x1f, 0x0000 },
3499 { 0x1f, 0x0000 },
3500
3501 /* Green Setting */
3502 { 0x1f, 0x0005 },
3503 { 0x05, 0x8b5b },
3504 { 0x06, 0x9222 },
3505 { 0x05, 0x8b6d },
3506 { 0x06, 0x8000 },
3507 { 0x05, 0x8b76 },
3508 { 0x06, 0x8000 },
3509 { 0x1f, 0x0000 }
3510 };
3511
3512 rtl_apply_firmware(tp);
3513
3514 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3515
3516 /* For 4-corner performance improve */
3517 rtl_writephy(tp, 0x1f, 0x0005);
3518 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003519 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003520 rtl_writephy(tp, 0x1f, 0x0000);
3521
3522 /* PHY auto speed down */
3523 rtl_writephy(tp, 0x1f, 0x0004);
3524 rtl_writephy(tp, 0x1f, 0x0007);
3525 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003526 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003527 rtl_writephy(tp, 0x1f, 0x0002);
3528 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003529 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003530
3531 /* improve 10M EEE waveform */
3532 rtl_writephy(tp, 0x1f, 0x0005);
3533 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003534 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003535 rtl_writephy(tp, 0x1f, 0x0000);
3536
3537 /* Improve 2-pair detection performance */
3538 rtl_writephy(tp, 0x1f, 0x0005);
3539 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003540 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003541 rtl_writephy(tp, 0x1f, 0x0000);
3542
3543 /* EEE setting */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08003544 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08003545 rtl_writephy(tp, 0x1f, 0x0005);
3546 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003547 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
Hayes Wang70090422011-07-06 15:58:06 +08003548 rtl_writephy(tp, 0x1f, 0x0004);
3549 rtl_writephy(tp, 0x1f, 0x0007);
3550 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003551 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003552 rtl_writephy(tp, 0x1f, 0x0002);
3553 rtl_writephy(tp, 0x1f, 0x0000);
3554 rtl_writephy(tp, 0x0d, 0x0007);
3555 rtl_writephy(tp, 0x0e, 0x003c);
3556 rtl_writephy(tp, 0x0d, 0x4007);
3557 rtl_writephy(tp, 0x0e, 0x0000);
3558 rtl_writephy(tp, 0x0d, 0x0000);
3559
3560 /* Green feature */
3561 rtl_writephy(tp, 0x1f, 0x0003);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003562 rtl_w0w1_phy(tp, 0x19, 0x0000, 0x0001);
3563 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0400);
Hayes Wang70090422011-07-06 15:58:06 +08003564 rtl_writephy(tp, 0x1f, 0x0000);
hayeswange0c07552012-10-23 20:24:03 +00003565
françois romieu9ecb9aa2012-12-07 11:20:21 +00003566 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3567 rtl_rar_exgmac_set(tp, tp->dev->dev_addr);
Hayes Wang70090422011-07-06 15:58:06 +08003568}
3569
Hayes Wang5f886e02012-03-30 14:33:03 +08003570static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3571{
3572 /* For 4-corner performance improve */
3573 rtl_writephy(tp, 0x1f, 0x0005);
3574 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003575 rtl_w0w1_phy(tp, 0x06, 0x0006, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003576 rtl_writephy(tp, 0x1f, 0x0000);
3577
3578 /* PHY auto speed down */
3579 rtl_writephy(tp, 0x1f, 0x0007);
3580 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003581 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003582 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003583 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003584
3585 /* Improve 10M EEE waveform */
3586 rtl_writephy(tp, 0x1f, 0x0005);
3587 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003588 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003589 rtl_writephy(tp, 0x1f, 0x0000);
3590}
3591
Hayes Wangc2218922011-09-06 16:55:18 +08003592static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3593{
3594 static const struct phy_reg phy_reg_init[] = {
3595 /* Channel estimation fine tune */
3596 { 0x1f, 0x0003 },
3597 { 0x09, 0xa20f },
3598 { 0x1f, 0x0000 },
3599
3600 /* Modify green table for giga & fnet */
3601 { 0x1f, 0x0005 },
3602 { 0x05, 0x8b55 },
3603 { 0x06, 0x0000 },
3604 { 0x05, 0x8b5e },
3605 { 0x06, 0x0000 },
3606 { 0x05, 0x8b67 },
3607 { 0x06, 0x0000 },
3608 { 0x05, 0x8b70 },
3609 { 0x06, 0x0000 },
3610 { 0x1f, 0x0000 },
3611 { 0x1f, 0x0007 },
3612 { 0x1e, 0x0078 },
3613 { 0x17, 0x0000 },
3614 { 0x19, 0x00fb },
3615 { 0x1f, 0x0000 },
3616
3617 /* Modify green table for 10M */
3618 { 0x1f, 0x0005 },
3619 { 0x05, 0x8b79 },
3620 { 0x06, 0xaa00 },
3621 { 0x1f, 0x0000 },
3622
3623 /* Disable hiimpedance detection (RTCT) */
3624 { 0x1f, 0x0003 },
3625 { 0x01, 0x328a },
3626 { 0x1f, 0x0000 }
3627 };
3628
3629 rtl_apply_firmware(tp);
3630
3631 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3632
Hayes Wang5f886e02012-03-30 14:33:03 +08003633 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003634
3635 /* Improve 2-pair detection performance */
3636 rtl_writephy(tp, 0x1f, 0x0005);
3637 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003638 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangc2218922011-09-06 16:55:18 +08003639 rtl_writephy(tp, 0x1f, 0x0000);
3640}
3641
3642static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3643{
3644 rtl_apply_firmware(tp);
3645
Hayes Wang5f886e02012-03-30 14:33:03 +08003646 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003647}
3648
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003649static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3650{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003651 static const struct phy_reg phy_reg_init[] = {
3652 /* Channel estimation fine tune */
3653 { 0x1f, 0x0003 },
3654 { 0x09, 0xa20f },
3655 { 0x1f, 0x0000 },
3656
3657 /* Modify green table for giga & fnet */
3658 { 0x1f, 0x0005 },
3659 { 0x05, 0x8b55 },
3660 { 0x06, 0x0000 },
3661 { 0x05, 0x8b5e },
3662 { 0x06, 0x0000 },
3663 { 0x05, 0x8b67 },
3664 { 0x06, 0x0000 },
3665 { 0x05, 0x8b70 },
3666 { 0x06, 0x0000 },
3667 { 0x1f, 0x0000 },
3668 { 0x1f, 0x0007 },
3669 { 0x1e, 0x0078 },
3670 { 0x17, 0x0000 },
3671 { 0x19, 0x00aa },
3672 { 0x1f, 0x0000 },
3673
3674 /* Modify green table for 10M */
3675 { 0x1f, 0x0005 },
3676 { 0x05, 0x8b79 },
3677 { 0x06, 0xaa00 },
3678 { 0x1f, 0x0000 },
3679
3680 /* Disable hiimpedance detection (RTCT) */
3681 { 0x1f, 0x0003 },
3682 { 0x01, 0x328a },
3683 { 0x1f, 0x0000 }
3684 };
3685
3686
3687 rtl_apply_firmware(tp);
3688
3689 rtl8168f_hw_phy_config(tp);
3690
3691 /* Improve 2-pair detection performance */
3692 rtl_writephy(tp, 0x1f, 0x0005);
3693 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003694 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003695 rtl_writephy(tp, 0x1f, 0x0000);
3696
3697 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3698
3699 /* Modify green table for giga */
3700 rtl_writephy(tp, 0x1f, 0x0005);
3701 rtl_writephy(tp, 0x05, 0x8b54);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003702 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003703 rtl_writephy(tp, 0x05, 0x8b5d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003704 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003705 rtl_writephy(tp, 0x05, 0x8a7c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003706 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003707 rtl_writephy(tp, 0x05, 0x8a7f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003708 rtl_w0w1_phy(tp, 0x06, 0x0100, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003709 rtl_writephy(tp, 0x05, 0x8a82);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003710 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003711 rtl_writephy(tp, 0x05, 0x8a85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003712 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003713 rtl_writephy(tp, 0x05, 0x8a88);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003714 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003715 rtl_writephy(tp, 0x1f, 0x0000);
3716
3717 /* uc same-seed solution */
3718 rtl_writephy(tp, 0x1f, 0x0005);
3719 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003720 rtl_w0w1_phy(tp, 0x06, 0x8000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003721 rtl_writephy(tp, 0x1f, 0x0000);
3722
3723 /* eee setting */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08003724 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003725 rtl_writephy(tp, 0x1f, 0x0005);
3726 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003727 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003728 rtl_writephy(tp, 0x1f, 0x0004);
3729 rtl_writephy(tp, 0x1f, 0x0007);
3730 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003731 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003732 rtl_writephy(tp, 0x1f, 0x0000);
3733 rtl_writephy(tp, 0x0d, 0x0007);
3734 rtl_writephy(tp, 0x0e, 0x003c);
3735 rtl_writephy(tp, 0x0d, 0x4007);
3736 rtl_writephy(tp, 0x0e, 0x0000);
3737 rtl_writephy(tp, 0x0d, 0x0000);
3738
3739 /* Green feature */
3740 rtl_writephy(tp, 0x1f, 0x0003);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003741 rtl_w0w1_phy(tp, 0x19, 0x0000, 0x0001);
3742 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0400);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003743 rtl_writephy(tp, 0x1f, 0x0000);
3744}
3745
Hayes Wangc5583862012-07-02 17:23:22 +08003746static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp)
3747{
Hayes Wangc5583862012-07-02 17:23:22 +08003748 rtl_apply_firmware(tp);
3749
hayeswang41f44d12013-04-01 22:23:36 +00003750 rtl_writephy(tp, 0x1f, 0x0a46);
3751 if (rtl_readphy(tp, 0x10) & 0x0100) {
3752 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003753 rtl_w0w1_phy(tp, 0x12, 0x0000, 0x8000);
hayeswang41f44d12013-04-01 22:23:36 +00003754 } else {
3755 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003756 rtl_w0w1_phy(tp, 0x12, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003757 }
Hayes Wangc5583862012-07-02 17:23:22 +08003758
hayeswang41f44d12013-04-01 22:23:36 +00003759 rtl_writephy(tp, 0x1f, 0x0a46);
3760 if (rtl_readphy(tp, 0x13) & 0x0100) {
3761 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003762 rtl_w0w1_phy(tp, 0x15, 0x0002, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003763 } else {
hayeswangfe7524c2013-04-01 22:23:37 +00003764 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003765 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0002);
hayeswang41f44d12013-04-01 22:23:36 +00003766 }
Hayes Wangc5583862012-07-02 17:23:22 +08003767
hayeswang41f44d12013-04-01 22:23:36 +00003768 /* Enable PHY auto speed down */
3769 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003770 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003771
hayeswangfe7524c2013-04-01 22:23:37 +00003772 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003773 rtl_w0w1_phy(tp, 0x14, 0x0100, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003774 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003775 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003776 rtl_writephy(tp, 0x1f, 0x0a43);
3777 rtl_writephy(tp, 0x13, 0x8084);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003778 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
3779 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003780
hayeswang41f44d12013-04-01 22:23:36 +00003781 /* EEE auto-fallback function */
3782 rtl_writephy(tp, 0x1f, 0x0a4b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003783 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003784
hayeswang41f44d12013-04-01 22:23:36 +00003785 /* Enable UC LPF tune function */
3786 rtl_writephy(tp, 0x1f, 0x0a43);
3787 rtl_writephy(tp, 0x13, 0x8012);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003788 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003789
3790 rtl_writephy(tp, 0x1f, 0x0c42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003791 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
hayeswang41f44d12013-04-01 22:23:36 +00003792
hayeswangfe7524c2013-04-01 22:23:37 +00003793 /* Improve SWR Efficiency */
3794 rtl_writephy(tp, 0x1f, 0x0bcd);
3795 rtl_writephy(tp, 0x14, 0x5065);
3796 rtl_writephy(tp, 0x14, 0xd065);
3797 rtl_writephy(tp, 0x1f, 0x0bc8);
3798 rtl_writephy(tp, 0x11, 0x5655);
3799 rtl_writephy(tp, 0x1f, 0x0bcd);
3800 rtl_writephy(tp, 0x14, 0x1065);
3801 rtl_writephy(tp, 0x14, 0x9065);
3802 rtl_writephy(tp, 0x14, 0x1065);
3803
David Chang1bac1072013-11-27 15:48:36 +08003804 /* Check ALDPS bit, disable it if enabled */
3805 rtl_writephy(tp, 0x1f, 0x0a43);
3806 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003807 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
David Chang1bac1072013-11-27 15:48:36 +08003808
hayeswang41f44d12013-04-01 22:23:36 +00003809 rtl_writephy(tp, 0x1f, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003810}
3811
hayeswang57538c42013-04-01 22:23:40 +00003812static void rtl8168g_2_hw_phy_config(struct rtl8169_private *tp)
3813{
3814 rtl_apply_firmware(tp);
3815}
3816
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003817static void rtl8168h_1_hw_phy_config(struct rtl8169_private *tp)
3818{
3819 u16 dout_tapbin;
3820 u32 data;
3821
3822 rtl_apply_firmware(tp);
3823
3824 /* CHN EST parameters adjust - giga master */
3825 rtl_writephy(tp, 0x1f, 0x0a43);
3826 rtl_writephy(tp, 0x13, 0x809b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003827 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003828 rtl_writephy(tp, 0x13, 0x80a2);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003829 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003830 rtl_writephy(tp, 0x13, 0x80a4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003831 rtl_w0w1_phy(tp, 0x14, 0x8500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003832 rtl_writephy(tp, 0x13, 0x809c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003833 rtl_w0w1_phy(tp, 0x14, 0xbd00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003834 rtl_writephy(tp, 0x1f, 0x0000);
3835
3836 /* CHN EST parameters adjust - giga slave */
3837 rtl_writephy(tp, 0x1f, 0x0a43);
3838 rtl_writephy(tp, 0x13, 0x80ad);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003839 rtl_w0w1_phy(tp, 0x14, 0x7000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003840 rtl_writephy(tp, 0x13, 0x80b4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003841 rtl_w0w1_phy(tp, 0x14, 0x5000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003842 rtl_writephy(tp, 0x13, 0x80ac);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003843 rtl_w0w1_phy(tp, 0x14, 0x4000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003844 rtl_writephy(tp, 0x1f, 0x0000);
3845
3846 /* CHN EST parameters adjust - fnet */
3847 rtl_writephy(tp, 0x1f, 0x0a43);
3848 rtl_writephy(tp, 0x13, 0x808e);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003849 rtl_w0w1_phy(tp, 0x14, 0x1200, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003850 rtl_writephy(tp, 0x13, 0x8090);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003851 rtl_w0w1_phy(tp, 0x14, 0xe500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003852 rtl_writephy(tp, 0x13, 0x8092);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003853 rtl_w0w1_phy(tp, 0x14, 0x9f00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003854 rtl_writephy(tp, 0x1f, 0x0000);
3855
3856 /* enable R-tune & PGA-retune function */
3857 dout_tapbin = 0;
3858 rtl_writephy(tp, 0x1f, 0x0a46);
3859 data = rtl_readphy(tp, 0x13);
3860 data &= 3;
3861 data <<= 2;
3862 dout_tapbin |= data;
3863 data = rtl_readphy(tp, 0x12);
3864 data &= 0xc000;
3865 data >>= 14;
3866 dout_tapbin |= data;
3867 dout_tapbin = ~(dout_tapbin^0x08);
3868 dout_tapbin <<= 12;
3869 dout_tapbin &= 0xf000;
3870 rtl_writephy(tp, 0x1f, 0x0a43);
3871 rtl_writephy(tp, 0x13, 0x827a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003872 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003873 rtl_writephy(tp, 0x13, 0x827b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003874 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003875 rtl_writephy(tp, 0x13, 0x827c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003876 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003877 rtl_writephy(tp, 0x13, 0x827d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003878 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003879
3880 rtl_writephy(tp, 0x1f, 0x0a43);
3881 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003882 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003883 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003884 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003885 rtl_writephy(tp, 0x1f, 0x0000);
3886
3887 /* enable GPHY 10M */
3888 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003889 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003890 rtl_writephy(tp, 0x1f, 0x0000);
3891
3892 /* SAR ADC performance */
3893 rtl_writephy(tp, 0x1f, 0x0bca);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003894 rtl_w0w1_phy(tp, 0x17, 0x4000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003895 rtl_writephy(tp, 0x1f, 0x0000);
3896
3897 rtl_writephy(tp, 0x1f, 0x0a43);
3898 rtl_writephy(tp, 0x13, 0x803f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003899 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003900 rtl_writephy(tp, 0x13, 0x8047);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003901 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003902 rtl_writephy(tp, 0x13, 0x804f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003903 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003904 rtl_writephy(tp, 0x13, 0x8057);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003905 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003906 rtl_writephy(tp, 0x13, 0x805f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003907 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003908 rtl_writephy(tp, 0x13, 0x8067);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003909 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003910 rtl_writephy(tp, 0x13, 0x806f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003911 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003912 rtl_writephy(tp, 0x1f, 0x0000);
3913
3914 /* disable phy pfm mode */
3915 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Linc832c35f2015-12-29 22:13:38 +08003916 rtl_w0w1_phy(tp, 0x11, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003917 rtl_writephy(tp, 0x1f, 0x0000);
3918
3919 /* Check ALDPS bit, disable it if enabled */
3920 rtl_writephy(tp, 0x1f, 0x0a43);
3921 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003922 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003923
3924 rtl_writephy(tp, 0x1f, 0x0000);
3925}
3926
3927static void rtl8168h_2_hw_phy_config(struct rtl8169_private *tp)
3928{
3929 u16 ioffset_p3, ioffset_p2, ioffset_p1, ioffset_p0;
3930 u16 rlen;
3931 u32 data;
3932
3933 rtl_apply_firmware(tp);
3934
3935 /* CHIN EST parameter update */
3936 rtl_writephy(tp, 0x1f, 0x0a43);
3937 rtl_writephy(tp, 0x13, 0x808a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003938 rtl_w0w1_phy(tp, 0x14, 0x000a, 0x003f);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003939 rtl_writephy(tp, 0x1f, 0x0000);
3940
3941 /* enable R-tune & PGA-retune function */
3942 rtl_writephy(tp, 0x1f, 0x0a43);
3943 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003944 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003945 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003946 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003947 rtl_writephy(tp, 0x1f, 0x0000);
3948
3949 /* enable GPHY 10M */
3950 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003951 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003952 rtl_writephy(tp, 0x1f, 0x0000);
3953
3954 r8168_mac_ocp_write(tp, 0xdd02, 0x807d);
3955 data = r8168_mac_ocp_read(tp, 0xdd02);
3956 ioffset_p3 = ((data & 0x80)>>7);
3957 ioffset_p3 <<= 3;
3958
3959 data = r8168_mac_ocp_read(tp, 0xdd00);
3960 ioffset_p3 |= ((data & (0xe000))>>13);
3961 ioffset_p2 = ((data & (0x1e00))>>9);
3962 ioffset_p1 = ((data & (0x01e0))>>5);
3963 ioffset_p0 = ((data & 0x0010)>>4);
3964 ioffset_p0 <<= 3;
3965 ioffset_p0 |= (data & (0x07));
3966 data = (ioffset_p3<<12)|(ioffset_p2<<8)|(ioffset_p1<<4)|(ioffset_p0);
3967
Chun-Hao Lin05b96872014-10-01 23:17:12 +08003968 if ((ioffset_p3 != 0x0f) || (ioffset_p2 != 0x0f) ||
Chun-Hao Line2e27882015-12-24 21:15:26 +08003969 (ioffset_p1 != 0x0f) || (ioffset_p0 != 0x0f)) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003970 rtl_writephy(tp, 0x1f, 0x0bcf);
3971 rtl_writephy(tp, 0x16, data);
3972 rtl_writephy(tp, 0x1f, 0x0000);
3973 }
3974
3975 /* Modify rlen (TX LPF corner frequency) level */
3976 rtl_writephy(tp, 0x1f, 0x0bcd);
3977 data = rtl_readphy(tp, 0x16);
3978 data &= 0x000f;
3979 rlen = 0;
3980 if (data > 3)
3981 rlen = data - 3;
3982 data = rlen | (rlen<<4) | (rlen<<8) | (rlen<<12);
3983 rtl_writephy(tp, 0x17, data);
3984 rtl_writephy(tp, 0x1f, 0x0bcd);
3985 rtl_writephy(tp, 0x1f, 0x0000);
3986
3987 /* disable phy pfm mode */
3988 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Linc832c35f2015-12-29 22:13:38 +08003989 rtl_w0w1_phy(tp, 0x11, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003990 rtl_writephy(tp, 0x1f, 0x0000);
3991
3992 /* Check ALDPS bit, disable it if enabled */
3993 rtl_writephy(tp, 0x1f, 0x0a43);
3994 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003995 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003996
3997 rtl_writephy(tp, 0x1f, 0x0000);
3998}
3999
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004000static void rtl8168ep_1_hw_phy_config(struct rtl8169_private *tp)
4001{
4002 /* Enable PHY auto speed down */
4003 rtl_writephy(tp, 0x1f, 0x0a44);
4004 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
4005 rtl_writephy(tp, 0x1f, 0x0000);
4006
4007 /* patch 10M & ALDPS */
4008 rtl_writephy(tp, 0x1f, 0x0bcc);
4009 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
4010 rtl_writephy(tp, 0x1f, 0x0a44);
4011 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
4012 rtl_writephy(tp, 0x1f, 0x0a43);
4013 rtl_writephy(tp, 0x13, 0x8084);
4014 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
4015 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
4016 rtl_writephy(tp, 0x1f, 0x0000);
4017
4018 /* Enable EEE auto-fallback function */
4019 rtl_writephy(tp, 0x1f, 0x0a4b);
4020 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
4021 rtl_writephy(tp, 0x1f, 0x0000);
4022
4023 /* Enable UC LPF tune function */
4024 rtl_writephy(tp, 0x1f, 0x0a43);
4025 rtl_writephy(tp, 0x13, 0x8012);
4026 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4027 rtl_writephy(tp, 0x1f, 0x0000);
4028
4029 /* set rg_sel_sdm_rate */
4030 rtl_writephy(tp, 0x1f, 0x0c42);
4031 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4032 rtl_writephy(tp, 0x1f, 0x0000);
4033
4034 /* Check ALDPS bit, disable it if enabled */
4035 rtl_writephy(tp, 0x1f, 0x0a43);
4036 if (rtl_readphy(tp, 0x10) & 0x0004)
4037 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4038
4039 rtl_writephy(tp, 0x1f, 0x0000);
4040}
4041
4042static void rtl8168ep_2_hw_phy_config(struct rtl8169_private *tp)
4043{
4044 /* patch 10M & ALDPS */
4045 rtl_writephy(tp, 0x1f, 0x0bcc);
4046 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
4047 rtl_writephy(tp, 0x1f, 0x0a44);
4048 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
4049 rtl_writephy(tp, 0x1f, 0x0a43);
4050 rtl_writephy(tp, 0x13, 0x8084);
4051 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
4052 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
4053 rtl_writephy(tp, 0x1f, 0x0000);
4054
4055 /* Enable UC LPF tune function */
4056 rtl_writephy(tp, 0x1f, 0x0a43);
4057 rtl_writephy(tp, 0x13, 0x8012);
4058 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4059 rtl_writephy(tp, 0x1f, 0x0000);
4060
4061 /* Set rg_sel_sdm_rate */
4062 rtl_writephy(tp, 0x1f, 0x0c42);
4063 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4064 rtl_writephy(tp, 0x1f, 0x0000);
4065
4066 /* Channel estimation parameters */
4067 rtl_writephy(tp, 0x1f, 0x0a43);
4068 rtl_writephy(tp, 0x13, 0x80f3);
4069 rtl_w0w1_phy(tp, 0x14, 0x8b00, ~0x8bff);
4070 rtl_writephy(tp, 0x13, 0x80f0);
4071 rtl_w0w1_phy(tp, 0x14, 0x3a00, ~0x3aff);
4072 rtl_writephy(tp, 0x13, 0x80ef);
4073 rtl_w0w1_phy(tp, 0x14, 0x0500, ~0x05ff);
4074 rtl_writephy(tp, 0x13, 0x80f6);
4075 rtl_w0w1_phy(tp, 0x14, 0x6e00, ~0x6eff);
4076 rtl_writephy(tp, 0x13, 0x80ec);
4077 rtl_w0w1_phy(tp, 0x14, 0x6800, ~0x68ff);
4078 rtl_writephy(tp, 0x13, 0x80ed);
4079 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4080 rtl_writephy(tp, 0x13, 0x80f2);
4081 rtl_w0w1_phy(tp, 0x14, 0xf400, ~0xf4ff);
4082 rtl_writephy(tp, 0x13, 0x80f4);
4083 rtl_w0w1_phy(tp, 0x14, 0x8500, ~0x85ff);
4084 rtl_writephy(tp, 0x1f, 0x0a43);
4085 rtl_writephy(tp, 0x13, 0x8110);
4086 rtl_w0w1_phy(tp, 0x14, 0xa800, ~0xa8ff);
4087 rtl_writephy(tp, 0x13, 0x810f);
4088 rtl_w0w1_phy(tp, 0x14, 0x1d00, ~0x1dff);
4089 rtl_writephy(tp, 0x13, 0x8111);
4090 rtl_w0w1_phy(tp, 0x14, 0xf500, ~0xf5ff);
4091 rtl_writephy(tp, 0x13, 0x8113);
4092 rtl_w0w1_phy(tp, 0x14, 0x6100, ~0x61ff);
4093 rtl_writephy(tp, 0x13, 0x8115);
4094 rtl_w0w1_phy(tp, 0x14, 0x9200, ~0x92ff);
4095 rtl_writephy(tp, 0x13, 0x810e);
4096 rtl_w0w1_phy(tp, 0x14, 0x0400, ~0x04ff);
4097 rtl_writephy(tp, 0x13, 0x810c);
4098 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4099 rtl_writephy(tp, 0x13, 0x810b);
4100 rtl_w0w1_phy(tp, 0x14, 0x5a00, ~0x5aff);
4101 rtl_writephy(tp, 0x1f, 0x0a43);
4102 rtl_writephy(tp, 0x13, 0x80d1);
4103 rtl_w0w1_phy(tp, 0x14, 0xff00, ~0xffff);
4104 rtl_writephy(tp, 0x13, 0x80cd);
4105 rtl_w0w1_phy(tp, 0x14, 0x9e00, ~0x9eff);
4106 rtl_writephy(tp, 0x13, 0x80d3);
4107 rtl_w0w1_phy(tp, 0x14, 0x0e00, ~0x0eff);
4108 rtl_writephy(tp, 0x13, 0x80d5);
4109 rtl_w0w1_phy(tp, 0x14, 0xca00, ~0xcaff);
4110 rtl_writephy(tp, 0x13, 0x80d7);
4111 rtl_w0w1_phy(tp, 0x14, 0x8400, ~0x84ff);
4112
4113 /* Force PWM-mode */
4114 rtl_writephy(tp, 0x1f, 0x0bcd);
4115 rtl_writephy(tp, 0x14, 0x5065);
4116 rtl_writephy(tp, 0x14, 0xd065);
4117 rtl_writephy(tp, 0x1f, 0x0bc8);
4118 rtl_writephy(tp, 0x12, 0x00ed);
4119 rtl_writephy(tp, 0x1f, 0x0bcd);
4120 rtl_writephy(tp, 0x14, 0x1065);
4121 rtl_writephy(tp, 0x14, 0x9065);
4122 rtl_writephy(tp, 0x14, 0x1065);
4123 rtl_writephy(tp, 0x1f, 0x0000);
4124
4125 /* Check ALDPS bit, disable it if enabled */
4126 rtl_writephy(tp, 0x1f, 0x0a43);
4127 if (rtl_readphy(tp, 0x10) & 0x0004)
4128 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4129
4130 rtl_writephy(tp, 0x1f, 0x0000);
4131}
4132
françois romieu4da19632011-01-03 15:07:55 +00004133static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004134{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004135 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004136 { 0x1f, 0x0003 },
4137 { 0x08, 0x441d },
4138 { 0x01, 0x9100 },
4139 { 0x1f, 0x0000 }
4140 };
4141
françois romieu4da19632011-01-03 15:07:55 +00004142 rtl_writephy(tp, 0x1f, 0x0000);
4143 rtl_patchphy(tp, 0x11, 1 << 12);
4144 rtl_patchphy(tp, 0x19, 1 << 13);
4145 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004146
françois romieu4da19632011-01-03 15:07:55 +00004147 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02004148}
4149
Hayes Wang5a5e4442011-02-22 17:26:21 +08004150static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
4151{
4152 static const struct phy_reg phy_reg_init[] = {
4153 { 0x1f, 0x0005 },
4154 { 0x1a, 0x0000 },
4155 { 0x1f, 0x0000 },
4156
4157 { 0x1f, 0x0004 },
4158 { 0x1c, 0x0000 },
4159 { 0x1f, 0x0000 },
4160
4161 { 0x1f, 0x0001 },
4162 { 0x15, 0x7701 },
4163 { 0x1f, 0x0000 }
4164 };
4165
4166 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004167 rtl_writephy(tp, 0x1f, 0x0000);
4168 rtl_writephy(tp, 0x18, 0x0310);
4169 msleep(100);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004170
François Romieu953a12c2011-04-24 17:38:48 +02004171 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004172
4173 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4174}
4175
Hayes Wang7e18dca2012-03-30 14:33:02 +08004176static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
4177{
Hayes Wang7e18dca2012-03-30 14:33:02 +08004178 /* Disable ALDPS before setting firmware */
Francois Romieueef63cc2013-02-08 23:43:20 +01004179 rtl_writephy(tp, 0x1f, 0x0000);
4180 rtl_writephy(tp, 0x18, 0x0310);
4181 msleep(20);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004182
4183 rtl_apply_firmware(tp);
4184
4185 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02004186 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004187 rtl_writephy(tp, 0x1f, 0x0004);
4188 rtl_writephy(tp, 0x10, 0x401f);
4189 rtl_writephy(tp, 0x19, 0x7030);
4190 rtl_writephy(tp, 0x1f, 0x0000);
4191}
4192
Hayes Wang5598bfe2012-07-02 17:23:21 +08004193static void rtl8106e_hw_phy_config(struct rtl8169_private *tp)
4194{
Hayes Wang5598bfe2012-07-02 17:23:21 +08004195 static const struct phy_reg phy_reg_init[] = {
4196 { 0x1f, 0x0004 },
4197 { 0x10, 0xc07f },
4198 { 0x19, 0x7030 },
4199 { 0x1f, 0x0000 }
4200 };
4201
4202 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004203 rtl_writephy(tp, 0x1f, 0x0000);
4204 rtl_writephy(tp, 0x18, 0x0310);
4205 msleep(100);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004206
4207 rtl_apply_firmware(tp);
4208
Francois Romieufdf6fc02012-07-06 22:40:38 +02004209 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004210 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4211
Francois Romieufdf6fc02012-07-06 22:40:38 +02004212 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004213}
4214
Francois Romieu5615d9f2007-08-17 17:50:46 +02004215static void rtl_hw_phy_config(struct net_device *dev)
4216{
4217 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004218
4219 rtl8169_print_mac_version(tp);
4220
4221 switch (tp->mac_version) {
4222 case RTL_GIGA_MAC_VER_01:
4223 break;
4224 case RTL_GIGA_MAC_VER_02:
4225 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00004226 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004227 break;
4228 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00004229 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004230 break;
françois romieu2e9558562009-08-10 19:44:19 +00004231 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00004232 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00004233 break;
françois romieu8c7006a2009-08-10 19:43:29 +00004234 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00004235 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00004236 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02004237 case RTL_GIGA_MAC_VER_07:
4238 case RTL_GIGA_MAC_VER_08:
4239 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00004240 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004241 break;
Francois Romieu236b8082008-05-30 16:11:48 +02004242 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00004243 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004244 break;
4245 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00004246 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004247 break;
4248 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00004249 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004250 break;
Francois Romieu867763c2007-08-17 18:21:58 +02004251 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00004252 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004253 break;
4254 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00004255 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004256 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02004257 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00004258 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02004259 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004260 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00004261 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02004262 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004263 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00004264 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004265 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004266 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004267 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00004268 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004269 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004270 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00004271 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004272 break;
4273 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00004274 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004275 break;
4276 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00004277 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02004278 break;
françois romieue6de30d2011-01-03 15:08:37 +00004279 case RTL_GIGA_MAC_VER_28:
4280 rtl8168d_4_hw_phy_config(tp);
4281 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004282 case RTL_GIGA_MAC_VER_29:
4283 case RTL_GIGA_MAC_VER_30:
4284 rtl8105e_hw_phy_config(tp);
4285 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004286 case RTL_GIGA_MAC_VER_31:
4287 /* None. */
4288 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00004289 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00004290 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004291 rtl8168e_1_hw_phy_config(tp);
4292 break;
4293 case RTL_GIGA_MAC_VER_34:
4294 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00004295 break;
Hayes Wangc2218922011-09-06 16:55:18 +08004296 case RTL_GIGA_MAC_VER_35:
4297 rtl8168f_1_hw_phy_config(tp);
4298 break;
4299 case RTL_GIGA_MAC_VER_36:
4300 rtl8168f_2_hw_phy_config(tp);
4301 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004302
Hayes Wang7e18dca2012-03-30 14:33:02 +08004303 case RTL_GIGA_MAC_VER_37:
4304 rtl8402_hw_phy_config(tp);
4305 break;
4306
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004307 case RTL_GIGA_MAC_VER_38:
4308 rtl8411_hw_phy_config(tp);
4309 break;
4310
Hayes Wang5598bfe2012-07-02 17:23:21 +08004311 case RTL_GIGA_MAC_VER_39:
4312 rtl8106e_hw_phy_config(tp);
4313 break;
4314
Hayes Wangc5583862012-07-02 17:23:22 +08004315 case RTL_GIGA_MAC_VER_40:
4316 rtl8168g_1_hw_phy_config(tp);
4317 break;
hayeswang57538c42013-04-01 22:23:40 +00004318 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004319 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004320 case RTL_GIGA_MAC_VER_44:
hayeswang57538c42013-04-01 22:23:40 +00004321 rtl8168g_2_hw_phy_config(tp);
4322 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004323 case RTL_GIGA_MAC_VER_45:
4324 case RTL_GIGA_MAC_VER_47:
4325 rtl8168h_1_hw_phy_config(tp);
4326 break;
4327 case RTL_GIGA_MAC_VER_46:
4328 case RTL_GIGA_MAC_VER_48:
4329 rtl8168h_2_hw_phy_config(tp);
4330 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004331
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004332 case RTL_GIGA_MAC_VER_49:
4333 rtl8168ep_1_hw_phy_config(tp);
4334 break;
4335 case RTL_GIGA_MAC_VER_50:
4336 case RTL_GIGA_MAC_VER_51:
4337 rtl8168ep_2_hw_phy_config(tp);
4338 break;
4339
Hayes Wangc5583862012-07-02 17:23:22 +08004340 case RTL_GIGA_MAC_VER_41:
Francois Romieu5615d9f2007-08-17 17:50:46 +02004341 default:
4342 break;
4343 }
4344}
4345
Francois Romieuda78dbf2012-01-26 14:18:23 +01004346static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 struct timer_list *timer = &tp->timer;
4349 void __iomem *ioaddr = tp->mmio_addr;
4350 unsigned long timeout = RTL8169_PHY_TIMEOUT;
4351
Francois Romieubcf0bf92006-07-26 23:14:13 +02004352 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353
françois romieu4da19632011-01-03 15:07:55 +00004354 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02004355 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 * A busy loop could burn quite a few cycles on nowadays CPU.
4357 * Let's delay the execution of the timer for a few ticks.
4358 */
4359 timeout = HZ/10;
4360 goto out_mod_timer;
4361 }
4362
4363 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01004364 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
Lekensteyn9bb8eeb2013-08-02 10:36:55 +02004366 netif_dbg(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367
françois romieu4da19632011-01-03 15:07:55 +00004368 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
4370out_mod_timer:
4371 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004372}
4373
4374static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
4375{
Francois Romieuda78dbf2012-01-26 14:18:23 +01004376 if (!test_and_set_bit(flag, tp->wk.flags))
4377 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004378}
4379
4380static void rtl8169_phy_timer(unsigned long __opaque)
4381{
4382 struct net_device *dev = (struct net_device *)__opaque;
4383 struct rtl8169_private *tp = netdev_priv(dev);
4384
Francois Romieu98ddf982012-01-31 10:47:34 +01004385 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386}
4387
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
4389 void __iomem *ioaddr)
4390{
4391 iounmap(ioaddr);
4392 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00004393 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 pci_disable_device(pdev);
4395 free_netdev(dev);
4396}
4397
Francois Romieuffc46952012-07-06 14:19:23 +02004398DECLARE_RTL_COND(rtl_phy_reset_cond)
4399{
4400 return tp->phy_reset_pending(tp);
4401}
4402
Francois Romieubf793292006-11-01 00:53:05 +01004403static void rtl8169_phy_reset(struct net_device *dev,
4404 struct rtl8169_private *tp)
4405{
françois romieu4da19632011-01-03 15:07:55 +00004406 tp->phy_reset_enable(tp);
Francois Romieuffc46952012-07-06 14:19:23 +02004407 rtl_msleep_loop_wait_low(tp, &rtl_phy_reset_cond, 1, 100);
Francois Romieubf793292006-11-01 00:53:05 +01004408}
4409
David S. Miller8decf862011-09-22 03:23:13 -04004410static bool rtl_tbi_enabled(struct rtl8169_private *tp)
4411{
4412 void __iomem *ioaddr = tp->mmio_addr;
4413
4414 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
4415 (RTL_R8(PHYstatus) & TBI_Enable);
4416}
4417
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004418static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004420 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004421
Francois Romieu5615d9f2007-08-17 17:50:46 +02004422 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004423
Marcus Sundberg773328942008-07-10 21:28:08 +02004424 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
4425 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4426 RTL_W8(0x82, 0x01);
4427 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004428
Francois Romieu6dccd162007-02-13 23:38:05 +01004429 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
4430
4431 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
4432 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004433
Francois Romieubcf0bf92006-07-26 23:14:13 +02004434 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004435 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4436 RTL_W8(0x82, 0x01);
4437 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00004438 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004439 }
4440
Francois Romieubf793292006-11-01 00:53:05 +01004441 rtl8169_phy_reset(dev, tp);
4442
Oliver Neukum54405cd2011-01-06 21:55:13 +01004443 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02004444 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4445 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4446 (tp->mii.supports_gmii ?
4447 ADVERTISED_1000baseT_Half |
4448 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004449
David S. Miller8decf862011-09-22 03:23:13 -04004450 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00004451 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004452}
4453
Francois Romieu773d2022007-01-31 23:47:43 +01004454static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
4455{
4456 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu773d2022007-01-31 23:47:43 +01004457
Francois Romieuda78dbf2012-01-26 14:18:23 +01004458 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004459
4460 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00004461
françois romieu9ecb9aa2012-12-07 11:20:21 +00004462 RTL_W32(MAC4, addr[4] | addr[5] << 8);
françois romieu908ba2b2010-04-26 11:42:58 +00004463 RTL_R32(MAC4);
4464
françois romieu9ecb9aa2012-12-07 11:20:21 +00004465 RTL_W32(MAC0, addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
françois romieu908ba2b2010-04-26 11:42:58 +00004466 RTL_R32(MAC0);
4467
françois romieu9ecb9aa2012-12-07 11:20:21 +00004468 if (tp->mac_version == RTL_GIGA_MAC_VER_34)
4469 rtl_rar_exgmac_set(tp, addr);
françois romieuc28aa382011-08-02 03:53:43 +00004470
Francois Romieu773d2022007-01-31 23:47:43 +01004471 RTL_W8(Cfg9346, Cfg9346_Lock);
4472
Francois Romieuda78dbf2012-01-26 14:18:23 +01004473 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004474}
4475
4476static int rtl_set_mac_address(struct net_device *dev, void *p)
4477{
4478 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Linf51d4a12016-07-29 16:37:56 +08004479 struct device *d = &tp->pci_dev->dev;
Francois Romieu773d2022007-01-31 23:47:43 +01004480 struct sockaddr *addr = p;
4481
4482 if (!is_valid_ether_addr(addr->sa_data))
4483 return -EADDRNOTAVAIL;
4484
4485 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
4486
Chun-Hao Linf51d4a12016-07-29 16:37:56 +08004487 pm_runtime_get_noresume(d);
4488
4489 if (pm_runtime_active(d))
4490 rtl_rar_set(tp, dev->dev_addr);
4491
4492 pm_runtime_put_noidle(d);
Francois Romieu773d2022007-01-31 23:47:43 +01004493
4494 return 0;
4495}
4496
Francois Romieu5f787a12006-08-17 13:02:36 +02004497static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4498{
4499 struct rtl8169_private *tp = netdev_priv(dev);
4500 struct mii_ioctl_data *data = if_mii(ifr);
4501
Francois Romieu8b4ab282008-11-19 22:05:25 -08004502 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
4503}
Francois Romieu5f787a12006-08-17 13:02:36 +02004504
Francois Romieucecb5fd2011-04-01 10:21:07 +02004505static int rtl_xmii_ioctl(struct rtl8169_private *tp,
4506 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08004507{
Francois Romieu5f787a12006-08-17 13:02:36 +02004508 switch (cmd) {
4509 case SIOCGMIIPHY:
4510 data->phy_id = 32; /* Internal PHY */
4511 return 0;
4512
4513 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004514 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02004515 return 0;
4516
4517 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004518 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02004519 return 0;
4520 }
4521 return -EOPNOTSUPP;
4522}
4523
Francois Romieu8b4ab282008-11-19 22:05:25 -08004524static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
4525{
4526 return -EOPNOTSUPP;
4527}
4528
Francois Romieufbac58f2007-10-04 22:51:38 +02004529static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
4530{
4531 if (tp->features & RTL_FEATURE_MSI) {
4532 pci_disable_msi(pdev);
4533 tp->features &= ~RTL_FEATURE_MSI;
4534 }
4535}
4536
Bill Pembertonbaf63292012-12-03 09:23:28 -05004537static void rtl_init_mdio_ops(struct rtl8169_private *tp)
françois romieuc0e45c12011-01-03 15:08:04 +00004538{
4539 struct mdio_ops *ops = &tp->mdio_ops;
4540
4541 switch (tp->mac_version) {
4542 case RTL_GIGA_MAC_VER_27:
4543 ops->write = r8168dp_1_mdio_write;
4544 ops->read = r8168dp_1_mdio_read;
4545 break;
françois romieue6de30d2011-01-03 15:08:37 +00004546 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004547 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00004548 ops->write = r8168dp_2_mdio_write;
4549 ops->read = r8168dp_2_mdio_read;
4550 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004551 case RTL_GIGA_MAC_VER_40:
4552 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004553 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004554 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004555 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004556 case RTL_GIGA_MAC_VER_45:
4557 case RTL_GIGA_MAC_VER_46:
4558 case RTL_GIGA_MAC_VER_47:
4559 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004560 case RTL_GIGA_MAC_VER_49:
4561 case RTL_GIGA_MAC_VER_50:
4562 case RTL_GIGA_MAC_VER_51:
Hayes Wangc5583862012-07-02 17:23:22 +08004563 ops->write = r8168g_mdio_write;
4564 ops->read = r8168g_mdio_read;
4565 break;
françois romieuc0e45c12011-01-03 15:08:04 +00004566 default:
4567 ops->write = r8169_mdio_write;
4568 ops->read = r8169_mdio_read;
4569 break;
4570 }
4571}
4572
hayeswange2409d82013-03-31 17:02:04 +00004573static void rtl_speed_down(struct rtl8169_private *tp)
4574{
4575 u32 adv;
4576 int lpa;
4577
4578 rtl_writephy(tp, 0x1f, 0x0000);
4579 lpa = rtl_readphy(tp, MII_LPA);
4580
4581 if (lpa & (LPA_10HALF | LPA_10FULL))
4582 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full;
4583 else if (lpa & (LPA_100HALF | LPA_100FULL))
4584 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4585 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full;
4586 else
4587 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4588 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4589 (tp->mii.supports_gmii ?
4590 ADVERTISED_1000baseT_Half |
4591 ADVERTISED_1000baseT_Full : 0);
4592
4593 rtl8169_set_speed(tp->dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
4594 adv);
4595}
4596
David S. Miller1805b2f2011-10-24 18:18:09 -04004597static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
4598{
4599 void __iomem *ioaddr = tp->mmio_addr;
4600
4601 switch (tp->mac_version) {
Cyril Bruleboisb00e69d2012-10-31 14:00:46 +00004602 case RTL_GIGA_MAC_VER_25:
4603 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04004604 case RTL_GIGA_MAC_VER_29:
4605 case RTL_GIGA_MAC_VER_30:
4606 case RTL_GIGA_MAC_VER_32:
4607 case RTL_GIGA_MAC_VER_33:
4608 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004609 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004610 case RTL_GIGA_MAC_VER_38:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004611 case RTL_GIGA_MAC_VER_39:
Hayes Wangc5583862012-07-02 17:23:22 +08004612 case RTL_GIGA_MAC_VER_40:
4613 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004614 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004615 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004616 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004617 case RTL_GIGA_MAC_VER_45:
4618 case RTL_GIGA_MAC_VER_46:
4619 case RTL_GIGA_MAC_VER_47:
4620 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004621 case RTL_GIGA_MAC_VER_49:
4622 case RTL_GIGA_MAC_VER_50:
4623 case RTL_GIGA_MAC_VER_51:
David S. Miller1805b2f2011-10-24 18:18:09 -04004624 RTL_W32(RxConfig, RTL_R32(RxConfig) |
4625 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
4626 break;
4627 default:
4628 break;
4629 }
4630}
4631
4632static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
4633{
4634 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
4635 return false;
4636
hayeswange2409d82013-03-31 17:02:04 +00004637 rtl_speed_down(tp);
David S. Miller1805b2f2011-10-24 18:18:09 -04004638 rtl_wol_suspend_quirk(tp);
4639
4640 return true;
4641}
4642
françois romieu065c27c2011-01-03 15:08:12 +00004643static void r810x_phy_power_down(struct rtl8169_private *tp)
4644{
4645 rtl_writephy(tp, 0x1f, 0x0000);
4646 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4647}
4648
4649static void r810x_phy_power_up(struct rtl8169_private *tp)
4650{
4651 rtl_writephy(tp, 0x1f, 0x0000);
4652 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4653}
4654
4655static void r810x_pll_power_down(struct rtl8169_private *tp)
4656{
Hayes Wang00042992012-03-30 14:33:00 +08004657 void __iomem *ioaddr = tp->mmio_addr;
4658
David S. Miller1805b2f2011-10-24 18:18:09 -04004659 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004660 return;
françois romieu065c27c2011-01-03 15:08:12 +00004661
4662 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004663
4664 switch (tp->mac_version) {
4665 case RTL_GIGA_MAC_VER_07:
4666 case RTL_GIGA_MAC_VER_08:
4667 case RTL_GIGA_MAC_VER_09:
4668 case RTL_GIGA_MAC_VER_10:
4669 case RTL_GIGA_MAC_VER_13:
4670 case RTL_GIGA_MAC_VER_16:
4671 break;
4672 default:
4673 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4674 break;
4675 }
françois romieu065c27c2011-01-03 15:08:12 +00004676}
4677
4678static void r810x_pll_power_up(struct rtl8169_private *tp)
4679{
Hayes Wang00042992012-03-30 14:33:00 +08004680 void __iomem *ioaddr = tp->mmio_addr;
4681
françois romieu065c27c2011-01-03 15:08:12 +00004682 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004683
4684 switch (tp->mac_version) {
4685 case RTL_GIGA_MAC_VER_07:
4686 case RTL_GIGA_MAC_VER_08:
4687 case RTL_GIGA_MAC_VER_09:
4688 case RTL_GIGA_MAC_VER_10:
4689 case RTL_GIGA_MAC_VER_13:
4690 case RTL_GIGA_MAC_VER_16:
4691 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004692 case RTL_GIGA_MAC_VER_47:
4693 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004694 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004695 break;
Hayes Wang00042992012-03-30 14:33:00 +08004696 default:
4697 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4698 break;
4699 }
françois romieu065c27c2011-01-03 15:08:12 +00004700}
4701
4702static void r8168_phy_power_up(struct rtl8169_private *tp)
4703{
4704 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004705 switch (tp->mac_version) {
4706 case RTL_GIGA_MAC_VER_11:
4707 case RTL_GIGA_MAC_VER_12:
4708 case RTL_GIGA_MAC_VER_17:
4709 case RTL_GIGA_MAC_VER_18:
4710 case RTL_GIGA_MAC_VER_19:
4711 case RTL_GIGA_MAC_VER_20:
4712 case RTL_GIGA_MAC_VER_21:
4713 case RTL_GIGA_MAC_VER_22:
4714 case RTL_GIGA_MAC_VER_23:
4715 case RTL_GIGA_MAC_VER_24:
4716 case RTL_GIGA_MAC_VER_25:
4717 case RTL_GIGA_MAC_VER_26:
4718 case RTL_GIGA_MAC_VER_27:
4719 case RTL_GIGA_MAC_VER_28:
4720 case RTL_GIGA_MAC_VER_31:
4721 rtl_writephy(tp, 0x0e, 0x0000);
4722 break;
4723 default:
4724 break;
4725 }
françois romieu065c27c2011-01-03 15:08:12 +00004726 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4727}
4728
4729static void r8168_phy_power_down(struct rtl8169_private *tp)
4730{
4731 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004732 switch (tp->mac_version) {
4733 case RTL_GIGA_MAC_VER_32:
4734 case RTL_GIGA_MAC_VER_33:
hayeswangbeb330a2013-04-01 22:23:39 +00004735 case RTL_GIGA_MAC_VER_40:
4736 case RTL_GIGA_MAC_VER_41:
hayeswang01dc7fe2011-03-21 01:50:28 +00004737 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
4738 break;
4739
4740 case RTL_GIGA_MAC_VER_11:
4741 case RTL_GIGA_MAC_VER_12:
4742 case RTL_GIGA_MAC_VER_17:
4743 case RTL_GIGA_MAC_VER_18:
4744 case RTL_GIGA_MAC_VER_19:
4745 case RTL_GIGA_MAC_VER_20:
4746 case RTL_GIGA_MAC_VER_21:
4747 case RTL_GIGA_MAC_VER_22:
4748 case RTL_GIGA_MAC_VER_23:
4749 case RTL_GIGA_MAC_VER_24:
4750 case RTL_GIGA_MAC_VER_25:
4751 case RTL_GIGA_MAC_VER_26:
4752 case RTL_GIGA_MAC_VER_27:
4753 case RTL_GIGA_MAC_VER_28:
4754 case RTL_GIGA_MAC_VER_31:
4755 rtl_writephy(tp, 0x0e, 0x0200);
4756 default:
4757 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4758 break;
4759 }
françois romieu065c27c2011-01-03 15:08:12 +00004760}
4761
4762static void r8168_pll_power_down(struct rtl8169_private *tp)
4763{
4764 void __iomem *ioaddr = tp->mmio_addr;
4765
Francois Romieucecb5fd2011-04-01 10:21:07 +02004766 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4767 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004768 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
4769 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
4770 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
4771 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Lin2f8c0402014-10-01 23:17:19 +08004772 r8168_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00004773 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08004774 }
françois romieu065c27c2011-01-03 15:08:12 +00004775
Francois Romieucecb5fd2011-04-01 10:21:07 +02004776 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
4777 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00004778 (RTL_R16(CPlusCmd) & ASF)) {
4779 return;
4780 }
4781
hayeswang01dc7fe2011-03-21 01:50:28 +00004782 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
4783 tp->mac_version == RTL_GIGA_MAC_VER_33)
Francois Romieufdf6fc02012-07-06 22:40:38 +02004784 rtl_ephy_write(tp, 0x19, 0xff64);
hayeswang01dc7fe2011-03-21 01:50:28 +00004785
David S. Miller1805b2f2011-10-24 18:18:09 -04004786 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004787 return;
françois romieu065c27c2011-01-03 15:08:12 +00004788
4789 r8168_phy_power_down(tp);
4790
4791 switch (tp->mac_version) {
4792 case RTL_GIGA_MAC_VER_25:
4793 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004794 case RTL_GIGA_MAC_VER_27:
4795 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004796 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004797 case RTL_GIGA_MAC_VER_32:
4798 case RTL_GIGA_MAC_VER_33:
Chun-Hao Lin42fde732014-10-01 23:17:14 +08004799 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004800 case RTL_GIGA_MAC_VER_45:
4801 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004802 case RTL_GIGA_MAC_VER_50:
4803 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00004804 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4805 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004806 case RTL_GIGA_MAC_VER_40:
4807 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004808 case RTL_GIGA_MAC_VER_49:
Chun-Hao Lin706123d2014-10-01 23:17:18 +08004809 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0x00000000,
hayeswangbeb330a2013-04-01 22:23:39 +00004810 0xfc000000, ERIAR_EXGMAC);
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08004811 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
hayeswangbeb330a2013-04-01 22:23:39 +00004812 break;
françois romieu065c27c2011-01-03 15:08:12 +00004813 }
4814}
4815
4816static void r8168_pll_power_up(struct rtl8169_private *tp)
4817{
4818 void __iomem *ioaddr = tp->mmio_addr;
4819
françois romieu065c27c2011-01-03 15:08:12 +00004820 switch (tp->mac_version) {
4821 case RTL_GIGA_MAC_VER_25:
4822 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004823 case RTL_GIGA_MAC_VER_27:
4824 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004825 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004826 case RTL_GIGA_MAC_VER_32:
4827 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004828 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4829 break;
Chun-Hao Lin42fde732014-10-01 23:17:14 +08004830 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004831 case RTL_GIGA_MAC_VER_45:
4832 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004833 case RTL_GIGA_MAC_VER_50:
4834 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004835 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004836 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004837 case RTL_GIGA_MAC_VER_40:
4838 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004839 case RTL_GIGA_MAC_VER_49:
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08004840 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08004841 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0xfc000000,
hayeswangbeb330a2013-04-01 22:23:39 +00004842 0x00000000, ERIAR_EXGMAC);
4843 break;
françois romieu065c27c2011-01-03 15:08:12 +00004844 }
4845
4846 r8168_phy_power_up(tp);
4847}
4848
Francois Romieud58d46b2011-05-03 16:38:29 +02004849static void rtl_generic_op(struct rtl8169_private *tp,
4850 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00004851{
4852 if (op)
4853 op(tp);
4854}
4855
4856static void rtl_pll_power_down(struct rtl8169_private *tp)
4857{
Francois Romieud58d46b2011-05-03 16:38:29 +02004858 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00004859}
4860
4861static void rtl_pll_power_up(struct rtl8169_private *tp)
4862{
Francois Romieud58d46b2011-05-03 16:38:29 +02004863 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00004864}
4865
Bill Pembertonbaf63292012-12-03 09:23:28 -05004866static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
françois romieu065c27c2011-01-03 15:08:12 +00004867{
4868 struct pll_power_ops *ops = &tp->pll_power_ops;
4869
4870 switch (tp->mac_version) {
4871 case RTL_GIGA_MAC_VER_07:
4872 case RTL_GIGA_MAC_VER_08:
4873 case RTL_GIGA_MAC_VER_09:
4874 case RTL_GIGA_MAC_VER_10:
4875 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08004876 case RTL_GIGA_MAC_VER_29:
4877 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004878 case RTL_GIGA_MAC_VER_37:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004879 case RTL_GIGA_MAC_VER_39:
hayeswang58152cd2013-04-01 22:23:42 +00004880 case RTL_GIGA_MAC_VER_43:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004881 case RTL_GIGA_MAC_VER_47:
4882 case RTL_GIGA_MAC_VER_48:
françois romieu065c27c2011-01-03 15:08:12 +00004883 ops->down = r810x_pll_power_down;
4884 ops->up = r810x_pll_power_up;
4885 break;
4886
4887 case RTL_GIGA_MAC_VER_11:
4888 case RTL_GIGA_MAC_VER_12:
4889 case RTL_GIGA_MAC_VER_17:
4890 case RTL_GIGA_MAC_VER_18:
4891 case RTL_GIGA_MAC_VER_19:
4892 case RTL_GIGA_MAC_VER_20:
4893 case RTL_GIGA_MAC_VER_21:
4894 case RTL_GIGA_MAC_VER_22:
4895 case RTL_GIGA_MAC_VER_23:
4896 case RTL_GIGA_MAC_VER_24:
4897 case RTL_GIGA_MAC_VER_25:
4898 case RTL_GIGA_MAC_VER_26:
4899 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00004900 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004901 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004902 case RTL_GIGA_MAC_VER_32:
4903 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004904 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08004905 case RTL_GIGA_MAC_VER_35:
4906 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004907 case RTL_GIGA_MAC_VER_38:
Hayes Wangc5583862012-07-02 17:23:22 +08004908 case RTL_GIGA_MAC_VER_40:
4909 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004910 case RTL_GIGA_MAC_VER_42:
hayeswang45dd95c2013-07-08 17:09:01 +08004911 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004912 case RTL_GIGA_MAC_VER_45:
4913 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004914 case RTL_GIGA_MAC_VER_49:
4915 case RTL_GIGA_MAC_VER_50:
4916 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00004917 ops->down = r8168_pll_power_down;
4918 ops->up = r8168_pll_power_up;
4919 break;
4920
4921 default:
4922 ops->down = NULL;
4923 ops->up = NULL;
4924 break;
4925 }
4926}
4927
Hayes Wange542a222011-07-06 15:58:04 +08004928static void rtl_init_rxcfg(struct rtl8169_private *tp)
4929{
4930 void __iomem *ioaddr = tp->mmio_addr;
4931
4932 switch (tp->mac_version) {
4933 case RTL_GIGA_MAC_VER_01:
4934 case RTL_GIGA_MAC_VER_02:
4935 case RTL_GIGA_MAC_VER_03:
4936 case RTL_GIGA_MAC_VER_04:
4937 case RTL_GIGA_MAC_VER_05:
4938 case RTL_GIGA_MAC_VER_06:
4939 case RTL_GIGA_MAC_VER_10:
4940 case RTL_GIGA_MAC_VER_11:
4941 case RTL_GIGA_MAC_VER_12:
4942 case RTL_GIGA_MAC_VER_13:
4943 case RTL_GIGA_MAC_VER_14:
4944 case RTL_GIGA_MAC_VER_15:
4945 case RTL_GIGA_MAC_VER_16:
4946 case RTL_GIGA_MAC_VER_17:
4947 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
4948 break;
4949 case RTL_GIGA_MAC_VER_18:
4950 case RTL_GIGA_MAC_VER_19:
4951 case RTL_GIGA_MAC_VER_20:
4952 case RTL_GIGA_MAC_VER_21:
4953 case RTL_GIGA_MAC_VER_22:
4954 case RTL_GIGA_MAC_VER_23:
4955 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00004956 case RTL_GIGA_MAC_VER_34:
françois romieu3ced8c92013-09-08 01:15:35 +02004957 case RTL_GIGA_MAC_VER_35:
Hayes Wange542a222011-07-06 15:58:04 +08004958 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
4959 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004960 case RTL_GIGA_MAC_VER_40:
4961 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004962 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004963 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004964 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004965 case RTL_GIGA_MAC_VER_45:
4966 case RTL_GIGA_MAC_VER_46:
4967 case RTL_GIGA_MAC_VER_47:
4968 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004969 case RTL_GIGA_MAC_VER_49:
4970 case RTL_GIGA_MAC_VER_50:
4971 case RTL_GIGA_MAC_VER_51:
Ivan Vecera7ebc4822015-08-04 22:11:43 +02004972 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST | RX_EARLY_OFF);
hayeswangbeb330a2013-04-01 22:23:39 +00004973 break;
Hayes Wange542a222011-07-06 15:58:04 +08004974 default:
4975 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
4976 break;
4977 }
4978}
4979
Hayes Wang92fc43b2011-07-06 15:58:03 +08004980static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4981{
Timo Teräs9fba0812013-01-15 21:01:24 +00004982 tp->dirty_tx = tp->cur_tx = tp->cur_rx = 0;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004983}
4984
Francois Romieud58d46b2011-05-03 16:38:29 +02004985static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
4986{
françois romieu9c5028e2012-03-02 04:43:14 +00004987 void __iomem *ioaddr = tp->mmio_addr;
4988
4989 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004990 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00004991 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004992}
4993
4994static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
4995{
françois romieu9c5028e2012-03-02 04:43:14 +00004996 void __iomem *ioaddr = tp->mmio_addr;
4997
4998 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004999 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00005000 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02005001}
5002
5003static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
5004{
5005 void __iomem *ioaddr = tp->mmio_addr;
5006
5007 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5008 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005009 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02005010}
5011
5012static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
5013{
5014 void __iomem *ioaddr = tp->mmio_addr;
5015
5016 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5017 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
5018 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
5019}
5020
5021static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
5022{
5023 void __iomem *ioaddr = tp->mmio_addr;
5024
5025 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5026}
5027
5028static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
5029{
5030 void __iomem *ioaddr = tp->mmio_addr;
5031
5032 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5033}
5034
5035static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
5036{
5037 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005038
5039 RTL_W8(MaxTxPacketSize, 0x3f);
5040 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5041 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005042 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02005043}
5044
5045static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
5046{
5047 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005048
5049 RTL_W8(MaxTxPacketSize, 0x0c);
5050 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5051 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01005052 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02005053}
5054
5055static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
5056{
5057 rtl_tx_performance_tweak(tp->pci_dev,
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005058 PCI_EXP_DEVCTL_READRQ_512B | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieud58d46b2011-05-03 16:38:29 +02005059}
5060
5061static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
5062{
5063 rtl_tx_performance_tweak(tp->pci_dev,
5064 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
5065}
5066
5067static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
5068{
5069 void __iomem *ioaddr = tp->mmio_addr;
5070
5071 r8168b_0_hw_jumbo_enable(tp);
5072
5073 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
5074}
5075
5076static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
5077{
5078 void __iomem *ioaddr = tp->mmio_addr;
5079
5080 r8168b_0_hw_jumbo_disable(tp);
5081
5082 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
5083}
5084
Bill Pembertonbaf63292012-12-03 09:23:28 -05005085static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
Francois Romieud58d46b2011-05-03 16:38:29 +02005086{
5087 struct jumbo_ops *ops = &tp->jumbo_ops;
5088
5089 switch (tp->mac_version) {
5090 case RTL_GIGA_MAC_VER_11:
5091 ops->disable = r8168b_0_hw_jumbo_disable;
5092 ops->enable = r8168b_0_hw_jumbo_enable;
5093 break;
5094 case RTL_GIGA_MAC_VER_12:
5095 case RTL_GIGA_MAC_VER_17:
5096 ops->disable = r8168b_1_hw_jumbo_disable;
5097 ops->enable = r8168b_1_hw_jumbo_enable;
5098 break;
5099 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
5100 case RTL_GIGA_MAC_VER_19:
5101 case RTL_GIGA_MAC_VER_20:
5102 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
5103 case RTL_GIGA_MAC_VER_22:
5104 case RTL_GIGA_MAC_VER_23:
5105 case RTL_GIGA_MAC_VER_24:
5106 case RTL_GIGA_MAC_VER_25:
5107 case RTL_GIGA_MAC_VER_26:
5108 ops->disable = r8168c_hw_jumbo_disable;
5109 ops->enable = r8168c_hw_jumbo_enable;
5110 break;
5111 case RTL_GIGA_MAC_VER_27:
5112 case RTL_GIGA_MAC_VER_28:
5113 ops->disable = r8168dp_hw_jumbo_disable;
5114 ops->enable = r8168dp_hw_jumbo_enable;
5115 break;
5116 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
5117 case RTL_GIGA_MAC_VER_32:
5118 case RTL_GIGA_MAC_VER_33:
5119 case RTL_GIGA_MAC_VER_34:
5120 ops->disable = r8168e_hw_jumbo_disable;
5121 ops->enable = r8168e_hw_jumbo_enable;
5122 break;
5123
5124 /*
5125 * No action needed for jumbo frames with 8169.
5126 * No jumbo for 810x at all.
5127 */
Hayes Wangc5583862012-07-02 17:23:22 +08005128 case RTL_GIGA_MAC_VER_40:
5129 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00005130 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00005131 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08005132 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005133 case RTL_GIGA_MAC_VER_45:
5134 case RTL_GIGA_MAC_VER_46:
5135 case RTL_GIGA_MAC_VER_47:
5136 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005137 case RTL_GIGA_MAC_VER_49:
5138 case RTL_GIGA_MAC_VER_50:
5139 case RTL_GIGA_MAC_VER_51:
Francois Romieud58d46b2011-05-03 16:38:29 +02005140 default:
5141 ops->disable = NULL;
5142 ops->enable = NULL;
5143 break;
5144 }
5145}
5146
Francois Romieuffc46952012-07-06 14:19:23 +02005147DECLARE_RTL_COND(rtl_chipcmd_cond)
5148{
5149 void __iomem *ioaddr = tp->mmio_addr;
5150
5151 return RTL_R8(ChipCmd) & CmdReset;
5152}
5153
Francois Romieu6f43adc2011-04-29 15:05:51 +02005154static void rtl_hw_reset(struct rtl8169_private *tp)
5155{
5156 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu6f43adc2011-04-29 15:05:51 +02005157
Francois Romieu6f43adc2011-04-29 15:05:51 +02005158 RTL_W8(ChipCmd, CmdReset);
5159
Francois Romieuffc46952012-07-06 14:19:23 +02005160 rtl_udelay_loop_wait_low(tp, &rtl_chipcmd_cond, 100, 100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02005161}
5162
Francois Romieub6ffd972011-06-17 17:00:05 +02005163static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
5164{
5165 struct rtl_fw *rtl_fw;
5166 const char *name;
5167 int rc = -ENOMEM;
5168
5169 name = rtl_lookup_firmware_name(tp);
5170 if (!name)
5171 goto out_no_firmware;
5172
5173 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
5174 if (!rtl_fw)
5175 goto err_warn;
5176
5177 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
5178 if (rc < 0)
5179 goto err_free;
5180
Francois Romieufd112f22011-06-18 00:10:29 +02005181 rc = rtl_check_firmware(tp, rtl_fw);
5182 if (rc < 0)
5183 goto err_release_firmware;
5184
Francois Romieub6ffd972011-06-17 17:00:05 +02005185 tp->rtl_fw = rtl_fw;
5186out:
5187 return;
5188
Francois Romieufd112f22011-06-18 00:10:29 +02005189err_release_firmware:
5190 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02005191err_free:
5192 kfree(rtl_fw);
5193err_warn:
5194 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
5195 name, rc);
5196out_no_firmware:
5197 tp->rtl_fw = NULL;
5198 goto out;
5199}
5200
François Romieu953a12c2011-04-24 17:38:48 +02005201static void rtl_request_firmware(struct rtl8169_private *tp)
5202{
Francois Romieub6ffd972011-06-17 17:00:05 +02005203 if (IS_ERR(tp->rtl_fw))
5204 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02005205}
5206
Hayes Wang92fc43b2011-07-06 15:58:03 +08005207static void rtl_rx_close(struct rtl8169_private *tp)
5208{
5209 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08005210
Francois Romieu1687b562011-07-19 17:21:29 +02005211 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005212}
5213
Francois Romieuffc46952012-07-06 14:19:23 +02005214DECLARE_RTL_COND(rtl_npq_cond)
5215{
5216 void __iomem *ioaddr = tp->mmio_addr;
5217
5218 return RTL_R8(TxPoll) & NPQ;
5219}
5220
5221DECLARE_RTL_COND(rtl_txcfg_empty_cond)
5222{
5223 void __iomem *ioaddr = tp->mmio_addr;
5224
5225 return RTL_R32(TxConfig) & TXCFG_EMPTY;
5226}
5227
françois romieue6de30d2011-01-03 15:08:37 +00005228static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229{
françois romieue6de30d2011-01-03 15:08:37 +00005230 void __iomem *ioaddr = tp->mmio_addr;
5231
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00005233 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
Hayes Wang92fc43b2011-07-06 15:58:03 +08005235 rtl_rx_close(tp);
5236
Hayes Wang5d2e1952011-02-22 17:26:22 +08005237 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00005238 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
5239 tp->mac_version == RTL_GIGA_MAC_VER_31) {
Francois Romieuffc46952012-07-06 14:19:23 +02005240 rtl_udelay_loop_wait_low(tp, &rtl_npq_cond, 20, 42*42);
Hayes Wangc2218922011-09-06 16:55:18 +08005241 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005242 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
5243 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
5244 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
5245 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
5246 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
5247 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
5248 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
5249 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
5250 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
5251 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
5252 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
5253 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005254 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
5255 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
5256 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
5257 tp->mac_version == RTL_GIGA_MAC_VER_51) {
David S. Miller8decf862011-09-22 03:23:13 -04005258 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Francois Romieuffc46952012-07-06 14:19:23 +02005259 rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005260 } else {
5261 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
5262 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00005263 }
5264
Hayes Wang92fc43b2011-07-06 15:58:03 +08005265 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266}
5267
Francois Romieu7f796d832007-06-11 23:04:41 +02005268static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005269{
5270 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01005271
5272 /* Set DMA burst size and Interframe Gap Time */
5273 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
5274 (InterFrameGap << TxInterFrameGapShift));
5275}
5276
Francois Romieu07ce4062007-02-23 23:36:39 +01005277static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278{
5279 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280
Francois Romieu07ce4062007-02-23 23:36:39 +01005281 tp->hw_start(dev);
5282
Francois Romieuda78dbf2012-01-26 14:18:23 +01005283 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01005284}
5285
Francois Romieu7f796d832007-06-11 23:04:41 +02005286static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
5287 void __iomem *ioaddr)
5288{
5289 /*
5290 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
5291 * register to be written before TxDescAddrLow to work.
5292 * Switching from MMIO to I/O access fixes the issue as well.
5293 */
5294 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005295 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005296 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005297 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005298}
5299
5300static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
5301{
5302 u16 cmd;
5303
5304 cmd = RTL_R16(CPlusCmd);
5305 RTL_W16(CPlusCmd, cmd);
5306 return cmd;
5307}
5308
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07005309static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02005310{
5311 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00005312 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02005313}
5314
Francois Romieu6dccd162007-02-13 23:38:05 +01005315static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
5316{
Francois Romieu37441002011-06-17 22:58:54 +02005317 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01005318 u32 mac_version;
5319 u32 clk;
5320 u32 val;
5321 } cfg2_info [] = {
5322 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
5323 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
5324 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
5325 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02005326 };
5327 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01005328 unsigned int i;
5329 u32 clk;
5330
5331 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01005332 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01005333 if ((p->mac_version == mac_version) && (p->clk == clk)) {
5334 RTL_W32(0x7c, p->val);
5335 break;
5336 }
5337 }
5338}
5339
Francois Romieue6b763e2012-03-08 09:35:39 +01005340static void rtl_set_rx_mode(struct net_device *dev)
5341{
5342 struct rtl8169_private *tp = netdev_priv(dev);
5343 void __iomem *ioaddr = tp->mmio_addr;
5344 u32 mc_filter[2]; /* Multicast hash filter */
5345 int rx_mode;
5346 u32 tmp = 0;
5347
5348 if (dev->flags & IFF_PROMISC) {
5349 /* Unconditionally log net taps. */
5350 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
5351 rx_mode =
5352 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
5353 AcceptAllPhys;
5354 mc_filter[1] = mc_filter[0] = 0xffffffff;
5355 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
5356 (dev->flags & IFF_ALLMULTI)) {
5357 /* Too many to filter perfectly -- accept all multicasts. */
5358 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
5359 mc_filter[1] = mc_filter[0] = 0xffffffff;
5360 } else {
5361 struct netdev_hw_addr *ha;
5362
5363 rx_mode = AcceptBroadcast | AcceptMyPhys;
5364 mc_filter[1] = mc_filter[0] = 0;
5365 netdev_for_each_mc_addr(ha, dev) {
5366 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
5367 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
5368 rx_mode |= AcceptMulticast;
5369 }
5370 }
5371
5372 if (dev->features & NETIF_F_RXALL)
5373 rx_mode |= (AcceptErr | AcceptRunt);
5374
5375 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
5376
5377 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
5378 u32 data = mc_filter[0];
5379
5380 mc_filter[0] = swab32(mc_filter[1]);
5381 mc_filter[1] = swab32(data);
5382 }
5383
Nathan Walp04817762012-11-01 12:08:47 +00005384 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
5385 mc_filter[1] = mc_filter[0] = 0xffffffff;
5386
Francois Romieue6b763e2012-03-08 09:35:39 +01005387 RTL_W32(MAR0 + 4, mc_filter[1]);
5388 RTL_W32(MAR0 + 0, mc_filter[0]);
5389
5390 RTL_W32(RxConfig, tmp);
5391}
5392
Francois Romieu07ce4062007-02-23 23:36:39 +01005393static void rtl_hw_start_8169(struct net_device *dev)
5394{
5395 struct rtl8169_private *tp = netdev_priv(dev);
5396 void __iomem *ioaddr = tp->mmio_addr;
5397 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01005398
Francois Romieu9cb427b2006-11-02 00:10:16 +01005399 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
5400 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
5401 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
5402 }
5403
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02005405 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5406 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5407 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5408 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005409 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5410
Hayes Wange542a222011-07-06 15:58:04 +08005411 rtl_init_rxcfg(tp);
5412
françois romieuf0298f82011-01-03 15:07:42 +00005413 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005415 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
Francois Romieucecb5fd2011-04-01 10:21:07 +02005417 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5418 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5419 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5420 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02005421 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Francois Romieu7f796d832007-06-11 23:04:41 +02005423 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005424
Francois Romieucecb5fd2011-04-01 10:21:07 +02005425 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5426 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005427 dprintk("Set MAC Reg C+CR Offset 0xe0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02005429 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430 }
5431
Francois Romieubcf0bf92006-07-26 23:14:13 +02005432 RTL_W16(CPlusCmd, tp->cp_cmd);
5433
Francois Romieu6dccd162007-02-13 23:38:05 +01005434 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
5435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 /*
5437 * Undocumented corner. Supposedly:
5438 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
5439 */
5440 RTL_W16(IntrMitigate, 0x0000);
5441
Francois Romieu7f796d832007-06-11 23:04:41 +02005442 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01005443
Francois Romieucecb5fd2011-04-01 10:21:07 +02005444 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
5445 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
5446 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
5447 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02005448 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5449 rtl_set_rx_tx_config_registers(tp);
5450 }
5451
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02005453
5454 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
5455 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456
5457 RTL_W32(RxMissed, 0);
5458
Francois Romieu07ce4062007-02-23 23:36:39 +01005459 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
5461 /* no early-rx interrupts */
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005462 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005463}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005465static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
5466{
5467 if (tp->csi_ops.write)
Francois Romieu52989f02012-07-06 13:37:00 +02005468 tp->csi_ops.write(tp, addr, value);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005469}
5470
5471static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
5472{
Francois Romieu52989f02012-07-06 13:37:00 +02005473 return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005474}
5475
5476static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02005477{
5478 u32 csi;
5479
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005480 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
5481 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00005482}
5483
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005484static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005485{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005486 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00005487}
5488
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005489static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00005490{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005491 rtl_csi_access_enable(tp, 0x27000000);
5492}
5493
Francois Romieuffc46952012-07-06 14:19:23 +02005494DECLARE_RTL_COND(rtl_csiar_cond)
5495{
5496 void __iomem *ioaddr = tp->mmio_addr;
5497
5498 return RTL_R32(CSIAR) & CSIAR_FLAG;
5499}
5500
Francois Romieu52989f02012-07-06 13:37:00 +02005501static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005502{
Francois Romieu52989f02012-07-06 13:37:00 +02005503 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005504
5505 RTL_W32(CSIDR, value);
5506 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5507 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5508
Francois Romieuffc46952012-07-06 14:19:23 +02005509 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005510}
5511
Francois Romieu52989f02012-07-06 13:37:00 +02005512static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005513{
Francois Romieu52989f02012-07-06 13:37:00 +02005514 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005515
5516 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
5517 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5518
Francois Romieuffc46952012-07-06 14:19:23 +02005519 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5520 RTL_R32(CSIDR) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005521}
5522
Francois Romieu52989f02012-07-06 13:37:00 +02005523static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005524{
Francois Romieu52989f02012-07-06 13:37:00 +02005525 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005526
5527 RTL_W32(CSIDR, value);
5528 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5529 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5530 CSIAR_FUNC_NIC);
5531
Francois Romieuffc46952012-07-06 14:19:23 +02005532 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wang7e18dca2012-03-30 14:33:02 +08005533}
5534
Francois Romieu52989f02012-07-06 13:37:00 +02005535static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005536{
Francois Romieu52989f02012-07-06 13:37:00 +02005537 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005538
5539 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
5540 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5541
Francois Romieuffc46952012-07-06 14:19:23 +02005542 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5543 RTL_R32(CSIDR) : ~0;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005544}
5545
hayeswang45dd95c2013-07-08 17:09:01 +08005546static void r8411_csi_write(struct rtl8169_private *tp, int addr, int value)
5547{
5548 void __iomem *ioaddr = tp->mmio_addr;
5549
5550 RTL_W32(CSIDR, value);
5551 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5552 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5553 CSIAR_FUNC_NIC2);
5554
5555 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
5556}
5557
5558static u32 r8411_csi_read(struct rtl8169_private *tp, int addr)
5559{
5560 void __iomem *ioaddr = tp->mmio_addr;
5561
5562 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC2 |
5563 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5564
5565 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5566 RTL_R32(CSIDR) : ~0;
5567}
5568
Bill Pembertonbaf63292012-12-03 09:23:28 -05005569static void rtl_init_csi_ops(struct rtl8169_private *tp)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005570{
5571 struct csi_ops *ops = &tp->csi_ops;
5572
5573 switch (tp->mac_version) {
5574 case RTL_GIGA_MAC_VER_01:
5575 case RTL_GIGA_MAC_VER_02:
5576 case RTL_GIGA_MAC_VER_03:
5577 case RTL_GIGA_MAC_VER_04:
5578 case RTL_GIGA_MAC_VER_05:
5579 case RTL_GIGA_MAC_VER_06:
5580 case RTL_GIGA_MAC_VER_10:
5581 case RTL_GIGA_MAC_VER_11:
5582 case RTL_GIGA_MAC_VER_12:
5583 case RTL_GIGA_MAC_VER_13:
5584 case RTL_GIGA_MAC_VER_14:
5585 case RTL_GIGA_MAC_VER_15:
5586 case RTL_GIGA_MAC_VER_16:
5587 case RTL_GIGA_MAC_VER_17:
5588 ops->write = NULL;
5589 ops->read = NULL;
5590 break;
5591
Hayes Wang7e18dca2012-03-30 14:33:02 +08005592 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005593 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08005594 ops->write = r8402_csi_write;
5595 ops->read = r8402_csi_read;
5596 break;
5597
hayeswang45dd95c2013-07-08 17:09:01 +08005598 case RTL_GIGA_MAC_VER_44:
5599 ops->write = r8411_csi_write;
5600 ops->read = r8411_csi_read;
5601 break;
5602
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005603 default:
5604 ops->write = r8169_csi_write;
5605 ops->read = r8169_csi_read;
5606 break;
5607 }
Francois Romieudacf8152008-08-02 20:44:13 +02005608}
5609
5610struct ephy_info {
5611 unsigned int offset;
5612 u16 mask;
5613 u16 bits;
5614};
5615
Francois Romieufdf6fc02012-07-06 22:40:38 +02005616static void rtl_ephy_init(struct rtl8169_private *tp, const struct ephy_info *e,
5617 int len)
Francois Romieudacf8152008-08-02 20:44:13 +02005618{
5619 u16 w;
5620
5621 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02005622 w = (rtl_ephy_read(tp, e->offset) & ~e->mask) | e->bits;
5623 rtl_ephy_write(tp, e->offset, w);
Francois Romieudacf8152008-08-02 20:44:13 +02005624 e++;
5625 }
5626}
5627
Francois Romieub726e492008-06-28 12:22:59 +02005628static void rtl_disable_clock_request(struct pci_dev *pdev)
5629{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005630 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL,
5631 PCI_EXP_LNKCTL_CLKREQ_EN);
Francois Romieub726e492008-06-28 12:22:59 +02005632}
5633
françois romieue6de30d2011-01-03 15:08:37 +00005634static void rtl_enable_clock_request(struct pci_dev *pdev)
5635{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005636 pcie_capability_set_word(pdev, PCI_EXP_LNKCTL,
5637 PCI_EXP_LNKCTL_CLKREQ_EN);
françois romieue6de30d2011-01-03 15:08:37 +00005638}
5639
hayeswangb51ecea2014-07-09 14:52:51 +08005640static void rtl_pcie_state_l2l3_enable(struct rtl8169_private *tp, bool enable)
5641{
5642 void __iomem *ioaddr = tp->mmio_addr;
5643 u8 data;
5644
5645 data = RTL_R8(Config3);
5646
5647 if (enable)
5648 data |= Rdy_to_L23;
5649 else
5650 data &= ~Rdy_to_L23;
5651
5652 RTL_W8(Config3, data);
5653}
5654
Francois Romieub726e492008-06-28 12:22:59 +02005655#define R8168_CPCMD_QUIRK_MASK (\
5656 EnableBist | \
5657 Mac_dbgo_oe | \
5658 Force_half_dup | \
5659 Force_rxflow_en | \
5660 Force_txflow_en | \
5661 Cxpl_dbg_sel | \
5662 ASF | \
5663 PktCntrDisable | \
5664 Mac_dbgo_sel)
5665
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005666static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005667{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005668 void __iomem *ioaddr = tp->mmio_addr;
5669 struct pci_dev *pdev = tp->pci_dev;
5670
Francois Romieub726e492008-06-28 12:22:59 +02005671 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5672
5673 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5674
françois romieufaf1e782013-02-27 13:01:57 +00005675 if (tp->dev->mtu <= ETH_DATA_LEN) {
5676 rtl_tx_performance_tweak(pdev, (0x5 << MAX_READ_REQUEST_SHIFT) |
5677 PCI_EXP_DEVCTL_NOSNOOP_EN);
5678 }
Francois Romieu219a1e92008-06-28 11:58:39 +02005679}
5680
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005681static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005682{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005683 void __iomem *ioaddr = tp->mmio_addr;
5684
5685 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005686
françois romieuf0298f82011-01-03 15:07:42 +00005687 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02005688
5689 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02005690}
5691
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005692static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005693{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005694 void __iomem *ioaddr = tp->mmio_addr;
5695 struct pci_dev *pdev = tp->pci_dev;
5696
Francois Romieub726e492008-06-28 12:22:59 +02005697 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
5698
5699 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5700
françois romieufaf1e782013-02-27 13:01:57 +00005701 if (tp->dev->mtu <= ETH_DATA_LEN)
5702 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02005703
5704 rtl_disable_clock_request(pdev);
5705
5706 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02005707}
5708
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005709static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005710{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005711 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005712 { 0x01, 0, 0x0001 },
5713 { 0x02, 0x0800, 0x1000 },
5714 { 0x03, 0, 0x0042 },
5715 { 0x06, 0x0080, 0x0000 },
5716 { 0x07, 0, 0x2000 }
5717 };
5718
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005719 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005720
Francois Romieufdf6fc02012-07-06 22:40:38 +02005721 rtl_ephy_init(tp, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
Francois Romieub726e492008-06-28 12:22:59 +02005722
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005723 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005724}
5725
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005726static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02005727{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005728 void __iomem *ioaddr = tp->mmio_addr;
5729 struct pci_dev *pdev = tp->pci_dev;
5730
5731 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02005732
5733 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5734
françois romieufaf1e782013-02-27 13:01:57 +00005735 if (tp->dev->mtu <= ETH_DATA_LEN)
5736 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieuef3386f2008-06-29 12:24:30 +02005737
5738 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5739}
5740
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005741static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005742{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005743 void __iomem *ioaddr = tp->mmio_addr;
5744 struct pci_dev *pdev = tp->pci_dev;
5745
5746 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005747
5748 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5749
5750 /* Magic. */
5751 RTL_W8(DBG_REG, 0x20);
5752
françois romieuf0298f82011-01-03 15:07:42 +00005753 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005754
françois romieufaf1e782013-02-27 13:01:57 +00005755 if (tp->dev->mtu <= ETH_DATA_LEN)
5756 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005757
5758 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5759}
5760
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005761static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005762{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005763 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005764 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005765 { 0x02, 0x0800, 0x1000 },
5766 { 0x03, 0, 0x0002 },
5767 { 0x06, 0x0080, 0x0000 }
5768 };
5769
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005770 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005771
5772 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
5773
Francois Romieufdf6fc02012-07-06 22:40:38 +02005774 rtl_ephy_init(tp, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
Francois Romieub726e492008-06-28 12:22:59 +02005775
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005776 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005777}
5778
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005779static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005780{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005781 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005782 { 0x01, 0, 0x0001 },
5783 { 0x03, 0x0400, 0x0220 }
5784 };
5785
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005786 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005787
Francois Romieufdf6fc02012-07-06 22:40:38 +02005788 rtl_ephy_init(tp, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
Francois Romieub726e492008-06-28 12:22:59 +02005789
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005790 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005791}
5792
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005793static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02005794{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005795 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02005796}
5797
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005798static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02005799{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005800 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005801
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005802 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005803}
5804
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005805static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02005806{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005807 void __iomem *ioaddr = tp->mmio_addr;
5808 struct pci_dev *pdev = tp->pci_dev;
5809
5810 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02005811
5812 rtl_disable_clock_request(pdev);
5813
françois romieuf0298f82011-01-03 15:07:42 +00005814 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02005815
françois romieufaf1e782013-02-27 13:01:57 +00005816 if (tp->dev->mtu <= ETH_DATA_LEN)
5817 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu5b538df2008-07-20 16:22:45 +02005818
5819 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5820}
5821
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005822static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00005823{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005824 void __iomem *ioaddr = tp->mmio_addr;
5825 struct pci_dev *pdev = tp->pci_dev;
5826
5827 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005828
françois romieufaf1e782013-02-27 13:01:57 +00005829 if (tp->dev->mtu <= ETH_DATA_LEN)
5830 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang4804b3b2011-03-21 01:50:29 +00005831
5832 RTL_W8(MaxTxPacketSize, TxPacketMax);
5833
5834 rtl_disable_clock_request(pdev);
5835}
5836
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005837static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005838{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005839 void __iomem *ioaddr = tp->mmio_addr;
5840 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00005841 static const struct ephy_info e_info_8168d_4[] = {
Chun-Hao Lin1016a4a2015-12-29 22:13:39 +08005842 { 0x0b, 0x0000, 0x0048 },
5843 { 0x19, 0x0020, 0x0050 },
5844 { 0x0c, 0x0100, 0x0020 }
françois romieue6de30d2011-01-03 15:08:37 +00005845 };
françois romieue6de30d2011-01-03 15:08:37 +00005846
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005847 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00005848
5849 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5850
5851 RTL_W8(MaxTxPacketSize, TxPacketMax);
5852
Chun-Hao Lin1016a4a2015-12-29 22:13:39 +08005853 rtl_ephy_init(tp, e_info_8168d_4, ARRAY_SIZE(e_info_8168d_4));
françois romieue6de30d2011-01-03 15:08:37 +00005854
5855 rtl_enable_clock_request(pdev);
5856}
5857
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005858static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00005859{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005860 void __iomem *ioaddr = tp->mmio_addr;
5861 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005862 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00005863 { 0x00, 0x0200, 0x0100 },
5864 { 0x00, 0x0000, 0x0004 },
5865 { 0x06, 0x0002, 0x0001 },
5866 { 0x06, 0x0000, 0x0030 },
5867 { 0x07, 0x0000, 0x2000 },
5868 { 0x00, 0x0000, 0x0020 },
5869 { 0x03, 0x5800, 0x2000 },
5870 { 0x03, 0x0000, 0x0001 },
5871 { 0x01, 0x0800, 0x1000 },
5872 { 0x07, 0x0000, 0x4000 },
5873 { 0x1e, 0x0000, 0x2000 },
5874 { 0x19, 0xffff, 0xfe6c },
5875 { 0x0a, 0x0000, 0x0040 }
5876 };
5877
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005878 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005879
Francois Romieufdf6fc02012-07-06 22:40:38 +02005880 rtl_ephy_init(tp, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00005881
françois romieufaf1e782013-02-27 13:01:57 +00005882 if (tp->dev->mtu <= ETH_DATA_LEN)
5883 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang01dc7fe2011-03-21 01:50:28 +00005884
5885 RTL_W8(MaxTxPacketSize, TxPacketMax);
5886
5887 rtl_disable_clock_request(pdev);
5888
5889 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02005890 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
5891 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00005892
Francois Romieucecb5fd2011-04-01 10:21:07 +02005893 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00005894}
5895
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005896static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08005897{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005898 void __iomem *ioaddr = tp->mmio_addr;
5899 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005900 static const struct ephy_info e_info_8168e_2[] = {
5901 { 0x09, 0x0000, 0x0080 },
5902 { 0x19, 0x0000, 0x0224 }
5903 };
5904
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005905 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005906
Francois Romieufdf6fc02012-07-06 22:40:38 +02005907 rtl_ephy_init(tp, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
Hayes Wang70090422011-07-06 15:58:06 +08005908
françois romieufaf1e782013-02-27 13:01:57 +00005909 if (tp->dev->mtu <= ETH_DATA_LEN)
5910 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Hayes Wang70090422011-07-06 15:58:06 +08005911
Francois Romieufdf6fc02012-07-06 22:40:38 +02005912 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5913 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5914 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5915 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5916 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5917 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005918 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5919 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08005920
Hayes Wang3090bd92011-09-06 16:55:15 +08005921 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08005922
Francois Romieu4521e1a92012-11-01 16:46:28 +00005923 rtl_disable_clock_request(pdev);
5924
Hayes Wang70090422011-07-06 15:58:06 +08005925 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5926 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5927
5928 /* Adjust EEE LED frequency */
5929 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5930
5931 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
5932 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005933 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wang70090422011-07-06 15:58:06 +08005934}
5935
Hayes Wang5f886e02012-03-30 14:33:03 +08005936static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08005937{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005938 void __iomem *ioaddr = tp->mmio_addr;
5939 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08005940
Hayes Wang5f886e02012-03-30 14:33:03 +08005941 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005942
5943 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5944
Francois Romieufdf6fc02012-07-06 22:40:38 +02005945 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5946 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5947 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5948 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005949 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5950 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5951 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5952 rtl_w0w1_eri(tp, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02005953 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5954 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08005955
5956 RTL_W8(MaxTxPacketSize, EarlySize);
5957
Francois Romieu4521e1a92012-11-01 16:46:28 +00005958 rtl_disable_clock_request(pdev);
5959
Hayes Wangc2218922011-09-06 16:55:18 +08005960 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5961 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08005962 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005963 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
5964 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wangc2218922011-09-06 16:55:18 +08005965}
5966
Hayes Wang5f886e02012-03-30 14:33:03 +08005967static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
5968{
5969 void __iomem *ioaddr = tp->mmio_addr;
5970 static const struct ephy_info e_info_8168f_1[] = {
5971 { 0x06, 0x00c0, 0x0020 },
5972 { 0x08, 0x0001, 0x0002 },
5973 { 0x09, 0x0000, 0x0080 },
5974 { 0x19, 0x0000, 0x0224 }
5975 };
5976
5977 rtl_hw_start_8168f(tp);
5978
Francois Romieufdf6fc02012-07-06 22:40:38 +02005979 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wang5f886e02012-03-30 14:33:03 +08005980
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005981 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang5f886e02012-03-30 14:33:03 +08005982
5983 /* Adjust EEE LED frequency */
5984 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5985}
5986
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005987static void rtl_hw_start_8411(struct rtl8169_private *tp)
5988{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005989 static const struct ephy_info e_info_8168f_1[] = {
5990 { 0x06, 0x00c0, 0x0020 },
5991 { 0x0f, 0xffff, 0x5200 },
5992 { 0x1e, 0x0000, 0x4000 },
5993 { 0x19, 0x0000, 0x0224 }
5994 };
5995
5996 rtl_hw_start_8168f(tp);
hayeswangb51ecea2014-07-09 14:52:51 +08005997 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005998
Francois Romieufdf6fc02012-07-06 22:40:38 +02005999 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006000
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006001 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006002}
6003
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006004static void rtl_hw_start_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006005{
6006 void __iomem *ioaddr = tp->mmio_addr;
6007 struct pci_dev *pdev = tp->pci_dev;
6008
hayeswangbeb330a2013-04-01 22:23:39 +00006009 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6010
Hayes Wangc5583862012-07-02 17:23:22 +08006011 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x080002, ERIAR_EXGMAC);
6012 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
6013 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
6014 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6015
6016 rtl_csi_access_enable_1(tp);
6017
6018 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6019
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006020 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6021 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
hayeswangbeb330a2013-04-01 22:23:39 +00006022 rtl_eri_write(tp, 0x2f8, ERIAR_MASK_0011, 0x1d8f, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08006023
Francois Romieu4521e1a92012-11-01 16:46:28 +00006024 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
Hayes Wangc5583862012-07-02 17:23:22 +08006025 RTL_W8(MaxTxPacketSize, EarlySize);
6026
6027 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6028 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6029
6030 /* Adjust EEE LED frequency */
6031 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6032
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006033 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6034 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006035
6036 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangc5583862012-07-02 17:23:22 +08006037}
6038
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006039static void rtl_hw_start_8168g_1(struct rtl8169_private *tp)
6040{
6041 void __iomem *ioaddr = tp->mmio_addr;
6042 static const struct ephy_info e_info_8168g_1[] = {
6043 { 0x00, 0x0000, 0x0008 },
6044 { 0x0c, 0x37d0, 0x0820 },
6045 { 0x1e, 0x0000, 0x0001 },
6046 { 0x19, 0x8000, 0x0000 }
6047 };
6048
6049 rtl_hw_start_8168g(tp);
6050
6051 /* disable aspm and clock request before access ephy */
6052 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6053 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6054 rtl_ephy_init(tp, e_info_8168g_1, ARRAY_SIZE(e_info_8168g_1));
6055}
6056
hayeswang57538c42013-04-01 22:23:40 +00006057static void rtl_hw_start_8168g_2(struct rtl8169_private *tp)
6058{
6059 void __iomem *ioaddr = tp->mmio_addr;
6060 static const struct ephy_info e_info_8168g_2[] = {
6061 { 0x00, 0x0000, 0x0008 },
6062 { 0x0c, 0x3df0, 0x0200 },
6063 { 0x19, 0xffff, 0xfc00 },
6064 { 0x1e, 0xffff, 0x20eb }
6065 };
6066
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006067 rtl_hw_start_8168g(tp);
hayeswang57538c42013-04-01 22:23:40 +00006068
6069 /* disable aspm and clock request before access ephy */
6070 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6071 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6072 rtl_ephy_init(tp, e_info_8168g_2, ARRAY_SIZE(e_info_8168g_2));
6073}
6074
hayeswang45dd95c2013-07-08 17:09:01 +08006075static void rtl_hw_start_8411_2(struct rtl8169_private *tp)
6076{
6077 void __iomem *ioaddr = tp->mmio_addr;
6078 static const struct ephy_info e_info_8411_2[] = {
6079 { 0x00, 0x0000, 0x0008 },
6080 { 0x0c, 0x3df0, 0x0200 },
6081 { 0x0f, 0xffff, 0x5200 },
6082 { 0x19, 0x0020, 0x0000 },
6083 { 0x1e, 0x0000, 0x2000 }
6084 };
6085
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006086 rtl_hw_start_8168g(tp);
hayeswang45dd95c2013-07-08 17:09:01 +08006087
6088 /* disable aspm and clock request before access ephy */
6089 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6090 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6091 rtl_ephy_init(tp, e_info_8411_2, ARRAY_SIZE(e_info_8411_2));
6092}
6093
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006094static void rtl_hw_start_8168h_1(struct rtl8169_private *tp)
6095{
6096 void __iomem *ioaddr = tp->mmio_addr;
6097 struct pci_dev *pdev = tp->pci_dev;
Andrzej Hajda72521ea2015-09-24 16:00:24 +02006098 int rg_saw_cnt;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006099 u32 data;
6100 static const struct ephy_info e_info_8168h_1[] = {
6101 { 0x1e, 0x0800, 0x0001 },
6102 { 0x1d, 0x0000, 0x0800 },
6103 { 0x05, 0xffff, 0x2089 },
6104 { 0x06, 0xffff, 0x5881 },
6105 { 0x04, 0xffff, 0x154a },
6106 { 0x01, 0xffff, 0x068b }
6107 };
6108
6109 /* disable aspm and clock request before access ephy */
6110 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6111 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6112 rtl_ephy_init(tp, e_info_8168h_1, ARRAY_SIZE(e_info_8168h_1));
6113
6114 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6115
6116 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6117 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
6118 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
6119 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6120
6121 rtl_csi_access_enable_1(tp);
6122
6123 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6124
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006125 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6126 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006127
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006128 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_1111, 0x0010, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006129
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006130 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f00, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006131
6132 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6133
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006134 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6135 RTL_W8(MaxTxPacketSize, EarlySize);
6136
6137 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6138 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6139
6140 /* Adjust EEE LED frequency */
6141 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6142
6143 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006144 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006145
6146 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6147
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006148 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006149
6150 rtl_pcie_state_l2l3_enable(tp, false);
6151
6152 rtl_writephy(tp, 0x1f, 0x0c42);
Chun-Hao Lin58493332015-12-24 21:15:27 +08006153 rg_saw_cnt = (rtl_readphy(tp, 0x13) & 0x3fff);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006154 rtl_writephy(tp, 0x1f, 0x0000);
6155 if (rg_saw_cnt > 0) {
6156 u16 sw_cnt_1ms_ini;
6157
6158 sw_cnt_1ms_ini = 16000000/rg_saw_cnt;
6159 sw_cnt_1ms_ini &= 0x0fff;
6160 data = r8168_mac_ocp_read(tp, 0xd412);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006161 data &= ~0x0fff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006162 data |= sw_cnt_1ms_ini;
6163 r8168_mac_ocp_write(tp, 0xd412, data);
6164 }
6165
6166 data = r8168_mac_ocp_read(tp, 0xe056);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006167 data &= ~0xf0;
6168 data |= 0x70;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006169 r8168_mac_ocp_write(tp, 0xe056, data);
6170
6171 data = r8168_mac_ocp_read(tp, 0xe052);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006172 data &= ~0x6000;
6173 data |= 0x8008;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006174 r8168_mac_ocp_write(tp, 0xe052, data);
6175
6176 data = r8168_mac_ocp_read(tp, 0xe0d6);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006177 data &= ~0x01ff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006178 data |= 0x017f;
6179 r8168_mac_ocp_write(tp, 0xe0d6, data);
6180
6181 data = r8168_mac_ocp_read(tp, 0xd420);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006182 data &= ~0x0fff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006183 data |= 0x047f;
6184 r8168_mac_ocp_write(tp, 0xd420, data);
6185
6186 r8168_mac_ocp_write(tp, 0xe63e, 0x0001);
6187 r8168_mac_ocp_write(tp, 0xe63e, 0x0000);
6188 r8168_mac_ocp_write(tp, 0xc094, 0x0000);
6189 r8168_mac_ocp_write(tp, 0xc09e, 0x0000);
6190}
6191
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006192static void rtl_hw_start_8168ep(struct rtl8169_private *tp)
6193{
6194 void __iomem *ioaddr = tp->mmio_addr;
6195 struct pci_dev *pdev = tp->pci_dev;
6196
Chun-Hao Lin003609d2014-12-02 16:48:31 +08006197 rtl8168ep_stop_cmac(tp);
6198
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006199 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6200
6201 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6202 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x2f, ERIAR_EXGMAC);
6203 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x5f, ERIAR_EXGMAC);
6204 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6205
6206 rtl_csi_access_enable_1(tp);
6207
6208 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6209
6210 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6211 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
6212
6213 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f80, 0x00, ERIAR_EXGMAC);
6214
6215 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6216
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006217 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6218 RTL_W8(MaxTxPacketSize, EarlySize);
6219
6220 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6221 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6222
6223 /* Adjust EEE LED frequency */
6224 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6225
6226 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6227
6228 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6229
6230 rtl_pcie_state_l2l3_enable(tp, false);
6231}
6232
6233static void rtl_hw_start_8168ep_1(struct rtl8169_private *tp)
6234{
6235 void __iomem *ioaddr = tp->mmio_addr;
6236 static const struct ephy_info e_info_8168ep_1[] = {
6237 { 0x00, 0xffff, 0x10ab },
6238 { 0x06, 0xffff, 0xf030 },
6239 { 0x08, 0xffff, 0x2006 },
6240 { 0x0d, 0xffff, 0x1666 },
6241 { 0x0c, 0x3ff0, 0x0000 }
6242 };
6243
6244 /* disable aspm and clock request before access ephy */
6245 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6246 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6247 rtl_ephy_init(tp, e_info_8168ep_1, ARRAY_SIZE(e_info_8168ep_1));
6248
6249 rtl_hw_start_8168ep(tp);
6250}
6251
6252static void rtl_hw_start_8168ep_2(struct rtl8169_private *tp)
6253{
6254 void __iomem *ioaddr = tp->mmio_addr;
6255 static const struct ephy_info e_info_8168ep_2[] = {
6256 { 0x00, 0xffff, 0x10a3 },
6257 { 0x19, 0xffff, 0xfc00 },
6258 { 0x1e, 0xffff, 0x20ea }
6259 };
6260
6261 /* disable aspm and clock request before access ephy */
6262 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6263 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6264 rtl_ephy_init(tp, e_info_8168ep_2, ARRAY_SIZE(e_info_8168ep_2));
6265
6266 rtl_hw_start_8168ep(tp);
6267
6268 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006269 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006270}
6271
6272static void rtl_hw_start_8168ep_3(struct rtl8169_private *tp)
6273{
6274 void __iomem *ioaddr = tp->mmio_addr;
6275 u32 data;
6276 static const struct ephy_info e_info_8168ep_3[] = {
6277 { 0x00, 0xffff, 0x10a3 },
6278 { 0x19, 0xffff, 0x7c00 },
6279 { 0x1e, 0xffff, 0x20eb },
6280 { 0x0d, 0xffff, 0x1666 }
6281 };
6282
6283 /* disable aspm and clock request before access ephy */
6284 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6285 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6286 rtl_ephy_init(tp, e_info_8168ep_3, ARRAY_SIZE(e_info_8168ep_3));
6287
6288 rtl_hw_start_8168ep(tp);
6289
6290 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006291 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006292
6293 data = r8168_mac_ocp_read(tp, 0xd3e2);
6294 data &= 0xf000;
6295 data |= 0x0271;
6296 r8168_mac_ocp_write(tp, 0xd3e2, data);
6297
6298 data = r8168_mac_ocp_read(tp, 0xd3e4);
6299 data &= 0xff00;
6300 r8168_mac_ocp_write(tp, 0xd3e4, data);
6301
6302 data = r8168_mac_ocp_read(tp, 0xe860);
6303 data |= 0x0080;
6304 r8168_mac_ocp_write(tp, 0xe860, data);
6305}
6306
Francois Romieu07ce4062007-02-23 23:36:39 +01006307static void rtl_hw_start_8168(struct net_device *dev)
6308{
Francois Romieu2dd99532007-06-11 23:22:52 +02006309 struct rtl8169_private *tp = netdev_priv(dev);
6310 void __iomem *ioaddr = tp->mmio_addr;
6311
6312 RTL_W8(Cfg9346, Cfg9346_Unlock);
6313
françois romieuf0298f82011-01-03 15:07:42 +00006314 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02006315
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006316 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02006317
Francois Romieu0e485152007-02-20 00:00:26 +01006318 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02006319
6320 RTL_W16(CPlusCmd, tp->cp_cmd);
6321
Francois Romieu0e485152007-02-20 00:00:26 +01006322 RTL_W16(IntrMitigate, 0x5151);
6323
6324 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00006325 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01006326 tp->event_slow |= RxFIFOOver | PCSTimeout;
6327 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01006328 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006329
6330 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6331
hayeswang1a964642013-04-01 22:23:41 +00006332 rtl_set_rx_tx_config_registers(tp);
Francois Romieu2dd99532007-06-11 23:22:52 +02006333
6334 RTL_R8(IntrMask);
6335
Francois Romieu219a1e92008-06-28 11:58:39 +02006336 switch (tp->mac_version) {
6337 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006338 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006339 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006340
6341 case RTL_GIGA_MAC_VER_12:
6342 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006343 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006344 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006345
6346 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006347 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006348 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006349
6350 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006351 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006352 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006353
6354 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006355 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006356 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006357
Francois Romieu197ff762008-06-28 13:16:02 +02006358 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006359 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006360 break;
Francois Romieu197ff762008-06-28 13:16:02 +02006361
Francois Romieu6fb07052008-06-29 11:54:28 +02006362 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006363 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006364 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02006365
Francois Romieuef3386f2008-06-29 12:24:30 +02006366 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006367 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006368 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02006369
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006370 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006371 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006372 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006373
Francois Romieu5b538df2008-07-20 16:22:45 +02006374 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00006375 case RTL_GIGA_MAC_VER_26:
6376 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006377 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006378 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02006379
françois romieue6de30d2011-01-03 15:08:37 +00006380 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006381 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006382 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02006383
hayeswang4804b3b2011-03-21 01:50:29 +00006384 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006385 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006386 break;
6387
hayeswang01dc7fe2011-03-21 01:50:28 +00006388 case RTL_GIGA_MAC_VER_32:
6389 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006390 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08006391 break;
6392 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006393 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00006394 break;
françois romieue6de30d2011-01-03 15:08:37 +00006395
Hayes Wangc2218922011-09-06 16:55:18 +08006396 case RTL_GIGA_MAC_VER_35:
6397 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006398 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08006399 break;
6400
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006401 case RTL_GIGA_MAC_VER_38:
6402 rtl_hw_start_8411(tp);
6403 break;
6404
Hayes Wangc5583862012-07-02 17:23:22 +08006405 case RTL_GIGA_MAC_VER_40:
6406 case RTL_GIGA_MAC_VER_41:
6407 rtl_hw_start_8168g_1(tp);
6408 break;
hayeswang57538c42013-04-01 22:23:40 +00006409 case RTL_GIGA_MAC_VER_42:
6410 rtl_hw_start_8168g_2(tp);
6411 break;
Hayes Wangc5583862012-07-02 17:23:22 +08006412
hayeswang45dd95c2013-07-08 17:09:01 +08006413 case RTL_GIGA_MAC_VER_44:
6414 rtl_hw_start_8411_2(tp);
6415 break;
6416
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006417 case RTL_GIGA_MAC_VER_45:
6418 case RTL_GIGA_MAC_VER_46:
6419 rtl_hw_start_8168h_1(tp);
6420 break;
6421
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006422 case RTL_GIGA_MAC_VER_49:
6423 rtl_hw_start_8168ep_1(tp);
6424 break;
6425
6426 case RTL_GIGA_MAC_VER_50:
6427 rtl_hw_start_8168ep_2(tp);
6428 break;
6429
6430 case RTL_GIGA_MAC_VER_51:
6431 rtl_hw_start_8168ep_3(tp);
6432 break;
6433
Francois Romieu219a1e92008-06-28 11:58:39 +02006434 default:
6435 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
6436 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00006437 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006438 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006439
hayeswang1a964642013-04-01 22:23:41 +00006440 RTL_W8(Cfg9346, Cfg9346_Lock);
6441
Francois Romieu0e485152007-02-20 00:00:26 +01006442 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
6443
hayeswang1a964642013-04-01 22:23:41 +00006444 rtl_set_rx_mode(dev);
Francois Romieub8363902008-06-01 12:31:57 +02006445
Chun-Hao Lin05b96872014-10-01 23:17:12 +08006446 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01006447}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448
Francois Romieu2857ffb2008-08-02 21:08:49 +02006449#define R810X_CPCMD_QUIRK_MASK (\
6450 EnableBist | \
6451 Mac_dbgo_oe | \
6452 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00006453 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02006454 Force_txflow_en | \
6455 Cxpl_dbg_sel | \
6456 ASF | \
6457 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006458 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006459
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006460static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006461{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006462 void __iomem *ioaddr = tp->mmio_addr;
6463 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08006464 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02006465 { 0x01, 0, 0x6e65 },
6466 { 0x02, 0, 0x091f },
6467 { 0x03, 0, 0xc2f9 },
6468 { 0x06, 0, 0xafb5 },
6469 { 0x07, 0, 0x0e00 },
6470 { 0x19, 0, 0xec80 },
6471 { 0x01, 0, 0x2e65 },
6472 { 0x01, 0, 0x6e65 }
6473 };
6474 u8 cfg1;
6475
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006476 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006477
6478 RTL_W8(DBG_REG, FIX_NAK_1);
6479
6480 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6481
6482 RTL_W8(Config1,
6483 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
6484 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
6485
6486 cfg1 = RTL_R8(Config1);
6487 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
6488 RTL_W8(Config1, cfg1 & ~LEDS0);
6489
Francois Romieufdf6fc02012-07-06 22:40:38 +02006490 rtl_ephy_init(tp, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
Francois Romieu2857ffb2008-08-02 21:08:49 +02006491}
6492
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006493static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006494{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006495 void __iomem *ioaddr = tp->mmio_addr;
6496 struct pci_dev *pdev = tp->pci_dev;
6497
6498 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006499
6500 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6501
6502 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
6503 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006504}
6505
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006506static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006507{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006508 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006509
Francois Romieufdf6fc02012-07-06 22:40:38 +02006510 rtl_ephy_write(tp, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006511}
6512
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006513static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006514{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006515 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006516 static const struct ephy_info e_info_8105e_1[] = {
6517 { 0x07, 0, 0x4000 },
6518 { 0x19, 0, 0x0200 },
6519 { 0x19, 0, 0x0020 },
6520 { 0x1e, 0, 0x2000 },
6521 { 0x03, 0, 0x0001 },
6522 { 0x19, 0, 0x0100 },
6523 { 0x19, 0, 0x0004 },
6524 { 0x0a, 0, 0x0020 }
6525 };
6526
Francois Romieucecb5fd2011-04-01 10:21:07 +02006527 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006528 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6529
Francois Romieucecb5fd2011-04-01 10:21:07 +02006530 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006531 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
6532
6533 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08006534 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006535
Francois Romieufdf6fc02012-07-06 22:40:38 +02006536 rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
hayeswangb51ecea2014-07-09 14:52:51 +08006537
6538 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006539}
6540
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006541static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006542{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006543 rtl_hw_start_8105e_1(tp);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006544 rtl_ephy_write(tp, 0x1e, rtl_ephy_read(tp, 0x1e) | 0x8000);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006545}
6546
Hayes Wang7e18dca2012-03-30 14:33:02 +08006547static void rtl_hw_start_8402(struct rtl8169_private *tp)
6548{
6549 void __iomem *ioaddr = tp->mmio_addr;
6550 static const struct ephy_info e_info_8402[] = {
6551 { 0x19, 0xffff, 0xff64 },
6552 { 0x1e, 0, 0x4000 }
6553 };
6554
6555 rtl_csi_access_enable_2(tp);
6556
6557 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6558 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6559
6560 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6561 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6562
Francois Romieufdf6fc02012-07-06 22:40:38 +02006563 rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402));
Hayes Wang7e18dca2012-03-30 14:33:02 +08006564
6565 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
6566
Francois Romieufdf6fc02012-07-06 22:40:38 +02006567 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
6568 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006569 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6570 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006571 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6572 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006573 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006574
6575 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang7e18dca2012-03-30 14:33:02 +08006576}
6577
Hayes Wang5598bfe2012-07-02 17:23:21 +08006578static void rtl_hw_start_8106(struct rtl8169_private *tp)
6579{
6580 void __iomem *ioaddr = tp->mmio_addr;
6581
6582 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6583 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6584
Francois Romieu4521e1a92012-11-01 16:46:28 +00006585 RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006586 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
6587 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
hayeswangb51ecea2014-07-09 14:52:51 +08006588
6589 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006590}
6591
Francois Romieu07ce4062007-02-23 23:36:39 +01006592static void rtl_hw_start_8101(struct net_device *dev)
6593{
Francois Romieucdf1a602007-06-11 23:29:50 +02006594 struct rtl8169_private *tp = netdev_priv(dev);
6595 void __iomem *ioaddr = tp->mmio_addr;
6596 struct pci_dev *pdev = tp->pci_dev;
6597
Francois Romieuda78dbf2012-01-26 14:18:23 +01006598 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
6599 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00006600
Francois Romieucecb5fd2011-04-01 10:21:07 +02006601 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
Jiang Liu7d7903b2012-07-24 17:20:16 +08006602 tp->mac_version == RTL_GIGA_MAC_VER_16)
Bjorn Helgaas8200bc72012-08-22 10:29:42 -06006603 pcie_capability_set_word(pdev, PCI_EXP_DEVCTL,
6604 PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieucdf1a602007-06-11 23:29:50 +02006605
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006606 RTL_W8(Cfg9346, Cfg9346_Unlock);
6607
hayeswang1a964642013-04-01 22:23:41 +00006608 RTL_W8(MaxTxPacketSize, TxPacketMax);
6609
6610 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
6611
6612 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
6613 RTL_W16(CPlusCmd, tp->cp_cmd);
6614
6615 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6616
6617 rtl_set_rx_tx_config_registers(tp);
6618
Francois Romieu2857ffb2008-08-02 21:08:49 +02006619 switch (tp->mac_version) {
6620 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006621 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006622 break;
6623
6624 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006625 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006626 break;
6627
6628 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006629 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006630 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006631
6632 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006633 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006634 break;
6635 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006636 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006637 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08006638
6639 case RTL_GIGA_MAC_VER_37:
6640 rtl_hw_start_8402(tp);
6641 break;
Hayes Wang5598bfe2012-07-02 17:23:21 +08006642
6643 case RTL_GIGA_MAC_VER_39:
6644 rtl_hw_start_8106(tp);
6645 break;
hayeswang58152cd2013-04-01 22:23:42 +00006646 case RTL_GIGA_MAC_VER_43:
6647 rtl_hw_start_8168g_2(tp);
6648 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006649 case RTL_GIGA_MAC_VER_47:
6650 case RTL_GIGA_MAC_VER_48:
6651 rtl_hw_start_8168h_1(tp);
6652 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02006653 }
6654
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006655 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02006656
Francois Romieucdf1a602007-06-11 23:29:50 +02006657 RTL_W16(IntrMitigate, 0x0000);
6658
Francois Romieucdf1a602007-06-11 23:29:50 +02006659 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieucdf1a602007-06-11 23:29:50 +02006660
Francois Romieucdf1a602007-06-11 23:29:50 +02006661 rtl_set_rx_mode(dev);
6662
hayeswang1a964642013-04-01 22:23:41 +00006663 RTL_R8(IntrMask);
6664
Francois Romieucdf1a602007-06-11 23:29:50 +02006665 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666}
6667
6668static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
6669{
Francois Romieud58d46b2011-05-03 16:38:29 +02006670 struct rtl8169_private *tp = netdev_priv(dev);
6671
6672 if (new_mtu < ETH_ZLEN ||
6673 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674 return -EINVAL;
6675
Francois Romieud58d46b2011-05-03 16:38:29 +02006676 if (new_mtu > ETH_DATA_LEN)
6677 rtl_hw_jumbo_enable(tp);
6678 else
6679 rtl_hw_jumbo_disable(tp);
6680
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00006682 netdev_update_features(dev);
6683
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685}
6686
6687static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
6688{
Al Viro95e09182007-12-22 18:55:39 +00006689 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
6691}
6692
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006693static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
6694 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006696 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006697 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006698
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006699 kfree(*data_buff);
6700 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701 rtl8169_make_unusable_by_asic(desc);
6702}
6703
6704static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
6705{
6706 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
6707
Alexander Duycka0750132014-12-11 15:02:17 -08006708 /* Force memory writes to complete before releasing descriptor */
6709 dma_wmb();
6710
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
6712}
6713
6714static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
6715 u32 rx_buf_sz)
6716{
6717 desc->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718 rtl8169_mark_to_asic(desc, rx_buf_sz);
6719}
6720
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006721static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006723 return (void *)ALIGN((long)data, 16);
6724}
6725
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006726static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
6727 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006728{
6729 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006730 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006731 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006732 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006733 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006735 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
6736 if (!data)
6737 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01006738
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006739 if (rtl8169_align(data) != data) {
6740 kfree(data);
6741 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
6742 if (!data)
6743 return NULL;
6744 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006745
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006746 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006747 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006748 if (unlikely(dma_mapping_error(d, mapping))) {
6749 if (net_ratelimit())
6750 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006751 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753
6754 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006755 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006756
6757err_out:
6758 kfree(data);
6759 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760}
6761
6762static void rtl8169_rx_clear(struct rtl8169_private *tp)
6763{
Francois Romieu07d3f512007-02-21 22:40:46 +01006764 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765
6766 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006767 if (tp->Rx_databuff[i]) {
6768 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769 tp->RxDescArray + i);
6770 }
6771 }
6772}
6773
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006774static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006776 desc->opts1 |= cpu_to_le32(RingEnd);
6777}
Francois Romieu5b0384f2006-08-16 16:00:01 +02006778
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006779static int rtl8169_rx_fill(struct rtl8169_private *tp)
6780{
6781 unsigned int i;
6782
6783 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006784 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02006785
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006786 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02006788
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006789 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006790 if (!data) {
6791 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006792 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006793 }
6794 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006797 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
6798 return 0;
6799
6800err_out:
6801 rtl8169_rx_clear(tp);
6802 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006803}
6804
Linus Torvalds1da177e2005-04-16 15:20:36 -07006805static int rtl8169_init_ring(struct net_device *dev)
6806{
6807 struct rtl8169_private *tp = netdev_priv(dev);
6808
6809 rtl8169_init_ring_indexes(tp);
6810
6811 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006812 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006814 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815}
6816
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006817static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818 struct TxDesc *desc)
6819{
6820 unsigned int len = tx_skb->len;
6821
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006822 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
6823
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824 desc->opts1 = 0x00;
6825 desc->opts2 = 0x00;
6826 desc->addr = 0x00;
6827 tx_skb->len = 0;
6828}
6829
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006830static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
6831 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832{
6833 unsigned int i;
6834
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006835 for (i = 0; i < n; i++) {
6836 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837 struct ring_info *tx_skb = tp->tx_skb + entry;
6838 unsigned int len = tx_skb->len;
6839
6840 if (len) {
6841 struct sk_buff *skb = tx_skb->skb;
6842
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006843 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844 tp->TxDescArray + entry);
6845 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00006846 tp->dev->stats.tx_dropped++;
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07006847 dev_kfree_skb_any(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848 tx_skb->skb = NULL;
6849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006850 }
6851 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006852}
6853
6854static void rtl8169_tx_clear(struct rtl8169_private *tp)
6855{
6856 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857 tp->cur_tx = tp->dirty_tx = 0;
6858}
6859
Francois Romieu4422bcd2012-01-26 11:23:32 +01006860static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861{
David Howellsc4028952006-11-22 14:57:56 +00006862 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01006863 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864
Francois Romieuda78dbf2012-01-26 14:18:23 +01006865 napi_disable(&tp->napi);
6866 netif_stop_queue(dev);
6867 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006868
françois romieuc7c2c392011-12-04 20:30:52 +00006869 rtl8169_hw_reset(tp);
6870
Francois Romieu56de4142011-03-15 17:29:31 +01006871 for (i = 0; i < NUM_RX_DESC; i++)
6872 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
6873
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00006875 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876
Francois Romieuda78dbf2012-01-26 14:18:23 +01006877 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01006878 rtl_hw_start(dev);
6879 netif_wake_queue(dev);
6880 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881}
6882
6883static void rtl8169_tx_timeout(struct net_device *dev)
6884{
Francois Romieuda78dbf2012-01-26 14:18:23 +01006885 struct rtl8169_private *tp = netdev_priv(dev);
6886
6887 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888}
6889
6890static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07006891 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892{
6893 struct skb_shared_info *info = skb_shinfo(skb);
6894 unsigned int cur_frag, entry;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006895 struct TxDesc *uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006896 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897
6898 entry = tp->cur_tx;
6899 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006900 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901 dma_addr_t mapping;
6902 u32 status, len;
6903 void *addr;
6904
6905 entry = (entry + 1) % NUM_TX_DESC;
6906
6907 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00006908 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00006909 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006910 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006911 if (unlikely(dma_mapping_error(d, mapping))) {
6912 if (net_ratelimit())
6913 netif_err(tp, drv, tp->dev,
6914 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006915 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917
Francois Romieucecb5fd2011-04-01 10:21:07 +02006918 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07006919 status = opts[0] | len |
6920 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921
6922 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07006923 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924 txd->addr = cpu_to_le64(mapping);
6925
6926 tp->tx_skb[entry].len = len;
6927 }
6928
6929 if (cur_frag) {
6930 tp->tx_skb[entry].skb = skb;
6931 txd->opts1 |= cpu_to_le32(LastFrag);
6932 }
6933
6934 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006935
6936err_out:
6937 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
6938 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006939}
6940
françois romieub423e9a2013-05-18 01:24:46 +00006941static bool rtl_test_hw_pad_bug(struct rtl8169_private *tp, struct sk_buff *skb)
6942{
6943 return skb->len < ETH_ZLEN && tp->mac_version == RTL_GIGA_MAC_VER_34;
6944}
6945
hayeswange9746042014-07-11 16:25:58 +08006946static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
6947 struct net_device *dev);
6948/* r8169_csum_workaround()
6949 * The hw limites the value the transport offset. When the offset is out of the
6950 * range, calculate the checksum by sw.
6951 */
6952static void r8169_csum_workaround(struct rtl8169_private *tp,
6953 struct sk_buff *skb)
6954{
6955 if (skb_shinfo(skb)->gso_size) {
6956 netdev_features_t features = tp->dev->features;
6957 struct sk_buff *segs, *nskb;
6958
6959 features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
6960 segs = skb_gso_segment(skb, features);
6961 if (IS_ERR(segs) || !segs)
6962 goto drop;
6963
6964 do {
6965 nskb = segs;
6966 segs = segs->next;
6967 nskb->next = NULL;
6968 rtl8169_start_xmit(nskb, tp->dev);
6969 } while (segs);
6970
Alexander Duyckeb781392015-05-01 10:34:44 -07006971 dev_consume_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08006972 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
6973 if (skb_checksum_help(skb) < 0)
6974 goto drop;
6975
6976 rtl8169_start_xmit(skb, tp->dev);
6977 } else {
6978 struct net_device_stats *stats;
6979
6980drop:
6981 stats = &tp->dev->stats;
6982 stats->tx_dropped++;
Alexander Duyckeb781392015-05-01 10:34:44 -07006983 dev_kfree_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08006984 }
6985}
6986
6987/* msdn_giant_send_check()
6988 * According to the document of microsoft, the TCP Pseudo Header excludes the
6989 * packet length for IPv6 TCP large packets.
6990 */
6991static int msdn_giant_send_check(struct sk_buff *skb)
6992{
6993 const struct ipv6hdr *ipv6h;
6994 struct tcphdr *th;
6995 int ret;
6996
6997 ret = skb_cow_head(skb, 0);
6998 if (ret)
6999 return ret;
7000
7001 ipv6h = ipv6_hdr(skb);
7002 th = tcp_hdr(skb);
7003
7004 th->check = 0;
7005 th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0);
7006
7007 return ret;
7008}
7009
7010static inline __be16 get_protocol(struct sk_buff *skb)
7011{
7012 __be16 protocol;
7013
7014 if (skb->protocol == htons(ETH_P_8021Q))
7015 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
7016 else
7017 protocol = skb->protocol;
7018
7019 return protocol;
7020}
7021
hayeswang5888d3f2014-07-11 16:25:56 +08007022static bool rtl8169_tso_csum_v1(struct rtl8169_private *tp,
7023 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024{
Michał Mirosław350fb322011-04-08 06:35:56 +00007025 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026
Francois Romieu2b7b4312011-04-18 22:53:24 -07007027 if (mss) {
7028 opts[0] |= TD_LSO;
hayeswang5888d3f2014-07-11 16:25:56 +08007029 opts[0] |= min(mss, TD_MSS_MAX) << TD0_MSS_SHIFT;
7030 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
7031 const struct iphdr *ip = ip_hdr(skb);
7032
7033 if (ip->protocol == IPPROTO_TCP)
7034 opts[0] |= TD0_IP_CS | TD0_TCP_CS;
7035 else if (ip->protocol == IPPROTO_UDP)
7036 opts[0] |= TD0_IP_CS | TD0_UDP_CS;
7037 else
7038 WARN_ON_ONCE(1);
7039 }
7040
7041 return true;
7042}
7043
7044static bool rtl8169_tso_csum_v2(struct rtl8169_private *tp,
7045 struct sk_buff *skb, u32 *opts)
7046{
hayeswangbdfa4ed2014-07-11 16:25:57 +08007047 u32 transport_offset = (u32)skb_transport_offset(skb);
hayeswang5888d3f2014-07-11 16:25:56 +08007048 u32 mss = skb_shinfo(skb)->gso_size;
7049
7050 if (mss) {
hayeswange9746042014-07-11 16:25:58 +08007051 if (transport_offset > GTTCPHO_MAX) {
7052 netif_warn(tp, tx_err, tp->dev,
7053 "Invalid transport offset 0x%x for TSO\n",
7054 transport_offset);
7055 return false;
7056 }
7057
7058 switch (get_protocol(skb)) {
7059 case htons(ETH_P_IP):
7060 opts[0] |= TD1_GTSENV4;
7061 break;
7062
7063 case htons(ETH_P_IPV6):
7064 if (msdn_giant_send_check(skb))
7065 return false;
7066
7067 opts[0] |= TD1_GTSENV6;
7068 break;
7069
7070 default:
7071 WARN_ON_ONCE(1);
7072 break;
7073 }
7074
hayeswangbdfa4ed2014-07-11 16:25:57 +08007075 opts[0] |= transport_offset << GTTCPHO_SHIFT;
hayeswang5888d3f2014-07-11 16:25:56 +08007076 opts[1] |= min(mss, TD_MSS_MAX) << TD1_MSS_SHIFT;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007077 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
hayeswange9746042014-07-11 16:25:58 +08007078 u8 ip_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079
françois romieub423e9a2013-05-18 01:24:46 +00007080 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007081 return !(skb_checksum_help(skb) || eth_skb_pad(skb));
françois romieub423e9a2013-05-18 01:24:46 +00007082
hayeswange9746042014-07-11 16:25:58 +08007083 if (transport_offset > TCPHO_MAX) {
7084 netif_warn(tp, tx_err, tp->dev,
7085 "Invalid transport offset 0x%x\n",
7086 transport_offset);
7087 return false;
7088 }
7089
7090 switch (get_protocol(skb)) {
7091 case htons(ETH_P_IP):
7092 opts[1] |= TD1_IPv4_CS;
7093 ip_protocol = ip_hdr(skb)->protocol;
7094 break;
7095
7096 case htons(ETH_P_IPV6):
7097 opts[1] |= TD1_IPv6_CS;
7098 ip_protocol = ipv6_hdr(skb)->nexthdr;
7099 break;
7100
7101 default:
7102 ip_protocol = IPPROTO_RAW;
7103 break;
7104 }
7105
7106 if (ip_protocol == IPPROTO_TCP)
7107 opts[1] |= TD1_TCP_CS;
7108 else if (ip_protocol == IPPROTO_UDP)
7109 opts[1] |= TD1_UDP_CS;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007110 else
7111 WARN_ON_ONCE(1);
hayeswange9746042014-07-11 16:25:58 +08007112
7113 opts[1] |= transport_offset << TCPHO_SHIFT;
françois romieub423e9a2013-05-18 01:24:46 +00007114 } else {
7115 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007116 return !eth_skb_pad(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117 }
hayeswang5888d3f2014-07-11 16:25:56 +08007118
françois romieub423e9a2013-05-18 01:24:46 +00007119 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007120}
7121
Stephen Hemminger613573252009-08-31 19:50:58 +00007122static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
7123 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124{
7125 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007126 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127 struct TxDesc *txd = tp->TxDescArray + entry;
7128 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007129 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007130 dma_addr_t mapping;
7131 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007132 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007133 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02007134
Julien Ducourthial477206a2012-05-09 00:00:06 +02007135 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007136 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007137 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138 }
7139
7140 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007141 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142
françois romieub423e9a2013-05-18 01:24:46 +00007143 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb));
7144 opts[0] = DescOwn;
7145
hayeswange9746042014-07-11 16:25:58 +08007146 if (!tp->tso_csum(tp, skb, opts)) {
7147 r8169_csum_workaround(tp, skb);
7148 return NETDEV_TX_OK;
7149 }
françois romieub423e9a2013-05-18 01:24:46 +00007150
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007151 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007152 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007153 if (unlikely(dma_mapping_error(d, mapping))) {
7154 if (net_ratelimit())
7155 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007156 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007158
7159 tp->tx_skb[entry].len = len;
7160 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161
Francois Romieu2b7b4312011-04-18 22:53:24 -07007162 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007163 if (frags < 0)
7164 goto err_dma_1;
7165 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07007166 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007167 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07007168 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007169 tp->tx_skb[entry].skb = skb;
7170 }
7171
Francois Romieu2b7b4312011-04-18 22:53:24 -07007172 txd->opts2 = cpu_to_le32(opts[1]);
7173
Richard Cochran5047fb52012-03-10 07:29:42 +00007174 skb_tx_timestamp(skb);
7175
Alexander Duycka0750132014-12-11 15:02:17 -08007176 /* Force memory writes to complete before releasing descriptor */
7177 dma_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007178
Francois Romieucecb5fd2011-04-01 10:21:07 +02007179 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07007180 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007181 txd->opts1 = cpu_to_le32(status);
7182
Alexander Duycka0750132014-12-11 15:02:17 -08007183 /* Force all memory writes to complete before notifying device */
David Dillow4c020a92010-03-03 16:33:10 +00007184 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185
Alexander Duycka0750132014-12-11 15:02:17 -08007186 tp->cur_tx += frags + 1;
7187
David S. Miller87cda7c2015-02-22 15:54:29 -05007188 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007189
David S. Miller87cda7c2015-02-22 15:54:29 -05007190 mmiowb();
Francois Romieuda78dbf2012-01-26 14:18:23 +01007191
David S. Miller87cda7c2015-02-22 15:54:29 -05007192 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01007193 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
7194 * not miss a ring update when it notices a stopped queue.
7195 */
7196 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01007198 /* Sync with rtl_tx:
7199 * - publish queue status and cur_tx ring index (write barrier)
7200 * - refresh dirty_tx ring index (read barrier).
7201 * May the current thread have a pessimistic view of the ring
7202 * status and forget to wake up queue, a racing rtl_tx thread
7203 * can't.
7204 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007205 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02007206 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207 netif_wake_queue(dev);
7208 }
7209
Stephen Hemminger613573252009-08-31 19:50:58 +00007210 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007212err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007213 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007214err_dma_0:
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07007215 dev_kfree_skb_any(skb);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007216 dev->stats.tx_dropped++;
7217 return NETDEV_TX_OK;
7218
7219err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007221 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00007222 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007223}
7224
7225static void rtl8169_pcierr_interrupt(struct net_device *dev)
7226{
7227 struct rtl8169_private *tp = netdev_priv(dev);
7228 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007229 u16 pci_status, pci_cmd;
7230
7231 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
7232 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
7233
Joe Perchesbf82c182010-02-09 11:49:50 +00007234 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
7235 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236
7237 /*
7238 * The recovery sequence below admits a very elaborated explanation:
7239 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01007240 * - I did not see what else could be done;
7241 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007242 *
7243 * Feel free to adjust to your needs.
7244 */
Francois Romieua27993f2006-12-18 00:04:19 +01007245 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01007246 pci_cmd &= ~PCI_COMMAND_PARITY;
7247 else
7248 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
7249
7250 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251
7252 pci_write_config_word(pdev, PCI_STATUS,
7253 pci_status & (PCI_STATUS_DETECTED_PARITY |
7254 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
7255 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
7256
7257 /* The infamous DAC f*ckup only happens at boot time */
Timo Teräs9fba0812013-01-15 21:01:24 +00007258 if ((tp->cp_cmd & PCIDAC) && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00007259 void __iomem *ioaddr = tp->mmio_addr;
7260
Joe Perchesbf82c182010-02-09 11:49:50 +00007261 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007262 tp->cp_cmd &= ~PCIDAC;
7263 RTL_W16(CPlusCmd, tp->cp_cmd);
7264 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007265 }
7266
françois romieue6de30d2011-01-03 15:08:37 +00007267 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01007268
Francois Romieu98ddf982012-01-31 10:47:34 +01007269 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007270}
7271
Francois Romieuda78dbf2012-01-26 14:18:23 +01007272static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007273{
7274 unsigned int dirty_tx, tx_left;
7275
Linus Torvalds1da177e2005-04-16 15:20:36 -07007276 dirty_tx = tp->dirty_tx;
7277 smp_rmb();
7278 tx_left = tp->cur_tx - dirty_tx;
7279
7280 while (tx_left > 0) {
7281 unsigned int entry = dirty_tx % NUM_TX_DESC;
7282 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283 u32 status;
7284
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
7286 if (status & DescOwn)
7287 break;
7288
Alexander Duycka0750132014-12-11 15:02:17 -08007289 /* This barrier is needed to keep us from reading
7290 * any other fields out of the Tx descriptor until
7291 * we know the status of DescOwn
7292 */
7293 dma_rmb();
7294
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007295 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
7296 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007297 if (status & LastFrag) {
David S. Miller87cda7c2015-02-22 15:54:29 -05007298 u64_stats_update_begin(&tp->tx_stats.syncp);
7299 tp->tx_stats.packets++;
7300 tp->tx_stats.bytes += tx_skb->skb->len;
7301 u64_stats_update_end(&tp->tx_stats.syncp);
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07007302 dev_kfree_skb_any(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303 tx_skb->skb = NULL;
7304 }
7305 dirty_tx++;
7306 tx_left--;
7307 }
7308
7309 if (tp->dirty_tx != dirty_tx) {
7310 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01007311 /* Sync with rtl8169_start_xmit:
7312 * - publish dirty_tx ring index (write barrier)
7313 * - refresh cur_tx ring index and queue status (read barrier)
7314 * May the current thread miss the stopped queue condition,
7315 * a racing xmit thread can only have a right view of the
7316 * ring status.
7317 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007318 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02007320 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321 netif_wake_queue(dev);
7322 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02007323 /*
7324 * 8168 hack: TxPoll requests are lost when the Tx packets are
7325 * too close. Let's kick an extra TxPoll request when a burst
7326 * of start_xmit activity is detected (if it is not detected,
7327 * it is slow enough). -- FR
7328 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007329 if (tp->cur_tx != dirty_tx) {
7330 void __iomem *ioaddr = tp->mmio_addr;
7331
Francois Romieud78ae2d2007-08-26 20:08:19 +02007332 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334 }
7335}
7336
Francois Romieu126fa4b2005-05-12 20:09:17 -04007337static inline int rtl8169_fragmented_frame(u32 status)
7338{
7339 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
7340}
7341
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007342static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344 u32 status = opts1 & RxProtoMask;
7345
7346 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00007347 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348 skb->ip_summed = CHECKSUM_UNNECESSARY;
7349 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07007350 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351}
7352
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007353static struct sk_buff *rtl8169_try_rx_copy(void *data,
7354 struct rtl8169_private *tp,
7355 int pkt_size,
7356 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02007358 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007359 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007360
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007361 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007362 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007363 prefetch(data);
Alexander Duycke2338f82014-12-09 19:41:09 -08007364 skb = napi_alloc_skb(&tp->napi, pkt_size);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007365 if (skb)
7366 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007367 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
7368
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007369 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370}
7371
Francois Romieuda78dbf2012-01-26 14:18:23 +01007372static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373{
7374 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007375 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377 cur_rx = tp->cur_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378
Timo Teräs9fba0812013-01-15 21:01:24 +00007379 for (rx_left = min(budget, NUM_RX_DESC); rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007381 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382 u32 status;
7383
David S. Miller8decf862011-09-22 03:23:13 -04007384 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385 if (status & DescOwn)
7386 break;
Alexander Duycka0750132014-12-11 15:02:17 -08007387
7388 /* This barrier is needed to keep us from reading
7389 * any other fields out of the Rx descriptor until
7390 * we know the status of DescOwn
7391 */
7392 dma_rmb();
7393
Richard Dawe4dcb7d32005-05-27 21:12:00 +02007394 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007395 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
7396 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007397 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007398 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02007399 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02007401 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007402 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01007403 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007404 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007405 }
Ben Greear6bbe0212012-02-10 15:04:33 +00007406 if ((status & (RxRUNT | RxCRC)) &&
7407 !(status & (RxRWT | RxFOVF)) &&
7408 (dev->features & NETIF_F_RXALL))
7409 goto process_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007410 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007411 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00007412 dma_addr_t addr;
7413 int pkt_size;
7414
7415process_pkt:
7416 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00007417 if (likely(!(dev->features & NETIF_F_RXFCS)))
7418 pkt_size = (status & 0x00003fff) - 4;
7419 else
7420 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421
Francois Romieu126fa4b2005-05-12 20:09:17 -04007422 /*
7423 * The driver does not support incoming fragmented
7424 * frames. They are seen as a symptom of over-mtu
7425 * sized frames.
7426 */
7427 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02007428 dev->stats.rx_dropped++;
7429 dev->stats.rx_length_errors++;
françois romieuce11ff52013-01-24 13:30:06 +00007430 goto release_descriptor;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007431 }
7432
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007433 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
7434 tp, pkt_size, addr);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007435 if (!skb) {
7436 dev->stats.rx_dropped++;
françois romieuce11ff52013-01-24 13:30:06 +00007437 goto release_descriptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438 }
7439
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007440 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441 skb_put(skb, pkt_size);
7442 skb->protocol = eth_type_trans(skb, dev);
7443
Francois Romieu7a8fc772011-03-01 17:18:33 +01007444 rtl8169_rx_vlan_tag(desc, skb);
7445
françois romieu39174292015-11-11 23:35:18 +01007446 if (skb->pkt_type == PACKET_MULTICAST)
7447 dev->stats.multicast++;
7448
Francois Romieu56de4142011-03-15 17:29:31 +01007449 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450
Junchang Wang8027aa22012-03-04 23:30:32 +01007451 u64_stats_update_begin(&tp->rx_stats.syncp);
7452 tp->rx_stats.packets++;
7453 tp->rx_stats.bytes += pkt_size;
7454 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455 }
françois romieuce11ff52013-01-24 13:30:06 +00007456release_descriptor:
7457 desc->opts2 = 0;
françois romieuce11ff52013-01-24 13:30:06 +00007458 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459 }
7460
7461 count = cur_rx - tp->cur_rx;
7462 tp->cur_rx = cur_rx;
7463
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464 return count;
7465}
7466
Francois Romieu07d3f512007-02-21 22:40:46 +01007467static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468{
Francois Romieu07d3f512007-02-21 22:40:46 +01007469 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007472 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007474 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007475 if (status && status != 0xffff) {
7476 status &= RTL_EVENT_NAPI | tp->event_slow;
7477 if (status) {
7478 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00007479
Francois Romieuda78dbf2012-01-26 14:18:23 +01007480 rtl_irq_disable(tp);
7481 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484 return IRQ_RETVAL(handled);
7485}
7486
Francois Romieuda78dbf2012-01-26 14:18:23 +01007487/*
7488 * Workqueue context.
7489 */
7490static void rtl_slow_event_work(struct rtl8169_private *tp)
7491{
7492 struct net_device *dev = tp->dev;
7493 u16 status;
7494
7495 status = rtl_get_events(tp) & tp->event_slow;
7496 rtl_ack_events(tp, status);
7497
7498 if (unlikely(status & RxFIFOOver)) {
7499 switch (tp->mac_version) {
7500 /* Work around for rx fifo overflow */
7501 case RTL_GIGA_MAC_VER_11:
7502 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01007503 /* XXX - Hack alert. See rtl_task(). */
7504 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007505 default:
7506 break;
7507 }
7508 }
7509
7510 if (unlikely(status & SYSErr))
7511 rtl8169_pcierr_interrupt(dev);
7512
7513 if (status & LinkChg)
7514 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
7515
françois romieu7dbb4912012-06-09 10:53:16 +00007516 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007517}
7518
Francois Romieu4422bcd2012-01-26 11:23:32 +01007519static void rtl_task(struct work_struct *work)
7520{
Francois Romieuda78dbf2012-01-26 14:18:23 +01007521 static const struct {
7522 int bitnr;
7523 void (*action)(struct rtl8169_private *);
7524 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01007525 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007526 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
7527 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
7528 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
7529 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01007530 struct rtl8169_private *tp =
7531 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007532 struct net_device *dev = tp->dev;
7533 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01007534
Francois Romieuda78dbf2012-01-26 14:18:23 +01007535 rtl_lock_work(tp);
7536
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007537 if (!netif_running(dev) ||
7538 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01007539 goto out_unlock;
7540
7541 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
7542 bool pending;
7543
Francois Romieuda78dbf2012-01-26 14:18:23 +01007544 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007545 if (pending)
7546 rtl_work[i].action(tp);
7547 }
7548
7549out_unlock:
7550 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01007551}
7552
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007553static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007555 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
7556 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01007557 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
7558 int work_done= 0;
7559 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560
Francois Romieuda78dbf2012-01-26 14:18:23 +01007561 status = rtl_get_events(tp);
7562 rtl_ack_events(tp, status & ~tp->event_slow);
7563
7564 if (status & RTL_EVENT_NAPI_RX)
7565 work_done = rtl_rx(dev, tp, (u32) budget);
7566
7567 if (status & RTL_EVENT_NAPI_TX)
7568 rtl_tx(dev, tp);
7569
7570 if (status & tp->event_slow) {
7571 enable_mask &= ~tp->event_slow;
7572
7573 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
7574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007576 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08007577 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00007578
Francois Romieuda78dbf2012-01-26 14:18:23 +01007579 rtl_irq_enable(tp, enable_mask);
7580 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007581 }
7582
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007583 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585
Francois Romieu523a6092008-09-10 22:28:56 +02007586static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
7587{
7588 struct rtl8169_private *tp = netdev_priv(dev);
7589
7590 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
7591 return;
7592
7593 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
7594 RTL_W32(RxMissed, 0);
7595}
7596
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597static void rtl8169_down(struct net_device *dev)
7598{
7599 struct rtl8169_private *tp = netdev_priv(dev);
7600 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007601
Francois Romieu4876cc12011-03-11 21:07:11 +01007602 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01007604 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007605 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606
Hayes Wang92fc43b2011-07-06 15:58:03 +08007607 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007608 /*
7609 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01007610 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
7611 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007612 */
Francois Romieu523a6092008-09-10 22:28:56 +02007613 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614
Linus Torvalds1da177e2005-04-16 15:20:36 -07007615 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007616 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617
Linus Torvalds1da177e2005-04-16 15:20:36 -07007618 rtl8169_tx_clear(tp);
7619
7620 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00007621
7622 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623}
7624
7625static int rtl8169_close(struct net_device *dev)
7626{
7627 struct rtl8169_private *tp = netdev_priv(dev);
7628 struct pci_dev *pdev = tp->pci_dev;
7629
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007630 pm_runtime_get_sync(&pdev->dev);
7631
Francois Romieucecb5fd2011-04-01 10:21:07 +02007632 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08007633 rtl8169_update_counters(dev);
7634
Francois Romieuda78dbf2012-01-26 14:18:23 +01007635 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007636 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007637
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007639 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007640
Lekensteyn4ea72442013-07-22 09:53:30 +02007641 cancel_work_sync(&tp->wk.work);
7642
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007643 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007644
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00007645 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7646 tp->RxPhyAddr);
7647 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7648 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007649 tp->TxDescArray = NULL;
7650 tp->RxDescArray = NULL;
7651
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007652 pm_runtime_put_sync(&pdev->dev);
7653
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654 return 0;
7655}
7656
Francois Romieudc1c00c2012-03-08 10:06:18 +01007657#ifdef CONFIG_NET_POLL_CONTROLLER
7658static void rtl8169_netpoll(struct net_device *dev)
7659{
7660 struct rtl8169_private *tp = netdev_priv(dev);
7661
7662 rtl8169_interrupt(tp->pci_dev->irq, dev);
7663}
7664#endif
7665
Francois Romieudf43ac72012-03-08 09:48:40 +01007666static int rtl_open(struct net_device *dev)
7667{
7668 struct rtl8169_private *tp = netdev_priv(dev);
7669 void __iomem *ioaddr = tp->mmio_addr;
7670 struct pci_dev *pdev = tp->pci_dev;
7671 int retval = -ENOMEM;
7672
7673 pm_runtime_get_sync(&pdev->dev);
7674
7675 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02007676 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01007677 * dma_alloc_coherent provides more.
7678 */
7679 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
7680 &tp->TxPhyAddr, GFP_KERNEL);
7681 if (!tp->TxDescArray)
7682 goto err_pm_runtime_put;
7683
7684 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
7685 &tp->RxPhyAddr, GFP_KERNEL);
7686 if (!tp->RxDescArray)
7687 goto err_free_tx_0;
7688
7689 retval = rtl8169_init_ring(dev);
7690 if (retval < 0)
7691 goto err_free_rx_1;
7692
7693 INIT_WORK(&tp->wk.work, rtl_task);
7694
7695 smp_mb();
7696
7697 rtl_request_firmware(tp);
7698
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007699 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01007700 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
7701 dev->name, dev);
7702 if (retval < 0)
7703 goto err_release_fw_2;
7704
7705 rtl_lock_work(tp);
7706
7707 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
7708
7709 napi_enable(&tp->napi);
7710
7711 rtl8169_init_phy(dev, tp);
7712
7713 __rtl8169_set_features(dev, dev->features);
7714
7715 rtl_pll_power_up(tp);
7716
7717 rtl_hw_start(dev);
7718
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007719 if (!rtl8169_init_counter_offsets(dev))
7720 netif_warn(tp, hw, dev, "counter reset/update failed\n");
7721
Francois Romieudf43ac72012-03-08 09:48:40 +01007722 netif_start_queue(dev);
7723
7724 rtl_unlock_work(tp);
7725
7726 tp->saved_wolopts = 0;
7727 pm_runtime_put_noidle(&pdev->dev);
7728
7729 rtl8169_check_link_status(dev, tp, ioaddr);
7730out:
7731 return retval;
7732
7733err_release_fw_2:
7734 rtl_release_firmware(tp);
7735 rtl8169_rx_clear(tp);
7736err_free_rx_1:
7737 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7738 tp->RxPhyAddr);
7739 tp->RxDescArray = NULL;
7740err_free_tx_0:
7741 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7742 tp->TxPhyAddr);
7743 tp->TxDescArray = NULL;
7744err_pm_runtime_put:
7745 pm_runtime_put_noidle(&pdev->dev);
7746 goto out;
7747}
7748
Junchang Wang8027aa22012-03-04 23:30:32 +01007749static struct rtnl_link_stats64 *
7750rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751{
7752 struct rtl8169_private *tp = netdev_priv(dev);
7753 void __iomem *ioaddr = tp->mmio_addr;
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007754 struct pci_dev *pdev = tp->pci_dev;
Corinna Vinschen42020322015-09-10 10:47:35 +02007755 struct rtl8169_counters *counters = tp->counters;
Junchang Wang8027aa22012-03-04 23:30:32 +01007756 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007757
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007758 pm_runtime_get_noresume(&pdev->dev);
7759
7760 if (netif_running(dev) && pm_runtime_active(&pdev->dev))
Francois Romieu523a6092008-09-10 22:28:56 +02007761 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02007762
Junchang Wang8027aa22012-03-04 23:30:32 +01007763 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07007764 start = u64_stats_fetch_begin_irq(&tp->rx_stats.syncp);
Junchang Wang8027aa22012-03-04 23:30:32 +01007765 stats->rx_packets = tp->rx_stats.packets;
7766 stats->rx_bytes = tp->rx_stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07007767 } while (u64_stats_fetch_retry_irq(&tp->rx_stats.syncp, start));
Junchang Wang8027aa22012-03-04 23:30:32 +01007768
Junchang Wang8027aa22012-03-04 23:30:32 +01007769 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07007770 start = u64_stats_fetch_begin_irq(&tp->tx_stats.syncp);
Junchang Wang8027aa22012-03-04 23:30:32 +01007771 stats->tx_packets = tp->tx_stats.packets;
7772 stats->tx_bytes = tp->tx_stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07007773 } while (u64_stats_fetch_retry_irq(&tp->tx_stats.syncp, start));
Junchang Wang8027aa22012-03-04 23:30:32 +01007774
7775 stats->rx_dropped = dev->stats.rx_dropped;
7776 stats->tx_dropped = dev->stats.tx_dropped;
7777 stats->rx_length_errors = dev->stats.rx_length_errors;
7778 stats->rx_errors = dev->stats.rx_errors;
7779 stats->rx_crc_errors = dev->stats.rx_crc_errors;
7780 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
7781 stats->rx_missed_errors = dev->stats.rx_missed_errors;
Corinna Vinschend7d2d892015-08-27 17:11:48 +02007782 stats->multicast = dev->stats.multicast;
Junchang Wang8027aa22012-03-04 23:30:32 +01007783
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007784 /*
7785 * Fetch additonal counter values missing in stats collected by driver
7786 * from tally counters.
7787 */
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007788 if (pm_runtime_active(&pdev->dev))
7789 rtl8169_update_counters(dev);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007790
7791 /*
7792 * Subtract values fetched during initalization.
7793 * See rtl8169_init_counter_offsets for a description why we do that.
7794 */
Corinna Vinschen42020322015-09-10 10:47:35 +02007795 stats->tx_errors = le64_to_cpu(counters->tx_errors) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007796 le64_to_cpu(tp->tc_offset.tx_errors);
Corinna Vinschen42020322015-09-10 10:47:35 +02007797 stats->collisions = le32_to_cpu(counters->tx_multi_collision) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007798 le32_to_cpu(tp->tc_offset.tx_multi_collision);
Corinna Vinschen42020322015-09-10 10:47:35 +02007799 stats->tx_aborted_errors = le16_to_cpu(counters->tx_aborted) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007800 le16_to_cpu(tp->tc_offset.tx_aborted);
7801
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007802 pm_runtime_put_noidle(&pdev->dev);
7803
Junchang Wang8027aa22012-03-04 23:30:32 +01007804 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805}
7806
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007807static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01007808{
françois romieu065c27c2011-01-03 15:08:12 +00007809 struct rtl8169_private *tp = netdev_priv(dev);
7810
Francois Romieu5d06a992006-02-23 00:47:58 +01007811 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007812 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01007813
7814 netif_device_detach(dev);
7815 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007816
7817 rtl_lock_work(tp);
7818 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007819 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007820 rtl_unlock_work(tp);
7821
7822 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007823}
Francois Romieu5d06a992006-02-23 00:47:58 +01007824
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007825#ifdef CONFIG_PM
7826
7827static int rtl8169_suspend(struct device *device)
7828{
7829 struct pci_dev *pdev = to_pci_dev(device);
7830 struct net_device *dev = pci_get_drvdata(pdev);
7831
7832 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02007833
Francois Romieu5d06a992006-02-23 00:47:58 +01007834 return 0;
7835}
7836
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007837static void __rtl8169_resume(struct net_device *dev)
7838{
françois romieu065c27c2011-01-03 15:08:12 +00007839 struct rtl8169_private *tp = netdev_priv(dev);
7840
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007841 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00007842
7843 rtl_pll_power_up(tp);
7844
Artem Savkovcff4c162012-04-03 10:29:11 +00007845 rtl_lock_work(tp);
7846 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007847 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00007848 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007849
Francois Romieu98ddf982012-01-31 10:47:34 +01007850 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007851}
7852
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007853static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01007854{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007855 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01007856 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00007857 struct rtl8169_private *tp = netdev_priv(dev);
7858
7859 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01007860
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007861 if (netif_running(dev))
7862 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01007863
Francois Romieu5d06a992006-02-23 00:47:58 +01007864 return 0;
7865}
7866
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007867static int rtl8169_runtime_suspend(struct device *device)
7868{
7869 struct pci_dev *pdev = to_pci_dev(device);
7870 struct net_device *dev = pci_get_drvdata(pdev);
7871 struct rtl8169_private *tp = netdev_priv(dev);
7872
7873 if (!tp->TxDescArray)
7874 return 0;
7875
Francois Romieuda78dbf2012-01-26 14:18:23 +01007876 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007877 tp->saved_wolopts = __rtl8169_get_wol(tp);
7878 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007879 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007880
7881 rtl8169_net_suspend(dev);
7882
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007883 /* Update counters before going runtime suspend */
7884 rtl8169_rx_missed(dev, tp->mmio_addr);
7885 rtl8169_update_counters(dev);
7886
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007887 return 0;
7888}
7889
7890static int rtl8169_runtime_resume(struct device *device)
7891{
7892 struct pci_dev *pdev = to_pci_dev(device);
7893 struct net_device *dev = pci_get_drvdata(pdev);
7894 struct rtl8169_private *tp = netdev_priv(dev);
Chun-Hao Linf51d4a12016-07-29 16:37:56 +08007895 rtl_rar_set(tp, dev->dev_addr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007896
7897 if (!tp->TxDescArray)
7898 return 0;
7899
Francois Romieuda78dbf2012-01-26 14:18:23 +01007900 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007901 __rtl8169_set_wol(tp, tp->saved_wolopts);
7902 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01007903 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007904
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00007905 rtl8169_init_phy(dev, tp);
7906
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007907 __rtl8169_resume(dev);
7908
7909 return 0;
7910}
7911
7912static int rtl8169_runtime_idle(struct device *device)
7913{
7914 struct pci_dev *pdev = to_pci_dev(device);
7915 struct net_device *dev = pci_get_drvdata(pdev);
7916 struct rtl8169_private *tp = netdev_priv(dev);
7917
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00007918 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007919}
7920
Alexey Dobriyan47145212009-12-14 18:00:08 -08007921static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02007922 .suspend = rtl8169_suspend,
7923 .resume = rtl8169_resume,
7924 .freeze = rtl8169_suspend,
7925 .thaw = rtl8169_resume,
7926 .poweroff = rtl8169_suspend,
7927 .restore = rtl8169_resume,
7928 .runtime_suspend = rtl8169_runtime_suspend,
7929 .runtime_resume = rtl8169_runtime_resume,
7930 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007931};
7932
7933#define RTL8169_PM_OPS (&rtl8169_pm_ops)
7934
7935#else /* !CONFIG_PM */
7936
7937#define RTL8169_PM_OPS NULL
7938
7939#endif /* !CONFIG_PM */
7940
David S. Miller1805b2f2011-10-24 18:18:09 -04007941static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
7942{
7943 void __iomem *ioaddr = tp->mmio_addr;
7944
7945 /* WoL fails with 8168b when the receiver is disabled. */
7946 switch (tp->mac_version) {
7947 case RTL_GIGA_MAC_VER_11:
7948 case RTL_GIGA_MAC_VER_12:
7949 case RTL_GIGA_MAC_VER_17:
7950 pci_clear_master(tp->pci_dev);
7951
7952 RTL_W8(ChipCmd, CmdRxEnb);
7953 /* PCI commit */
7954 RTL_R8(ChipCmd);
7955 break;
7956 default:
7957 break;
7958 }
7959}
7960
Francois Romieu1765f952008-09-13 17:21:40 +02007961static void rtl_shutdown(struct pci_dev *pdev)
7962{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007963 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00007964 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00007965 struct device *d = &pdev->dev;
7966
7967 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02007968
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007969 rtl8169_net_suspend(dev);
7970
Francois Romieucecb5fd2011-04-01 10:21:07 +02007971 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08007972 rtl_rar_set(tp, dev->perm_addr);
7973
Hayes Wang92fc43b2011-07-06 15:58:03 +08007974 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00007975
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007976 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04007977 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
7978 rtl_wol_suspend_quirk(tp);
7979 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00007980 }
7981
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007982 pci_wake_from_d3(pdev, true);
7983 pci_set_power_state(pdev, PCI_D3hot);
7984 }
françois romieu2a15cd22012-03-06 01:14:12 +00007985
7986 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007987}
Francois Romieu5d06a992006-02-23 00:47:58 +01007988
Bill Pembertonbaf63292012-12-03 09:23:28 -05007989static void rtl_remove_one(struct pci_dev *pdev)
Francois Romieue27566e2012-03-08 09:54:01 +01007990{
7991 struct net_device *dev = pci_get_drvdata(pdev);
7992 struct rtl8169_private *tp = netdev_priv(dev);
7993
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08007994 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
7995 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08007996 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
7997 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
7998 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
7999 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008000 r8168_check_dash(tp)) {
Francois Romieue27566e2012-03-08 09:54:01 +01008001 rtl8168_driver_stop(tp);
8002 }
8003
Devendra Nagaad1be8d2012-05-31 01:51:20 +00008004 netif_napi_del(&tp->napi);
8005
Francois Romieue27566e2012-03-08 09:54:01 +01008006 unregister_netdev(dev);
8007
Corinna Vinschen42020322015-09-10 10:47:35 +02008008 dma_free_coherent(&tp->pci_dev->dev, sizeof(*tp->counters),
8009 tp->counters, tp->counters_phys_addr);
8010
Francois Romieue27566e2012-03-08 09:54:01 +01008011 rtl_release_firmware(tp);
8012
8013 if (pci_dev_run_wake(pdev))
8014 pm_runtime_get_noresume(&pdev->dev);
8015
8016 /* restore original MAC address */
8017 rtl_rar_set(tp, dev->perm_addr);
8018
8019 rtl_disable_msi(pdev, tp);
8020 rtl8169_release_board(pdev, dev, tp->mmio_addr);
Francois Romieue27566e2012-03-08 09:54:01 +01008021}
8022
Francois Romieufa9c3852012-03-08 10:01:50 +01008023static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01008024 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01008025 .ndo_stop = rtl8169_close,
8026 .ndo_get_stats64 = rtl8169_get_stats64,
8027 .ndo_start_xmit = rtl8169_start_xmit,
8028 .ndo_tx_timeout = rtl8169_tx_timeout,
8029 .ndo_validate_addr = eth_validate_addr,
8030 .ndo_change_mtu = rtl8169_change_mtu,
8031 .ndo_fix_features = rtl8169_fix_features,
8032 .ndo_set_features = rtl8169_set_features,
8033 .ndo_set_mac_address = rtl_set_mac_address,
8034 .ndo_do_ioctl = rtl8169_ioctl,
8035 .ndo_set_rx_mode = rtl_set_rx_mode,
8036#ifdef CONFIG_NET_POLL_CONTROLLER
8037 .ndo_poll_controller = rtl8169_netpoll,
8038#endif
8039
8040};
8041
Francois Romieu31fa8b12012-03-08 10:09:40 +01008042static const struct rtl_cfg_info {
8043 void (*hw_start)(struct net_device *);
8044 unsigned int region;
8045 unsigned int align;
8046 u16 event_slow;
8047 unsigned features;
8048 u8 default_ver;
8049} rtl_cfg_infos [] = {
8050 [RTL_CFG_0] = {
8051 .hw_start = rtl_hw_start_8169,
8052 .region = 1,
8053 .align = 0,
8054 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
8055 .features = RTL_FEATURE_GMII,
8056 .default_ver = RTL_GIGA_MAC_VER_01,
8057 },
8058 [RTL_CFG_1] = {
8059 .hw_start = rtl_hw_start_8168,
8060 .region = 2,
8061 .align = 8,
8062 .event_slow = SYSErr | LinkChg | RxOverflow,
8063 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
8064 .default_ver = RTL_GIGA_MAC_VER_11,
8065 },
8066 [RTL_CFG_2] = {
8067 .hw_start = rtl_hw_start_8101,
8068 .region = 2,
8069 .align = 8,
8070 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
8071 PCSTimeout,
8072 .features = RTL_FEATURE_MSI,
8073 .default_ver = RTL_GIGA_MAC_VER_13,
8074 }
8075};
8076
8077/* Cfg9346_Unlock assumed. */
8078static unsigned rtl_try_msi(struct rtl8169_private *tp,
8079 const struct rtl_cfg_info *cfg)
8080{
8081 void __iomem *ioaddr = tp->mmio_addr;
8082 unsigned msi = 0;
8083 u8 cfg2;
8084
8085 cfg2 = RTL_R8(Config2) & ~MSIEnable;
8086 if (cfg->features & RTL_FEATURE_MSI) {
8087 if (pci_enable_msi(tp->pci_dev)) {
8088 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
8089 } else {
8090 cfg2 |= MSIEnable;
8091 msi = RTL_FEATURE_MSI;
8092 }
8093 }
8094 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
8095 RTL_W8(Config2, cfg2);
8096 return msi;
8097}
8098
Hayes Wangc5583862012-07-02 17:23:22 +08008099DECLARE_RTL_COND(rtl_link_list_ready_cond)
8100{
8101 void __iomem *ioaddr = tp->mmio_addr;
8102
8103 return RTL_R8(MCU) & LINK_LIST_RDY;
8104}
8105
8106DECLARE_RTL_COND(rtl_rxtx_empty_cond)
8107{
8108 void __iomem *ioaddr = tp->mmio_addr;
8109
8110 return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
8111}
8112
Bill Pembertonbaf63292012-12-03 09:23:28 -05008113static void rtl_hw_init_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008114{
8115 void __iomem *ioaddr = tp->mmio_addr;
8116 u32 data;
8117
8118 tp->ocp_base = OCP_STD_PHY_BASE;
8119
8120 RTL_W32(MISC, RTL_R32(MISC) | RXDV_GATED_EN);
8121
8122 if (!rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 42))
8123 return;
8124
8125 if (!rtl_udelay_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42))
8126 return;
8127
8128 RTL_W8(ChipCmd, RTL_R8(ChipCmd) & ~(CmdTxEnb | CmdRxEnb));
8129 msleep(1);
8130 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
8131
Hayes Wang5f8bcce2012-07-10 08:47:05 +02008132 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08008133 data &= ~(1 << 14);
8134 r8168_mac_ocp_write(tp, 0xe8de, data);
8135
8136 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
8137 return;
8138
Hayes Wang5f8bcce2012-07-10 08:47:05 +02008139 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08008140 data |= (1 << 15);
8141 r8168_mac_ocp_write(tp, 0xe8de, data);
8142
8143 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
8144 return;
8145}
8146
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008147static void rtl_hw_init_8168ep(struct rtl8169_private *tp)
8148{
8149 rtl8168ep_stop_cmac(tp);
8150 rtl_hw_init_8168g(tp);
8151}
8152
Bill Pembertonbaf63292012-12-03 09:23:28 -05008153static void rtl_hw_initialize(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008154{
8155 switch (tp->mac_version) {
8156 case RTL_GIGA_MAC_VER_40:
8157 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00008158 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00008159 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08008160 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008161 case RTL_GIGA_MAC_VER_45:
8162 case RTL_GIGA_MAC_VER_46:
8163 case RTL_GIGA_MAC_VER_47:
8164 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008165 rtl_hw_init_8168g(tp);
8166 break;
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008167 case RTL_GIGA_MAC_VER_49:
8168 case RTL_GIGA_MAC_VER_50:
8169 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008170 rtl_hw_init_8168ep(tp);
Hayes Wangc5583862012-07-02 17:23:22 +08008171 break;
Hayes Wangc5583862012-07-02 17:23:22 +08008172 default:
8173 break;
8174 }
8175}
8176
hayeswang929a0312014-09-16 11:40:47 +08008177static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Francois Romieu3b6cf252012-03-08 09:59:04 +01008178{
8179 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
8180 const unsigned int region = cfg->region;
8181 struct rtl8169_private *tp;
8182 struct mii_if_info *mii;
8183 struct net_device *dev;
8184 void __iomem *ioaddr;
8185 int chipset, i;
8186 int rc;
8187
8188 if (netif_msg_drv(&debug)) {
8189 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
8190 MODULENAME, RTL8169_VERSION);
8191 }
8192
8193 dev = alloc_etherdev(sizeof (*tp));
8194 if (!dev) {
8195 rc = -ENOMEM;
8196 goto out;
8197 }
8198
8199 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01008200 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008201 tp = netdev_priv(dev);
8202 tp->dev = dev;
8203 tp->pci_dev = pdev;
8204 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
8205
8206 mii = &tp->mii;
8207 mii->dev = dev;
8208 mii->mdio_read = rtl_mdio_read;
8209 mii->mdio_write = rtl_mdio_write;
8210 mii->phy_id_mask = 0x1f;
8211 mii->reg_num_mask = 0x1f;
8212 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
8213
8214 /* disable ASPM completely as that cause random device stop working
8215 * problems as well as full system hangs for some PCIe devices users */
8216 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
8217 PCIE_LINK_STATE_CLKPM);
8218
8219 /* enable device (incl. PCI PM wakeup and hotplug setup) */
8220 rc = pci_enable_device(pdev);
8221 if (rc < 0) {
8222 netif_err(tp, probe, dev, "enable failure\n");
8223 goto err_out_free_dev_1;
8224 }
8225
8226 if (pci_set_mwi(pdev) < 0)
8227 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
8228
8229 /* make sure PCI base addr 1 is MMIO */
8230 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
8231 netif_err(tp, probe, dev,
8232 "region #%d not an MMIO resource, aborting\n",
8233 region);
8234 rc = -ENODEV;
8235 goto err_out_mwi_2;
8236 }
8237
8238 /* check for weird/broken PCI region reporting */
8239 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
8240 netif_err(tp, probe, dev,
8241 "Invalid PCI region size(s), aborting\n");
8242 rc = -ENODEV;
8243 goto err_out_mwi_2;
8244 }
8245
8246 rc = pci_request_regions(pdev, MODULENAME);
8247 if (rc < 0) {
8248 netif_err(tp, probe, dev, "could not request regions\n");
8249 goto err_out_mwi_2;
8250 }
8251
Francois Romieu3b6cf252012-03-08 09:59:04 +01008252 /* ioremap MMIO region */
8253 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
8254 if (!ioaddr) {
8255 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
8256 rc = -EIO;
8257 goto err_out_free_res_3;
8258 }
8259 tp->mmio_addr = ioaddr;
8260
8261 if (!pci_is_pcie(pdev))
8262 netif_info(tp, probe, dev, "not PCI Express\n");
8263
8264 /* Identify chip attached to board */
8265 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
8266
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008267 tp->cp_cmd = 0;
8268
8269 if ((sizeof(dma_addr_t) > 4) &&
8270 (use_dac == 1 || (use_dac == -1 && pci_is_pcie(pdev) &&
8271 tp->mac_version >= RTL_GIGA_MAC_VER_18)) &&
Ard Biesheuvelf0076432016-10-14 14:40:33 +01008272 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) &&
8273 !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) {
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008274
8275 /* CPlusCmd Dual Access Cycle is only needed for non-PCIe */
8276 if (!pci_is_pcie(pdev))
8277 tp->cp_cmd |= PCIDAC;
8278 dev->features |= NETIF_F_HIGHDMA;
8279 } else {
8280 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8281 if (rc < 0) {
8282 netif_err(tp, probe, dev, "DMA configuration failed\n");
8283 goto err_out_unmap_4;
8284 }
8285 }
8286
Francois Romieu3b6cf252012-03-08 09:59:04 +01008287 rtl_init_rxcfg(tp);
8288
8289 rtl_irq_disable(tp);
8290
Hayes Wangc5583862012-07-02 17:23:22 +08008291 rtl_hw_initialize(tp);
8292
Francois Romieu3b6cf252012-03-08 09:59:04 +01008293 rtl_hw_reset(tp);
8294
8295 rtl_ack_events(tp, 0xffff);
8296
8297 pci_set_master(pdev);
8298
Francois Romieu3b6cf252012-03-08 09:59:04 +01008299 rtl_init_mdio_ops(tp);
8300 rtl_init_pll_power_ops(tp);
8301 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08008302 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008303
8304 rtl8169_print_mac_version(tp);
8305
8306 chipset = tp->mac_version;
8307 tp->txd_version = rtl_chip_infos[chipset].txd_version;
8308
8309 RTL_W8(Cfg9346, Cfg9346_Unlock);
8310 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
Peter Wu8f9d5132013-08-17 11:00:02 +02008311 RTL_W8(Config5, RTL_R8(Config5) & (BWF | MWF | UWF | LanWake | PMEStatus));
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008312 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008313 case RTL_GIGA_MAC_VER_34:
8314 case RTL_GIGA_MAC_VER_35:
8315 case RTL_GIGA_MAC_VER_36:
8316 case RTL_GIGA_MAC_VER_37:
8317 case RTL_GIGA_MAC_VER_38:
8318 case RTL_GIGA_MAC_VER_40:
8319 case RTL_GIGA_MAC_VER_41:
8320 case RTL_GIGA_MAC_VER_42:
8321 case RTL_GIGA_MAC_VER_43:
8322 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008323 case RTL_GIGA_MAC_VER_45:
8324 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008325 case RTL_GIGA_MAC_VER_47:
8326 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008327 case RTL_GIGA_MAC_VER_49:
8328 case RTL_GIGA_MAC_VER_50:
8329 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008330 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
8331 tp->features |= RTL_FEATURE_WOL;
8332 if ((RTL_R8(Config3) & LinkUp) != 0)
8333 tp->features |= RTL_FEATURE_WOL;
8334 break;
8335 default:
8336 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
8337 tp->features |= RTL_FEATURE_WOL;
8338 break;
8339 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008340 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
8341 tp->features |= RTL_FEATURE_WOL;
8342 tp->features |= rtl_try_msi(tp, cfg);
8343 RTL_W8(Cfg9346, Cfg9346_Lock);
8344
8345 if (rtl_tbi_enabled(tp)) {
8346 tp->set_speed = rtl8169_set_speed_tbi;
8347 tp->get_settings = rtl8169_gset_tbi;
8348 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
8349 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
8350 tp->link_ok = rtl8169_tbi_link_ok;
8351 tp->do_ioctl = rtl_tbi_ioctl;
8352 } else {
8353 tp->set_speed = rtl8169_set_speed_xmii;
8354 tp->get_settings = rtl8169_gset_xmii;
8355 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
8356 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
8357 tp->link_ok = rtl8169_xmii_link_ok;
8358 tp->do_ioctl = rtl_xmii_ioctl;
8359 }
8360
8361 mutex_init(&tp->wk.mutex);
Kyle McMartin340fea32014-02-24 20:12:28 -05008362 u64_stats_init(&tp->rx_stats.syncp);
8363 u64_stats_init(&tp->tx_stats.syncp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008364
8365 /* Get MAC address */
Chun-Hao Lin89cceb22014-10-01 23:17:15 +08008366 if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
8367 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
8368 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
8369 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
8370 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
8371 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
8372 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
8373 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
8374 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
8375 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008376 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
8377 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008378 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
8379 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8380 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8381 tp->mac_version == RTL_GIGA_MAC_VER_51) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008382 u16 mac_addr[3];
8383
Chun-Hao Lin05b96872014-10-01 23:17:12 +08008384 *(u32 *)&mac_addr[0] = rtl_eri_read(tp, 0xe0, ERIAR_EXGMAC);
8385 *(u16 *)&mac_addr[2] = rtl_eri_read(tp, 0xe4, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008386
8387 if (is_valid_ether_addr((u8 *)mac_addr))
8388 rtl_rar_set(tp, (u8 *)mac_addr);
8389 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008390 for (i = 0; i < ETH_ALEN; i++)
8391 dev->dev_addr[i] = RTL_R8(MAC0 + i);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008392
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00008393 dev->ethtool_ops = &rtl8169_ethtool_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008394 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008395
8396 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
8397
8398 /* don't enable SG, IP_CSUM and TSO by default - it might not work
8399 * properly for all devices */
8400 dev->features |= NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00008401 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008402
8403 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
Patrick McHardyf6469682013-04-19 02:04:27 +00008404 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_TX |
8405 NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008406 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
8407 NETIF_F_HIGHDMA;
8408
hayeswang929a0312014-09-16 11:40:47 +08008409 tp->cp_cmd |= RxChkSum | RxVlan;
8410
8411 /*
8412 * Pretend we are using VLANs; This bypasses a nasty bug where
8413 * Interrupts stop flowing on high load on 8110SCd controllers.
8414 */
Francois Romieu3b6cf252012-03-08 09:59:04 +01008415 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
hayeswang929a0312014-09-16 11:40:47 +08008416 /* Disallow toggling */
Patrick McHardyf6469682013-04-19 02:04:27 +00008417 dev->hw_features &= ~NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008418
hayeswang5888d3f2014-07-11 16:25:56 +08008419 if (tp->txd_version == RTL_TD_0)
8420 tp->tso_csum = rtl8169_tso_csum_v1;
hayeswange9746042014-07-11 16:25:58 +08008421 else if (tp->txd_version == RTL_TD_1) {
hayeswang5888d3f2014-07-11 16:25:56 +08008422 tp->tso_csum = rtl8169_tso_csum_v2;
hayeswange9746042014-07-11 16:25:58 +08008423 dev->hw_features |= NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
8424 } else
hayeswang5888d3f2014-07-11 16:25:56 +08008425 WARN_ON_ONCE(1);
8426
Francois Romieu3b6cf252012-03-08 09:59:04 +01008427 dev->hw_features |= NETIF_F_RXALL;
8428 dev->hw_features |= NETIF_F_RXFCS;
8429
8430 tp->hw_start = cfg->hw_start;
8431 tp->event_slow = cfg->event_slow;
8432
8433 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
8434 ~(RxBOVF | RxFOVF) : ~0;
8435
8436 init_timer(&tp->timer);
8437 tp->timer.data = (unsigned long) dev;
8438 tp->timer.function = rtl8169_phy_timer;
8439
8440 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
8441
Corinna Vinschen42020322015-09-10 10:47:35 +02008442 tp->counters = dma_alloc_coherent (&pdev->dev, sizeof(*tp->counters),
8443 &tp->counters_phys_addr, GFP_KERNEL);
8444 if (!tp->counters) {
8445 rc = -ENOMEM;
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008446 goto err_out_msi_5;
Corinna Vinschen42020322015-09-10 10:47:35 +02008447 }
8448
Francois Romieu3b6cf252012-03-08 09:59:04 +01008449 rc = register_netdev(dev);
8450 if (rc < 0)
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008451 goto err_out_cnt_6;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008452
8453 pci_set_drvdata(pdev, dev);
8454
Francois Romieu92a7c4e2012-03-10 10:42:12 +01008455 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
8456 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
8457 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008458 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
8459 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
8460 "tx checksumming: %s]\n",
8461 rtl_chip_infos[chipset].jumbo_max,
8462 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
8463 }
8464
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008465 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
8466 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008467 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
8468 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8469 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8470 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008471 r8168_check_dash(tp)) {
Francois Romieu3b6cf252012-03-08 09:59:04 +01008472 rtl8168_driver_start(tp);
8473 }
8474
8475 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
8476
8477 if (pci_dev_run_wake(pdev))
8478 pm_runtime_put_noidle(&pdev->dev);
8479
8480 netif_carrier_off(dev);
8481
8482out:
8483 return rc;
8484
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008485err_out_cnt_6:
Corinna Vinschen42020322015-09-10 10:47:35 +02008486 dma_free_coherent(&pdev->dev, sizeof(*tp->counters), tp->counters,
8487 tp->counters_phys_addr);
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008488err_out_msi_5:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00008489 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008490 rtl_disable_msi(pdev, tp);
Ard Biesheuvel27896c82016-05-14 22:40:15 +02008491err_out_unmap_4:
Francois Romieu3b6cf252012-03-08 09:59:04 +01008492 iounmap(ioaddr);
8493err_out_free_res_3:
8494 pci_release_regions(pdev);
8495err_out_mwi_2:
8496 pci_clear_mwi(pdev);
8497 pci_disable_device(pdev);
8498err_out_free_dev_1:
8499 free_netdev(dev);
8500 goto out;
8501}
8502
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503static struct pci_driver rtl8169_pci_driver = {
8504 .name = MODULENAME,
8505 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01008506 .probe = rtl_init_one,
Bill Pembertonbaf63292012-12-03 09:23:28 -05008507 .remove = rtl_remove_one,
Francois Romieu1765f952008-09-13 17:21:40 +02008508 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008509 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510};
8511
Devendra Naga3eeb7da2012-10-26 09:27:42 +00008512module_pci_driver(rtl8169_pci_driver);