blob: 537974cfd427091442acc9098a0a40535bbda431 [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 },
Francois Romieud81bf552006-09-20 21:31:20 +0200329 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100330 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200331 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
Francois Romieu2a35cfa2012-08-31 23:06:17 +0200332 { PCI_VENDOR_ID_DLINK, 0x4300,
333 PCI_VENDOR_ID_DLINK, 0x4b10, 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200334 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000335 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200336 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200337 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
338 { PCI_VENDOR_ID_LINKSYS, 0x1032,
339 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100340 { 0x0001, 0x8168,
341 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 {0,},
343};
344
345MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
346
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000347static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700348static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200349static struct {
350 u32 msg_enable;
351} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Francois Romieu07d3f512007-02-21 22:40:46 +0100353enum rtl_registers {
354 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100355 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100356 MAR0 = 8, /* Multicast filter. */
357 CounterAddrLow = 0x10,
358 CounterAddrHigh = 0x14,
359 TxDescStartAddrLow = 0x20,
360 TxDescStartAddrHigh = 0x24,
361 TxHDescStartAddrLow = 0x28,
362 TxHDescStartAddrHigh = 0x2c,
363 FLASH = 0x30,
364 ERSR = 0x36,
365 ChipCmd = 0x37,
366 TxPoll = 0x38,
367 IntrMask = 0x3c,
368 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700369
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800370 TxConfig = 0x40,
371#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
372#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
373
374 RxConfig = 0x44,
375#define RX128_INT_EN (1 << 15) /* 8111c and later */
376#define RX_MULTI_EN (1 << 14) /* 8111c only */
377#define RXCFG_FIFO_SHIFT 13
378 /* No threshold before first PCI xfer */
379#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
hayeswangbeb330a2013-04-01 22:23:39 +0000380#define RX_EARLY_OFF (1 << 11)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800381#define RXCFG_DMA_SHIFT 8
382 /* Unlimited maximum PCI burst. */
383#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700384
Francois Romieu07d3f512007-02-21 22:40:46 +0100385 RxMissed = 0x4c,
386 Cfg9346 = 0x50,
387 Config0 = 0x51,
388 Config1 = 0x52,
389 Config2 = 0x53,
Francois Romieud387b422012-04-17 11:12:01 +0200390#define PME_SIGNAL (1 << 5) /* 8168c and later */
391
Francois Romieu07d3f512007-02-21 22:40:46 +0100392 Config3 = 0x54,
393 Config4 = 0x55,
394 Config5 = 0x56,
395 MultiIntr = 0x5c,
396 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100397 PHYstatus = 0x6c,
398 RxMaxSize = 0xda,
399 CPlusCmd = 0xe0,
400 IntrMitigate = 0xe2,
401 RxDescAddrLow = 0xe4,
402 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000403 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
404
405#define NoEarlyTx 0x3f /* Max value : no early transmit. */
406
407 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
408
409#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800410#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000411
Francois Romieu07d3f512007-02-21 22:40:46 +0100412 FuncEvent = 0xf0,
413 FuncEventMask = 0xf4,
414 FuncPresetState = 0xf8,
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800415 IBCR0 = 0xf8,
416 IBCR2 = 0xf9,
417 IBIMR0 = 0xfa,
418 IBISR0 = 0xfb,
Francois Romieu07d3f512007-02-21 22:40:46 +0100419 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
Francois Romieuf162a5d2008-06-01 22:37:49 +0200422enum rtl8110_registers {
423 TBICSR = 0x64,
424 TBI_ANAR = 0x68,
425 TBI_LPAR = 0x6a,
426};
427
428enum rtl8168_8101_registers {
429 CSIDR = 0x64,
430 CSIAR = 0x68,
431#define CSIAR_FLAG 0x80000000
432#define CSIAR_WRITE_CMD 0x80000000
433#define CSIAR_BYTE_ENABLE 0x0f
434#define CSIAR_BYTE_ENABLE_SHIFT 12
435#define CSIAR_ADDR_MASK 0x0fff
Hayes Wang7e18dca2012-03-30 14:33:02 +0800436#define CSIAR_FUNC_CARD 0x00000000
437#define CSIAR_FUNC_SDIO 0x00010000
438#define CSIAR_FUNC_NIC 0x00020000
hayeswang45dd95c2013-07-08 17:09:01 +0800439#define CSIAR_FUNC_NIC2 0x00010000
françois romieu065c27c2011-01-03 15:08:12 +0000440 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200441 EPHYAR = 0x80,
442#define EPHYAR_FLAG 0x80000000
443#define EPHYAR_WRITE_CMD 0x80000000
444#define EPHYAR_REG_MASK 0x1f
445#define EPHYAR_REG_SHIFT 16
446#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800447 DLLPR = 0xd0,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800448#define PFM_EN (1 << 6)
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800449#define TX_10M_PS_EN (1 << 7)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200450 DBG_REG = 0xd1,
451#define FIX_NAK_1 (1 << 4)
452#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800453 TWSI = 0xd2,
454 MCU = 0xd3,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800455#define NOW_IS_OOB (1 << 7)
Hayes Wangc5583862012-07-02 17:23:22 +0800456#define TX_EMPTY (1 << 5)
457#define RX_EMPTY (1 << 4)
458#define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800459#define EN_NDP (1 << 3)
460#define EN_OOB_RESET (1 << 2)
Hayes Wangc5583862012-07-02 17:23:22 +0800461#define LINK_LIST_RDY (1 << 1)
françois romieudaf9df62009-10-07 12:44:20 +0000462 EFUSEAR = 0xdc,
463#define EFUSEAR_FLAG 0x80000000
464#define EFUSEAR_WRITE_CMD 0x80000000
465#define EFUSEAR_READ_CMD 0x00000000
466#define EFUSEAR_REG_MASK 0x03ff
467#define EFUSEAR_REG_SHIFT 8
468#define EFUSEAR_DATA_MASK 0xff
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800469 MISC_1 = 0xf2,
470#define PFM_D3COLD_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200471};
472
françois romieuc0e45c12011-01-03 15:08:04 +0000473enum rtl8168_registers {
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800474 LED_FREQ = 0x1a,
475 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000476 ERIDR = 0x70,
477 ERIAR = 0x74,
478#define ERIAR_FLAG 0x80000000
479#define ERIAR_WRITE_CMD 0x80000000
480#define ERIAR_READ_CMD 0x00000000
481#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000482#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800483#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
484#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
485#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
Chun-Hao Lin935e2212014-10-07 15:10:41 +0800486#define ERIAR_OOB (0x02 << ERIAR_TYPE_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800487#define ERIAR_MASK_SHIFT 12
488#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
489#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800490#define ERIAR_MASK_0100 (0x4 << ERIAR_MASK_SHIFT)
Hayes Wangc5583862012-07-02 17:23:22 +0800491#define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800492#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000493 EPHY_RXER_NUM = 0x7c,
494 OCPDR = 0xb0, /* OCP GPHY access */
495#define OCPDR_WRITE_CMD 0x80000000
496#define OCPDR_READ_CMD 0x00000000
497#define OCPDR_REG_MASK 0x7f
498#define OCPDR_GPHY_REG_SHIFT 16
499#define OCPDR_DATA_MASK 0xffff
500 OCPAR = 0xb4,
501#define OCPAR_FLAG 0x80000000
502#define OCPAR_GPHY_WRITE_CMD 0x8000f060
503#define OCPAR_GPHY_READ_CMD 0x0000f060
Hayes Wangc5583862012-07-02 17:23:22 +0800504 GPHY_OCP = 0xb8,
hayeswang01dc7fe2011-03-21 01:50:28 +0000505 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
506 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200507#define TXPLA_RST (1 << 29)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800508#define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800509#define PWM_EN (1 << 22)
Hayes Wangc5583862012-07-02 17:23:22 +0800510#define RXDV_GATED_EN (1 << 19)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800511#define EARLY_TALLY_EN (1 << 16)
françois romieuc0e45c12011-01-03 15:08:04 +0000512};
513
Francois Romieu07d3f512007-02-21 22:40:46 +0100514enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100516 SYSErr = 0x8000,
517 PCSTimeout = 0x4000,
518 SWInt = 0x0100,
519 TxDescUnavail = 0x0080,
520 RxFIFOOver = 0x0040,
521 LinkChg = 0x0020,
522 RxOverflow = 0x0010,
523 TxErr = 0x0008,
524 TxOK = 0x0004,
525 RxErr = 0x0002,
526 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400529 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200530 RxFOVF = (1 << 23),
531 RxRWT = (1 << 22),
532 RxRES = (1 << 21),
533 RxRUNT = (1 << 20),
534 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 /* ChipCmdBits */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800537 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100538 CmdReset = 0x10,
539 CmdRxEnb = 0x08,
540 CmdTxEnb = 0x04,
541 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Francois Romieu275391a2007-02-23 23:50:28 +0100543 /* TXPoll register p.5 */
544 HPQ = 0x80, /* Poll cmd on the high prio queue */
545 NPQ = 0x40, /* Poll cmd on the low prio queue */
546 FSWInt = 0x01, /* Forced software interrupt */
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100549 Cfg9346_Lock = 0x00,
550 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100553 AcceptErr = 0x20,
554 AcceptRunt = 0x10,
555 AcceptBroadcast = 0x08,
556 AcceptMulticast = 0x04,
557 AcceptMyPhys = 0x02,
558 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200559#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 /* TxConfigBits */
562 TxInterFrameGapShift = 24,
563 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
564
Francois Romieu5d06a992006-02-23 00:47:58 +0100565 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200566 LEDS1 = (1 << 7),
567 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200568 Speed_down = (1 << 4),
569 MEMMAP = (1 << 3),
570 IOMAP = (1 << 2),
571 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100572 PMEnable = (1 << 0), /* Power Management Enable */
573
Francois Romieu6dccd162007-02-13 23:38:05 +0100574 /* Config2 register p. 25 */
hayeswang57538c42013-04-01 22:23:40 +0000575 ClkReqEn = (1 << 7), /* Clock Request Enable */
françois romieu2ca6cf02011-12-15 08:37:43 +0000576 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100577 PCI_Clock_66MHz = 0x01,
578 PCI_Clock_33MHz = 0x00,
579
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100580 /* Config3 register p.25 */
581 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
582 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200583 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
hayeswangb51ecea2014-07-09 14:52:51 +0800584 Rdy_to_L23 = (1 << 1), /* L23 Enable */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200585 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100586
Francois Romieud58d46b2011-05-03 16:38:29 +0200587 /* Config4 register */
588 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
589
Francois Romieu5d06a992006-02-23 00:47:58 +0100590 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100591 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
592 MWF = (1 << 5), /* Accept Multicast wakeup frame */
593 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200594 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100595 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100596 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
hayeswang57538c42013-04-01 22:23:40 +0000597 ASPM_en = (1 << 0), /* ASPM enable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* TBICSR p.28 */
600 TBIReset = 0x80000000,
601 TBILoopback = 0x40000000,
602 TBINwEnable = 0x20000000,
603 TBINwRestart = 0x10000000,
604 TBILinkOk = 0x02000000,
605 TBINwComplete = 0x01000000,
606
607 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200608 EnableBist = (1 << 15), // 8168 8101
609 Mac_dbgo_oe = (1 << 14), // 8168 8101
610 Normal_mode = (1 << 13), // unused
611 Force_half_dup = (1 << 12), // 8168 8101
612 Force_rxflow_en = (1 << 11), // 8168 8101
613 Force_txflow_en = (1 << 10), // 8168 8101
614 Cxpl_dbg_sel = (1 << 9), // 8168 8101
615 ASF = (1 << 8), // 8168 8101
616 PktCntrDisable = (1 << 7), // 8168 8101
617 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 RxVlan = (1 << 6),
619 RxChkSum = (1 << 5),
620 PCIDAC = (1 << 4),
621 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100622 INTT_0 = 0x0000, // 8168
623 INTT_1 = 0x0001, // 8168
624 INTT_2 = 0x0002, // 8168
625 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100628 TBI_Enable = 0x80,
629 TxFlowCtrl = 0x40,
630 RxFlowCtrl = 0x20,
631 _1000bpsF = 0x10,
632 _100bps = 0x08,
633 _10bps = 0x04,
634 LinkStatus = 0x02,
635 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100638 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200639
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200640 /* ResetCounterCommand */
641 CounterReset = 0x1,
642
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200643 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100644 CounterDump = 0x8,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800645
646 /* magic enable v2 */
647 MagicPacket_v2 = (1 << 16), /* Wake up when receives a Magic Packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648};
649
Francois Romieu2b7b4312011-04-18 22:53:24 -0700650enum rtl_desc_bit {
651 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
653 RingEnd = (1 << 30), /* End of descriptor ring */
654 FirstFrag = (1 << 29), /* First segment of a packet */
655 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700656};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Francois Romieu2b7b4312011-04-18 22:53:24 -0700658/* Generic case. */
659enum rtl_tx_desc_bit {
660 /* First doubleword. */
661 TD_LSO = (1 << 27), /* Large Send Offload */
662#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Francois Romieu2b7b4312011-04-18 22:53:24 -0700664 /* Second doubleword. */
665 TxVlanTag = (1 << 17), /* Add VLAN tag */
666};
667
668/* 8169, 8168b and 810x except 8102e. */
669enum rtl_tx_desc_bit_0 {
670 /* First doubleword. */
671#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
672 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
673 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
674 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
675};
676
677/* 8102e, 8168c and beyond. */
678enum rtl_tx_desc_bit_1 {
hayeswangbdfa4ed2014-07-11 16:25:57 +0800679 /* First doubleword. */
680 TD1_GTSENV4 = (1 << 26), /* Giant Send for IPv4 */
hayeswange9746042014-07-11 16:25:58 +0800681 TD1_GTSENV6 = (1 << 25), /* Giant Send for IPv6 */
hayeswangbdfa4ed2014-07-11 16:25:57 +0800682#define GTTCPHO_SHIFT 18
hayeswange9746042014-07-11 16:25:58 +0800683#define GTTCPHO_MAX 0x7fU
hayeswangbdfa4ed2014-07-11 16:25:57 +0800684
Francois Romieu2b7b4312011-04-18 22:53:24 -0700685 /* Second doubleword. */
hayeswange9746042014-07-11 16:25:58 +0800686#define TCPHO_SHIFT 18
687#define TCPHO_MAX 0x3ffU
Francois Romieu2b7b4312011-04-18 22:53:24 -0700688#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
hayeswange9746042014-07-11 16:25:58 +0800689 TD1_IPv6_CS = (1 << 28), /* Calculate IPv6 checksum */
690 TD1_IPv4_CS = (1 << 29), /* Calculate IPv4 checksum */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700691 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
692 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
693};
694
Francois Romieu2b7b4312011-04-18 22:53:24 -0700695enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 /* Rx private */
697 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
698 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
699
700#define RxProtoUDP (PID1)
701#define RxProtoTCP (PID0)
702#define RxProtoIP (PID1 | PID0)
703#define RxProtoMask RxProtoIP
704
705 IPFail = (1 << 16), /* IP checksum failed */
706 UDPFail = (1 << 15), /* UDP/IP checksum failed */
707 TCPFail = (1 << 14), /* TCP/IP checksum failed */
708 RxVlanTag = (1 << 16), /* VLAN tag available */
709};
710
711#define RsvdMask 0x3fffc000
712
713struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200714 __le32 opts1;
715 __le32 opts2;
716 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717};
718
719struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200720 __le32 opts1;
721 __le32 opts2;
722 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723};
724
725struct ring_info {
726 struct sk_buff *skb;
727 u32 len;
728 u8 __pad[sizeof(void *) - sizeof(u32)];
729};
730
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200731enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200732 RTL_FEATURE_WOL = (1 << 0),
733 RTL_FEATURE_MSI = (1 << 1),
734 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200735};
736
Ivan Vecera355423d2009-02-06 21:49:57 -0800737struct rtl8169_counters {
738 __le64 tx_packets;
739 __le64 rx_packets;
740 __le64 tx_errors;
741 __le32 rx_errors;
742 __le16 rx_missed;
743 __le16 align_errors;
744 __le32 tx_one_collision;
745 __le32 tx_multi_collision;
746 __le64 rx_unicast;
747 __le64 rx_broadcast;
748 __le32 rx_multicast;
749 __le16 tx_aborted;
750 __le16 tx_underun;
751};
752
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200753struct rtl8169_tc_offsets {
754 bool inited;
755 __le64 tx_errors;
756 __le32 tx_multi_collision;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200757 __le16 tx_aborted;
758};
759
Francois Romieuda78dbf2012-01-26 14:18:23 +0100760enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100761 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100762 RTL_FLAG_TASK_SLOW_PENDING,
763 RTL_FLAG_TASK_RESET_PENDING,
764 RTL_FLAG_TASK_PHY_PENDING,
765 RTL_FLAG_MAX
766};
767
Junchang Wang8027aa22012-03-04 23:30:32 +0100768struct rtl8169_stats {
769 u64 packets;
770 u64 bytes;
771 struct u64_stats_sync syncp;
772};
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774struct rtl8169_private {
775 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200776 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000777 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700778 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200779 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700780 u16 txd_version;
781 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
783 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100785 struct rtl8169_stats rx_stats;
786 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
788 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
789 dma_addr_t TxPhyAddr;
790 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000791 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 struct timer_list timer;
794 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100795
796 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000797
798 struct mdio_ops {
Francois Romieu24192212012-07-06 20:19:42 +0200799 void (*write)(struct rtl8169_private *, int, int);
800 int (*read)(struct rtl8169_private *, int);
françois romieuc0e45c12011-01-03 15:08:04 +0000801 } mdio_ops;
802
françois romieu065c27c2011-01-03 15:08:12 +0000803 struct pll_power_ops {
804 void (*down)(struct rtl8169_private *);
805 void (*up)(struct rtl8169_private *);
806 } pll_power_ops;
807
Francois Romieud58d46b2011-05-03 16:38:29 +0200808 struct jumbo_ops {
809 void (*enable)(struct rtl8169_private *);
810 void (*disable)(struct rtl8169_private *);
811 } jumbo_ops;
812
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800813 struct csi_ops {
Francois Romieu52989f02012-07-06 13:37:00 +0200814 void (*write)(struct rtl8169_private *, int, int);
815 u32 (*read)(struct rtl8169_private *, int);
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800816 } csi_ops;
817
Oliver Neukum54405cd2011-01-06 21:55:13 +0100818 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200819 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000820 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100821 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000822 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800824 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
hayeswang5888d3f2014-07-11 16:25:56 +0800825 bool (*tso_csum)(struct rtl8169_private *, struct sk_buff *, u32 *);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100826
827 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100828 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
829 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100830 struct work_struct work;
831 } wk;
832
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200833 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200834
835 struct mii_if_info mii;
Corinna Vinschen42020322015-09-10 10:47:35 +0200836 dma_addr_t counters_phys_addr;
837 struct rtl8169_counters *counters;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +0200838 struct rtl8169_tc_offsets tc_offset;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000839 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400840 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000841
Francois Romieub6ffd972011-06-17 17:00:05 +0200842 struct rtl_fw {
843 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200844
845#define RTL_VER_SIZE 32
846
847 char version[RTL_VER_SIZE];
848
849 struct rtl_fw_phy_action {
850 __le32 *code;
851 size_t size;
852 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200853 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300854#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Hayes Wangc5583862012-07-02 17:23:22 +0800855
856 u32 ocp_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857};
858
Ralf Baechle979b6c12005-06-13 14:30:40 -0700859MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700862MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200863module_param_named(debug, debug.msg_enable, int, 0);
864MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865MODULE_LICENSE("GPL");
866MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000867MODULE_FIRMWARE(FIRMWARE_8168D_1);
868MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000869MODULE_FIRMWARE(FIRMWARE_8168E_1);
870MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400871MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800872MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800873MODULE_FIRMWARE(FIRMWARE_8168F_1);
874MODULE_FIRMWARE(FIRMWARE_8168F_2);
Hayes Wang7e18dca2012-03-30 14:33:02 +0800875MODULE_FIRMWARE(FIRMWARE_8402_1);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800876MODULE_FIRMWARE(FIRMWARE_8411_1);
hayeswang45dd95c2013-07-08 17:09:01 +0800877MODULE_FIRMWARE(FIRMWARE_8411_2);
Hayes Wang5598bfe2012-07-02 17:23:21 +0800878MODULE_FIRMWARE(FIRMWARE_8106E_1);
hayeswang58152cd2013-04-01 22:23:42 +0000879MODULE_FIRMWARE(FIRMWARE_8106E_2);
hayeswangbeb330a2013-04-01 22:23:39 +0000880MODULE_FIRMWARE(FIRMWARE_8168G_2);
hayeswang57538c42013-04-01 22:23:40 +0000881MODULE_FIRMWARE(FIRMWARE_8168G_3);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +0800882MODULE_FIRMWARE(FIRMWARE_8168H_1);
883MODULE_FIRMWARE(FIRMWARE_8168H_2);
Francois Romieua3bf5c42014-08-26 22:40:38 +0200884MODULE_FIRMWARE(FIRMWARE_8107E_1);
885MODULE_FIRMWARE(FIRMWARE_8107E_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Francois Romieuda78dbf2012-01-26 14:18:23 +0100887static void rtl_lock_work(struct rtl8169_private *tp)
888{
889 mutex_lock(&tp->wk.mutex);
890}
891
892static void rtl_unlock_work(struct rtl8169_private *tp)
893{
894 mutex_unlock(&tp->wk.mutex);
895}
896
Francois Romieud58d46b2011-05-03 16:38:29 +0200897static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
898{
Jiang Liu7d7903b2012-07-24 17:20:16 +0800899 pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
900 PCI_EXP_DEVCTL_READRQ, force);
Francois Romieud58d46b2011-05-03 16:38:29 +0200901}
902
Francois Romieuffc46952012-07-06 14:19:23 +0200903struct rtl_cond {
904 bool (*check)(struct rtl8169_private *);
905 const char *msg;
906};
907
908static void rtl_udelay(unsigned int d)
909{
910 udelay(d);
911}
912
913static bool rtl_loop_wait(struct rtl8169_private *tp, const struct rtl_cond *c,
914 void (*delay)(unsigned int), unsigned int d, int n,
915 bool high)
916{
917 int i;
918
919 for (i = 0; i < n; i++) {
920 delay(d);
921 if (c->check(tp) == high)
922 return true;
923 }
Francois Romieu82e316e2012-07-11 23:39:51 +0200924 netif_err(tp, drv, tp->dev, "%s == %d (loop: %d, delay: %d).\n",
925 c->msg, !high, n, d);
Francois Romieuffc46952012-07-06 14:19:23 +0200926 return false;
927}
928
929static bool rtl_udelay_loop_wait_high(struct rtl8169_private *tp,
930 const struct rtl_cond *c,
931 unsigned int d, int n)
932{
933 return rtl_loop_wait(tp, c, rtl_udelay, d, n, true);
934}
935
936static bool rtl_udelay_loop_wait_low(struct rtl8169_private *tp,
937 const struct rtl_cond *c,
938 unsigned int d, int n)
939{
940 return rtl_loop_wait(tp, c, rtl_udelay, d, n, false);
941}
942
943static bool rtl_msleep_loop_wait_high(struct rtl8169_private *tp,
944 const struct rtl_cond *c,
945 unsigned int d, int n)
946{
947 return rtl_loop_wait(tp, c, msleep, d, n, true);
948}
949
950static bool rtl_msleep_loop_wait_low(struct rtl8169_private *tp,
951 const struct rtl_cond *c,
952 unsigned int d, int n)
953{
954 return rtl_loop_wait(tp, c, msleep, d, n, false);
955}
956
957#define DECLARE_RTL_COND(name) \
958static bool name ## _check(struct rtl8169_private *); \
959 \
960static const struct rtl_cond name = { \
961 .check = name ## _check, \
962 .msg = #name \
963}; \
964 \
965static bool name ## _check(struct rtl8169_private *tp)
966
Hayes Wangc5583862012-07-02 17:23:22 +0800967static bool rtl_ocp_reg_failure(struct rtl8169_private *tp, u32 reg)
968{
969 if (reg & 0xffff0001) {
970 netif_err(tp, drv, tp->dev, "Invalid ocp reg %x!\n", reg);
971 return true;
972 }
973 return false;
974}
975
976DECLARE_RTL_COND(rtl_ocp_gphy_cond)
977{
978 void __iomem *ioaddr = tp->mmio_addr;
979
980 return RTL_R32(GPHY_OCP) & OCPAR_FLAG;
981}
982
983static void r8168_phy_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
984{
985 void __iomem *ioaddr = tp->mmio_addr;
986
987 if (rtl_ocp_reg_failure(tp, reg))
988 return;
989
990 RTL_W32(GPHY_OCP, OCPAR_FLAG | (reg << 15) | data);
991
992 rtl_udelay_loop_wait_low(tp, &rtl_ocp_gphy_cond, 25, 10);
993}
994
995static u16 r8168_phy_ocp_read(struct rtl8169_private *tp, u32 reg)
996{
997 void __iomem *ioaddr = tp->mmio_addr;
998
999 if (rtl_ocp_reg_failure(tp, reg))
1000 return 0;
1001
1002 RTL_W32(GPHY_OCP, reg << 15);
1003
1004 return rtl_udelay_loop_wait_high(tp, &rtl_ocp_gphy_cond, 25, 10) ?
1005 (RTL_R32(GPHY_OCP) & 0xffff) : ~0;
1006}
1007
Hayes Wangc5583862012-07-02 17:23:22 +08001008static void r8168_mac_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1009{
1010 void __iomem *ioaddr = tp->mmio_addr;
1011
1012 if (rtl_ocp_reg_failure(tp, reg))
1013 return;
1014
1015 RTL_W32(OCPDR, OCPAR_FLAG | (reg << 15) | data);
Hayes Wangc5583862012-07-02 17:23:22 +08001016}
1017
1018static u16 r8168_mac_ocp_read(struct rtl8169_private *tp, u32 reg)
1019{
1020 void __iomem *ioaddr = tp->mmio_addr;
1021
1022 if (rtl_ocp_reg_failure(tp, reg))
1023 return 0;
1024
1025 RTL_W32(OCPDR, reg << 15);
1026
Hayes Wang3a83ad12012-07-11 20:31:56 +08001027 return RTL_R32(OCPDR);
Hayes Wangc5583862012-07-02 17:23:22 +08001028}
1029
1030#define OCP_STD_PHY_BASE 0xa400
1031
1032static void r8168g_mdio_write(struct rtl8169_private *tp, int reg, int value)
1033{
1034 if (reg == 0x1f) {
1035 tp->ocp_base = value ? value << 4 : OCP_STD_PHY_BASE;
1036 return;
1037 }
1038
1039 if (tp->ocp_base != OCP_STD_PHY_BASE)
1040 reg -= 0x10;
1041
1042 r8168_phy_ocp_write(tp, tp->ocp_base + reg * 2, value);
1043}
1044
1045static int r8168g_mdio_read(struct rtl8169_private *tp, int reg)
1046{
1047 if (tp->ocp_base != OCP_STD_PHY_BASE)
1048 reg -= 0x10;
1049
1050 return r8168_phy_ocp_read(tp, tp->ocp_base + reg * 2);
1051}
1052
hayeswangeee37862013-04-01 22:23:38 +00001053static void mac_mcu_write(struct rtl8169_private *tp, int reg, int value)
1054{
1055 if (reg == 0x1f) {
1056 tp->ocp_base = value << 4;
1057 return;
1058 }
1059
1060 r8168_mac_ocp_write(tp, tp->ocp_base + reg, value);
1061}
1062
1063static int mac_mcu_read(struct rtl8169_private *tp, int reg)
1064{
1065 return r8168_mac_ocp_read(tp, tp->ocp_base + reg);
1066}
1067
Francois Romieuffc46952012-07-06 14:19:23 +02001068DECLARE_RTL_COND(rtl_phyar_cond)
1069{
1070 void __iomem *ioaddr = tp->mmio_addr;
1071
1072 return RTL_R32(PHYAR) & 0x80000000;
1073}
1074
Francois Romieu24192212012-07-06 20:19:42 +02001075static void r8169_mdio_write(struct rtl8169_private *tp, int reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
Francois Romieu24192212012-07-06 20:19:42 +02001077 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Francois Romieu24192212012-07-06 20:19:42 +02001079 RTL_W32(PHYAR, 0x80000000 | (reg & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Francois Romieuffc46952012-07-06 14:19:23 +02001081 rtl_udelay_loop_wait_low(tp, &rtl_phyar_cond, 25, 20);
Timo Teräs024a07b2010-06-06 15:38:47 -07001082 /*
Timo Teräs81a95f02010-06-09 17:31:48 -07001083 * According to hardware specs a 20us delay is required after write
1084 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -07001085 */
Timo Teräs81a95f02010-06-09 17:31:48 -07001086 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
Francois Romieu24192212012-07-06 20:19:42 +02001089static int r8169_mdio_read(struct rtl8169_private *tp, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Francois Romieu24192212012-07-06 20:19:42 +02001091 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieuffc46952012-07-06 14:19:23 +02001092 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Francois Romieu24192212012-07-06 20:19:42 +02001094 RTL_W32(PHYAR, 0x0 | (reg & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Francois Romieuffc46952012-07-06 14:19:23 +02001096 value = rtl_udelay_loop_wait_high(tp, &rtl_phyar_cond, 25, 20) ?
1097 RTL_R32(PHYAR) & 0xffff : ~0;
1098
Timo Teräs81a95f02010-06-09 17:31:48 -07001099 /*
1100 * According to hardware specs a 20us delay is required after read
1101 * complete indication, but before sending next command.
1102 */
1103 udelay(20);
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return value;
1106}
1107
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001108DECLARE_RTL_COND(rtl_ocpar_cond)
1109{
1110 void __iomem *ioaddr = tp->mmio_addr;
1111
1112 return RTL_R32(OCPAR) & OCPAR_FLAG;
1113}
1114
Francois Romieu24192212012-07-06 20:19:42 +02001115static void r8168dp_1_mdio_access(struct rtl8169_private *tp, int reg, u32 data)
françois romieuc0e45c12011-01-03 15:08:04 +00001116{
Francois Romieu24192212012-07-06 20:19:42 +02001117 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001118
Francois Romieu24192212012-07-06 20:19:42 +02001119 RTL_W32(OCPDR, data | ((reg & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
françois romieuc0e45c12011-01-03 15:08:04 +00001120 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
1121 RTL_W32(EPHY_RXER_NUM, 0);
1122
Francois Romieuffc46952012-07-06 14:19:23 +02001123 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 1000, 100);
françois romieuc0e45c12011-01-03 15:08:04 +00001124}
1125
Francois Romieu24192212012-07-06 20:19:42 +02001126static void r8168dp_1_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieuc0e45c12011-01-03 15:08:04 +00001127{
Francois Romieu24192212012-07-06 20:19:42 +02001128 r8168dp_1_mdio_access(tp, reg,
1129 OCPDR_WRITE_CMD | (value & OCPDR_DATA_MASK));
françois romieuc0e45c12011-01-03 15:08:04 +00001130}
1131
Francois Romieu24192212012-07-06 20:19:42 +02001132static int r8168dp_1_mdio_read(struct rtl8169_private *tp, int reg)
françois romieuc0e45c12011-01-03 15:08:04 +00001133{
Francois Romieu24192212012-07-06 20:19:42 +02001134 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001135
Francois Romieu24192212012-07-06 20:19:42 +02001136 r8168dp_1_mdio_access(tp, reg, OCPDR_READ_CMD);
françois romieuc0e45c12011-01-03 15:08:04 +00001137
1138 mdelay(1);
1139 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
1140 RTL_W32(EPHY_RXER_NUM, 0);
1141
Francois Romieuffc46952012-07-06 14:19:23 +02001142 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 1000, 100) ?
1143 RTL_R32(OCPDR) & OCPDR_DATA_MASK : ~0;
françois romieuc0e45c12011-01-03 15:08:04 +00001144}
1145
françois romieue6de30d2011-01-03 15:08:37 +00001146#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1147
1148static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1149{
1150 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1151}
1152
1153static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1154{
1155 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1156}
1157
Francois Romieu24192212012-07-06 20:19:42 +02001158static void r8168dp_2_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieue6de30d2011-01-03 15:08:37 +00001159{
Francois Romieu24192212012-07-06 20:19:42 +02001160 void __iomem *ioaddr = tp->mmio_addr;
1161
françois romieue6de30d2011-01-03 15:08:37 +00001162 r8168dp_2_mdio_start(ioaddr);
1163
Francois Romieu24192212012-07-06 20:19:42 +02001164 r8169_mdio_write(tp, reg, value);
françois romieue6de30d2011-01-03 15:08:37 +00001165
1166 r8168dp_2_mdio_stop(ioaddr);
1167}
1168
Francois Romieu24192212012-07-06 20:19:42 +02001169static int r8168dp_2_mdio_read(struct rtl8169_private *tp, int reg)
françois romieue6de30d2011-01-03 15:08:37 +00001170{
Francois Romieu24192212012-07-06 20:19:42 +02001171 void __iomem *ioaddr = tp->mmio_addr;
françois romieue6de30d2011-01-03 15:08:37 +00001172 int value;
1173
1174 r8168dp_2_mdio_start(ioaddr);
1175
Francois Romieu24192212012-07-06 20:19:42 +02001176 value = r8169_mdio_read(tp, reg);
françois romieue6de30d2011-01-03 15:08:37 +00001177
1178 r8168dp_2_mdio_stop(ioaddr);
1179
1180 return value;
1181}
1182
françois romieu4da19632011-01-03 15:07:55 +00001183static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001184{
Francois Romieu24192212012-07-06 20:19:42 +02001185 tp->mdio_ops.write(tp, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001186}
1187
françois romieu4da19632011-01-03 15:07:55 +00001188static int rtl_readphy(struct rtl8169_private *tp, int location)
1189{
Francois Romieu24192212012-07-06 20:19:42 +02001190 return tp->mdio_ops.read(tp, location);
françois romieu4da19632011-01-03 15:07:55 +00001191}
1192
1193static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1194{
1195 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1196}
1197
Chun-Hao Lin76564422014-10-01 23:17:17 +08001198static void rtl_w0w1_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001199{
1200 int val;
1201
françois romieu4da19632011-01-03 15:07:55 +00001202 val = rtl_readphy(tp, reg_addr);
Chun-Hao Lin76564422014-10-01 23:17:17 +08001203 rtl_writephy(tp, reg_addr, (val & ~m) | p);
françois romieudaf9df62009-10-07 12:44:20 +00001204}
1205
Francois Romieuccdffb92008-07-26 14:26:06 +02001206static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1207 int val)
1208{
1209 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001210
françois romieu4da19632011-01-03 15:07:55 +00001211 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001212}
1213
1214static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1215{
1216 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001217
françois romieu4da19632011-01-03 15:07:55 +00001218 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001219}
1220
Francois Romieuffc46952012-07-06 14:19:23 +02001221DECLARE_RTL_COND(rtl_ephyar_cond)
1222{
1223 void __iomem *ioaddr = tp->mmio_addr;
1224
1225 return RTL_R32(EPHYAR) & EPHYAR_FLAG;
1226}
1227
Francois Romieufdf6fc02012-07-06 22:40:38 +02001228static void rtl_ephy_write(struct rtl8169_private *tp, int reg_addr, int value)
Francois Romieudacf8152008-08-02 20:44:13 +02001229{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001230 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001231
1232 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1233 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1234
Francois Romieuffc46952012-07-06 14:19:23 +02001235 rtl_udelay_loop_wait_low(tp, &rtl_ephyar_cond, 10, 100);
1236
1237 udelay(10);
Francois Romieudacf8152008-08-02 20:44:13 +02001238}
1239
Francois Romieufdf6fc02012-07-06 22:40:38 +02001240static u16 rtl_ephy_read(struct rtl8169_private *tp, int reg_addr)
Francois Romieudacf8152008-08-02 20:44:13 +02001241{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001242 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001243
1244 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1245
Francois Romieuffc46952012-07-06 14:19:23 +02001246 return rtl_udelay_loop_wait_high(tp, &rtl_ephyar_cond, 10, 100) ?
1247 RTL_R32(EPHYAR) & EPHYAR_DATA_MASK : ~0;
Francois Romieudacf8152008-08-02 20:44:13 +02001248}
1249
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001250DECLARE_RTL_COND(rtl_eriar_cond)
1251{
1252 void __iomem *ioaddr = tp->mmio_addr;
1253
1254 return RTL_R32(ERIAR) & ERIAR_FLAG;
1255}
1256
Francois Romieufdf6fc02012-07-06 22:40:38 +02001257static void rtl_eri_write(struct rtl8169_private *tp, int addr, u32 mask,
1258 u32 val, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001259{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001260 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001261
1262 BUG_ON((addr & 3) || (mask == 0));
1263 RTL_W32(ERIDR, val);
1264 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1265
Francois Romieuffc46952012-07-06 14:19:23 +02001266 rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 100);
Hayes Wang133ac402011-07-06 15:58:05 +08001267}
1268
Francois Romieufdf6fc02012-07-06 22:40:38 +02001269static u32 rtl_eri_read(struct rtl8169_private *tp, int addr, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001270{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001271 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001272
1273 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1274
Francois Romieuffc46952012-07-06 14:19:23 +02001275 return rtl_udelay_loop_wait_high(tp, &rtl_eriar_cond, 100, 100) ?
1276 RTL_R32(ERIDR) : ~0;
Hayes Wang133ac402011-07-06 15:58:05 +08001277}
1278
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001279static void rtl_w0w1_eri(struct rtl8169_private *tp, int addr, u32 mask, u32 p,
Francois Romieufdf6fc02012-07-06 22:40:38 +02001280 u32 m, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001281{
1282 u32 val;
1283
Francois Romieufdf6fc02012-07-06 22:40:38 +02001284 val = rtl_eri_read(tp, addr, type);
1285 rtl_eri_write(tp, addr, mask, (val & ~m) | p, type);
Hayes Wang133ac402011-07-06 15:58:05 +08001286}
1287
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001288static u32 r8168dp_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1289{
1290 void __iomem *ioaddr = tp->mmio_addr;
1291
1292 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1293 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 100, 20) ?
1294 RTL_R32(OCPDR) : ~0;
1295}
1296
1297static u32 r8168ep_ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1298{
1299 return rtl_eri_read(tp, reg, ERIAR_OOB);
1300}
1301
1302static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
1303{
1304 switch (tp->mac_version) {
1305 case RTL_GIGA_MAC_VER_27:
1306 case RTL_GIGA_MAC_VER_28:
1307 case RTL_GIGA_MAC_VER_31:
1308 return r8168dp_ocp_read(tp, mask, reg);
1309 case RTL_GIGA_MAC_VER_49:
1310 case RTL_GIGA_MAC_VER_50:
1311 case RTL_GIGA_MAC_VER_51:
1312 return r8168ep_ocp_read(tp, mask, reg);
1313 default:
1314 BUG();
1315 return ~0;
1316 }
1317}
1318
1319static void r8168dp_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1320 u32 data)
1321{
1322 void __iomem *ioaddr = tp->mmio_addr;
1323
1324 RTL_W32(OCPDR, data);
1325 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
1326 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 100, 20);
1327}
1328
1329static void r8168ep_ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg,
1330 u32 data)
1331{
1332 rtl_eri_write(tp, reg, ((u32)mask & 0x0f) << ERIAR_MASK_SHIFT,
1333 data, ERIAR_OOB);
1334}
1335
1336static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
1337{
1338 switch (tp->mac_version) {
1339 case RTL_GIGA_MAC_VER_27:
1340 case RTL_GIGA_MAC_VER_28:
1341 case RTL_GIGA_MAC_VER_31:
1342 r8168dp_ocp_write(tp, mask, reg, data);
1343 break;
1344 case RTL_GIGA_MAC_VER_49:
1345 case RTL_GIGA_MAC_VER_50:
1346 case RTL_GIGA_MAC_VER_51:
1347 r8168ep_ocp_write(tp, mask, reg, data);
1348 break;
1349 default:
1350 BUG();
1351 break;
1352 }
1353}
1354
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001355static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
1356{
1357 rtl_eri_write(tp, 0xe8, ERIAR_MASK_0001, cmd, ERIAR_EXGMAC);
1358
1359 ocp_write(tp, 0x1, 0x30, 0x00000001);
1360}
1361
1362#define OOB_CMD_RESET 0x00
1363#define OOB_CMD_DRIVER_START 0x05
1364#define OOB_CMD_DRIVER_STOP 0x06
1365
1366static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
1367{
1368 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
1369}
1370
1371DECLARE_RTL_COND(rtl_ocp_read_cond)
1372{
1373 u16 reg;
1374
1375 reg = rtl8168_get_ocp_reg(tp);
1376
1377 return ocp_read(tp, 0x0f, reg) & 0x00000800;
1378}
1379
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001380DECLARE_RTL_COND(rtl_ep_ocp_read_cond)
1381{
1382 return ocp_read(tp, 0x0f, 0x124) & 0x00000001;
1383}
1384
1385DECLARE_RTL_COND(rtl_ocp_tx_cond)
1386{
1387 void __iomem *ioaddr = tp->mmio_addr;
1388
1389 return RTL_R8(IBISR0) & 0x02;
1390}
1391
Chun-Hao Lin003609d2014-12-02 16:48:31 +08001392static void rtl8168ep_stop_cmac(struct rtl8169_private *tp)
1393{
1394 void __iomem *ioaddr = tp->mmio_addr;
1395
1396 RTL_W8(IBCR2, RTL_R8(IBCR2) & ~0x01);
1397 rtl_msleep_loop_wait_low(tp, &rtl_ocp_tx_cond, 50, 2000);
1398 RTL_W8(IBISR0, RTL_R8(IBISR0) | 0x20);
1399 RTL_W8(IBCR0, RTL_R8(IBCR0) & ~0x01);
1400}
1401
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001402static void rtl8168dp_driver_start(struct rtl8169_private *tp)
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001403{
1404 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001405 rtl_msleep_loop_wait_high(tp, &rtl_ocp_read_cond, 10, 10);
1406}
1407
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001408static void rtl8168ep_driver_start(struct rtl8169_private *tp)
1409{
1410 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_START);
1411 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1412 rtl_msleep_loop_wait_high(tp, &rtl_ep_ocp_read_cond, 10, 10);
1413}
1414
1415static void rtl8168_driver_start(struct rtl8169_private *tp)
1416{
1417 switch (tp->mac_version) {
1418 case RTL_GIGA_MAC_VER_27:
1419 case RTL_GIGA_MAC_VER_28:
1420 case RTL_GIGA_MAC_VER_31:
1421 rtl8168dp_driver_start(tp);
1422 break;
1423 case RTL_GIGA_MAC_VER_49:
1424 case RTL_GIGA_MAC_VER_50:
1425 case RTL_GIGA_MAC_VER_51:
1426 rtl8168ep_driver_start(tp);
1427 break;
1428 default:
1429 BUG();
1430 break;
1431 }
1432}
1433
1434static void rtl8168dp_driver_stop(struct rtl8169_private *tp)
1435{
1436 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
1437 rtl_msleep_loop_wait_low(tp, &rtl_ocp_read_cond, 10, 10);
1438}
1439
1440static void rtl8168ep_driver_stop(struct rtl8169_private *tp)
1441{
Chun-Hao Lin003609d2014-12-02 16:48:31 +08001442 rtl8168ep_stop_cmac(tp);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001443 ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_STOP);
1444 ocp_write(tp, 0x01, 0x30, ocp_read(tp, 0x01, 0x30) | 0x01);
1445 rtl_msleep_loop_wait_low(tp, &rtl_ep_ocp_read_cond, 10, 10);
1446}
1447
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001448static void rtl8168_driver_stop(struct rtl8169_private *tp)
1449{
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001450 switch (tp->mac_version) {
1451 case RTL_GIGA_MAC_VER_27:
1452 case RTL_GIGA_MAC_VER_28:
1453 case RTL_GIGA_MAC_VER_31:
1454 rtl8168dp_driver_stop(tp);
1455 break;
1456 case RTL_GIGA_MAC_VER_49:
1457 case RTL_GIGA_MAC_VER_50:
1458 case RTL_GIGA_MAC_VER_51:
1459 rtl8168ep_driver_stop(tp);
1460 break;
1461 default:
1462 BUG();
1463 break;
1464 }
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001465}
1466
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001467static int r8168dp_check_dash(struct rtl8169_private *tp)
Chun-Hao Lin2a9b4d92014-10-01 23:17:20 +08001468{
1469 u16 reg = rtl8168_get_ocp_reg(tp);
1470
1471 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
1472}
1473
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001474static int r8168ep_check_dash(struct rtl8169_private *tp)
1475{
1476 return (ocp_read(tp, 0x0f, 0x128) & 0x00000001) ? 1 : 0;
1477}
1478
1479static int r8168_check_dash(struct rtl8169_private *tp)
1480{
1481 switch (tp->mac_version) {
1482 case RTL_GIGA_MAC_VER_27:
1483 case RTL_GIGA_MAC_VER_28:
1484 case RTL_GIGA_MAC_VER_31:
1485 return r8168dp_check_dash(tp);
1486 case RTL_GIGA_MAC_VER_49:
1487 case RTL_GIGA_MAC_VER_50:
1488 case RTL_GIGA_MAC_VER_51:
1489 return r8168ep_check_dash(tp);
1490 default:
1491 return 0;
1492 }
1493}
1494
françois romieuc28aa382011-08-02 03:53:43 +00001495struct exgmac_reg {
1496 u16 addr;
1497 u16 mask;
1498 u32 val;
1499};
1500
Francois Romieufdf6fc02012-07-06 22:40:38 +02001501static void rtl_write_exgmac_batch(struct rtl8169_private *tp,
françois romieuc28aa382011-08-02 03:53:43 +00001502 const struct exgmac_reg *r, int len)
1503{
1504 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001505 rtl_eri_write(tp, r->addr, r->mask, r->val, ERIAR_EXGMAC);
françois romieuc28aa382011-08-02 03:53:43 +00001506 r++;
1507 }
1508}
1509
Francois Romieuffc46952012-07-06 14:19:23 +02001510DECLARE_RTL_COND(rtl_efusear_cond)
1511{
1512 void __iomem *ioaddr = tp->mmio_addr;
1513
1514 return RTL_R32(EFUSEAR) & EFUSEAR_FLAG;
1515}
1516
Francois Romieufdf6fc02012-07-06 22:40:38 +02001517static u8 rtl8168d_efuse_read(struct rtl8169_private *tp, int reg_addr)
françois romieudaf9df62009-10-07 12:44:20 +00001518{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001519 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00001520
1521 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1522
Francois Romieuffc46952012-07-06 14:19:23 +02001523 return rtl_udelay_loop_wait_high(tp, &rtl_efusear_cond, 100, 300) ?
1524 RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK : ~0;
françois romieudaf9df62009-10-07 12:44:20 +00001525}
1526
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001527static u16 rtl_get_events(struct rtl8169_private *tp)
1528{
1529 void __iomem *ioaddr = tp->mmio_addr;
1530
1531 return RTL_R16(IntrStatus);
1532}
1533
1534static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1535{
1536 void __iomem *ioaddr = tp->mmio_addr;
1537
1538 RTL_W16(IntrStatus, bits);
1539 mmiowb();
1540}
1541
1542static void rtl_irq_disable(struct rtl8169_private *tp)
1543{
1544 void __iomem *ioaddr = tp->mmio_addr;
1545
1546 RTL_W16(IntrMask, 0);
1547 mmiowb();
1548}
1549
Francois Romieu3e990ff2012-01-26 12:50:01 +01001550static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1551{
1552 void __iomem *ioaddr = tp->mmio_addr;
1553
1554 RTL_W16(IntrMask, bits);
1555}
1556
Francois Romieuda78dbf2012-01-26 14:18:23 +01001557#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1558#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1559#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1560
1561static void rtl_irq_enable_all(struct rtl8169_private *tp)
1562{
1563 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1564}
1565
françois romieu811fd302011-12-04 20:30:45 +00001566static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
françois romieu811fd302011-12-04 20:30:45 +00001568 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001570 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001571 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001572 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
françois romieu4da19632011-01-03 15:07:55 +00001575static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
françois romieu4da19632011-01-03 15:07:55 +00001577 void __iomem *ioaddr = tp->mmio_addr;
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 return RTL_R32(TBICSR) & TBIReset;
1580}
1581
françois romieu4da19632011-01-03 15:07:55 +00001582static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
françois romieu4da19632011-01-03 15:07:55 +00001584 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
1587static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1588{
1589 return RTL_R32(TBICSR) & TBILinkOk;
1590}
1591
1592static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1593{
1594 return RTL_R8(PHYstatus) & LinkStatus;
1595}
1596
françois romieu4da19632011-01-03 15:07:55 +00001597static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
françois romieu4da19632011-01-03 15:07:55 +00001599 void __iomem *ioaddr = tp->mmio_addr;
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1602}
1603
françois romieu4da19632011-01-03 15:07:55 +00001604static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 unsigned int val;
1607
françois romieu4da19632011-01-03 15:07:55 +00001608 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1609 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
1611
Hayes Wang70090422011-07-06 15:58:06 +08001612static void rtl_link_chg_patch(struct rtl8169_private *tp)
1613{
1614 void __iomem *ioaddr = tp->mmio_addr;
1615 struct net_device *dev = tp->dev;
1616
1617 if (!netif_running(dev))
1618 return;
1619
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001620 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1621 tp->mac_version == RTL_GIGA_MAC_VER_38) {
Hayes Wang70090422011-07-06 15:58:06 +08001622 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001623 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1624 ERIAR_EXGMAC);
1625 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1626 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001627 } else if (RTL_R8(PHYstatus) & _100bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001628 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1629 ERIAR_EXGMAC);
1630 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1631 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001632 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001633 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1634 ERIAR_EXGMAC);
1635 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1636 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001637 }
1638 /* Reset packet filter */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001639 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
Hayes Wang70090422011-07-06 15:58:06 +08001640 ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001641 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
Hayes Wang70090422011-07-06 15:58:06 +08001642 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001643 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1644 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1645 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001646 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1647 ERIAR_EXGMAC);
1648 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1649 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001650 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001651 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1652 ERIAR_EXGMAC);
1653 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1654 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001655 }
Hayes Wang7e18dca2012-03-30 14:33:02 +08001656 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1657 if (RTL_R8(PHYstatus) & _10bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001658 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x4d02,
1659 ERIAR_EXGMAC);
1660 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_0011, 0x0060,
1661 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001662 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001663 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000,
1664 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001665 }
Hayes Wang70090422011-07-06 15:58:06 +08001666 }
1667}
1668
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001669static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001670 struct rtl8169_private *tp,
1671 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001674 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001675 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001676 if (pm)
1677 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001679 if (net_ratelimit())
1680 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001681 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001683 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001684 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001685 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001689static void rtl8169_check_link_status(struct net_device *dev,
1690 struct rtl8169_private *tp,
1691 void __iomem *ioaddr)
1692{
1693 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1694}
1695
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001696#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1697
1698static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1699{
1700 void __iomem *ioaddr = tp->mmio_addr;
1701 u8 options;
1702 u32 wolopts = 0;
1703
1704 options = RTL_R8(Config1);
1705 if (!(options & PMEnable))
1706 return 0;
1707
1708 options = RTL_R8(Config3);
1709 if (options & LinkUp)
1710 wolopts |= WAKE_PHY;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001711 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001712 case RTL_GIGA_MAC_VER_34:
1713 case RTL_GIGA_MAC_VER_35:
1714 case RTL_GIGA_MAC_VER_36:
1715 case RTL_GIGA_MAC_VER_37:
1716 case RTL_GIGA_MAC_VER_38:
1717 case RTL_GIGA_MAC_VER_40:
1718 case RTL_GIGA_MAC_VER_41:
1719 case RTL_GIGA_MAC_VER_42:
1720 case RTL_GIGA_MAC_VER_43:
1721 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001722 case RTL_GIGA_MAC_VER_45:
1723 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001724 case RTL_GIGA_MAC_VER_47:
1725 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001726 case RTL_GIGA_MAC_VER_49:
1727 case RTL_GIGA_MAC_VER_50:
1728 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001729 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
1730 wolopts |= WAKE_MAGIC;
1731 break;
1732 default:
1733 if (options & MagicPacket)
1734 wolopts |= WAKE_MAGIC;
1735 break;
1736 }
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001737
1738 options = RTL_R8(Config5);
1739 if (options & UWF)
1740 wolopts |= WAKE_UCAST;
1741 if (options & BWF)
1742 wolopts |= WAKE_BCAST;
1743 if (options & MWF)
1744 wolopts |= WAKE_MCAST;
1745
1746 return wolopts;
1747}
1748
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001749static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1750{
1751 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001752
Francois Romieuda78dbf2012-01-26 14:18:23 +01001753 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001754
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001755 wol->supported = WAKE_ANY;
1756 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001757
Francois Romieuda78dbf2012-01-26 14:18:23 +01001758 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001759}
1760
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001761static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001762{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001763 void __iomem *ioaddr = tp->mmio_addr;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001764 unsigned int i, tmp;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001765 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001766 u32 opt;
1767 u16 reg;
1768 u8 mask;
1769 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001770 { WAKE_PHY, Config3, LinkUp },
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001771 { WAKE_UCAST, Config5, UWF },
1772 { WAKE_BCAST, Config5, BWF },
1773 { WAKE_MCAST, Config5, MWF },
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001774 { WAKE_ANY, Config5, LanWake },
1775 { WAKE_MAGIC, Config3, MagicPacket }
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001776 };
Francois Romieu851e6022012-04-17 11:10:11 +02001777 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001778
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001779 RTL_W8(Cfg9346, Cfg9346_Unlock);
1780
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001781 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001782 case RTL_GIGA_MAC_VER_34:
1783 case RTL_GIGA_MAC_VER_35:
1784 case RTL_GIGA_MAC_VER_36:
1785 case RTL_GIGA_MAC_VER_37:
1786 case RTL_GIGA_MAC_VER_38:
1787 case RTL_GIGA_MAC_VER_40:
1788 case RTL_GIGA_MAC_VER_41:
1789 case RTL_GIGA_MAC_VER_42:
1790 case RTL_GIGA_MAC_VER_43:
1791 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001792 case RTL_GIGA_MAC_VER_45:
1793 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08001794 case RTL_GIGA_MAC_VER_47:
1795 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08001796 case RTL_GIGA_MAC_VER_49:
1797 case RTL_GIGA_MAC_VER_50:
1798 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001799 tmp = ARRAY_SIZE(cfg) - 1;
1800 if (wolopts & WAKE_MAGIC)
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001801 rtl_w0w1_eri(tp,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001802 0x0dc,
1803 ERIAR_MASK_0100,
1804 MagicPacket_v2,
1805 0x0000,
1806 ERIAR_EXGMAC);
1807 else
Chun-Hao Lin706123d2014-10-01 23:17:18 +08001808 rtl_w0w1_eri(tp,
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08001809 0x0dc,
1810 ERIAR_MASK_0100,
1811 0x0000,
1812 MagicPacket_v2,
1813 ERIAR_EXGMAC);
1814 break;
1815 default:
1816 tmp = ARRAY_SIZE(cfg);
1817 break;
1818 }
1819
1820 for (i = 0; i < tmp; i++) {
Francois Romieu851e6022012-04-17 11:10:11 +02001821 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001822 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001823 options |= cfg[i].mask;
1824 RTL_W8(cfg[i].reg, options);
1825 }
1826
Francois Romieu851e6022012-04-17 11:10:11 +02001827 switch (tp->mac_version) {
1828 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1829 options = RTL_R8(Config1) & ~PMEnable;
1830 if (wolopts)
1831 options |= PMEnable;
1832 RTL_W8(Config1, options);
1833 break;
1834 default:
Francois Romieud387b422012-04-17 11:12:01 +02001835 options = RTL_R8(Config2) & ~PME_SIGNAL;
1836 if (wolopts)
1837 options |= PME_SIGNAL;
1838 RTL_W8(Config2, options);
Francois Romieu851e6022012-04-17 11:10:11 +02001839 break;
1840 }
1841
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001842 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001843}
1844
1845static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1846{
1847 struct rtl8169_private *tp = netdev_priv(dev);
1848
Francois Romieuda78dbf2012-01-26 14:18:23 +01001849 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001850
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001851 if (wol->wolopts)
1852 tp->features |= RTL_FEATURE_WOL;
1853 else
1854 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001855 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001856
1857 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001858
françois romieuea809072010-11-08 13:23:58 +00001859 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1860
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001861 return 0;
1862}
1863
Francois Romieu31bd2042011-04-26 18:58:59 +02001864static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1865{
Francois Romieu85bffe62011-04-27 08:22:39 +02001866 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001867}
1868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869static void rtl8169_get_drvinfo(struct net_device *dev,
1870 struct ethtool_drvinfo *info)
1871{
1872 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001873 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Rick Jones68aad782011-11-07 13:29:27 +00001875 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1876 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1877 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001878 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001879 if (!IS_ERR_OR_NULL(rtl_fw))
1880 strlcpy(info->fw_version, rtl_fw->version,
1881 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
1884static int rtl8169_get_regs_len(struct net_device *dev)
1885{
1886 return R8169_REGS_SIZE;
1887}
1888
1889static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001890 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
1892 struct rtl8169_private *tp = netdev_priv(dev);
1893 void __iomem *ioaddr = tp->mmio_addr;
1894 int ret = 0;
1895 u32 reg;
1896
1897 reg = RTL_R32(TBICSR);
1898 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1899 (duplex == DUPLEX_FULL)) {
1900 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1901 } else if (autoneg == AUTONEG_ENABLE)
1902 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1903 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001904 netif_warn(tp, link, dev,
1905 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 ret = -EOPNOTSUPP;
1907 }
1908
1909 return ret;
1910}
1911
1912static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001913 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
1915 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001916 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001917 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Hayes Wang716b50a2011-02-22 17:26:18 +08001919 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001922 int auto_nego;
1923
françois romieu4da19632011-01-03 15:07:55 +00001924 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001925 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1926 ADVERTISE_100HALF | ADVERTISE_100FULL);
1927
1928 if (adv & ADVERTISED_10baseT_Half)
1929 auto_nego |= ADVERTISE_10HALF;
1930 if (adv & ADVERTISED_10baseT_Full)
1931 auto_nego |= ADVERTISE_10FULL;
1932 if (adv & ADVERTISED_100baseT_Half)
1933 auto_nego |= ADVERTISE_100HALF;
1934 if (adv & ADVERTISED_100baseT_Full)
1935 auto_nego |= ADVERTISE_100FULL;
1936
françois romieu3577aa12009-05-19 10:46:48 +00001937 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1938
françois romieu4da19632011-01-03 15:07:55 +00001939 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001940 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1941
1942 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001943 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001944 if (adv & ADVERTISED_1000baseT_Half)
1945 giga_ctrl |= ADVERTISE_1000HALF;
1946 if (adv & ADVERTISED_1000baseT_Full)
1947 giga_ctrl |= ADVERTISE_1000FULL;
1948 } else if (adv & (ADVERTISED_1000baseT_Half |
1949 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001950 netif_info(tp, link, dev,
1951 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001952 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
françois romieu3577aa12009-05-19 10:46:48 +00001955 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001956
françois romieu4da19632011-01-03 15:07:55 +00001957 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1958 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001959 } else {
1960 giga_ctrl = 0;
1961
1962 if (speed == SPEED_10)
1963 bmcr = 0;
1964 else if (speed == SPEED_100)
1965 bmcr = BMCR_SPEED100;
1966 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001967 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001968
1969 if (duplex == DUPLEX_FULL)
1970 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001971 }
1972
françois romieu4da19632011-01-03 15:07:55 +00001973 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001974
Francois Romieucecb5fd2011-04-01 10:21:07 +02001975 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1976 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001977 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001978 rtl_writephy(tp, 0x17, 0x2138);
1979 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001980 } else {
françois romieu4da19632011-01-03 15:07:55 +00001981 rtl_writephy(tp, 0x17, 0x2108);
1982 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001983 }
1984 }
1985
Oliver Neukum54405cd2011-01-06 21:55:13 +01001986 rc = 0;
1987out:
1988 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989}
1990
1991static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001992 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 struct rtl8169_private *tp = netdev_priv(dev);
1995 int ret;
1996
Oliver Neukum54405cd2011-01-06 21:55:13 +01001997 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001998 if (ret < 0)
1999 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Francois Romieu4876cc12011-03-11 21:07:11 +01002001 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
2002 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01002004 }
2005out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 return ret;
2007}
2008
2009static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2010{
2011 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 int ret;
2013
Francois Romieu4876cc12011-03-11 21:07:11 +01002014 del_timer_sync(&tp->timer);
2015
Francois Romieuda78dbf2012-01-26 14:18:23 +01002016 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002017 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00002018 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002019 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02002020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return ret;
2022}
2023
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002024static netdev_features_t rtl8169_fix_features(struct net_device *dev,
2025 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Francois Romieud58d46b2011-05-03 16:38:29 +02002027 struct rtl8169_private *tp = netdev_priv(dev);
2028
Francois Romieu2b7b4312011-04-18 22:53:24 -07002029 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00002030 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Francois Romieud58d46b2011-05-03 16:38:29 +02002032 if (dev->mtu > JUMBO_1K &&
2033 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
2034 features &= ~NETIF_F_IP_CSUM;
2035
Michał Mirosław350fb322011-04-08 06:35:56 +00002036 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
Francois Romieuda78dbf2012-01-26 14:18:23 +01002039static void __rtl8169_set_features(struct net_device *dev,
2040 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
2042 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002043 void __iomem *ioaddr = tp->mmio_addr;
hayeswang929a0312014-09-16 11:40:47 +08002044 u32 rx_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
hayeswang929a0312014-09-16 11:40:47 +08002046 rx_config = RTL_R32(RxConfig);
2047 if (features & NETIF_F_RXALL)
2048 rx_config |= (AcceptErr | AcceptRunt);
2049 else
2050 rx_config &= ~(AcceptErr | AcceptRunt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
hayeswang929a0312014-09-16 11:40:47 +08002052 RTL_W32(RxConfig, rx_config);
Michał Mirosław350fb322011-04-08 06:35:56 +00002053
hayeswang929a0312014-09-16 11:40:47 +08002054 if (features & NETIF_F_RXCSUM)
2055 tp->cp_cmd |= RxChkSum;
2056 else
2057 tp->cp_cmd &= ~RxChkSum;
Ben Greear6bbe0212012-02-10 15:04:33 +00002058
hayeswang929a0312014-09-16 11:40:47 +08002059 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2060 tp->cp_cmd |= RxVlan;
2061 else
2062 tp->cp_cmd &= ~RxVlan;
2063
2064 tp->cp_cmd |= RTL_R16(CPlusCmd) & ~(RxVlan | RxChkSum);
2065
2066 RTL_W16(CPlusCmd, tp->cp_cmd);
2067 RTL_R16(CPlusCmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002068}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Francois Romieuda78dbf2012-01-26 14:18:23 +01002070static int rtl8169_set_features(struct net_device *dev,
2071 netdev_features_t features)
2072{
2073 struct rtl8169_private *tp = netdev_priv(dev);
2074
hayeswang929a0312014-09-16 11:40:47 +08002075 features &= NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX;
2076
Francois Romieuda78dbf2012-01-26 14:18:23 +01002077 rtl_lock_work(tp);
Dan Carpenter85911d72014-09-19 13:40:25 +03002078 if (features ^ dev->features)
hayeswang929a0312014-09-16 11:40:47 +08002079 __rtl8169_set_features(dev, features);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002080 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 return 0;
2083}
2084
Francois Romieuda78dbf2012-01-26 14:18:23 +01002085
Kirill Smelkov810f4892012-11-10 21:11:02 +04002086static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002088 return (skb_vlan_tag_present(skb)) ?
2089 TxVlanTag | swab16(skb_vlan_tag_get(skb)) : 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
Francois Romieu7a8fc772011-03-01 17:18:33 +01002092static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
2094 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Francois Romieu7a8fc772011-03-01 17:18:33 +01002096 if (opts2 & RxVlanTag)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00002097 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
Francois Romieuccdffb92008-07-26 14:26:06 +02002100static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
2102 struct rtl8169_private *tp = netdev_priv(dev);
2103 void __iomem *ioaddr = tp->mmio_addr;
2104 u32 status;
2105
2106 cmd->supported =
2107 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
2108 cmd->port = PORT_FIBRE;
2109 cmd->transceiver = XCVR_INTERNAL;
2110
2111 status = RTL_R32(TBICSR);
2112 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
2113 cmd->autoneg = !!(status & TBINwEnable);
2114
David Decotigny70739492011-04-27 18:32:40 +00002115 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02002117
2118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119}
2120
Francois Romieuccdffb92008-07-26 14:26:06 +02002121static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Francois Romieuccdffb92008-07-26 14:26:06 +02002125 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
2128static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2129{
2130 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02002131 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Francois Romieuda78dbf2012-01-26 14:18:23 +01002133 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02002134 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002135 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Francois Romieuccdffb92008-07-26 14:26:06 +02002137 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
2139
2140static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2141 void *p)
2142{
Francois Romieu5b0384f2006-08-16 16:00:01 +02002143 struct rtl8169_private *tp = netdev_priv(dev);
Peter Wu15edae92013-08-21 23:17:11 +02002144 u32 __iomem *data = tp->mmio_addr;
2145 u32 *dw = p;
2146 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Francois Romieuda78dbf2012-01-26 14:18:23 +01002148 rtl_lock_work(tp);
Peter Wu15edae92013-08-21 23:17:11 +02002149 for (i = 0; i < R8169_REGS_SIZE; i += 4)
2150 memcpy_fromio(dw++, data++, 4);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002151 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152}
2153
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002154static u32 rtl8169_get_msglevel(struct net_device *dev)
2155{
2156 struct rtl8169_private *tp = netdev_priv(dev);
2157
2158 return tp->msg_enable;
2159}
2160
2161static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
2162{
2163 struct rtl8169_private *tp = netdev_priv(dev);
2164
2165 tp->msg_enable = value;
2166}
2167
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002168static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
2169 "tx_packets",
2170 "rx_packets",
2171 "tx_errors",
2172 "rx_errors",
2173 "rx_missed",
2174 "align_errors",
2175 "tx_single_collisions",
2176 "tx_multi_collisions",
2177 "unicast",
2178 "broadcast",
2179 "multicast",
2180 "tx_aborted",
2181 "tx_underrun",
2182};
2183
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002184static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002185{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002186 switch (sset) {
2187 case ETH_SS_STATS:
2188 return ARRAY_SIZE(rtl8169_gstrings);
2189 default:
2190 return -EOPNOTSUPP;
2191 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002192}
2193
Corinna Vinschen42020322015-09-10 10:47:35 +02002194DECLARE_RTL_COND(rtl_counters_cond)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002195{
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002196 void __iomem *ioaddr = tp->mmio_addr;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002197
Corinna Vinschen42020322015-09-10 10:47:35 +02002198 return RTL_R32(CounterAddrLow) & (CounterReset | CounterDump);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002199}
2200
Corinna Vinschen42020322015-09-10 10:47:35 +02002201static bool rtl8169_do_counters(struct net_device *dev, u32 counter_cmd)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002202{
2203 struct rtl8169_private *tp = netdev_priv(dev);
2204 void __iomem *ioaddr = tp->mmio_addr;
Corinna Vinschen42020322015-09-10 10:47:35 +02002205 dma_addr_t paddr = tp->counters_phys_addr;
2206 u32 cmd;
2207 bool ret;
2208
2209 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
2210 cmd = (u64)paddr & DMA_BIT_MASK(32);
2211 RTL_W32(CounterAddrLow, cmd);
2212 RTL_W32(CounterAddrLow, cmd | counter_cmd);
2213
2214 ret = rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002215
2216 RTL_W32(CounterAddrLow, 0);
2217 RTL_W32(CounterAddrHigh, 0);
2218
Corinna Vinschen42020322015-09-10 10:47:35 +02002219 return ret;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002220}
2221
2222static bool rtl8169_reset_counters(struct net_device *dev)
2223{
2224 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002225
2226 /*
2227 * Versions prior to RTL_GIGA_MAC_VER_19 don't support resetting the
2228 * tally counters.
2229 */
2230 if (tp->mac_version < RTL_GIGA_MAC_VER_19)
2231 return true;
2232
Corinna Vinschen42020322015-09-10 10:47:35 +02002233 return rtl8169_do_counters(dev, CounterReset);
Francois Romieuffc46952012-07-06 14:19:23 +02002234}
2235
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002236static bool rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002237{
2238 struct rtl8169_private *tp = netdev_priv(dev);
2239 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002240
Ivan Vecera355423d2009-02-06 21:49:57 -08002241 /*
2242 * Some chips are unable to dump tally counters when the receiver
2243 * is disabled.
2244 */
2245 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002246 return true;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002247
Corinna Vinschen42020322015-09-10 10:47:35 +02002248 return rtl8169_do_counters(dev, CounterDump);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002249}
2250
2251static bool rtl8169_init_counter_offsets(struct net_device *dev)
2252{
2253 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen42020322015-09-10 10:47:35 +02002254 struct rtl8169_counters *counters = tp->counters;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002255 bool ret = false;
2256
2257 /*
2258 * rtl8169_init_counter_offsets is called from rtl_open. On chip
2259 * versions prior to RTL_GIGA_MAC_VER_19 the tally counters are only
2260 * reset by a power cycle, while the counter values collected by the
2261 * driver are reset at every driver unload/load cycle.
2262 *
2263 * To make sure the HW values returned by @get_stats64 match the SW
2264 * values, we collect the initial values at first open(*) and use them
2265 * as offsets to normalize the values returned by @get_stats64.
2266 *
2267 * (*) We can't call rtl8169_init_counter_offsets from rtl_init_one
2268 * for the reason stated in rtl8169_update_counters; CmdRxEnb is only
2269 * set at open time by rtl_hw_start.
2270 */
2271
2272 if (tp->tc_offset.inited)
2273 return true;
2274
2275 /* If both, reset and update fail, propagate to caller. */
2276 if (rtl8169_reset_counters(dev))
2277 ret = true;
2278
2279 if (rtl8169_update_counters(dev))
2280 ret = true;
2281
Corinna Vinschen42020322015-09-10 10:47:35 +02002282 tp->tc_offset.tx_errors = counters->tx_errors;
2283 tp->tc_offset.tx_multi_collision = counters->tx_multi_collision;
2284 tp->tc_offset.tx_aborted = counters->tx_aborted;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002285 tp->tc_offset.inited = true;
2286
2287 return ret;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002288}
2289
Ivan Vecera355423d2009-02-06 21:49:57 -08002290static void rtl8169_get_ethtool_stats(struct net_device *dev,
2291 struct ethtool_stats *stats, u64 *data)
2292{
2293 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen42020322015-09-10 10:47:35 +02002294 struct rtl8169_counters *counters = tp->counters;
Ivan Vecera355423d2009-02-06 21:49:57 -08002295
2296 ASSERT_RTNL();
2297
2298 rtl8169_update_counters(dev);
2299
Corinna Vinschen42020322015-09-10 10:47:35 +02002300 data[0] = le64_to_cpu(counters->tx_packets);
2301 data[1] = le64_to_cpu(counters->rx_packets);
2302 data[2] = le64_to_cpu(counters->tx_errors);
2303 data[3] = le32_to_cpu(counters->rx_errors);
2304 data[4] = le16_to_cpu(counters->rx_missed);
2305 data[5] = le16_to_cpu(counters->align_errors);
2306 data[6] = le32_to_cpu(counters->tx_one_collision);
2307 data[7] = le32_to_cpu(counters->tx_multi_collision);
2308 data[8] = le64_to_cpu(counters->rx_unicast);
2309 data[9] = le64_to_cpu(counters->rx_broadcast);
2310 data[10] = le32_to_cpu(counters->rx_multicast);
2311 data[11] = le16_to_cpu(counters->tx_aborted);
2312 data[12] = le16_to_cpu(counters->tx_underun);
Ivan Vecera355423d2009-02-06 21:49:57 -08002313}
2314
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002315static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2316{
2317 switch(stringset) {
2318 case ETH_SS_STATS:
2319 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
2320 break;
2321 }
2322}
2323
Jeff Garzik7282d492006-09-13 14:30:00 -04002324static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 .get_drvinfo = rtl8169_get_drvinfo,
2326 .get_regs_len = rtl8169_get_regs_len,
2327 .get_link = ethtool_op_get_link,
2328 .get_settings = rtl8169_get_settings,
2329 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002330 .get_msglevel = rtl8169_get_msglevel,
2331 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002333 .get_wol = rtl8169_get_wol,
2334 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002335 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002336 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002337 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00002338 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339};
2340
Francois Romieu07d3f512007-02-21 22:40:46 +01002341static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02002342 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343{
Francois Romieu5d320a22011-05-08 17:47:36 +02002344 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002345 /*
2346 * The driver currently handles the 8168Bf and the 8168Be identically
2347 * but they can be identified more specifically through the test below
2348 * if needed:
2349 *
2350 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01002351 *
2352 * Same thing for the 8101Eb and the 8101Ec:
2353 *
2354 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01002355 */
Francois Romieu37441002011-06-17 22:58:54 +02002356 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002358 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 int mac_version;
2360 } mac_info[] = {
Chun-Hao Lin935e2212014-10-07 15:10:41 +08002361 /* 8168EP family. */
2362 { 0x7cf00000, 0x50200000, RTL_GIGA_MAC_VER_51 },
2363 { 0x7cf00000, 0x50100000, RTL_GIGA_MAC_VER_50 },
2364 { 0x7cf00000, 0x50000000, RTL_GIGA_MAC_VER_49 },
2365
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002366 /* 8168H family. */
2367 { 0x7cf00000, 0x54100000, RTL_GIGA_MAC_VER_46 },
2368 { 0x7cf00000, 0x54000000, RTL_GIGA_MAC_VER_45 },
2369
Hayes Wangc5583862012-07-02 17:23:22 +08002370 /* 8168G family. */
hayeswang45dd95c2013-07-08 17:09:01 +08002371 { 0x7cf00000, 0x5c800000, RTL_GIGA_MAC_VER_44 },
hayeswang57538c42013-04-01 22:23:40 +00002372 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42 },
Hayes Wangc5583862012-07-02 17:23:22 +08002373 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2374 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2375
Hayes Wangc2218922011-09-06 16:55:18 +08002376 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08002377 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08002378 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2379 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2380
hayeswang01dc7fe2011-03-21 01:50:28 +00002381 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08002382 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00002383 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
2384 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2385 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2386
Francois Romieu5b538df2008-07-20 16:22:45 +02002387 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00002388 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
2389 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00002390 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002391
françois romieue6de30d2011-01-03 15:08:37 +00002392 /* 8168DP family. */
2393 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2394 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00002395 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00002396
Francois Romieuef808d52008-06-29 13:10:54 +02002397 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07002398 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02002399 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02002400 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002401 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002402 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2403 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02002404 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02002405 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02002406 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002407
2408 /* 8168B family. */
2409 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2410 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
2411 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2412 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2413
2414 /* 8101 family. */
Hayes Wang5598bfe2012-07-02 17:23:21 +08002415 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39 },
2416 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
Hayes Wang7e18dca2012-03-30 14:33:02 +08002417 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00002418 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08002419 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
2420 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2421 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002422 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
2423 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
2424 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2425 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2426 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2427 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002428 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002429 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002430 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002431 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2432 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002433 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2434 /* FIXME: where did these entries come from ? -- FR */
2435 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2436 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2437
2438 /* 8110 family. */
2439 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2440 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2441 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2442 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2443 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2444 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2445
Jean Delvaref21b75e2009-05-26 20:54:48 -07002446 /* Catch-all */
2447 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02002448 };
2449 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 u32 reg;
2451
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002452 reg = RTL_R32(TxConfig);
2453 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 p++;
2455 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02002456
2457 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2458 netif_notice(tp, probe, dev,
2459 "unknown MAC, using family default\n");
2460 tp->mac_version = default_version;
hayeswang58152cd2013-04-01 22:23:42 +00002461 } else if (tp->mac_version == RTL_GIGA_MAC_VER_42) {
2462 tp->mac_version = tp->mii.supports_gmii ?
2463 RTL_GIGA_MAC_VER_42 :
2464 RTL_GIGA_MAC_VER_43;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002465 } else if (tp->mac_version == RTL_GIGA_MAC_VER_45) {
2466 tp->mac_version = tp->mii.supports_gmii ?
2467 RTL_GIGA_MAC_VER_45 :
2468 RTL_GIGA_MAC_VER_47;
2469 } else if (tp->mac_version == RTL_GIGA_MAC_VER_46) {
2470 tp->mac_version = tp->mii.supports_gmii ?
2471 RTL_GIGA_MAC_VER_46 :
2472 RTL_GIGA_MAC_VER_48;
Francois Romieu5d320a22011-05-08 17:47:36 +02002473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474}
2475
2476static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2477{
Francois Romieubcf0bf92006-07-26 23:14:13 +02002478 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479}
2480
Francois Romieu867763c2007-08-17 18:21:58 +02002481struct phy_reg {
2482 u16 reg;
2483 u16 val;
2484};
2485
françois romieu4da19632011-01-03 15:07:55 +00002486static void rtl_writephy_batch(struct rtl8169_private *tp,
2487 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02002488{
2489 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00002490 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02002491 regs++;
2492 }
2493}
2494
françois romieubca03d52011-01-03 15:07:31 +00002495#define PHY_READ 0x00000000
2496#define PHY_DATA_OR 0x10000000
2497#define PHY_DATA_AND 0x20000000
2498#define PHY_BJMPN 0x30000000
hayeswangeee37862013-04-01 22:23:38 +00002499#define PHY_MDIO_CHG 0x40000000
françois romieubca03d52011-01-03 15:07:31 +00002500#define PHY_CLEAR_READCOUNT 0x70000000
2501#define PHY_WRITE 0x80000000
2502#define PHY_READCOUNT_EQ_SKIP 0x90000000
2503#define PHY_COMP_EQ_SKIPN 0xa0000000
2504#define PHY_COMP_NEQ_SKIPN 0xb0000000
2505#define PHY_WRITE_PREVIOUS 0xc0000000
2506#define PHY_SKIPN 0xd0000000
2507#define PHY_DELAY_MS 0xe0000000
françois romieubca03d52011-01-03 15:07:31 +00002508
Hayes Wang960aee62011-06-18 11:37:48 +02002509struct fw_info {
2510 u32 magic;
2511 char version[RTL_VER_SIZE];
2512 __le32 fw_start;
2513 __le32 fw_len;
2514 u8 chksum;
2515} __packed;
2516
Francois Romieu1c361ef2011-06-17 17:16:24 +02002517#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2518
2519static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002520{
Francois Romieub6ffd972011-06-17 17:00:05 +02002521 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002522 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002523 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2524 char *version = rtl_fw->version;
2525 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002526
Francois Romieu1c361ef2011-06-17 17:16:24 +02002527 if (fw->size < FW_OPCODE_SIZE)
2528 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002529
2530 if (!fw_info->magic) {
2531 size_t i, size, start;
2532 u8 checksum = 0;
2533
2534 if (fw->size < sizeof(*fw_info))
2535 goto out;
2536
2537 for (i = 0; i < fw->size; i++)
2538 checksum += fw->data[i];
2539 if (checksum != 0)
2540 goto out;
2541
2542 start = le32_to_cpu(fw_info->fw_start);
2543 if (start > fw->size)
2544 goto out;
2545
2546 size = le32_to_cpu(fw_info->fw_len);
2547 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2548 goto out;
2549
2550 memcpy(version, fw_info->version, RTL_VER_SIZE);
2551
2552 pa->code = (__le32 *)(fw->data + start);
2553 pa->size = size;
2554 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002555 if (fw->size % FW_OPCODE_SIZE)
2556 goto out;
2557
2558 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2559
2560 pa->code = (__le32 *)fw->data;
2561 pa->size = fw->size / FW_OPCODE_SIZE;
2562 }
2563 version[RTL_VER_SIZE - 1] = 0;
2564
2565 rc = true;
2566out:
2567 return rc;
2568}
2569
Francois Romieufd112f22011-06-18 00:10:29 +02002570static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2571 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002572{
Francois Romieufd112f22011-06-18 00:10:29 +02002573 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002574 size_t index;
2575
Francois Romieu1c361ef2011-06-17 17:16:24 +02002576 for (index = 0; index < pa->size; index++) {
2577 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002578 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002579
hayeswang42b82dc2011-01-10 02:07:25 +00002580 switch(action & 0xf0000000) {
2581 case PHY_READ:
2582 case PHY_DATA_OR:
2583 case PHY_DATA_AND:
hayeswangeee37862013-04-01 22:23:38 +00002584 case PHY_MDIO_CHG:
hayeswang42b82dc2011-01-10 02:07:25 +00002585 case PHY_CLEAR_READCOUNT:
2586 case PHY_WRITE:
2587 case PHY_WRITE_PREVIOUS:
2588 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002589 break;
2590
hayeswang42b82dc2011-01-10 02:07:25 +00002591 case PHY_BJMPN:
2592 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002593 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002594 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002595 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002596 }
2597 break;
2598 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002599 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002600 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002601 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002602 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002603 }
2604 break;
2605 case PHY_COMP_EQ_SKIPN:
2606 case PHY_COMP_NEQ_SKIPN:
2607 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002608 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002609 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002610 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002611 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002612 }
2613 break;
2614
hayeswang42b82dc2011-01-10 02:07:25 +00002615 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002616 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002617 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002618 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002619 }
2620 }
Francois Romieufd112f22011-06-18 00:10:29 +02002621 rc = true;
2622out:
2623 return rc;
2624}
françois romieubca03d52011-01-03 15:07:31 +00002625
Francois Romieufd112f22011-06-18 00:10:29 +02002626static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2627{
2628 struct net_device *dev = tp->dev;
2629 int rc = -EINVAL;
2630
2631 if (!rtl_fw_format_ok(tp, rtl_fw)) {
Yannick Guerrini5c2d2b12015-02-24 13:03:51 +01002632 netif_err(tp, ifup, dev, "invalid firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002633 goto out;
2634 }
2635
2636 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2637 rc = 0;
2638out:
2639 return rc;
2640}
2641
2642static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2643{
2644 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
hayeswangeee37862013-04-01 22:23:38 +00002645 struct mdio_ops org, *ops = &tp->mdio_ops;
Francois Romieufd112f22011-06-18 00:10:29 +02002646 u32 predata, count;
2647 size_t index;
2648
2649 predata = count = 0;
hayeswangeee37862013-04-01 22:23:38 +00002650 org.write = ops->write;
2651 org.read = ops->read;
hayeswang42b82dc2011-01-10 02:07:25 +00002652
Francois Romieu1c361ef2011-06-17 17:16:24 +02002653 for (index = 0; index < pa->size; ) {
2654 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002655 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002656 u32 regno = (action & 0x0fff0000) >> 16;
2657
2658 if (!action)
2659 break;
françois romieubca03d52011-01-03 15:07:31 +00002660
2661 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002662 case PHY_READ:
2663 predata = rtl_readphy(tp, regno);
2664 count++;
2665 index++;
françois romieubca03d52011-01-03 15:07:31 +00002666 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002667 case PHY_DATA_OR:
2668 predata |= data;
2669 index++;
2670 break;
2671 case PHY_DATA_AND:
2672 predata &= data;
2673 index++;
2674 break;
2675 case PHY_BJMPN:
2676 index -= regno;
2677 break;
hayeswangeee37862013-04-01 22:23:38 +00002678 case PHY_MDIO_CHG:
2679 if (data == 0) {
2680 ops->write = org.write;
2681 ops->read = org.read;
2682 } else if (data == 1) {
2683 ops->write = mac_mcu_write;
2684 ops->read = mac_mcu_read;
2685 }
2686
hayeswang42b82dc2011-01-10 02:07:25 +00002687 index++;
2688 break;
2689 case PHY_CLEAR_READCOUNT:
2690 count = 0;
2691 index++;
2692 break;
2693 case PHY_WRITE:
2694 rtl_writephy(tp, regno, data);
2695 index++;
2696 break;
2697 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002698 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002699 break;
2700 case PHY_COMP_EQ_SKIPN:
2701 if (predata == data)
2702 index += regno;
2703 index++;
2704 break;
2705 case PHY_COMP_NEQ_SKIPN:
2706 if (predata != data)
2707 index += regno;
2708 index++;
2709 break;
2710 case PHY_WRITE_PREVIOUS:
2711 rtl_writephy(tp, regno, predata);
2712 index++;
2713 break;
2714 case PHY_SKIPN:
2715 index += regno + 1;
2716 break;
2717 case PHY_DELAY_MS:
2718 mdelay(data);
2719 index++;
2720 break;
2721
françois romieubca03d52011-01-03 15:07:31 +00002722 default:
2723 BUG();
2724 }
2725 }
hayeswangeee37862013-04-01 22:23:38 +00002726
2727 ops->write = org.write;
2728 ops->read = org.read;
françois romieubca03d52011-01-03 15:07:31 +00002729}
2730
françois romieuf1e02ed2011-01-13 13:07:53 +00002731static void rtl_release_firmware(struct rtl8169_private *tp)
2732{
Francois Romieub6ffd972011-06-17 17:00:05 +02002733 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2734 release_firmware(tp->rtl_fw->fw);
2735 kfree(tp->rtl_fw);
2736 }
2737 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002738}
2739
François Romieu953a12c2011-04-24 17:38:48 +02002740static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002741{
Francois Romieub6ffd972011-06-17 17:00:05 +02002742 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002743
2744 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieueef63cc2013-02-08 23:43:20 +01002745 if (!IS_ERR_OR_NULL(rtl_fw))
Francois Romieub6ffd972011-06-17 17:00:05 +02002746 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002747}
2748
2749static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2750{
2751 if (rtl_readphy(tp, reg) != val)
2752 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2753 else
2754 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002755}
2756
françois romieu4da19632011-01-03 15:07:55 +00002757static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002759 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002760 { 0x1f, 0x0001 },
2761 { 0x06, 0x006e },
2762 { 0x08, 0x0708 },
2763 { 0x15, 0x4000 },
2764 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
françois romieu0b9b5712009-08-10 19:44:56 +00002766 { 0x1f, 0x0001 },
2767 { 0x03, 0x00a1 },
2768 { 0x02, 0x0008 },
2769 { 0x01, 0x0120 },
2770 { 0x00, 0x1000 },
2771 { 0x04, 0x0800 },
2772 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
françois romieu0b9b5712009-08-10 19:44:56 +00002774 { 0x03, 0xff41 },
2775 { 0x02, 0xdf60 },
2776 { 0x01, 0x0140 },
2777 { 0x00, 0x0077 },
2778 { 0x04, 0x7800 },
2779 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
françois romieu0b9b5712009-08-10 19:44:56 +00002781 { 0x03, 0x802f },
2782 { 0x02, 0x4f02 },
2783 { 0x01, 0x0409 },
2784 { 0x00, 0xf0f9 },
2785 { 0x04, 0x9800 },
2786 { 0x04, 0x9000 },
2787
2788 { 0x03, 0xdf01 },
2789 { 0x02, 0xdf20 },
2790 { 0x01, 0xff95 },
2791 { 0x00, 0xba00 },
2792 { 0x04, 0xa800 },
2793 { 0x04, 0xa000 },
2794
2795 { 0x03, 0xff41 },
2796 { 0x02, 0xdf20 },
2797 { 0x01, 0x0140 },
2798 { 0x00, 0x00bb },
2799 { 0x04, 0xb800 },
2800 { 0x04, 0xb000 },
2801
2802 { 0x03, 0xdf41 },
2803 { 0x02, 0xdc60 },
2804 { 0x01, 0x6340 },
2805 { 0x00, 0x007d },
2806 { 0x04, 0xd800 },
2807 { 0x04, 0xd000 },
2808
2809 { 0x03, 0xdf01 },
2810 { 0x02, 0xdf20 },
2811 { 0x01, 0x100a },
2812 { 0x00, 0xa0ff },
2813 { 0x04, 0xf800 },
2814 { 0x04, 0xf000 },
2815
2816 { 0x1f, 0x0000 },
2817 { 0x0b, 0x0000 },
2818 { 0x00, 0x9200 }
2819 };
2820
françois romieu4da19632011-01-03 15:07:55 +00002821 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822}
2823
françois romieu4da19632011-01-03 15:07:55 +00002824static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002825{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002826 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002827 { 0x1f, 0x0002 },
2828 { 0x01, 0x90d0 },
2829 { 0x1f, 0x0000 }
2830 };
2831
françois romieu4da19632011-01-03 15:07:55 +00002832 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002833}
2834
françois romieu4da19632011-01-03 15:07:55 +00002835static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002836{
2837 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002838
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002839 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2840 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002841 return;
2842
françois romieu4da19632011-01-03 15:07:55 +00002843 rtl_writephy(tp, 0x1f, 0x0001);
2844 rtl_writephy(tp, 0x10, 0xf01b);
2845 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002846}
2847
françois romieu4da19632011-01-03 15:07:55 +00002848static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002849{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002850 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002851 { 0x1f, 0x0001 },
2852 { 0x04, 0x0000 },
2853 { 0x03, 0x00a1 },
2854 { 0x02, 0x0008 },
2855 { 0x01, 0x0120 },
2856 { 0x00, 0x1000 },
2857 { 0x04, 0x0800 },
2858 { 0x04, 0x9000 },
2859 { 0x03, 0x802f },
2860 { 0x02, 0x4f02 },
2861 { 0x01, 0x0409 },
2862 { 0x00, 0xf099 },
2863 { 0x04, 0x9800 },
2864 { 0x04, 0xa000 },
2865 { 0x03, 0xdf01 },
2866 { 0x02, 0xdf20 },
2867 { 0x01, 0xff95 },
2868 { 0x00, 0xba00 },
2869 { 0x04, 0xa800 },
2870 { 0x04, 0xf000 },
2871 { 0x03, 0xdf01 },
2872 { 0x02, 0xdf20 },
2873 { 0x01, 0x101a },
2874 { 0x00, 0xa0ff },
2875 { 0x04, 0xf800 },
2876 { 0x04, 0x0000 },
2877 { 0x1f, 0x0000 },
2878
2879 { 0x1f, 0x0001 },
2880 { 0x10, 0xf41b },
2881 { 0x14, 0xfb54 },
2882 { 0x18, 0xf5c7 },
2883 { 0x1f, 0x0000 },
2884
2885 { 0x1f, 0x0001 },
2886 { 0x17, 0x0cc0 },
2887 { 0x1f, 0x0000 }
2888 };
2889
françois romieu4da19632011-01-03 15:07:55 +00002890 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002891
françois romieu4da19632011-01-03 15:07:55 +00002892 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002893}
2894
françois romieu4da19632011-01-03 15:07:55 +00002895static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002896{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002897 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002898 { 0x1f, 0x0001 },
2899 { 0x04, 0x0000 },
2900 { 0x03, 0x00a1 },
2901 { 0x02, 0x0008 },
2902 { 0x01, 0x0120 },
2903 { 0x00, 0x1000 },
2904 { 0x04, 0x0800 },
2905 { 0x04, 0x9000 },
2906 { 0x03, 0x802f },
2907 { 0x02, 0x4f02 },
2908 { 0x01, 0x0409 },
2909 { 0x00, 0xf099 },
2910 { 0x04, 0x9800 },
2911 { 0x04, 0xa000 },
2912 { 0x03, 0xdf01 },
2913 { 0x02, 0xdf20 },
2914 { 0x01, 0xff95 },
2915 { 0x00, 0xba00 },
2916 { 0x04, 0xa800 },
2917 { 0x04, 0xf000 },
2918 { 0x03, 0xdf01 },
2919 { 0x02, 0xdf20 },
2920 { 0x01, 0x101a },
2921 { 0x00, 0xa0ff },
2922 { 0x04, 0xf800 },
2923 { 0x04, 0x0000 },
2924 { 0x1f, 0x0000 },
2925
2926 { 0x1f, 0x0001 },
2927 { 0x0b, 0x8480 },
2928 { 0x1f, 0x0000 },
2929
2930 { 0x1f, 0x0001 },
2931 { 0x18, 0x67c7 },
2932 { 0x04, 0x2000 },
2933 { 0x03, 0x002f },
2934 { 0x02, 0x4360 },
2935 { 0x01, 0x0109 },
2936 { 0x00, 0x3022 },
2937 { 0x04, 0x2800 },
2938 { 0x1f, 0x0000 },
2939
2940 { 0x1f, 0x0001 },
2941 { 0x17, 0x0cc0 },
2942 { 0x1f, 0x0000 }
2943 };
2944
françois romieu4da19632011-01-03 15:07:55 +00002945 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002946}
2947
françois romieu4da19632011-01-03 15:07:55 +00002948static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002949{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002950 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002951 { 0x10, 0xf41b },
2952 { 0x1f, 0x0000 }
2953 };
2954
françois romieu4da19632011-01-03 15:07:55 +00002955 rtl_writephy(tp, 0x1f, 0x0001);
2956 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002957
françois romieu4da19632011-01-03 15:07:55 +00002958 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002959}
2960
françois romieu4da19632011-01-03 15:07:55 +00002961static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002962{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002963 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002964 { 0x1f, 0x0001 },
2965 { 0x10, 0xf41b },
2966 { 0x1f, 0x0000 }
2967 };
2968
françois romieu4da19632011-01-03 15:07:55 +00002969 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002970}
2971
françois romieu4da19632011-01-03 15:07:55 +00002972static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002973{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002974 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002975 { 0x1f, 0x0000 },
2976 { 0x1d, 0x0f00 },
2977 { 0x1f, 0x0002 },
2978 { 0x0c, 0x1ec8 },
2979 { 0x1f, 0x0000 }
2980 };
2981
françois romieu4da19632011-01-03 15:07:55 +00002982 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002983}
2984
françois romieu4da19632011-01-03 15:07:55 +00002985static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002986{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002987 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002988 { 0x1f, 0x0001 },
2989 { 0x1d, 0x3d98 },
2990 { 0x1f, 0x0000 }
2991 };
2992
françois romieu4da19632011-01-03 15:07:55 +00002993 rtl_writephy(tp, 0x1f, 0x0000);
2994 rtl_patchphy(tp, 0x14, 1 << 5);
2995 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002996
françois romieu4da19632011-01-03 15:07:55 +00002997 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002998}
2999
françois romieu4da19632011-01-03 15:07:55 +00003000static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02003001{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003002 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02003003 { 0x1f, 0x0001 },
3004 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02003005 { 0x1f, 0x0002 },
3006 { 0x00, 0x88d4 },
3007 { 0x01, 0x82b1 },
3008 { 0x03, 0x7002 },
3009 { 0x08, 0x9e30 },
3010 { 0x09, 0x01f0 },
3011 { 0x0a, 0x5500 },
3012 { 0x0c, 0x00c8 },
3013 { 0x1f, 0x0003 },
3014 { 0x12, 0xc096 },
3015 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02003016 { 0x1f, 0x0000 },
3017 { 0x1f, 0x0000 },
3018 { 0x09, 0x2000 },
3019 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02003020 };
3021
françois romieu4da19632011-01-03 15:07:55 +00003022 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003023
françois romieu4da19632011-01-03 15:07:55 +00003024 rtl_patchphy(tp, 0x14, 1 << 5);
3025 rtl_patchphy(tp, 0x0d, 1 << 5);
3026 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02003027}
3028
françois romieu4da19632011-01-03 15:07:55 +00003029static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02003030{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003031 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02003032 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003033 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003034 { 0x03, 0x802f },
3035 { 0x02, 0x4f02 },
3036 { 0x01, 0x0409 },
3037 { 0x00, 0xf099 },
3038 { 0x04, 0x9800 },
3039 { 0x04, 0x9000 },
3040 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003041 { 0x1f, 0x0002 },
3042 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003043 { 0x06, 0x0761 },
3044 { 0x1f, 0x0003 },
3045 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003046 { 0x1f, 0x0000 }
3047 };
3048
françois romieu4da19632011-01-03 15:07:55 +00003049 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003050
françois romieu4da19632011-01-03 15:07:55 +00003051 rtl_patchphy(tp, 0x16, 1 << 0);
3052 rtl_patchphy(tp, 0x14, 1 << 5);
3053 rtl_patchphy(tp, 0x0d, 1 << 5);
3054 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003055}
3056
françois romieu4da19632011-01-03 15:07:55 +00003057static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02003058{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003059 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02003060 { 0x1f, 0x0001 },
3061 { 0x12, 0x2300 },
3062 { 0x1d, 0x3d98 },
3063 { 0x1f, 0x0002 },
3064 { 0x0c, 0x7eb8 },
3065 { 0x06, 0x5461 },
3066 { 0x1f, 0x0003 },
3067 { 0x16, 0x0f0a },
3068 { 0x1f, 0x0000 }
3069 };
3070
françois romieu4da19632011-01-03 15:07:55 +00003071 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02003072
françois romieu4da19632011-01-03 15:07:55 +00003073 rtl_patchphy(tp, 0x16, 1 << 0);
3074 rtl_patchphy(tp, 0x14, 1 << 5);
3075 rtl_patchphy(tp, 0x0d, 1 << 5);
3076 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02003077}
3078
françois romieu4da19632011-01-03 15:07:55 +00003079static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02003080{
françois romieu4da19632011-01-03 15:07:55 +00003081 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003082}
3083
françois romieubca03d52011-01-03 15:07:31 +00003084static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02003085{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003086 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003087 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02003088 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00003089 { 0x06, 0x4064 },
3090 { 0x07, 0x2863 },
3091 { 0x08, 0x059c },
3092 { 0x09, 0x26b4 },
3093 { 0x0a, 0x6a19 },
3094 { 0x0b, 0xdcc8 },
3095 { 0x10, 0xf06d },
3096 { 0x14, 0x7f68 },
3097 { 0x18, 0x7fd9 },
3098 { 0x1c, 0xf0ff },
3099 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02003100 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00003101 { 0x12, 0xf49f },
3102 { 0x13, 0x070b },
3103 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00003104 { 0x14, 0x94c0 },
3105
3106 /*
3107 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003108 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003109 */
Francois Romieu5b538df2008-07-20 16:22:45 +02003110 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00003111 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003112 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003113 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003114 { 0x06, 0x5561 },
3115
3116 /*
3117 * Can not link to 1Gbps with bad cable
3118 * Decrease SNR threshold form 21.07dB to 19.04dB
3119 */
3120 { 0x1f, 0x0001 },
3121 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003122
3123 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003124 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003125 };
3126
françois romieu4da19632011-01-03 15:07:55 +00003127 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02003128
françois romieubca03d52011-01-03 15:07:31 +00003129 /*
3130 * Rx Error Issue
3131 * Fine Tune Switching regulator parameter
3132 */
françois romieu4da19632011-01-03 15:07:55 +00003133 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003134 rtl_w0w1_phy(tp, 0x0b, 0x0010, 0x00ef);
3135 rtl_w0w1_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00003136
Francois Romieufdf6fc02012-07-06 22:40:38 +02003137 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003138 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003139 { 0x1f, 0x0002 },
3140 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02003141 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003142 { 0x05, 0x8330 },
3143 { 0x06, 0x669a },
3144 { 0x1f, 0x0002 }
3145 };
3146 int val;
3147
françois romieu4da19632011-01-03 15:07:55 +00003148 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003149
françois romieu4da19632011-01-03 15:07:55 +00003150 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003151
3152 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003153 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003154 0x0065, 0x0066, 0x0067, 0x0068,
3155 0x0069, 0x006a, 0x006b, 0x006c
3156 };
3157 int i;
3158
françois romieu4da19632011-01-03 15:07:55 +00003159 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003160
3161 val &= 0xff00;
3162 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003163 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003164 }
3165 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003166 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003167 { 0x1f, 0x0002 },
3168 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003169 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003170 { 0x05, 0x8330 },
3171 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003172 };
3173
françois romieu4da19632011-01-03 15:07:55 +00003174 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003175 }
3176
françois romieubca03d52011-01-03 15:07:31 +00003177 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00003178 rtl_writephy(tp, 0x1f, 0x0002);
3179 rtl_patchphy(tp, 0x0d, 0x0300);
3180 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00003181
françois romieubca03d52011-01-03 15:07:31 +00003182 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003183 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003184 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3185 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003186
françois romieu4da19632011-01-03 15:07:55 +00003187 rtl_writephy(tp, 0x1f, 0x0005);
3188 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003189
3190 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00003191
françois romieu4da19632011-01-03 15:07:55 +00003192 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003193}
3194
françois romieubca03d52011-01-03 15:07:31 +00003195static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003196{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003197 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003198 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00003199 { 0x1f, 0x0001 },
3200 { 0x06, 0x4064 },
3201 { 0x07, 0x2863 },
3202 { 0x08, 0x059c },
3203 { 0x09, 0x26b4 },
3204 { 0x0a, 0x6a19 },
3205 { 0x0b, 0xdcc8 },
3206 { 0x10, 0xf06d },
3207 { 0x14, 0x7f68 },
3208 { 0x18, 0x7fd9 },
3209 { 0x1c, 0xf0ff },
3210 { 0x1d, 0x3d9c },
3211 { 0x1f, 0x0003 },
3212 { 0x12, 0xf49f },
3213 { 0x13, 0x070b },
3214 { 0x1a, 0x05ad },
3215 { 0x14, 0x94c0 },
3216
françois romieubca03d52011-01-03 15:07:31 +00003217 /*
3218 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003219 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003220 */
françois romieudaf9df62009-10-07 12:44:20 +00003221 { 0x1f, 0x0002 },
3222 { 0x06, 0x5561 },
3223 { 0x1f, 0x0005 },
3224 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003225 { 0x06, 0x5561 },
3226
3227 /*
3228 * Can not link to 1Gbps with bad cable
3229 * Decrease SNR threshold form 21.07dB to 19.04dB
3230 */
3231 { 0x1f, 0x0001 },
3232 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003233
3234 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003235 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00003236 };
3237
françois romieu4da19632011-01-03 15:07:55 +00003238 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00003239
Francois Romieufdf6fc02012-07-06 22:40:38 +02003240 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003241 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003242 { 0x1f, 0x0002 },
3243 { 0x05, 0x669a },
3244 { 0x1f, 0x0005 },
3245 { 0x05, 0x8330 },
3246 { 0x06, 0x669a },
3247
3248 { 0x1f, 0x0002 }
3249 };
3250 int val;
3251
françois romieu4da19632011-01-03 15:07:55 +00003252 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003253
françois romieu4da19632011-01-03 15:07:55 +00003254 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003255 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08003256 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003257 0x0065, 0x0066, 0x0067, 0x0068,
3258 0x0069, 0x006a, 0x006b, 0x006c
3259 };
3260 int i;
3261
françois romieu4da19632011-01-03 15:07:55 +00003262 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003263
3264 val &= 0xff00;
3265 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003266 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003267 }
3268 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003269 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003270 { 0x1f, 0x0002 },
3271 { 0x05, 0x2642 },
3272 { 0x1f, 0x0005 },
3273 { 0x05, 0x8330 },
3274 { 0x06, 0x2642 }
3275 };
3276
françois romieu4da19632011-01-03 15:07:55 +00003277 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003278 }
3279
françois romieubca03d52011-01-03 15:07:31 +00003280 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003281 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003282 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3283 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003284
françois romieubca03d52011-01-03 15:07:31 +00003285 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00003286 rtl_writephy(tp, 0x1f, 0x0002);
3287 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00003288
françois romieu4da19632011-01-03 15:07:55 +00003289 rtl_writephy(tp, 0x1f, 0x0005);
3290 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003291
3292 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00003293
françois romieu4da19632011-01-03 15:07:55 +00003294 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003295}
3296
françois romieu4da19632011-01-03 15:07:55 +00003297static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003298{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003299 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003300 { 0x1f, 0x0002 },
3301 { 0x10, 0x0008 },
3302 { 0x0d, 0x006c },
3303
3304 { 0x1f, 0x0000 },
3305 { 0x0d, 0xf880 },
3306
3307 { 0x1f, 0x0001 },
3308 { 0x17, 0x0cc0 },
3309
3310 { 0x1f, 0x0001 },
3311 { 0x0b, 0xa4d8 },
3312 { 0x09, 0x281c },
3313 { 0x07, 0x2883 },
3314 { 0x0a, 0x6b35 },
3315 { 0x1d, 0x3da4 },
3316 { 0x1c, 0xeffd },
3317 { 0x14, 0x7f52 },
3318 { 0x18, 0x7fc6 },
3319 { 0x08, 0x0601 },
3320 { 0x06, 0x4063 },
3321 { 0x10, 0xf074 },
3322 { 0x1f, 0x0003 },
3323 { 0x13, 0x0789 },
3324 { 0x12, 0xf4bd },
3325 { 0x1a, 0x04fd },
3326 { 0x14, 0x84b0 },
3327 { 0x1f, 0x0000 },
3328 { 0x00, 0x9200 },
3329
3330 { 0x1f, 0x0005 },
3331 { 0x01, 0x0340 },
3332 { 0x1f, 0x0001 },
3333 { 0x04, 0x4000 },
3334 { 0x03, 0x1d21 },
3335 { 0x02, 0x0c32 },
3336 { 0x01, 0x0200 },
3337 { 0x00, 0x5554 },
3338 { 0x04, 0x4800 },
3339 { 0x04, 0x4000 },
3340 { 0x04, 0xf000 },
3341 { 0x03, 0xdf01 },
3342 { 0x02, 0xdf20 },
3343 { 0x01, 0x101a },
3344 { 0x00, 0xa0ff },
3345 { 0x04, 0xf800 },
3346 { 0x04, 0xf000 },
3347 { 0x1f, 0x0000 },
3348
3349 { 0x1f, 0x0007 },
3350 { 0x1e, 0x0023 },
3351 { 0x16, 0x0000 },
3352 { 0x1f, 0x0000 }
3353 };
3354
françois romieu4da19632011-01-03 15:07:55 +00003355 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003356}
3357
françois romieue6de30d2011-01-03 15:08:37 +00003358static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
3359{
3360 static const struct phy_reg phy_reg_init[] = {
3361 { 0x1f, 0x0001 },
3362 { 0x17, 0x0cc0 },
3363
3364 { 0x1f, 0x0007 },
3365 { 0x1e, 0x002d },
3366 { 0x18, 0x0040 },
3367 { 0x1f, 0x0000 }
3368 };
3369
3370 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3371 rtl_patchphy(tp, 0x0d, 1 << 5);
3372}
3373
Hayes Wang70090422011-07-06 15:58:06 +08003374static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00003375{
3376 static const struct phy_reg phy_reg_init[] = {
3377 /* Enable Delay cap */
3378 { 0x1f, 0x0005 },
3379 { 0x05, 0x8b80 },
3380 { 0x06, 0xc896 },
3381 { 0x1f, 0x0000 },
3382
3383 /* Channel estimation fine tune */
3384 { 0x1f, 0x0001 },
3385 { 0x0b, 0x6c20 },
3386 { 0x07, 0x2872 },
3387 { 0x1c, 0xefff },
3388 { 0x1f, 0x0003 },
3389 { 0x14, 0x6420 },
3390 { 0x1f, 0x0000 },
3391
3392 /* Update PFM & 10M TX idle timer */
3393 { 0x1f, 0x0007 },
3394 { 0x1e, 0x002f },
3395 { 0x15, 0x1919 },
3396 { 0x1f, 0x0000 },
3397
3398 { 0x1f, 0x0007 },
3399 { 0x1e, 0x00ac },
3400 { 0x18, 0x0006 },
3401 { 0x1f, 0x0000 }
3402 };
3403
Francois Romieu15ecd032011-04-27 13:52:22 -07003404 rtl_apply_firmware(tp);
3405
hayeswang01dc7fe2011-03-21 01:50:28 +00003406 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3407
3408 /* DCO enable for 10M IDLE Power */
3409 rtl_writephy(tp, 0x1f, 0x0007);
3410 rtl_writephy(tp, 0x1e, 0x0023);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003411 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003412 rtl_writephy(tp, 0x1f, 0x0000);
3413
3414 /* For impedance matching */
3415 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003416 rtl_w0w1_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003417 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003418
3419 /* PHY auto speed down */
3420 rtl_writephy(tp, 0x1f, 0x0007);
3421 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003422 rtl_w0w1_phy(tp, 0x18, 0x0050, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003423 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003424 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003425
3426 rtl_writephy(tp, 0x1f, 0x0005);
3427 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003428 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003429 rtl_writephy(tp, 0x1f, 0x0000);
3430
3431 rtl_writephy(tp, 0x1f, 0x0005);
3432 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003433 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003434 rtl_writephy(tp, 0x1f, 0x0007);
3435 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003436 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x1100);
hayeswang01dc7fe2011-03-21 01:50:28 +00003437 rtl_writephy(tp, 0x1f, 0x0006);
3438 rtl_writephy(tp, 0x00, 0x5a00);
3439 rtl_writephy(tp, 0x1f, 0x0000);
3440 rtl_writephy(tp, 0x0d, 0x0007);
3441 rtl_writephy(tp, 0x0e, 0x003c);
3442 rtl_writephy(tp, 0x0d, 0x4007);
3443 rtl_writephy(tp, 0x0e, 0x0000);
3444 rtl_writephy(tp, 0x0d, 0x0000);
3445}
3446
françois romieu9ecb9aa2012-12-07 11:20:21 +00003447static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3448{
3449 const u16 w[] = {
3450 addr[0] | (addr[1] << 8),
3451 addr[2] | (addr[3] << 8),
3452 addr[4] | (addr[5] << 8)
3453 };
3454 const struct exgmac_reg e[] = {
3455 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3456 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3457 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3458 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3459 };
3460
3461 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3462}
3463
Hayes Wang70090422011-07-06 15:58:06 +08003464static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3465{
3466 static const struct phy_reg phy_reg_init[] = {
3467 /* Enable Delay cap */
3468 { 0x1f, 0x0004 },
3469 { 0x1f, 0x0007 },
3470 { 0x1e, 0x00ac },
3471 { 0x18, 0x0006 },
3472 { 0x1f, 0x0002 },
3473 { 0x1f, 0x0000 },
3474 { 0x1f, 0x0000 },
3475
3476 /* Channel estimation fine tune */
3477 { 0x1f, 0x0003 },
3478 { 0x09, 0xa20f },
3479 { 0x1f, 0x0000 },
3480 { 0x1f, 0x0000 },
3481
3482 /* Green Setting */
3483 { 0x1f, 0x0005 },
3484 { 0x05, 0x8b5b },
3485 { 0x06, 0x9222 },
3486 { 0x05, 0x8b6d },
3487 { 0x06, 0x8000 },
3488 { 0x05, 0x8b76 },
3489 { 0x06, 0x8000 },
3490 { 0x1f, 0x0000 }
3491 };
3492
3493 rtl_apply_firmware(tp);
3494
3495 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3496
3497 /* For 4-corner performance improve */
3498 rtl_writephy(tp, 0x1f, 0x0005);
3499 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003500 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003501 rtl_writephy(tp, 0x1f, 0x0000);
3502
3503 /* PHY auto speed down */
3504 rtl_writephy(tp, 0x1f, 0x0004);
3505 rtl_writephy(tp, 0x1f, 0x0007);
3506 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003507 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003508 rtl_writephy(tp, 0x1f, 0x0002);
3509 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003510 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003511
3512 /* improve 10M EEE waveform */
3513 rtl_writephy(tp, 0x1f, 0x0005);
3514 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003515 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003516 rtl_writephy(tp, 0x1f, 0x0000);
3517
3518 /* Improve 2-pair detection performance */
3519 rtl_writephy(tp, 0x1f, 0x0005);
3520 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003521 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003522 rtl_writephy(tp, 0x1f, 0x0000);
3523
3524 /* EEE setting */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08003525 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08003526 rtl_writephy(tp, 0x1f, 0x0005);
3527 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003528 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
Hayes Wang70090422011-07-06 15:58:06 +08003529 rtl_writephy(tp, 0x1f, 0x0004);
3530 rtl_writephy(tp, 0x1f, 0x0007);
3531 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003532 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003533 rtl_writephy(tp, 0x1f, 0x0002);
3534 rtl_writephy(tp, 0x1f, 0x0000);
3535 rtl_writephy(tp, 0x0d, 0x0007);
3536 rtl_writephy(tp, 0x0e, 0x003c);
3537 rtl_writephy(tp, 0x0d, 0x4007);
3538 rtl_writephy(tp, 0x0e, 0x0000);
3539 rtl_writephy(tp, 0x0d, 0x0000);
3540
3541 /* Green feature */
3542 rtl_writephy(tp, 0x1f, 0x0003);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003543 rtl_w0w1_phy(tp, 0x19, 0x0000, 0x0001);
3544 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0400);
Hayes Wang70090422011-07-06 15:58:06 +08003545 rtl_writephy(tp, 0x1f, 0x0000);
hayeswange0c07552012-10-23 20:24:03 +00003546
françois romieu9ecb9aa2012-12-07 11:20:21 +00003547 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3548 rtl_rar_exgmac_set(tp, tp->dev->dev_addr);
Hayes Wang70090422011-07-06 15:58:06 +08003549}
3550
Hayes Wang5f886e02012-03-30 14:33:03 +08003551static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3552{
3553 /* For 4-corner performance improve */
3554 rtl_writephy(tp, 0x1f, 0x0005);
3555 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003556 rtl_w0w1_phy(tp, 0x06, 0x0006, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003557 rtl_writephy(tp, 0x1f, 0x0000);
3558
3559 /* PHY auto speed down */
3560 rtl_writephy(tp, 0x1f, 0x0007);
3561 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003562 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003563 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003564 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003565
3566 /* Improve 10M EEE waveform */
3567 rtl_writephy(tp, 0x1f, 0x0005);
3568 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003569 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003570 rtl_writephy(tp, 0x1f, 0x0000);
3571}
3572
Hayes Wangc2218922011-09-06 16:55:18 +08003573static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3574{
3575 static const struct phy_reg phy_reg_init[] = {
3576 /* Channel estimation fine tune */
3577 { 0x1f, 0x0003 },
3578 { 0x09, 0xa20f },
3579 { 0x1f, 0x0000 },
3580
3581 /* Modify green table for giga & fnet */
3582 { 0x1f, 0x0005 },
3583 { 0x05, 0x8b55 },
3584 { 0x06, 0x0000 },
3585 { 0x05, 0x8b5e },
3586 { 0x06, 0x0000 },
3587 { 0x05, 0x8b67 },
3588 { 0x06, 0x0000 },
3589 { 0x05, 0x8b70 },
3590 { 0x06, 0x0000 },
3591 { 0x1f, 0x0000 },
3592 { 0x1f, 0x0007 },
3593 { 0x1e, 0x0078 },
3594 { 0x17, 0x0000 },
3595 { 0x19, 0x00fb },
3596 { 0x1f, 0x0000 },
3597
3598 /* Modify green table for 10M */
3599 { 0x1f, 0x0005 },
3600 { 0x05, 0x8b79 },
3601 { 0x06, 0xaa00 },
3602 { 0x1f, 0x0000 },
3603
3604 /* Disable hiimpedance detection (RTCT) */
3605 { 0x1f, 0x0003 },
3606 { 0x01, 0x328a },
3607 { 0x1f, 0x0000 }
3608 };
3609
3610 rtl_apply_firmware(tp);
3611
3612 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3613
Hayes Wang5f886e02012-03-30 14:33:03 +08003614 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003615
3616 /* Improve 2-pair detection performance */
3617 rtl_writephy(tp, 0x1f, 0x0005);
3618 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003619 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangc2218922011-09-06 16:55:18 +08003620 rtl_writephy(tp, 0x1f, 0x0000);
3621}
3622
3623static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3624{
3625 rtl_apply_firmware(tp);
3626
Hayes Wang5f886e02012-03-30 14:33:03 +08003627 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003628}
3629
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003630static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3631{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003632 static const struct phy_reg phy_reg_init[] = {
3633 /* Channel estimation fine tune */
3634 { 0x1f, 0x0003 },
3635 { 0x09, 0xa20f },
3636 { 0x1f, 0x0000 },
3637
3638 /* Modify green table for giga & fnet */
3639 { 0x1f, 0x0005 },
3640 { 0x05, 0x8b55 },
3641 { 0x06, 0x0000 },
3642 { 0x05, 0x8b5e },
3643 { 0x06, 0x0000 },
3644 { 0x05, 0x8b67 },
3645 { 0x06, 0x0000 },
3646 { 0x05, 0x8b70 },
3647 { 0x06, 0x0000 },
3648 { 0x1f, 0x0000 },
3649 { 0x1f, 0x0007 },
3650 { 0x1e, 0x0078 },
3651 { 0x17, 0x0000 },
3652 { 0x19, 0x00aa },
3653 { 0x1f, 0x0000 },
3654
3655 /* Modify green table for 10M */
3656 { 0x1f, 0x0005 },
3657 { 0x05, 0x8b79 },
3658 { 0x06, 0xaa00 },
3659 { 0x1f, 0x0000 },
3660
3661 /* Disable hiimpedance detection (RTCT) */
3662 { 0x1f, 0x0003 },
3663 { 0x01, 0x328a },
3664 { 0x1f, 0x0000 }
3665 };
3666
3667
3668 rtl_apply_firmware(tp);
3669
3670 rtl8168f_hw_phy_config(tp);
3671
3672 /* Improve 2-pair detection performance */
3673 rtl_writephy(tp, 0x1f, 0x0005);
3674 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003675 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003676 rtl_writephy(tp, 0x1f, 0x0000);
3677
3678 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3679
3680 /* Modify green table for giga */
3681 rtl_writephy(tp, 0x1f, 0x0005);
3682 rtl_writephy(tp, 0x05, 0x8b54);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003683 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003684 rtl_writephy(tp, 0x05, 0x8b5d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003685 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003686 rtl_writephy(tp, 0x05, 0x8a7c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003687 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003688 rtl_writephy(tp, 0x05, 0x8a7f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003689 rtl_w0w1_phy(tp, 0x06, 0x0100, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003690 rtl_writephy(tp, 0x05, 0x8a82);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003691 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003692 rtl_writephy(tp, 0x05, 0x8a85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003693 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003694 rtl_writephy(tp, 0x05, 0x8a88);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003695 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003696 rtl_writephy(tp, 0x1f, 0x0000);
3697
3698 /* uc same-seed solution */
3699 rtl_writephy(tp, 0x1f, 0x0005);
3700 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003701 rtl_w0w1_phy(tp, 0x06, 0x8000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003702 rtl_writephy(tp, 0x1f, 0x0000);
3703
3704 /* eee setting */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08003705 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003706 rtl_writephy(tp, 0x1f, 0x0005);
3707 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003708 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003709 rtl_writephy(tp, 0x1f, 0x0004);
3710 rtl_writephy(tp, 0x1f, 0x0007);
3711 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003712 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003713 rtl_writephy(tp, 0x1f, 0x0000);
3714 rtl_writephy(tp, 0x0d, 0x0007);
3715 rtl_writephy(tp, 0x0e, 0x003c);
3716 rtl_writephy(tp, 0x0d, 0x4007);
3717 rtl_writephy(tp, 0x0e, 0x0000);
3718 rtl_writephy(tp, 0x0d, 0x0000);
3719
3720 /* Green feature */
3721 rtl_writephy(tp, 0x1f, 0x0003);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003722 rtl_w0w1_phy(tp, 0x19, 0x0000, 0x0001);
3723 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0400);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003724 rtl_writephy(tp, 0x1f, 0x0000);
3725}
3726
Hayes Wangc5583862012-07-02 17:23:22 +08003727static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp)
3728{
Hayes Wangc5583862012-07-02 17:23:22 +08003729 rtl_apply_firmware(tp);
3730
hayeswang41f44d12013-04-01 22:23:36 +00003731 rtl_writephy(tp, 0x1f, 0x0a46);
3732 if (rtl_readphy(tp, 0x10) & 0x0100) {
3733 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003734 rtl_w0w1_phy(tp, 0x12, 0x0000, 0x8000);
hayeswang41f44d12013-04-01 22:23:36 +00003735 } else {
3736 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003737 rtl_w0w1_phy(tp, 0x12, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003738 }
Hayes Wangc5583862012-07-02 17:23:22 +08003739
hayeswang41f44d12013-04-01 22:23:36 +00003740 rtl_writephy(tp, 0x1f, 0x0a46);
3741 if (rtl_readphy(tp, 0x13) & 0x0100) {
3742 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003743 rtl_w0w1_phy(tp, 0x15, 0x0002, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003744 } else {
hayeswangfe7524c2013-04-01 22:23:37 +00003745 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003746 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0002);
hayeswang41f44d12013-04-01 22:23:36 +00003747 }
Hayes Wangc5583862012-07-02 17:23:22 +08003748
hayeswang41f44d12013-04-01 22:23:36 +00003749 /* Enable PHY auto speed down */
3750 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003751 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003752
hayeswangfe7524c2013-04-01 22:23:37 +00003753 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003754 rtl_w0w1_phy(tp, 0x14, 0x0100, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003755 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003756 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003757 rtl_writephy(tp, 0x1f, 0x0a43);
3758 rtl_writephy(tp, 0x13, 0x8084);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003759 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
3760 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003761
hayeswang41f44d12013-04-01 22:23:36 +00003762 /* EEE auto-fallback function */
3763 rtl_writephy(tp, 0x1f, 0x0a4b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003764 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003765
hayeswang41f44d12013-04-01 22:23:36 +00003766 /* Enable UC LPF tune function */
3767 rtl_writephy(tp, 0x1f, 0x0a43);
3768 rtl_writephy(tp, 0x13, 0x8012);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003769 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003770
3771 rtl_writephy(tp, 0x1f, 0x0c42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003772 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
hayeswang41f44d12013-04-01 22:23:36 +00003773
hayeswangfe7524c2013-04-01 22:23:37 +00003774 /* Improve SWR Efficiency */
3775 rtl_writephy(tp, 0x1f, 0x0bcd);
3776 rtl_writephy(tp, 0x14, 0x5065);
3777 rtl_writephy(tp, 0x14, 0xd065);
3778 rtl_writephy(tp, 0x1f, 0x0bc8);
3779 rtl_writephy(tp, 0x11, 0x5655);
3780 rtl_writephy(tp, 0x1f, 0x0bcd);
3781 rtl_writephy(tp, 0x14, 0x1065);
3782 rtl_writephy(tp, 0x14, 0x9065);
3783 rtl_writephy(tp, 0x14, 0x1065);
3784
David Chang1bac1072013-11-27 15:48:36 +08003785 /* Check ALDPS bit, disable it if enabled */
3786 rtl_writephy(tp, 0x1f, 0x0a43);
3787 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003788 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
David Chang1bac1072013-11-27 15:48:36 +08003789
hayeswang41f44d12013-04-01 22:23:36 +00003790 rtl_writephy(tp, 0x1f, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003791}
3792
hayeswang57538c42013-04-01 22:23:40 +00003793static void rtl8168g_2_hw_phy_config(struct rtl8169_private *tp)
3794{
3795 rtl_apply_firmware(tp);
3796}
3797
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003798static void rtl8168h_1_hw_phy_config(struct rtl8169_private *tp)
3799{
3800 u16 dout_tapbin;
3801 u32 data;
3802
3803 rtl_apply_firmware(tp);
3804
3805 /* CHN EST parameters adjust - giga master */
3806 rtl_writephy(tp, 0x1f, 0x0a43);
3807 rtl_writephy(tp, 0x13, 0x809b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003808 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003809 rtl_writephy(tp, 0x13, 0x80a2);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003810 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003811 rtl_writephy(tp, 0x13, 0x80a4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003812 rtl_w0w1_phy(tp, 0x14, 0x8500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003813 rtl_writephy(tp, 0x13, 0x809c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003814 rtl_w0w1_phy(tp, 0x14, 0xbd00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003815 rtl_writephy(tp, 0x1f, 0x0000);
3816
3817 /* CHN EST parameters adjust - giga slave */
3818 rtl_writephy(tp, 0x1f, 0x0a43);
3819 rtl_writephy(tp, 0x13, 0x80ad);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003820 rtl_w0w1_phy(tp, 0x14, 0x7000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003821 rtl_writephy(tp, 0x13, 0x80b4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003822 rtl_w0w1_phy(tp, 0x14, 0x5000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003823 rtl_writephy(tp, 0x13, 0x80ac);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003824 rtl_w0w1_phy(tp, 0x14, 0x4000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003825 rtl_writephy(tp, 0x1f, 0x0000);
3826
3827 /* CHN EST parameters adjust - fnet */
3828 rtl_writephy(tp, 0x1f, 0x0a43);
3829 rtl_writephy(tp, 0x13, 0x808e);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003830 rtl_w0w1_phy(tp, 0x14, 0x1200, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003831 rtl_writephy(tp, 0x13, 0x8090);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003832 rtl_w0w1_phy(tp, 0x14, 0xe500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003833 rtl_writephy(tp, 0x13, 0x8092);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003834 rtl_w0w1_phy(tp, 0x14, 0x9f00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003835 rtl_writephy(tp, 0x1f, 0x0000);
3836
3837 /* enable R-tune & PGA-retune function */
3838 dout_tapbin = 0;
3839 rtl_writephy(tp, 0x1f, 0x0a46);
3840 data = rtl_readphy(tp, 0x13);
3841 data &= 3;
3842 data <<= 2;
3843 dout_tapbin |= data;
3844 data = rtl_readphy(tp, 0x12);
3845 data &= 0xc000;
3846 data >>= 14;
3847 dout_tapbin |= data;
3848 dout_tapbin = ~(dout_tapbin^0x08);
3849 dout_tapbin <<= 12;
3850 dout_tapbin &= 0xf000;
3851 rtl_writephy(tp, 0x1f, 0x0a43);
3852 rtl_writephy(tp, 0x13, 0x827a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003853 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003854 rtl_writephy(tp, 0x13, 0x827b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003855 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003856 rtl_writephy(tp, 0x13, 0x827c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003857 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003858 rtl_writephy(tp, 0x13, 0x827d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003859 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003860
3861 rtl_writephy(tp, 0x1f, 0x0a43);
3862 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003863 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003864 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003865 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003866 rtl_writephy(tp, 0x1f, 0x0000);
3867
3868 /* enable GPHY 10M */
3869 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003870 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003871 rtl_writephy(tp, 0x1f, 0x0000);
3872
3873 /* SAR ADC performance */
3874 rtl_writephy(tp, 0x1f, 0x0bca);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003875 rtl_w0w1_phy(tp, 0x17, 0x4000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003876 rtl_writephy(tp, 0x1f, 0x0000);
3877
3878 rtl_writephy(tp, 0x1f, 0x0a43);
3879 rtl_writephy(tp, 0x13, 0x803f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003880 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003881 rtl_writephy(tp, 0x13, 0x8047);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003882 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003883 rtl_writephy(tp, 0x13, 0x804f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003884 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003885 rtl_writephy(tp, 0x13, 0x8057);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003886 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003887 rtl_writephy(tp, 0x13, 0x805f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003888 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003889 rtl_writephy(tp, 0x13, 0x8067);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003890 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003891 rtl_writephy(tp, 0x13, 0x806f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003892 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003893 rtl_writephy(tp, 0x1f, 0x0000);
3894
3895 /* disable phy pfm mode */
3896 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Linc832c35f2015-12-29 22:13:38 +08003897 rtl_w0w1_phy(tp, 0x11, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003898 rtl_writephy(tp, 0x1f, 0x0000);
3899
3900 /* Check ALDPS bit, disable it if enabled */
3901 rtl_writephy(tp, 0x1f, 0x0a43);
3902 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003903 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003904
3905 rtl_writephy(tp, 0x1f, 0x0000);
3906}
3907
3908static void rtl8168h_2_hw_phy_config(struct rtl8169_private *tp)
3909{
3910 u16 ioffset_p3, ioffset_p2, ioffset_p1, ioffset_p0;
3911 u16 rlen;
3912 u32 data;
3913
3914 rtl_apply_firmware(tp);
3915
3916 /* CHIN EST parameter update */
3917 rtl_writephy(tp, 0x1f, 0x0a43);
3918 rtl_writephy(tp, 0x13, 0x808a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003919 rtl_w0w1_phy(tp, 0x14, 0x000a, 0x003f);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003920 rtl_writephy(tp, 0x1f, 0x0000);
3921
3922 /* enable R-tune & PGA-retune function */
3923 rtl_writephy(tp, 0x1f, 0x0a43);
3924 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003925 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003926 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003927 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003928 rtl_writephy(tp, 0x1f, 0x0000);
3929
3930 /* enable GPHY 10M */
3931 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003932 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003933 rtl_writephy(tp, 0x1f, 0x0000);
3934
3935 r8168_mac_ocp_write(tp, 0xdd02, 0x807d);
3936 data = r8168_mac_ocp_read(tp, 0xdd02);
3937 ioffset_p3 = ((data & 0x80)>>7);
3938 ioffset_p3 <<= 3;
3939
3940 data = r8168_mac_ocp_read(tp, 0xdd00);
3941 ioffset_p3 |= ((data & (0xe000))>>13);
3942 ioffset_p2 = ((data & (0x1e00))>>9);
3943 ioffset_p1 = ((data & (0x01e0))>>5);
3944 ioffset_p0 = ((data & 0x0010)>>4);
3945 ioffset_p0 <<= 3;
3946 ioffset_p0 |= (data & (0x07));
3947 data = (ioffset_p3<<12)|(ioffset_p2<<8)|(ioffset_p1<<4)|(ioffset_p0);
3948
Chun-Hao Lin05b96872014-10-01 23:17:12 +08003949 if ((ioffset_p3 != 0x0f) || (ioffset_p2 != 0x0f) ||
Chun-Hao Line2e27882015-12-24 21:15:26 +08003950 (ioffset_p1 != 0x0f) || (ioffset_p0 != 0x0f)) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003951 rtl_writephy(tp, 0x1f, 0x0bcf);
3952 rtl_writephy(tp, 0x16, data);
3953 rtl_writephy(tp, 0x1f, 0x0000);
3954 }
3955
3956 /* Modify rlen (TX LPF corner frequency) level */
3957 rtl_writephy(tp, 0x1f, 0x0bcd);
3958 data = rtl_readphy(tp, 0x16);
3959 data &= 0x000f;
3960 rlen = 0;
3961 if (data > 3)
3962 rlen = data - 3;
3963 data = rlen | (rlen<<4) | (rlen<<8) | (rlen<<12);
3964 rtl_writephy(tp, 0x17, data);
3965 rtl_writephy(tp, 0x1f, 0x0bcd);
3966 rtl_writephy(tp, 0x1f, 0x0000);
3967
3968 /* disable phy pfm mode */
3969 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Linc832c35f2015-12-29 22:13:38 +08003970 rtl_w0w1_phy(tp, 0x11, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003971 rtl_writephy(tp, 0x1f, 0x0000);
3972
3973 /* Check ALDPS bit, disable it if enabled */
3974 rtl_writephy(tp, 0x1f, 0x0a43);
3975 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003976 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003977
3978 rtl_writephy(tp, 0x1f, 0x0000);
3979}
3980
Chun-Hao Lin935e2212014-10-07 15:10:41 +08003981static void rtl8168ep_1_hw_phy_config(struct rtl8169_private *tp)
3982{
3983 /* Enable PHY auto speed down */
3984 rtl_writephy(tp, 0x1f, 0x0a44);
3985 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
3986 rtl_writephy(tp, 0x1f, 0x0000);
3987
3988 /* patch 10M & ALDPS */
3989 rtl_writephy(tp, 0x1f, 0x0bcc);
3990 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
3991 rtl_writephy(tp, 0x1f, 0x0a44);
3992 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
3993 rtl_writephy(tp, 0x1f, 0x0a43);
3994 rtl_writephy(tp, 0x13, 0x8084);
3995 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
3996 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
3997 rtl_writephy(tp, 0x1f, 0x0000);
3998
3999 /* Enable EEE auto-fallback function */
4000 rtl_writephy(tp, 0x1f, 0x0a4b);
4001 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
4002 rtl_writephy(tp, 0x1f, 0x0000);
4003
4004 /* Enable UC LPF tune function */
4005 rtl_writephy(tp, 0x1f, 0x0a43);
4006 rtl_writephy(tp, 0x13, 0x8012);
4007 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4008 rtl_writephy(tp, 0x1f, 0x0000);
4009
4010 /* set rg_sel_sdm_rate */
4011 rtl_writephy(tp, 0x1f, 0x0c42);
4012 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4013 rtl_writephy(tp, 0x1f, 0x0000);
4014
4015 /* Check ALDPS bit, disable it if enabled */
4016 rtl_writephy(tp, 0x1f, 0x0a43);
4017 if (rtl_readphy(tp, 0x10) & 0x0004)
4018 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4019
4020 rtl_writephy(tp, 0x1f, 0x0000);
4021}
4022
4023static void rtl8168ep_2_hw_phy_config(struct rtl8169_private *tp)
4024{
4025 /* patch 10M & ALDPS */
4026 rtl_writephy(tp, 0x1f, 0x0bcc);
4027 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
4028 rtl_writephy(tp, 0x1f, 0x0a44);
4029 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
4030 rtl_writephy(tp, 0x1f, 0x0a43);
4031 rtl_writephy(tp, 0x13, 0x8084);
4032 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
4033 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
4034 rtl_writephy(tp, 0x1f, 0x0000);
4035
4036 /* Enable UC LPF tune function */
4037 rtl_writephy(tp, 0x1f, 0x0a43);
4038 rtl_writephy(tp, 0x13, 0x8012);
4039 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4040 rtl_writephy(tp, 0x1f, 0x0000);
4041
4042 /* Set rg_sel_sdm_rate */
4043 rtl_writephy(tp, 0x1f, 0x0c42);
4044 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4045 rtl_writephy(tp, 0x1f, 0x0000);
4046
4047 /* Channel estimation parameters */
4048 rtl_writephy(tp, 0x1f, 0x0a43);
4049 rtl_writephy(tp, 0x13, 0x80f3);
4050 rtl_w0w1_phy(tp, 0x14, 0x8b00, ~0x8bff);
4051 rtl_writephy(tp, 0x13, 0x80f0);
4052 rtl_w0w1_phy(tp, 0x14, 0x3a00, ~0x3aff);
4053 rtl_writephy(tp, 0x13, 0x80ef);
4054 rtl_w0w1_phy(tp, 0x14, 0x0500, ~0x05ff);
4055 rtl_writephy(tp, 0x13, 0x80f6);
4056 rtl_w0w1_phy(tp, 0x14, 0x6e00, ~0x6eff);
4057 rtl_writephy(tp, 0x13, 0x80ec);
4058 rtl_w0w1_phy(tp, 0x14, 0x6800, ~0x68ff);
4059 rtl_writephy(tp, 0x13, 0x80ed);
4060 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4061 rtl_writephy(tp, 0x13, 0x80f2);
4062 rtl_w0w1_phy(tp, 0x14, 0xf400, ~0xf4ff);
4063 rtl_writephy(tp, 0x13, 0x80f4);
4064 rtl_w0w1_phy(tp, 0x14, 0x8500, ~0x85ff);
4065 rtl_writephy(tp, 0x1f, 0x0a43);
4066 rtl_writephy(tp, 0x13, 0x8110);
4067 rtl_w0w1_phy(tp, 0x14, 0xa800, ~0xa8ff);
4068 rtl_writephy(tp, 0x13, 0x810f);
4069 rtl_w0w1_phy(tp, 0x14, 0x1d00, ~0x1dff);
4070 rtl_writephy(tp, 0x13, 0x8111);
4071 rtl_w0w1_phy(tp, 0x14, 0xf500, ~0xf5ff);
4072 rtl_writephy(tp, 0x13, 0x8113);
4073 rtl_w0w1_phy(tp, 0x14, 0x6100, ~0x61ff);
4074 rtl_writephy(tp, 0x13, 0x8115);
4075 rtl_w0w1_phy(tp, 0x14, 0x9200, ~0x92ff);
4076 rtl_writephy(tp, 0x13, 0x810e);
4077 rtl_w0w1_phy(tp, 0x14, 0x0400, ~0x04ff);
4078 rtl_writephy(tp, 0x13, 0x810c);
4079 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4080 rtl_writephy(tp, 0x13, 0x810b);
4081 rtl_w0w1_phy(tp, 0x14, 0x5a00, ~0x5aff);
4082 rtl_writephy(tp, 0x1f, 0x0a43);
4083 rtl_writephy(tp, 0x13, 0x80d1);
4084 rtl_w0w1_phy(tp, 0x14, 0xff00, ~0xffff);
4085 rtl_writephy(tp, 0x13, 0x80cd);
4086 rtl_w0w1_phy(tp, 0x14, 0x9e00, ~0x9eff);
4087 rtl_writephy(tp, 0x13, 0x80d3);
4088 rtl_w0w1_phy(tp, 0x14, 0x0e00, ~0x0eff);
4089 rtl_writephy(tp, 0x13, 0x80d5);
4090 rtl_w0w1_phy(tp, 0x14, 0xca00, ~0xcaff);
4091 rtl_writephy(tp, 0x13, 0x80d7);
4092 rtl_w0w1_phy(tp, 0x14, 0x8400, ~0x84ff);
4093
4094 /* Force PWM-mode */
4095 rtl_writephy(tp, 0x1f, 0x0bcd);
4096 rtl_writephy(tp, 0x14, 0x5065);
4097 rtl_writephy(tp, 0x14, 0xd065);
4098 rtl_writephy(tp, 0x1f, 0x0bc8);
4099 rtl_writephy(tp, 0x12, 0x00ed);
4100 rtl_writephy(tp, 0x1f, 0x0bcd);
4101 rtl_writephy(tp, 0x14, 0x1065);
4102 rtl_writephy(tp, 0x14, 0x9065);
4103 rtl_writephy(tp, 0x14, 0x1065);
4104 rtl_writephy(tp, 0x1f, 0x0000);
4105
4106 /* Check ALDPS bit, disable it if enabled */
4107 rtl_writephy(tp, 0x1f, 0x0a43);
4108 if (rtl_readphy(tp, 0x10) & 0x0004)
4109 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4110
4111 rtl_writephy(tp, 0x1f, 0x0000);
4112}
4113
françois romieu4da19632011-01-03 15:07:55 +00004114static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004115{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004116 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004117 { 0x1f, 0x0003 },
4118 { 0x08, 0x441d },
4119 { 0x01, 0x9100 },
4120 { 0x1f, 0x0000 }
4121 };
4122
françois romieu4da19632011-01-03 15:07:55 +00004123 rtl_writephy(tp, 0x1f, 0x0000);
4124 rtl_patchphy(tp, 0x11, 1 << 12);
4125 rtl_patchphy(tp, 0x19, 1 << 13);
4126 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004127
françois romieu4da19632011-01-03 15:07:55 +00004128 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02004129}
4130
Hayes Wang5a5e4442011-02-22 17:26:21 +08004131static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
4132{
4133 static const struct phy_reg phy_reg_init[] = {
4134 { 0x1f, 0x0005 },
4135 { 0x1a, 0x0000 },
4136 { 0x1f, 0x0000 },
4137
4138 { 0x1f, 0x0004 },
4139 { 0x1c, 0x0000 },
4140 { 0x1f, 0x0000 },
4141
4142 { 0x1f, 0x0001 },
4143 { 0x15, 0x7701 },
4144 { 0x1f, 0x0000 }
4145 };
4146
4147 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004148 rtl_writephy(tp, 0x1f, 0x0000);
4149 rtl_writephy(tp, 0x18, 0x0310);
4150 msleep(100);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004151
François Romieu953a12c2011-04-24 17:38:48 +02004152 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004153
4154 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4155}
4156
Hayes Wang7e18dca2012-03-30 14:33:02 +08004157static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
4158{
Hayes Wang7e18dca2012-03-30 14:33:02 +08004159 /* Disable ALDPS before setting firmware */
Francois Romieueef63cc2013-02-08 23:43:20 +01004160 rtl_writephy(tp, 0x1f, 0x0000);
4161 rtl_writephy(tp, 0x18, 0x0310);
4162 msleep(20);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004163
4164 rtl_apply_firmware(tp);
4165
4166 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02004167 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004168 rtl_writephy(tp, 0x1f, 0x0004);
4169 rtl_writephy(tp, 0x10, 0x401f);
4170 rtl_writephy(tp, 0x19, 0x7030);
4171 rtl_writephy(tp, 0x1f, 0x0000);
4172}
4173
Hayes Wang5598bfe2012-07-02 17:23:21 +08004174static void rtl8106e_hw_phy_config(struct rtl8169_private *tp)
4175{
Hayes Wang5598bfe2012-07-02 17:23:21 +08004176 static const struct phy_reg phy_reg_init[] = {
4177 { 0x1f, 0x0004 },
4178 { 0x10, 0xc07f },
4179 { 0x19, 0x7030 },
4180 { 0x1f, 0x0000 }
4181 };
4182
4183 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004184 rtl_writephy(tp, 0x1f, 0x0000);
4185 rtl_writephy(tp, 0x18, 0x0310);
4186 msleep(100);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004187
4188 rtl_apply_firmware(tp);
4189
Francois Romieufdf6fc02012-07-06 22:40:38 +02004190 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004191 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4192
Francois Romieufdf6fc02012-07-06 22:40:38 +02004193 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004194}
4195
Francois Romieu5615d9f2007-08-17 17:50:46 +02004196static void rtl_hw_phy_config(struct net_device *dev)
4197{
4198 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004199
4200 rtl8169_print_mac_version(tp);
4201
4202 switch (tp->mac_version) {
4203 case RTL_GIGA_MAC_VER_01:
4204 break;
4205 case RTL_GIGA_MAC_VER_02:
4206 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00004207 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004208 break;
4209 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00004210 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004211 break;
françois romieu2e9558562009-08-10 19:44:19 +00004212 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00004213 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00004214 break;
françois romieu8c7006a2009-08-10 19:43:29 +00004215 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00004216 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00004217 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02004218 case RTL_GIGA_MAC_VER_07:
4219 case RTL_GIGA_MAC_VER_08:
4220 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00004221 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004222 break;
Francois Romieu236b8082008-05-30 16:11:48 +02004223 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00004224 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004225 break;
4226 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00004227 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004228 break;
4229 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00004230 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004231 break;
Francois Romieu867763c2007-08-17 18:21:58 +02004232 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00004233 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004234 break;
4235 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00004236 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004237 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02004238 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00004239 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02004240 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004241 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00004242 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02004243 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004244 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00004245 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004246 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004247 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004248 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00004249 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004250 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004251 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00004252 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004253 break;
4254 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00004255 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004256 break;
4257 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00004258 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02004259 break;
françois romieue6de30d2011-01-03 15:08:37 +00004260 case RTL_GIGA_MAC_VER_28:
4261 rtl8168d_4_hw_phy_config(tp);
4262 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004263 case RTL_GIGA_MAC_VER_29:
4264 case RTL_GIGA_MAC_VER_30:
4265 rtl8105e_hw_phy_config(tp);
4266 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004267 case RTL_GIGA_MAC_VER_31:
4268 /* None. */
4269 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00004270 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00004271 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004272 rtl8168e_1_hw_phy_config(tp);
4273 break;
4274 case RTL_GIGA_MAC_VER_34:
4275 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00004276 break;
Hayes Wangc2218922011-09-06 16:55:18 +08004277 case RTL_GIGA_MAC_VER_35:
4278 rtl8168f_1_hw_phy_config(tp);
4279 break;
4280 case RTL_GIGA_MAC_VER_36:
4281 rtl8168f_2_hw_phy_config(tp);
4282 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004283
Hayes Wang7e18dca2012-03-30 14:33:02 +08004284 case RTL_GIGA_MAC_VER_37:
4285 rtl8402_hw_phy_config(tp);
4286 break;
4287
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004288 case RTL_GIGA_MAC_VER_38:
4289 rtl8411_hw_phy_config(tp);
4290 break;
4291
Hayes Wang5598bfe2012-07-02 17:23:21 +08004292 case RTL_GIGA_MAC_VER_39:
4293 rtl8106e_hw_phy_config(tp);
4294 break;
4295
Hayes Wangc5583862012-07-02 17:23:22 +08004296 case RTL_GIGA_MAC_VER_40:
4297 rtl8168g_1_hw_phy_config(tp);
4298 break;
hayeswang57538c42013-04-01 22:23:40 +00004299 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004300 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004301 case RTL_GIGA_MAC_VER_44:
hayeswang57538c42013-04-01 22:23:40 +00004302 rtl8168g_2_hw_phy_config(tp);
4303 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004304 case RTL_GIGA_MAC_VER_45:
4305 case RTL_GIGA_MAC_VER_47:
4306 rtl8168h_1_hw_phy_config(tp);
4307 break;
4308 case RTL_GIGA_MAC_VER_46:
4309 case RTL_GIGA_MAC_VER_48:
4310 rtl8168h_2_hw_phy_config(tp);
4311 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004312
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004313 case RTL_GIGA_MAC_VER_49:
4314 rtl8168ep_1_hw_phy_config(tp);
4315 break;
4316 case RTL_GIGA_MAC_VER_50:
4317 case RTL_GIGA_MAC_VER_51:
4318 rtl8168ep_2_hw_phy_config(tp);
4319 break;
4320
Hayes Wangc5583862012-07-02 17:23:22 +08004321 case RTL_GIGA_MAC_VER_41:
Francois Romieu5615d9f2007-08-17 17:50:46 +02004322 default:
4323 break;
4324 }
4325}
4326
Francois Romieuda78dbf2012-01-26 14:18:23 +01004327static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 struct timer_list *timer = &tp->timer;
4330 void __iomem *ioaddr = tp->mmio_addr;
4331 unsigned long timeout = RTL8169_PHY_TIMEOUT;
4332
Francois Romieubcf0bf92006-07-26 23:14:13 +02004333 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
françois romieu4da19632011-01-03 15:07:55 +00004335 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02004336 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 * A busy loop could burn quite a few cycles on nowadays CPU.
4338 * Let's delay the execution of the timer for a few ticks.
4339 */
4340 timeout = HZ/10;
4341 goto out_mod_timer;
4342 }
4343
4344 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01004345 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
Lekensteyn9bb8eeb2013-08-02 10:36:55 +02004347 netif_dbg(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348
françois romieu4da19632011-01-03 15:07:55 +00004349 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350
4351out_mod_timer:
4352 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004353}
4354
4355static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
4356{
Francois Romieuda78dbf2012-01-26 14:18:23 +01004357 if (!test_and_set_bit(flag, tp->wk.flags))
4358 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004359}
4360
4361static void rtl8169_phy_timer(unsigned long __opaque)
4362{
4363 struct net_device *dev = (struct net_device *)__opaque;
4364 struct rtl8169_private *tp = netdev_priv(dev);
4365
Francois Romieu98ddf982012-01-31 10:47:34 +01004366 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367}
4368
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
4370 void __iomem *ioaddr)
4371{
4372 iounmap(ioaddr);
4373 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00004374 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 pci_disable_device(pdev);
4376 free_netdev(dev);
4377}
4378
Francois Romieuffc46952012-07-06 14:19:23 +02004379DECLARE_RTL_COND(rtl_phy_reset_cond)
4380{
4381 return tp->phy_reset_pending(tp);
4382}
4383
Francois Romieubf793292006-11-01 00:53:05 +01004384static void rtl8169_phy_reset(struct net_device *dev,
4385 struct rtl8169_private *tp)
4386{
françois romieu4da19632011-01-03 15:07:55 +00004387 tp->phy_reset_enable(tp);
Francois Romieuffc46952012-07-06 14:19:23 +02004388 rtl_msleep_loop_wait_low(tp, &rtl_phy_reset_cond, 1, 100);
Francois Romieubf793292006-11-01 00:53:05 +01004389}
4390
David S. Miller8decf862011-09-22 03:23:13 -04004391static bool rtl_tbi_enabled(struct rtl8169_private *tp)
4392{
4393 void __iomem *ioaddr = tp->mmio_addr;
4394
4395 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
4396 (RTL_R8(PHYstatus) & TBI_Enable);
4397}
4398
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004399static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004401 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004402
Francois Romieu5615d9f2007-08-17 17:50:46 +02004403 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004404
Marcus Sundberg773328942008-07-10 21:28:08 +02004405 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
4406 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4407 RTL_W8(0x82, 0x01);
4408 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004409
Francois Romieu6dccd162007-02-13 23:38:05 +01004410 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
4411
4412 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
4413 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004414
Francois Romieubcf0bf92006-07-26 23:14:13 +02004415 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004416 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4417 RTL_W8(0x82, 0x01);
4418 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00004419 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004420 }
4421
Francois Romieubf793292006-11-01 00:53:05 +01004422 rtl8169_phy_reset(dev, tp);
4423
Oliver Neukum54405cd2011-01-06 21:55:13 +01004424 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02004425 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4426 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4427 (tp->mii.supports_gmii ?
4428 ADVERTISED_1000baseT_Half |
4429 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004430
David S. Miller8decf862011-09-22 03:23:13 -04004431 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00004432 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004433}
4434
Francois Romieu773d2022007-01-31 23:47:43 +01004435static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
4436{
4437 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu773d2022007-01-31 23:47:43 +01004438
Francois Romieuda78dbf2012-01-26 14:18:23 +01004439 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004440
4441 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00004442
françois romieu9ecb9aa2012-12-07 11:20:21 +00004443 RTL_W32(MAC4, addr[4] | addr[5] << 8);
françois romieu908ba2b2010-04-26 11:42:58 +00004444 RTL_R32(MAC4);
4445
françois romieu9ecb9aa2012-12-07 11:20:21 +00004446 RTL_W32(MAC0, addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
françois romieu908ba2b2010-04-26 11:42:58 +00004447 RTL_R32(MAC0);
4448
françois romieu9ecb9aa2012-12-07 11:20:21 +00004449 if (tp->mac_version == RTL_GIGA_MAC_VER_34)
4450 rtl_rar_exgmac_set(tp, addr);
françois romieuc28aa382011-08-02 03:53:43 +00004451
Francois Romieu773d2022007-01-31 23:47:43 +01004452 RTL_W8(Cfg9346, Cfg9346_Lock);
4453
Francois Romieuda78dbf2012-01-26 14:18:23 +01004454 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004455}
4456
4457static int rtl_set_mac_address(struct net_device *dev, void *p)
4458{
4459 struct rtl8169_private *tp = netdev_priv(dev);
4460 struct sockaddr *addr = p;
4461
4462 if (!is_valid_ether_addr(addr->sa_data))
4463 return -EADDRNOTAVAIL;
4464
4465 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
4466
4467 rtl_rar_set(tp, dev->dev_addr);
4468
4469 return 0;
4470}
4471
Francois Romieu5f787a12006-08-17 13:02:36 +02004472static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4473{
4474 struct rtl8169_private *tp = netdev_priv(dev);
4475 struct mii_ioctl_data *data = if_mii(ifr);
4476
Francois Romieu8b4ab282008-11-19 22:05:25 -08004477 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
4478}
Francois Romieu5f787a12006-08-17 13:02:36 +02004479
Francois Romieucecb5fd2011-04-01 10:21:07 +02004480static int rtl_xmii_ioctl(struct rtl8169_private *tp,
4481 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08004482{
Francois Romieu5f787a12006-08-17 13:02:36 +02004483 switch (cmd) {
4484 case SIOCGMIIPHY:
4485 data->phy_id = 32; /* Internal PHY */
4486 return 0;
4487
4488 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004489 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02004490 return 0;
4491
4492 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004493 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02004494 return 0;
4495 }
4496 return -EOPNOTSUPP;
4497}
4498
Francois Romieu8b4ab282008-11-19 22:05:25 -08004499static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
4500{
4501 return -EOPNOTSUPP;
4502}
4503
Francois Romieufbac58f2007-10-04 22:51:38 +02004504static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
4505{
4506 if (tp->features & RTL_FEATURE_MSI) {
4507 pci_disable_msi(pdev);
4508 tp->features &= ~RTL_FEATURE_MSI;
4509 }
4510}
4511
Bill Pembertonbaf63292012-12-03 09:23:28 -05004512static void rtl_init_mdio_ops(struct rtl8169_private *tp)
françois romieuc0e45c12011-01-03 15:08:04 +00004513{
4514 struct mdio_ops *ops = &tp->mdio_ops;
4515
4516 switch (tp->mac_version) {
4517 case RTL_GIGA_MAC_VER_27:
4518 ops->write = r8168dp_1_mdio_write;
4519 ops->read = r8168dp_1_mdio_read;
4520 break;
françois romieue6de30d2011-01-03 15:08:37 +00004521 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004522 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00004523 ops->write = r8168dp_2_mdio_write;
4524 ops->read = r8168dp_2_mdio_read;
4525 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004526 case RTL_GIGA_MAC_VER_40:
4527 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004528 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004529 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004530 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004531 case RTL_GIGA_MAC_VER_45:
4532 case RTL_GIGA_MAC_VER_46:
4533 case RTL_GIGA_MAC_VER_47:
4534 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004535 case RTL_GIGA_MAC_VER_49:
4536 case RTL_GIGA_MAC_VER_50:
4537 case RTL_GIGA_MAC_VER_51:
Hayes Wangc5583862012-07-02 17:23:22 +08004538 ops->write = r8168g_mdio_write;
4539 ops->read = r8168g_mdio_read;
4540 break;
françois romieuc0e45c12011-01-03 15:08:04 +00004541 default:
4542 ops->write = r8169_mdio_write;
4543 ops->read = r8169_mdio_read;
4544 break;
4545 }
4546}
4547
hayeswange2409d82013-03-31 17:02:04 +00004548static void rtl_speed_down(struct rtl8169_private *tp)
4549{
4550 u32 adv;
4551 int lpa;
4552
4553 rtl_writephy(tp, 0x1f, 0x0000);
4554 lpa = rtl_readphy(tp, MII_LPA);
4555
4556 if (lpa & (LPA_10HALF | LPA_10FULL))
4557 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full;
4558 else if (lpa & (LPA_100HALF | LPA_100FULL))
4559 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4560 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full;
4561 else
4562 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4563 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4564 (tp->mii.supports_gmii ?
4565 ADVERTISED_1000baseT_Half |
4566 ADVERTISED_1000baseT_Full : 0);
4567
4568 rtl8169_set_speed(tp->dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
4569 adv);
4570}
4571
David S. Miller1805b2f2011-10-24 18:18:09 -04004572static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
4573{
4574 void __iomem *ioaddr = tp->mmio_addr;
4575
4576 switch (tp->mac_version) {
Cyril Bruleboisb00e69d2012-10-31 14:00:46 +00004577 case RTL_GIGA_MAC_VER_25:
4578 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04004579 case RTL_GIGA_MAC_VER_29:
4580 case RTL_GIGA_MAC_VER_30:
4581 case RTL_GIGA_MAC_VER_32:
4582 case RTL_GIGA_MAC_VER_33:
4583 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004584 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004585 case RTL_GIGA_MAC_VER_38:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004586 case RTL_GIGA_MAC_VER_39:
Hayes Wangc5583862012-07-02 17:23:22 +08004587 case RTL_GIGA_MAC_VER_40:
4588 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004589 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004590 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004591 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004592 case RTL_GIGA_MAC_VER_45:
4593 case RTL_GIGA_MAC_VER_46:
4594 case RTL_GIGA_MAC_VER_47:
4595 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004596 case RTL_GIGA_MAC_VER_49:
4597 case RTL_GIGA_MAC_VER_50:
4598 case RTL_GIGA_MAC_VER_51:
David S. Miller1805b2f2011-10-24 18:18:09 -04004599 RTL_W32(RxConfig, RTL_R32(RxConfig) |
4600 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
4601 break;
4602 default:
4603 break;
4604 }
4605}
4606
4607static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
4608{
4609 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
4610 return false;
4611
hayeswange2409d82013-03-31 17:02:04 +00004612 rtl_speed_down(tp);
David S. Miller1805b2f2011-10-24 18:18:09 -04004613 rtl_wol_suspend_quirk(tp);
4614
4615 return true;
4616}
4617
françois romieu065c27c2011-01-03 15:08:12 +00004618static void r810x_phy_power_down(struct rtl8169_private *tp)
4619{
4620 rtl_writephy(tp, 0x1f, 0x0000);
4621 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4622}
4623
4624static void r810x_phy_power_up(struct rtl8169_private *tp)
4625{
4626 rtl_writephy(tp, 0x1f, 0x0000);
4627 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4628}
4629
4630static void r810x_pll_power_down(struct rtl8169_private *tp)
4631{
Hayes Wang00042992012-03-30 14:33:00 +08004632 void __iomem *ioaddr = tp->mmio_addr;
4633
David S. Miller1805b2f2011-10-24 18:18:09 -04004634 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004635 return;
françois romieu065c27c2011-01-03 15:08:12 +00004636
4637 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004638
4639 switch (tp->mac_version) {
4640 case RTL_GIGA_MAC_VER_07:
4641 case RTL_GIGA_MAC_VER_08:
4642 case RTL_GIGA_MAC_VER_09:
4643 case RTL_GIGA_MAC_VER_10:
4644 case RTL_GIGA_MAC_VER_13:
4645 case RTL_GIGA_MAC_VER_16:
4646 break;
4647 default:
4648 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4649 break;
4650 }
françois romieu065c27c2011-01-03 15:08:12 +00004651}
4652
4653static void r810x_pll_power_up(struct rtl8169_private *tp)
4654{
Hayes Wang00042992012-03-30 14:33:00 +08004655 void __iomem *ioaddr = tp->mmio_addr;
4656
françois romieu065c27c2011-01-03 15:08:12 +00004657 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004658
4659 switch (tp->mac_version) {
4660 case RTL_GIGA_MAC_VER_07:
4661 case RTL_GIGA_MAC_VER_08:
4662 case RTL_GIGA_MAC_VER_09:
4663 case RTL_GIGA_MAC_VER_10:
4664 case RTL_GIGA_MAC_VER_13:
4665 case RTL_GIGA_MAC_VER_16:
4666 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004667 case RTL_GIGA_MAC_VER_47:
4668 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004669 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004670 break;
Hayes Wang00042992012-03-30 14:33:00 +08004671 default:
4672 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4673 break;
4674 }
françois romieu065c27c2011-01-03 15:08:12 +00004675}
4676
4677static void r8168_phy_power_up(struct rtl8169_private *tp)
4678{
4679 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004680 switch (tp->mac_version) {
4681 case RTL_GIGA_MAC_VER_11:
4682 case RTL_GIGA_MAC_VER_12:
4683 case RTL_GIGA_MAC_VER_17:
4684 case RTL_GIGA_MAC_VER_18:
4685 case RTL_GIGA_MAC_VER_19:
4686 case RTL_GIGA_MAC_VER_20:
4687 case RTL_GIGA_MAC_VER_21:
4688 case RTL_GIGA_MAC_VER_22:
4689 case RTL_GIGA_MAC_VER_23:
4690 case RTL_GIGA_MAC_VER_24:
4691 case RTL_GIGA_MAC_VER_25:
4692 case RTL_GIGA_MAC_VER_26:
4693 case RTL_GIGA_MAC_VER_27:
4694 case RTL_GIGA_MAC_VER_28:
4695 case RTL_GIGA_MAC_VER_31:
4696 rtl_writephy(tp, 0x0e, 0x0000);
4697 break;
4698 default:
4699 break;
4700 }
françois romieu065c27c2011-01-03 15:08:12 +00004701 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4702}
4703
4704static void r8168_phy_power_down(struct rtl8169_private *tp)
4705{
4706 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004707 switch (tp->mac_version) {
4708 case RTL_GIGA_MAC_VER_32:
4709 case RTL_GIGA_MAC_VER_33:
hayeswangbeb330a2013-04-01 22:23:39 +00004710 case RTL_GIGA_MAC_VER_40:
4711 case RTL_GIGA_MAC_VER_41:
hayeswang01dc7fe2011-03-21 01:50:28 +00004712 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
4713 break;
4714
4715 case RTL_GIGA_MAC_VER_11:
4716 case RTL_GIGA_MAC_VER_12:
4717 case RTL_GIGA_MAC_VER_17:
4718 case RTL_GIGA_MAC_VER_18:
4719 case RTL_GIGA_MAC_VER_19:
4720 case RTL_GIGA_MAC_VER_20:
4721 case RTL_GIGA_MAC_VER_21:
4722 case RTL_GIGA_MAC_VER_22:
4723 case RTL_GIGA_MAC_VER_23:
4724 case RTL_GIGA_MAC_VER_24:
4725 case RTL_GIGA_MAC_VER_25:
4726 case RTL_GIGA_MAC_VER_26:
4727 case RTL_GIGA_MAC_VER_27:
4728 case RTL_GIGA_MAC_VER_28:
4729 case RTL_GIGA_MAC_VER_31:
4730 rtl_writephy(tp, 0x0e, 0x0200);
4731 default:
4732 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4733 break;
4734 }
françois romieu065c27c2011-01-03 15:08:12 +00004735}
4736
4737static void r8168_pll_power_down(struct rtl8169_private *tp)
4738{
4739 void __iomem *ioaddr = tp->mmio_addr;
4740
Francois Romieucecb5fd2011-04-01 10:21:07 +02004741 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4742 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004743 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
4744 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
4745 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
4746 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Lin2f8c0402014-10-01 23:17:19 +08004747 r8168_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00004748 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08004749 }
françois romieu065c27c2011-01-03 15:08:12 +00004750
Francois Romieucecb5fd2011-04-01 10:21:07 +02004751 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
4752 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00004753 (RTL_R16(CPlusCmd) & ASF)) {
4754 return;
4755 }
4756
hayeswang01dc7fe2011-03-21 01:50:28 +00004757 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
4758 tp->mac_version == RTL_GIGA_MAC_VER_33)
Francois Romieufdf6fc02012-07-06 22:40:38 +02004759 rtl_ephy_write(tp, 0x19, 0xff64);
hayeswang01dc7fe2011-03-21 01:50:28 +00004760
David S. Miller1805b2f2011-10-24 18:18:09 -04004761 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004762 return;
françois romieu065c27c2011-01-03 15:08:12 +00004763
4764 r8168_phy_power_down(tp);
4765
4766 switch (tp->mac_version) {
4767 case RTL_GIGA_MAC_VER_25:
4768 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004769 case RTL_GIGA_MAC_VER_27:
4770 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004771 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004772 case RTL_GIGA_MAC_VER_32:
4773 case RTL_GIGA_MAC_VER_33:
Chun-Hao Lin42fde732014-10-01 23:17:14 +08004774 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004775 case RTL_GIGA_MAC_VER_45:
4776 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004777 case RTL_GIGA_MAC_VER_50:
4778 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00004779 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4780 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004781 case RTL_GIGA_MAC_VER_40:
4782 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004783 case RTL_GIGA_MAC_VER_49:
Chun-Hao Lin706123d2014-10-01 23:17:18 +08004784 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0x00000000,
hayeswangbeb330a2013-04-01 22:23:39 +00004785 0xfc000000, ERIAR_EXGMAC);
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08004786 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
hayeswangbeb330a2013-04-01 22:23:39 +00004787 break;
françois romieu065c27c2011-01-03 15:08:12 +00004788 }
4789}
4790
4791static void r8168_pll_power_up(struct rtl8169_private *tp)
4792{
4793 void __iomem *ioaddr = tp->mmio_addr;
4794
françois romieu065c27c2011-01-03 15:08:12 +00004795 switch (tp->mac_version) {
4796 case RTL_GIGA_MAC_VER_25:
4797 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004798 case RTL_GIGA_MAC_VER_27:
4799 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004800 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004801 case RTL_GIGA_MAC_VER_32:
4802 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004803 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4804 break;
Chun-Hao Lin42fde732014-10-01 23:17:14 +08004805 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004806 case RTL_GIGA_MAC_VER_45:
4807 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004808 case RTL_GIGA_MAC_VER_50:
4809 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004810 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004811 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004812 case RTL_GIGA_MAC_VER_40:
4813 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004814 case RTL_GIGA_MAC_VER_49:
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08004815 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08004816 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0xfc000000,
hayeswangbeb330a2013-04-01 22:23:39 +00004817 0x00000000, ERIAR_EXGMAC);
4818 break;
françois romieu065c27c2011-01-03 15:08:12 +00004819 }
4820
4821 r8168_phy_power_up(tp);
4822}
4823
Francois Romieud58d46b2011-05-03 16:38:29 +02004824static void rtl_generic_op(struct rtl8169_private *tp,
4825 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00004826{
4827 if (op)
4828 op(tp);
4829}
4830
4831static void rtl_pll_power_down(struct rtl8169_private *tp)
4832{
Francois Romieud58d46b2011-05-03 16:38:29 +02004833 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00004834}
4835
4836static void rtl_pll_power_up(struct rtl8169_private *tp)
4837{
Francois Romieud58d46b2011-05-03 16:38:29 +02004838 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00004839}
4840
Bill Pembertonbaf63292012-12-03 09:23:28 -05004841static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
françois romieu065c27c2011-01-03 15:08:12 +00004842{
4843 struct pll_power_ops *ops = &tp->pll_power_ops;
4844
4845 switch (tp->mac_version) {
4846 case RTL_GIGA_MAC_VER_07:
4847 case RTL_GIGA_MAC_VER_08:
4848 case RTL_GIGA_MAC_VER_09:
4849 case RTL_GIGA_MAC_VER_10:
4850 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08004851 case RTL_GIGA_MAC_VER_29:
4852 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004853 case RTL_GIGA_MAC_VER_37:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004854 case RTL_GIGA_MAC_VER_39:
hayeswang58152cd2013-04-01 22:23:42 +00004855 case RTL_GIGA_MAC_VER_43:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004856 case RTL_GIGA_MAC_VER_47:
4857 case RTL_GIGA_MAC_VER_48:
françois romieu065c27c2011-01-03 15:08:12 +00004858 ops->down = r810x_pll_power_down;
4859 ops->up = r810x_pll_power_up;
4860 break;
4861
4862 case RTL_GIGA_MAC_VER_11:
4863 case RTL_GIGA_MAC_VER_12:
4864 case RTL_GIGA_MAC_VER_17:
4865 case RTL_GIGA_MAC_VER_18:
4866 case RTL_GIGA_MAC_VER_19:
4867 case RTL_GIGA_MAC_VER_20:
4868 case RTL_GIGA_MAC_VER_21:
4869 case RTL_GIGA_MAC_VER_22:
4870 case RTL_GIGA_MAC_VER_23:
4871 case RTL_GIGA_MAC_VER_24:
4872 case RTL_GIGA_MAC_VER_25:
4873 case RTL_GIGA_MAC_VER_26:
4874 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00004875 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004876 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004877 case RTL_GIGA_MAC_VER_32:
4878 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004879 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08004880 case RTL_GIGA_MAC_VER_35:
4881 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004882 case RTL_GIGA_MAC_VER_38:
Hayes Wangc5583862012-07-02 17:23:22 +08004883 case RTL_GIGA_MAC_VER_40:
4884 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004885 case RTL_GIGA_MAC_VER_42:
hayeswang45dd95c2013-07-08 17:09:01 +08004886 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004887 case RTL_GIGA_MAC_VER_45:
4888 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004889 case RTL_GIGA_MAC_VER_49:
4890 case RTL_GIGA_MAC_VER_50:
4891 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00004892 ops->down = r8168_pll_power_down;
4893 ops->up = r8168_pll_power_up;
4894 break;
4895
4896 default:
4897 ops->down = NULL;
4898 ops->up = NULL;
4899 break;
4900 }
4901}
4902
Hayes Wange542a222011-07-06 15:58:04 +08004903static void rtl_init_rxcfg(struct rtl8169_private *tp)
4904{
4905 void __iomem *ioaddr = tp->mmio_addr;
4906
4907 switch (tp->mac_version) {
4908 case RTL_GIGA_MAC_VER_01:
4909 case RTL_GIGA_MAC_VER_02:
4910 case RTL_GIGA_MAC_VER_03:
4911 case RTL_GIGA_MAC_VER_04:
4912 case RTL_GIGA_MAC_VER_05:
4913 case RTL_GIGA_MAC_VER_06:
4914 case RTL_GIGA_MAC_VER_10:
4915 case RTL_GIGA_MAC_VER_11:
4916 case RTL_GIGA_MAC_VER_12:
4917 case RTL_GIGA_MAC_VER_13:
4918 case RTL_GIGA_MAC_VER_14:
4919 case RTL_GIGA_MAC_VER_15:
4920 case RTL_GIGA_MAC_VER_16:
4921 case RTL_GIGA_MAC_VER_17:
4922 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
4923 break;
4924 case RTL_GIGA_MAC_VER_18:
4925 case RTL_GIGA_MAC_VER_19:
4926 case RTL_GIGA_MAC_VER_20:
4927 case RTL_GIGA_MAC_VER_21:
4928 case RTL_GIGA_MAC_VER_22:
4929 case RTL_GIGA_MAC_VER_23:
4930 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00004931 case RTL_GIGA_MAC_VER_34:
françois romieu3ced8c92013-09-08 01:15:35 +02004932 case RTL_GIGA_MAC_VER_35:
Hayes Wange542a222011-07-06 15:58:04 +08004933 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
4934 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004935 case RTL_GIGA_MAC_VER_40:
Michel Dänzer7a9810e2014-07-17 12:55:40 +09004936 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST | RX_EARLY_OFF);
4937 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004938 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004939 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004940 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004941 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004942 case RTL_GIGA_MAC_VER_45:
4943 case RTL_GIGA_MAC_VER_46:
4944 case RTL_GIGA_MAC_VER_47:
4945 case RTL_GIGA_MAC_VER_48:
Ivan Vecera7ebc4822015-08-04 22:11:43 +02004946 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST | RX_EARLY_OFF);
4947 break;
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004948 case RTL_GIGA_MAC_VER_49:
4949 case RTL_GIGA_MAC_VER_50:
4950 case RTL_GIGA_MAC_VER_51:
Ivan Vecera7ebc4822015-08-04 22:11:43 +02004951 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST | RX_EARLY_OFF);
hayeswangbeb330a2013-04-01 22:23:39 +00004952 break;
Hayes Wange542a222011-07-06 15:58:04 +08004953 default:
4954 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
4955 break;
4956 }
4957}
4958
Hayes Wang92fc43b2011-07-06 15:58:03 +08004959static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4960{
Timo Teräs9fba0812013-01-15 21:01:24 +00004961 tp->dirty_tx = tp->cur_tx = tp->cur_rx = 0;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004962}
4963
Francois Romieud58d46b2011-05-03 16:38:29 +02004964static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
4965{
françois romieu9c5028e2012-03-02 04:43:14 +00004966 void __iomem *ioaddr = tp->mmio_addr;
4967
4968 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004969 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00004970 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004971}
4972
4973static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
4974{
françois romieu9c5028e2012-03-02 04:43:14 +00004975 void __iomem *ioaddr = tp->mmio_addr;
4976
4977 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004978 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00004979 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004980}
4981
4982static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
4983{
4984 void __iomem *ioaddr = tp->mmio_addr;
4985
4986 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4987 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01004988 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02004989}
4990
4991static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
4992{
4993 void __iomem *ioaddr = tp->mmio_addr;
4994
4995 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4996 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
4997 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
4998}
4999
5000static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
5001{
5002 void __iomem *ioaddr = tp->mmio_addr;
5003
5004 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5005}
5006
5007static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
5008{
5009 void __iomem *ioaddr = tp->mmio_addr;
5010
5011 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5012}
5013
5014static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
5015{
5016 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005017
5018 RTL_W8(MaxTxPacketSize, 0x3f);
5019 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5020 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005021 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02005022}
5023
5024static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
5025{
5026 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005027
5028 RTL_W8(MaxTxPacketSize, 0x0c);
5029 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5030 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01005031 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02005032}
5033
5034static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
5035{
5036 rtl_tx_performance_tweak(tp->pci_dev,
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005037 PCI_EXP_DEVCTL_READRQ_512B | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieud58d46b2011-05-03 16:38:29 +02005038}
5039
5040static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
5041{
5042 rtl_tx_performance_tweak(tp->pci_dev,
5043 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
5044}
5045
5046static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
5047{
5048 void __iomem *ioaddr = tp->mmio_addr;
5049
5050 r8168b_0_hw_jumbo_enable(tp);
5051
5052 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
5053}
5054
5055static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
5056{
5057 void __iomem *ioaddr = tp->mmio_addr;
5058
5059 r8168b_0_hw_jumbo_disable(tp);
5060
5061 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
5062}
5063
Bill Pembertonbaf63292012-12-03 09:23:28 -05005064static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
Francois Romieud58d46b2011-05-03 16:38:29 +02005065{
5066 struct jumbo_ops *ops = &tp->jumbo_ops;
5067
5068 switch (tp->mac_version) {
5069 case RTL_GIGA_MAC_VER_11:
5070 ops->disable = r8168b_0_hw_jumbo_disable;
5071 ops->enable = r8168b_0_hw_jumbo_enable;
5072 break;
5073 case RTL_GIGA_MAC_VER_12:
5074 case RTL_GIGA_MAC_VER_17:
5075 ops->disable = r8168b_1_hw_jumbo_disable;
5076 ops->enable = r8168b_1_hw_jumbo_enable;
5077 break;
5078 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
5079 case RTL_GIGA_MAC_VER_19:
5080 case RTL_GIGA_MAC_VER_20:
5081 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
5082 case RTL_GIGA_MAC_VER_22:
5083 case RTL_GIGA_MAC_VER_23:
5084 case RTL_GIGA_MAC_VER_24:
5085 case RTL_GIGA_MAC_VER_25:
5086 case RTL_GIGA_MAC_VER_26:
5087 ops->disable = r8168c_hw_jumbo_disable;
5088 ops->enable = r8168c_hw_jumbo_enable;
5089 break;
5090 case RTL_GIGA_MAC_VER_27:
5091 case RTL_GIGA_MAC_VER_28:
5092 ops->disable = r8168dp_hw_jumbo_disable;
5093 ops->enable = r8168dp_hw_jumbo_enable;
5094 break;
5095 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
5096 case RTL_GIGA_MAC_VER_32:
5097 case RTL_GIGA_MAC_VER_33:
5098 case RTL_GIGA_MAC_VER_34:
5099 ops->disable = r8168e_hw_jumbo_disable;
5100 ops->enable = r8168e_hw_jumbo_enable;
5101 break;
5102
5103 /*
5104 * No action needed for jumbo frames with 8169.
5105 * No jumbo for 810x at all.
5106 */
Hayes Wangc5583862012-07-02 17:23:22 +08005107 case RTL_GIGA_MAC_VER_40:
5108 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00005109 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00005110 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08005111 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005112 case RTL_GIGA_MAC_VER_45:
5113 case RTL_GIGA_MAC_VER_46:
5114 case RTL_GIGA_MAC_VER_47:
5115 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005116 case RTL_GIGA_MAC_VER_49:
5117 case RTL_GIGA_MAC_VER_50:
5118 case RTL_GIGA_MAC_VER_51:
Francois Romieud58d46b2011-05-03 16:38:29 +02005119 default:
5120 ops->disable = NULL;
5121 ops->enable = NULL;
5122 break;
5123 }
5124}
5125
Francois Romieuffc46952012-07-06 14:19:23 +02005126DECLARE_RTL_COND(rtl_chipcmd_cond)
5127{
5128 void __iomem *ioaddr = tp->mmio_addr;
5129
5130 return RTL_R8(ChipCmd) & CmdReset;
5131}
5132
Francois Romieu6f43adc2011-04-29 15:05:51 +02005133static void rtl_hw_reset(struct rtl8169_private *tp)
5134{
5135 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu6f43adc2011-04-29 15:05:51 +02005136
Francois Romieu6f43adc2011-04-29 15:05:51 +02005137 RTL_W8(ChipCmd, CmdReset);
5138
Francois Romieuffc46952012-07-06 14:19:23 +02005139 rtl_udelay_loop_wait_low(tp, &rtl_chipcmd_cond, 100, 100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02005140}
5141
Francois Romieub6ffd972011-06-17 17:00:05 +02005142static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
5143{
5144 struct rtl_fw *rtl_fw;
5145 const char *name;
5146 int rc = -ENOMEM;
5147
5148 name = rtl_lookup_firmware_name(tp);
5149 if (!name)
5150 goto out_no_firmware;
5151
5152 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
5153 if (!rtl_fw)
5154 goto err_warn;
5155
5156 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
5157 if (rc < 0)
5158 goto err_free;
5159
Francois Romieufd112f22011-06-18 00:10:29 +02005160 rc = rtl_check_firmware(tp, rtl_fw);
5161 if (rc < 0)
5162 goto err_release_firmware;
5163
Francois Romieub6ffd972011-06-17 17:00:05 +02005164 tp->rtl_fw = rtl_fw;
5165out:
5166 return;
5167
Francois Romieufd112f22011-06-18 00:10:29 +02005168err_release_firmware:
5169 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02005170err_free:
5171 kfree(rtl_fw);
5172err_warn:
5173 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
5174 name, rc);
5175out_no_firmware:
5176 tp->rtl_fw = NULL;
5177 goto out;
5178}
5179
François Romieu953a12c2011-04-24 17:38:48 +02005180static void rtl_request_firmware(struct rtl8169_private *tp)
5181{
Francois Romieub6ffd972011-06-17 17:00:05 +02005182 if (IS_ERR(tp->rtl_fw))
5183 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02005184}
5185
Hayes Wang92fc43b2011-07-06 15:58:03 +08005186static void rtl_rx_close(struct rtl8169_private *tp)
5187{
5188 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08005189
Francois Romieu1687b562011-07-19 17:21:29 +02005190 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005191}
5192
Francois Romieuffc46952012-07-06 14:19:23 +02005193DECLARE_RTL_COND(rtl_npq_cond)
5194{
5195 void __iomem *ioaddr = tp->mmio_addr;
5196
5197 return RTL_R8(TxPoll) & NPQ;
5198}
5199
5200DECLARE_RTL_COND(rtl_txcfg_empty_cond)
5201{
5202 void __iomem *ioaddr = tp->mmio_addr;
5203
5204 return RTL_R32(TxConfig) & TXCFG_EMPTY;
5205}
5206
françois romieue6de30d2011-01-03 15:08:37 +00005207static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208{
françois romieue6de30d2011-01-03 15:08:37 +00005209 void __iomem *ioaddr = tp->mmio_addr;
5210
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00005212 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Hayes Wang92fc43b2011-07-06 15:58:03 +08005214 rtl_rx_close(tp);
5215
Hayes Wang5d2e1952011-02-22 17:26:22 +08005216 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00005217 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
5218 tp->mac_version == RTL_GIGA_MAC_VER_31) {
Francois Romieuffc46952012-07-06 14:19:23 +02005219 rtl_udelay_loop_wait_low(tp, &rtl_npq_cond, 20, 42*42);
Hayes Wangc2218922011-09-06 16:55:18 +08005220 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005221 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
5222 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
5223 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
5224 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
5225 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
5226 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
5227 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
5228 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
5229 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
5230 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
5231 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
5232 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005233 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
5234 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
5235 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
5236 tp->mac_version == RTL_GIGA_MAC_VER_51) {
David S. Miller8decf862011-09-22 03:23:13 -04005237 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Francois Romieuffc46952012-07-06 14:19:23 +02005238 rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005239 } else {
5240 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
5241 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00005242 }
5243
Hayes Wang92fc43b2011-07-06 15:58:03 +08005244 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245}
5246
Francois Romieu7f796d832007-06-11 23:04:41 +02005247static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005248{
5249 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01005250
5251 /* Set DMA burst size and Interframe Gap Time */
5252 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
5253 (InterFrameGap << TxInterFrameGapShift));
5254}
5255
Francois Romieu07ce4062007-02-23 23:36:39 +01005256static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257{
5258 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Francois Romieu07ce4062007-02-23 23:36:39 +01005260 tp->hw_start(dev);
5261
Francois Romieuda78dbf2012-01-26 14:18:23 +01005262 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01005263}
5264
Francois Romieu7f796d832007-06-11 23:04:41 +02005265static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
5266 void __iomem *ioaddr)
5267{
5268 /*
5269 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
5270 * register to be written before TxDescAddrLow to work.
5271 * Switching from MMIO to I/O access fixes the issue as well.
5272 */
5273 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005274 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005275 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005276 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005277}
5278
5279static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
5280{
5281 u16 cmd;
5282
5283 cmd = RTL_R16(CPlusCmd);
5284 RTL_W16(CPlusCmd, cmd);
5285 return cmd;
5286}
5287
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07005288static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02005289{
5290 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00005291 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02005292}
5293
Francois Romieu6dccd162007-02-13 23:38:05 +01005294static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
5295{
Francois Romieu37441002011-06-17 22:58:54 +02005296 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01005297 u32 mac_version;
5298 u32 clk;
5299 u32 val;
5300 } cfg2_info [] = {
5301 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
5302 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
5303 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
5304 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02005305 };
5306 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01005307 unsigned int i;
5308 u32 clk;
5309
5310 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01005311 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01005312 if ((p->mac_version == mac_version) && (p->clk == clk)) {
5313 RTL_W32(0x7c, p->val);
5314 break;
5315 }
5316 }
5317}
5318
Francois Romieue6b763e2012-03-08 09:35:39 +01005319static void rtl_set_rx_mode(struct net_device *dev)
5320{
5321 struct rtl8169_private *tp = netdev_priv(dev);
5322 void __iomem *ioaddr = tp->mmio_addr;
5323 u32 mc_filter[2]; /* Multicast hash filter */
5324 int rx_mode;
5325 u32 tmp = 0;
5326
5327 if (dev->flags & IFF_PROMISC) {
5328 /* Unconditionally log net taps. */
5329 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
5330 rx_mode =
5331 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
5332 AcceptAllPhys;
5333 mc_filter[1] = mc_filter[0] = 0xffffffff;
5334 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
5335 (dev->flags & IFF_ALLMULTI)) {
5336 /* Too many to filter perfectly -- accept all multicasts. */
5337 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
5338 mc_filter[1] = mc_filter[0] = 0xffffffff;
5339 } else {
5340 struct netdev_hw_addr *ha;
5341
5342 rx_mode = AcceptBroadcast | AcceptMyPhys;
5343 mc_filter[1] = mc_filter[0] = 0;
5344 netdev_for_each_mc_addr(ha, dev) {
5345 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
5346 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
5347 rx_mode |= AcceptMulticast;
5348 }
5349 }
5350
5351 if (dev->features & NETIF_F_RXALL)
5352 rx_mode |= (AcceptErr | AcceptRunt);
5353
5354 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
5355
5356 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
5357 u32 data = mc_filter[0];
5358
5359 mc_filter[0] = swab32(mc_filter[1]);
5360 mc_filter[1] = swab32(data);
5361 }
5362
Nathan Walp04817762012-11-01 12:08:47 +00005363 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
5364 mc_filter[1] = mc_filter[0] = 0xffffffff;
5365
Francois Romieue6b763e2012-03-08 09:35:39 +01005366 RTL_W32(MAR0 + 4, mc_filter[1]);
5367 RTL_W32(MAR0 + 0, mc_filter[0]);
5368
5369 RTL_W32(RxConfig, tmp);
5370}
5371
Francois Romieu07ce4062007-02-23 23:36:39 +01005372static void rtl_hw_start_8169(struct net_device *dev)
5373{
5374 struct rtl8169_private *tp = netdev_priv(dev);
5375 void __iomem *ioaddr = tp->mmio_addr;
5376 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01005377
Francois Romieu9cb427b2006-11-02 00:10:16 +01005378 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
5379 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
5380 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
5381 }
5382
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02005384 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5385 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5386 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5387 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005388 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5389
Hayes Wange542a222011-07-06 15:58:04 +08005390 rtl_init_rxcfg(tp);
5391
françois romieuf0298f82011-01-03 15:07:42 +00005392 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005394 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395
Francois Romieucecb5fd2011-04-01 10:21:07 +02005396 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5397 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5398 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5399 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02005400 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401
Francois Romieu7f796d832007-06-11 23:04:41 +02005402 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005403
Francois Romieucecb5fd2011-04-01 10:21:07 +02005404 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5405 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005406 dprintk("Set MAC Reg C+CR Offset 0xe0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02005408 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 }
5410
Francois Romieubcf0bf92006-07-26 23:14:13 +02005411 RTL_W16(CPlusCmd, tp->cp_cmd);
5412
Francois Romieu6dccd162007-02-13 23:38:05 +01005413 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
5414
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 /*
5416 * Undocumented corner. Supposedly:
5417 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
5418 */
5419 RTL_W16(IntrMitigate, 0x0000);
5420
Francois Romieu7f796d832007-06-11 23:04:41 +02005421 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01005422
Francois Romieucecb5fd2011-04-01 10:21:07 +02005423 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
5424 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
5425 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
5426 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02005427 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5428 rtl_set_rx_tx_config_registers(tp);
5429 }
5430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02005432
5433 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
5434 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435
5436 RTL_W32(RxMissed, 0);
5437
Francois Romieu07ce4062007-02-23 23:36:39 +01005438 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439
5440 /* no early-rx interrupts */
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005441 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005442}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005444static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
5445{
5446 if (tp->csi_ops.write)
Francois Romieu52989f02012-07-06 13:37:00 +02005447 tp->csi_ops.write(tp, addr, value);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005448}
5449
5450static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
5451{
Francois Romieu52989f02012-07-06 13:37:00 +02005452 return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005453}
5454
5455static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02005456{
5457 u32 csi;
5458
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005459 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
5460 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00005461}
5462
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005463static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005464{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005465 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00005466}
5467
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005468static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00005469{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005470 rtl_csi_access_enable(tp, 0x27000000);
5471}
5472
Francois Romieuffc46952012-07-06 14:19:23 +02005473DECLARE_RTL_COND(rtl_csiar_cond)
5474{
5475 void __iomem *ioaddr = tp->mmio_addr;
5476
5477 return RTL_R32(CSIAR) & CSIAR_FLAG;
5478}
5479
Francois Romieu52989f02012-07-06 13:37:00 +02005480static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005481{
Francois Romieu52989f02012-07-06 13:37:00 +02005482 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005483
5484 RTL_W32(CSIDR, value);
5485 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5486 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5487
Francois Romieuffc46952012-07-06 14:19:23 +02005488 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005489}
5490
Francois Romieu52989f02012-07-06 13:37:00 +02005491static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005492{
Francois Romieu52989f02012-07-06 13:37:00 +02005493 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005494
5495 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
5496 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5497
Francois Romieuffc46952012-07-06 14:19:23 +02005498 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5499 RTL_R32(CSIDR) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005500}
5501
Francois Romieu52989f02012-07-06 13:37:00 +02005502static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005503{
Francois Romieu52989f02012-07-06 13:37:00 +02005504 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005505
5506 RTL_W32(CSIDR, value);
5507 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5508 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5509 CSIAR_FUNC_NIC);
5510
Francois Romieuffc46952012-07-06 14:19:23 +02005511 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wang7e18dca2012-03-30 14:33:02 +08005512}
5513
Francois Romieu52989f02012-07-06 13:37:00 +02005514static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005515{
Francois Romieu52989f02012-07-06 13:37:00 +02005516 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005517
5518 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
5519 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5520
Francois Romieuffc46952012-07-06 14:19:23 +02005521 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5522 RTL_R32(CSIDR) : ~0;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005523}
5524
hayeswang45dd95c2013-07-08 17:09:01 +08005525static void r8411_csi_write(struct rtl8169_private *tp, int addr, int value)
5526{
5527 void __iomem *ioaddr = tp->mmio_addr;
5528
5529 RTL_W32(CSIDR, value);
5530 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5531 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5532 CSIAR_FUNC_NIC2);
5533
5534 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
5535}
5536
5537static u32 r8411_csi_read(struct rtl8169_private *tp, int addr)
5538{
5539 void __iomem *ioaddr = tp->mmio_addr;
5540
5541 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC2 |
5542 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5543
5544 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5545 RTL_R32(CSIDR) : ~0;
5546}
5547
Bill Pembertonbaf63292012-12-03 09:23:28 -05005548static void rtl_init_csi_ops(struct rtl8169_private *tp)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005549{
5550 struct csi_ops *ops = &tp->csi_ops;
5551
5552 switch (tp->mac_version) {
5553 case RTL_GIGA_MAC_VER_01:
5554 case RTL_GIGA_MAC_VER_02:
5555 case RTL_GIGA_MAC_VER_03:
5556 case RTL_GIGA_MAC_VER_04:
5557 case RTL_GIGA_MAC_VER_05:
5558 case RTL_GIGA_MAC_VER_06:
5559 case RTL_GIGA_MAC_VER_10:
5560 case RTL_GIGA_MAC_VER_11:
5561 case RTL_GIGA_MAC_VER_12:
5562 case RTL_GIGA_MAC_VER_13:
5563 case RTL_GIGA_MAC_VER_14:
5564 case RTL_GIGA_MAC_VER_15:
5565 case RTL_GIGA_MAC_VER_16:
5566 case RTL_GIGA_MAC_VER_17:
5567 ops->write = NULL;
5568 ops->read = NULL;
5569 break;
5570
Hayes Wang7e18dca2012-03-30 14:33:02 +08005571 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005572 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08005573 ops->write = r8402_csi_write;
5574 ops->read = r8402_csi_read;
5575 break;
5576
hayeswang45dd95c2013-07-08 17:09:01 +08005577 case RTL_GIGA_MAC_VER_44:
5578 ops->write = r8411_csi_write;
5579 ops->read = r8411_csi_read;
5580 break;
5581
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005582 default:
5583 ops->write = r8169_csi_write;
5584 ops->read = r8169_csi_read;
5585 break;
5586 }
Francois Romieudacf8152008-08-02 20:44:13 +02005587}
5588
5589struct ephy_info {
5590 unsigned int offset;
5591 u16 mask;
5592 u16 bits;
5593};
5594
Francois Romieufdf6fc02012-07-06 22:40:38 +02005595static void rtl_ephy_init(struct rtl8169_private *tp, const struct ephy_info *e,
5596 int len)
Francois Romieudacf8152008-08-02 20:44:13 +02005597{
5598 u16 w;
5599
5600 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02005601 w = (rtl_ephy_read(tp, e->offset) & ~e->mask) | e->bits;
5602 rtl_ephy_write(tp, e->offset, w);
Francois Romieudacf8152008-08-02 20:44:13 +02005603 e++;
5604 }
5605}
5606
Francois Romieub726e492008-06-28 12:22:59 +02005607static void rtl_disable_clock_request(struct pci_dev *pdev)
5608{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005609 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL,
5610 PCI_EXP_LNKCTL_CLKREQ_EN);
Francois Romieub726e492008-06-28 12:22:59 +02005611}
5612
françois romieue6de30d2011-01-03 15:08:37 +00005613static void rtl_enable_clock_request(struct pci_dev *pdev)
5614{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005615 pcie_capability_set_word(pdev, PCI_EXP_LNKCTL,
5616 PCI_EXP_LNKCTL_CLKREQ_EN);
françois romieue6de30d2011-01-03 15:08:37 +00005617}
5618
hayeswangb51ecea2014-07-09 14:52:51 +08005619static void rtl_pcie_state_l2l3_enable(struct rtl8169_private *tp, bool enable)
5620{
5621 void __iomem *ioaddr = tp->mmio_addr;
5622 u8 data;
5623
5624 data = RTL_R8(Config3);
5625
5626 if (enable)
5627 data |= Rdy_to_L23;
5628 else
5629 data &= ~Rdy_to_L23;
5630
5631 RTL_W8(Config3, data);
5632}
5633
Francois Romieub726e492008-06-28 12:22:59 +02005634#define R8168_CPCMD_QUIRK_MASK (\
5635 EnableBist | \
5636 Mac_dbgo_oe | \
5637 Force_half_dup | \
5638 Force_rxflow_en | \
5639 Force_txflow_en | \
5640 Cxpl_dbg_sel | \
5641 ASF | \
5642 PktCntrDisable | \
5643 Mac_dbgo_sel)
5644
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005645static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005646{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005647 void __iomem *ioaddr = tp->mmio_addr;
5648 struct pci_dev *pdev = tp->pci_dev;
5649
Francois Romieub726e492008-06-28 12:22:59 +02005650 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5651
5652 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5653
françois romieufaf1e782013-02-27 13:01:57 +00005654 if (tp->dev->mtu <= ETH_DATA_LEN) {
5655 rtl_tx_performance_tweak(pdev, (0x5 << MAX_READ_REQUEST_SHIFT) |
5656 PCI_EXP_DEVCTL_NOSNOOP_EN);
5657 }
Francois Romieu219a1e92008-06-28 11:58:39 +02005658}
5659
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005660static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005661{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005662 void __iomem *ioaddr = tp->mmio_addr;
5663
5664 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005665
françois romieuf0298f82011-01-03 15:07:42 +00005666 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02005667
5668 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02005669}
5670
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005671static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005672{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005673 void __iomem *ioaddr = tp->mmio_addr;
5674 struct pci_dev *pdev = tp->pci_dev;
5675
Francois Romieub726e492008-06-28 12:22:59 +02005676 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
5677
5678 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5679
françois romieufaf1e782013-02-27 13:01:57 +00005680 if (tp->dev->mtu <= ETH_DATA_LEN)
5681 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02005682
5683 rtl_disable_clock_request(pdev);
5684
5685 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02005686}
5687
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005688static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005689{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005690 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005691 { 0x01, 0, 0x0001 },
5692 { 0x02, 0x0800, 0x1000 },
5693 { 0x03, 0, 0x0042 },
5694 { 0x06, 0x0080, 0x0000 },
5695 { 0x07, 0, 0x2000 }
5696 };
5697
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005698 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005699
Francois Romieufdf6fc02012-07-06 22:40:38 +02005700 rtl_ephy_init(tp, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
Francois Romieub726e492008-06-28 12:22:59 +02005701
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005702 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005703}
5704
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005705static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02005706{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005707 void __iomem *ioaddr = tp->mmio_addr;
5708 struct pci_dev *pdev = tp->pci_dev;
5709
5710 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02005711
5712 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5713
françois romieufaf1e782013-02-27 13:01:57 +00005714 if (tp->dev->mtu <= ETH_DATA_LEN)
5715 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieuef3386f2008-06-29 12:24:30 +02005716
5717 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5718}
5719
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005720static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005721{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005722 void __iomem *ioaddr = tp->mmio_addr;
5723 struct pci_dev *pdev = tp->pci_dev;
5724
5725 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005726
5727 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5728
5729 /* Magic. */
5730 RTL_W8(DBG_REG, 0x20);
5731
françois romieuf0298f82011-01-03 15:07:42 +00005732 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005733
françois romieufaf1e782013-02-27 13:01:57 +00005734 if (tp->dev->mtu <= ETH_DATA_LEN)
5735 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005736
5737 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5738}
5739
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005740static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005741{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005742 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005743 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005744 { 0x02, 0x0800, 0x1000 },
5745 { 0x03, 0, 0x0002 },
5746 { 0x06, 0x0080, 0x0000 }
5747 };
5748
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005749 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005750
5751 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
5752
Francois Romieufdf6fc02012-07-06 22:40:38 +02005753 rtl_ephy_init(tp, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
Francois Romieub726e492008-06-28 12:22:59 +02005754
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005755 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005756}
5757
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005758static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005759{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005760 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005761 { 0x01, 0, 0x0001 },
5762 { 0x03, 0x0400, 0x0220 }
5763 };
5764
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005765 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005766
Francois Romieufdf6fc02012-07-06 22:40:38 +02005767 rtl_ephy_init(tp, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
Francois Romieub726e492008-06-28 12:22:59 +02005768
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005769 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005770}
5771
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005772static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02005773{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005774 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02005775}
5776
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005777static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02005778{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005779 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005780
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005781 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005782}
5783
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005784static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02005785{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005786 void __iomem *ioaddr = tp->mmio_addr;
5787 struct pci_dev *pdev = tp->pci_dev;
5788
5789 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02005790
5791 rtl_disable_clock_request(pdev);
5792
françois romieuf0298f82011-01-03 15:07:42 +00005793 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02005794
françois romieufaf1e782013-02-27 13:01:57 +00005795 if (tp->dev->mtu <= ETH_DATA_LEN)
5796 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu5b538df2008-07-20 16:22:45 +02005797
5798 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5799}
5800
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005801static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00005802{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005803 void __iomem *ioaddr = tp->mmio_addr;
5804 struct pci_dev *pdev = tp->pci_dev;
5805
5806 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005807
françois romieufaf1e782013-02-27 13:01:57 +00005808 if (tp->dev->mtu <= ETH_DATA_LEN)
5809 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang4804b3b2011-03-21 01:50:29 +00005810
5811 RTL_W8(MaxTxPacketSize, TxPacketMax);
5812
5813 rtl_disable_clock_request(pdev);
5814}
5815
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005816static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005817{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005818 void __iomem *ioaddr = tp->mmio_addr;
5819 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00005820 static const struct ephy_info e_info_8168d_4[] = {
Chun-Hao Lin1016a4a2015-12-29 22:13:39 +08005821 { 0x0b, 0x0000, 0x0048 },
5822 { 0x19, 0x0020, 0x0050 },
5823 { 0x0c, 0x0100, 0x0020 }
françois romieue6de30d2011-01-03 15:08:37 +00005824 };
françois romieue6de30d2011-01-03 15:08:37 +00005825
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005826 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00005827
5828 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5829
5830 RTL_W8(MaxTxPacketSize, TxPacketMax);
5831
Chun-Hao Lin1016a4a2015-12-29 22:13:39 +08005832 rtl_ephy_init(tp, e_info_8168d_4, ARRAY_SIZE(e_info_8168d_4));
françois romieue6de30d2011-01-03 15:08:37 +00005833
5834 rtl_enable_clock_request(pdev);
5835}
5836
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005837static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00005838{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005839 void __iomem *ioaddr = tp->mmio_addr;
5840 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005841 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00005842 { 0x00, 0x0200, 0x0100 },
5843 { 0x00, 0x0000, 0x0004 },
5844 { 0x06, 0x0002, 0x0001 },
5845 { 0x06, 0x0000, 0x0030 },
5846 { 0x07, 0x0000, 0x2000 },
5847 { 0x00, 0x0000, 0x0020 },
5848 { 0x03, 0x5800, 0x2000 },
5849 { 0x03, 0x0000, 0x0001 },
5850 { 0x01, 0x0800, 0x1000 },
5851 { 0x07, 0x0000, 0x4000 },
5852 { 0x1e, 0x0000, 0x2000 },
5853 { 0x19, 0xffff, 0xfe6c },
5854 { 0x0a, 0x0000, 0x0040 }
5855 };
5856
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005857 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005858
Francois Romieufdf6fc02012-07-06 22:40:38 +02005859 rtl_ephy_init(tp, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00005860
françois romieufaf1e782013-02-27 13:01:57 +00005861 if (tp->dev->mtu <= ETH_DATA_LEN)
5862 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang01dc7fe2011-03-21 01:50:28 +00005863
5864 RTL_W8(MaxTxPacketSize, TxPacketMax);
5865
5866 rtl_disable_clock_request(pdev);
5867
5868 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02005869 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
5870 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00005871
Francois Romieucecb5fd2011-04-01 10:21:07 +02005872 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00005873}
5874
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005875static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08005876{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005877 void __iomem *ioaddr = tp->mmio_addr;
5878 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005879 static const struct ephy_info e_info_8168e_2[] = {
5880 { 0x09, 0x0000, 0x0080 },
5881 { 0x19, 0x0000, 0x0224 }
5882 };
5883
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005884 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005885
Francois Romieufdf6fc02012-07-06 22:40:38 +02005886 rtl_ephy_init(tp, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
Hayes Wang70090422011-07-06 15:58:06 +08005887
françois romieufaf1e782013-02-27 13:01:57 +00005888 if (tp->dev->mtu <= ETH_DATA_LEN)
5889 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Hayes Wang70090422011-07-06 15:58:06 +08005890
Francois Romieufdf6fc02012-07-06 22:40:38 +02005891 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5892 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5893 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5894 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5895 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5896 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005897 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5898 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08005899
Hayes Wang3090bd92011-09-06 16:55:15 +08005900 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08005901
Francois Romieu4521e1a92012-11-01 16:46:28 +00005902 rtl_disable_clock_request(pdev);
5903
Hayes Wang70090422011-07-06 15:58:06 +08005904 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5905 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5906
5907 /* Adjust EEE LED frequency */
5908 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5909
5910 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
5911 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005912 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wang70090422011-07-06 15:58:06 +08005913}
5914
Hayes Wang5f886e02012-03-30 14:33:03 +08005915static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08005916{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005917 void __iomem *ioaddr = tp->mmio_addr;
5918 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08005919
Hayes Wang5f886e02012-03-30 14:33:03 +08005920 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005921
5922 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5923
Francois Romieufdf6fc02012-07-06 22:40:38 +02005924 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5925 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5926 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5927 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005928 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5929 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5930 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5931 rtl_w0w1_eri(tp, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02005932 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5933 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08005934
5935 RTL_W8(MaxTxPacketSize, EarlySize);
5936
Francois Romieu4521e1a92012-11-01 16:46:28 +00005937 rtl_disable_clock_request(pdev);
5938
Hayes Wangc2218922011-09-06 16:55:18 +08005939 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5940 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08005941 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005942 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
5943 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wangc2218922011-09-06 16:55:18 +08005944}
5945
Hayes Wang5f886e02012-03-30 14:33:03 +08005946static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
5947{
5948 void __iomem *ioaddr = tp->mmio_addr;
5949 static const struct ephy_info e_info_8168f_1[] = {
5950 { 0x06, 0x00c0, 0x0020 },
5951 { 0x08, 0x0001, 0x0002 },
5952 { 0x09, 0x0000, 0x0080 },
5953 { 0x19, 0x0000, 0x0224 }
5954 };
5955
5956 rtl_hw_start_8168f(tp);
5957
Francois Romieufdf6fc02012-07-06 22:40:38 +02005958 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wang5f886e02012-03-30 14:33:03 +08005959
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005960 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang5f886e02012-03-30 14:33:03 +08005961
5962 /* Adjust EEE LED frequency */
5963 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5964}
5965
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005966static void rtl_hw_start_8411(struct rtl8169_private *tp)
5967{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005968 static const struct ephy_info e_info_8168f_1[] = {
5969 { 0x06, 0x00c0, 0x0020 },
5970 { 0x0f, 0xffff, 0x5200 },
5971 { 0x1e, 0x0000, 0x4000 },
5972 { 0x19, 0x0000, 0x0224 }
5973 };
5974
5975 rtl_hw_start_8168f(tp);
hayeswangb51ecea2014-07-09 14:52:51 +08005976 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005977
Francois Romieufdf6fc02012-07-06 22:40:38 +02005978 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005979
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005980 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005981}
5982
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08005983static void rtl_hw_start_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08005984{
5985 void __iomem *ioaddr = tp->mmio_addr;
5986 struct pci_dev *pdev = tp->pci_dev;
5987
hayeswangbeb330a2013-04-01 22:23:39 +00005988 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5989
Hayes Wangc5583862012-07-02 17:23:22 +08005990 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x080002, ERIAR_EXGMAC);
5991 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
5992 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
5993 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5994
5995 rtl_csi_access_enable_1(tp);
5996
5997 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5998
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005999 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6000 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
hayeswangbeb330a2013-04-01 22:23:39 +00006001 rtl_eri_write(tp, 0x2f8, ERIAR_MASK_0011, 0x1d8f, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08006002
Francois Romieu4521e1a92012-11-01 16:46:28 +00006003 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
Hayes Wangc5583862012-07-02 17:23:22 +08006004 RTL_W8(MaxTxPacketSize, EarlySize);
6005
6006 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6007 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6008
6009 /* Adjust EEE LED frequency */
6010 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6011
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006012 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6013 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006014
6015 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangc5583862012-07-02 17:23:22 +08006016}
6017
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006018static void rtl_hw_start_8168g_1(struct rtl8169_private *tp)
6019{
6020 void __iomem *ioaddr = tp->mmio_addr;
6021 static const struct ephy_info e_info_8168g_1[] = {
6022 { 0x00, 0x0000, 0x0008 },
6023 { 0x0c, 0x37d0, 0x0820 },
6024 { 0x1e, 0x0000, 0x0001 },
6025 { 0x19, 0x8000, 0x0000 }
6026 };
6027
6028 rtl_hw_start_8168g(tp);
6029
6030 /* disable aspm and clock request before access ephy */
6031 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6032 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6033 rtl_ephy_init(tp, e_info_8168g_1, ARRAY_SIZE(e_info_8168g_1));
6034}
6035
hayeswang57538c42013-04-01 22:23:40 +00006036static void rtl_hw_start_8168g_2(struct rtl8169_private *tp)
6037{
6038 void __iomem *ioaddr = tp->mmio_addr;
6039 static const struct ephy_info e_info_8168g_2[] = {
6040 { 0x00, 0x0000, 0x0008 },
6041 { 0x0c, 0x3df0, 0x0200 },
6042 { 0x19, 0xffff, 0xfc00 },
6043 { 0x1e, 0xffff, 0x20eb }
6044 };
6045
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006046 rtl_hw_start_8168g(tp);
hayeswang57538c42013-04-01 22:23:40 +00006047
6048 /* disable aspm and clock request before access ephy */
6049 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6050 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6051 rtl_ephy_init(tp, e_info_8168g_2, ARRAY_SIZE(e_info_8168g_2));
6052}
6053
hayeswang45dd95c2013-07-08 17:09:01 +08006054static void rtl_hw_start_8411_2(struct rtl8169_private *tp)
6055{
6056 void __iomem *ioaddr = tp->mmio_addr;
6057 static const struct ephy_info e_info_8411_2[] = {
6058 { 0x00, 0x0000, 0x0008 },
6059 { 0x0c, 0x3df0, 0x0200 },
6060 { 0x0f, 0xffff, 0x5200 },
6061 { 0x19, 0x0020, 0x0000 },
6062 { 0x1e, 0x0000, 0x2000 }
6063 };
6064
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006065 rtl_hw_start_8168g(tp);
hayeswang45dd95c2013-07-08 17:09:01 +08006066
6067 /* disable aspm and clock request before access ephy */
6068 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6069 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6070 rtl_ephy_init(tp, e_info_8411_2, ARRAY_SIZE(e_info_8411_2));
6071}
6072
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006073static void rtl_hw_start_8168h_1(struct rtl8169_private *tp)
6074{
6075 void __iomem *ioaddr = tp->mmio_addr;
6076 struct pci_dev *pdev = tp->pci_dev;
Andrzej Hajda72521ea2015-09-24 16:00:24 +02006077 int rg_saw_cnt;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006078 u32 data;
6079 static const struct ephy_info e_info_8168h_1[] = {
6080 { 0x1e, 0x0800, 0x0001 },
6081 { 0x1d, 0x0000, 0x0800 },
6082 { 0x05, 0xffff, 0x2089 },
6083 { 0x06, 0xffff, 0x5881 },
6084 { 0x04, 0xffff, 0x154a },
6085 { 0x01, 0xffff, 0x068b }
6086 };
6087
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_8168h_1, ARRAY_SIZE(e_info_8168h_1));
6092
6093 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6094
6095 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6096 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
6097 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
6098 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6099
6100 rtl_csi_access_enable_1(tp);
6101
6102 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6103
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006104 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6105 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006106
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006107 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_1111, 0x0010, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006108
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006109 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f00, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006110
6111 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6112
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006113 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6114 RTL_W8(MaxTxPacketSize, EarlySize);
6115
6116 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6117 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6118
6119 /* Adjust EEE LED frequency */
6120 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6121
6122 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006123 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006124
6125 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6126
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006127 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006128
6129 rtl_pcie_state_l2l3_enable(tp, false);
6130
6131 rtl_writephy(tp, 0x1f, 0x0c42);
Chun-Hao Lin58493332015-12-24 21:15:27 +08006132 rg_saw_cnt = (rtl_readphy(tp, 0x13) & 0x3fff);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006133 rtl_writephy(tp, 0x1f, 0x0000);
6134 if (rg_saw_cnt > 0) {
6135 u16 sw_cnt_1ms_ini;
6136
6137 sw_cnt_1ms_ini = 16000000/rg_saw_cnt;
6138 sw_cnt_1ms_ini &= 0x0fff;
6139 data = r8168_mac_ocp_read(tp, 0xd412);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006140 data &= ~0x0fff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006141 data |= sw_cnt_1ms_ini;
6142 r8168_mac_ocp_write(tp, 0xd412, data);
6143 }
6144
6145 data = r8168_mac_ocp_read(tp, 0xe056);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006146 data &= ~0xf0;
6147 data |= 0x70;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006148 r8168_mac_ocp_write(tp, 0xe056, data);
6149
6150 data = r8168_mac_ocp_read(tp, 0xe052);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006151 data &= ~0x6000;
6152 data |= 0x8008;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006153 r8168_mac_ocp_write(tp, 0xe052, data);
6154
6155 data = r8168_mac_ocp_read(tp, 0xe0d6);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006156 data &= ~0x01ff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006157 data |= 0x017f;
6158 r8168_mac_ocp_write(tp, 0xe0d6, data);
6159
6160 data = r8168_mac_ocp_read(tp, 0xd420);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006161 data &= ~0x0fff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006162 data |= 0x047f;
6163 r8168_mac_ocp_write(tp, 0xd420, data);
6164
6165 r8168_mac_ocp_write(tp, 0xe63e, 0x0001);
6166 r8168_mac_ocp_write(tp, 0xe63e, 0x0000);
6167 r8168_mac_ocp_write(tp, 0xc094, 0x0000);
6168 r8168_mac_ocp_write(tp, 0xc09e, 0x0000);
6169}
6170
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006171static void rtl_hw_start_8168ep(struct rtl8169_private *tp)
6172{
6173 void __iomem *ioaddr = tp->mmio_addr;
6174 struct pci_dev *pdev = tp->pci_dev;
6175
Chun-Hao Lin003609d2014-12-02 16:48:31 +08006176 rtl8168ep_stop_cmac(tp);
6177
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006178 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6179
6180 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6181 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x2f, ERIAR_EXGMAC);
6182 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x5f, ERIAR_EXGMAC);
6183 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6184
6185 rtl_csi_access_enable_1(tp);
6186
6187 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6188
6189 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6190 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
6191
6192 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f80, 0x00, ERIAR_EXGMAC);
6193
6194 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6195
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006196 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6197 RTL_W8(MaxTxPacketSize, EarlySize);
6198
6199 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6200 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6201
6202 /* Adjust EEE LED frequency */
6203 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6204
6205 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6206
6207 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6208
6209 rtl_pcie_state_l2l3_enable(tp, false);
6210}
6211
6212static void rtl_hw_start_8168ep_1(struct rtl8169_private *tp)
6213{
6214 void __iomem *ioaddr = tp->mmio_addr;
6215 static const struct ephy_info e_info_8168ep_1[] = {
6216 { 0x00, 0xffff, 0x10ab },
6217 { 0x06, 0xffff, 0xf030 },
6218 { 0x08, 0xffff, 0x2006 },
6219 { 0x0d, 0xffff, 0x1666 },
6220 { 0x0c, 0x3ff0, 0x0000 }
6221 };
6222
6223 /* disable aspm and clock request before access ephy */
6224 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6225 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6226 rtl_ephy_init(tp, e_info_8168ep_1, ARRAY_SIZE(e_info_8168ep_1));
6227
6228 rtl_hw_start_8168ep(tp);
6229}
6230
6231static void rtl_hw_start_8168ep_2(struct rtl8169_private *tp)
6232{
6233 void __iomem *ioaddr = tp->mmio_addr;
6234 static const struct ephy_info e_info_8168ep_2[] = {
6235 { 0x00, 0xffff, 0x10a3 },
6236 { 0x19, 0xffff, 0xfc00 },
6237 { 0x1e, 0xffff, 0x20ea }
6238 };
6239
6240 /* disable aspm and clock request before access ephy */
6241 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6242 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6243 rtl_ephy_init(tp, e_info_8168ep_2, ARRAY_SIZE(e_info_8168ep_2));
6244
6245 rtl_hw_start_8168ep(tp);
6246
6247 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006248 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006249}
6250
6251static void rtl_hw_start_8168ep_3(struct rtl8169_private *tp)
6252{
6253 void __iomem *ioaddr = tp->mmio_addr;
6254 u32 data;
6255 static const struct ephy_info e_info_8168ep_3[] = {
6256 { 0x00, 0xffff, 0x10a3 },
6257 { 0x19, 0xffff, 0x7c00 },
6258 { 0x1e, 0xffff, 0x20eb },
6259 { 0x0d, 0xffff, 0x1666 }
6260 };
6261
6262 /* disable aspm and clock request before access ephy */
6263 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6264 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6265 rtl_ephy_init(tp, e_info_8168ep_3, ARRAY_SIZE(e_info_8168ep_3));
6266
6267 rtl_hw_start_8168ep(tp);
6268
6269 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006270 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006271
6272 data = r8168_mac_ocp_read(tp, 0xd3e2);
6273 data &= 0xf000;
6274 data |= 0x0271;
6275 r8168_mac_ocp_write(tp, 0xd3e2, data);
6276
6277 data = r8168_mac_ocp_read(tp, 0xd3e4);
6278 data &= 0xff00;
6279 r8168_mac_ocp_write(tp, 0xd3e4, data);
6280
6281 data = r8168_mac_ocp_read(tp, 0xe860);
6282 data |= 0x0080;
6283 r8168_mac_ocp_write(tp, 0xe860, data);
6284}
6285
Francois Romieu07ce4062007-02-23 23:36:39 +01006286static void rtl_hw_start_8168(struct net_device *dev)
6287{
Francois Romieu2dd99532007-06-11 23:22:52 +02006288 struct rtl8169_private *tp = netdev_priv(dev);
6289 void __iomem *ioaddr = tp->mmio_addr;
6290
6291 RTL_W8(Cfg9346, Cfg9346_Unlock);
6292
françois romieuf0298f82011-01-03 15:07:42 +00006293 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02006294
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006295 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02006296
Francois Romieu0e485152007-02-20 00:00:26 +01006297 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02006298
6299 RTL_W16(CPlusCmd, tp->cp_cmd);
6300
Francois Romieu0e485152007-02-20 00:00:26 +01006301 RTL_W16(IntrMitigate, 0x5151);
6302
6303 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00006304 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01006305 tp->event_slow |= RxFIFOOver | PCSTimeout;
6306 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01006307 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006308
6309 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6310
hayeswang1a964642013-04-01 22:23:41 +00006311 rtl_set_rx_tx_config_registers(tp);
Francois Romieu2dd99532007-06-11 23:22:52 +02006312
6313 RTL_R8(IntrMask);
6314
Francois Romieu219a1e92008-06-28 11:58:39 +02006315 switch (tp->mac_version) {
6316 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006317 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006318 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006319
6320 case RTL_GIGA_MAC_VER_12:
6321 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006322 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006323 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006324
6325 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006326 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006327 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006328
6329 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006330 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006331 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006332
6333 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006334 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006335 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006336
Francois Romieu197ff762008-06-28 13:16:02 +02006337 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006338 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006339 break;
Francois Romieu197ff762008-06-28 13:16:02 +02006340
Francois Romieu6fb07052008-06-29 11:54:28 +02006341 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006342 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006343 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02006344
Francois Romieuef3386f2008-06-29 12:24:30 +02006345 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006346 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006347 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02006348
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006349 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006350 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006351 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006352
Francois Romieu5b538df2008-07-20 16:22:45 +02006353 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00006354 case RTL_GIGA_MAC_VER_26:
6355 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006356 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006357 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02006358
françois romieue6de30d2011-01-03 15:08:37 +00006359 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006360 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006361 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02006362
hayeswang4804b3b2011-03-21 01:50:29 +00006363 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006364 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006365 break;
6366
hayeswang01dc7fe2011-03-21 01:50:28 +00006367 case RTL_GIGA_MAC_VER_32:
6368 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006369 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08006370 break;
6371 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006372 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00006373 break;
françois romieue6de30d2011-01-03 15:08:37 +00006374
Hayes Wangc2218922011-09-06 16:55:18 +08006375 case RTL_GIGA_MAC_VER_35:
6376 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006377 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08006378 break;
6379
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006380 case RTL_GIGA_MAC_VER_38:
6381 rtl_hw_start_8411(tp);
6382 break;
6383
Hayes Wangc5583862012-07-02 17:23:22 +08006384 case RTL_GIGA_MAC_VER_40:
6385 case RTL_GIGA_MAC_VER_41:
6386 rtl_hw_start_8168g_1(tp);
6387 break;
hayeswang57538c42013-04-01 22:23:40 +00006388 case RTL_GIGA_MAC_VER_42:
6389 rtl_hw_start_8168g_2(tp);
6390 break;
Hayes Wangc5583862012-07-02 17:23:22 +08006391
hayeswang45dd95c2013-07-08 17:09:01 +08006392 case RTL_GIGA_MAC_VER_44:
6393 rtl_hw_start_8411_2(tp);
6394 break;
6395
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006396 case RTL_GIGA_MAC_VER_45:
6397 case RTL_GIGA_MAC_VER_46:
6398 rtl_hw_start_8168h_1(tp);
6399 break;
6400
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006401 case RTL_GIGA_MAC_VER_49:
6402 rtl_hw_start_8168ep_1(tp);
6403 break;
6404
6405 case RTL_GIGA_MAC_VER_50:
6406 rtl_hw_start_8168ep_2(tp);
6407 break;
6408
6409 case RTL_GIGA_MAC_VER_51:
6410 rtl_hw_start_8168ep_3(tp);
6411 break;
6412
Francois Romieu219a1e92008-06-28 11:58:39 +02006413 default:
6414 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
6415 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00006416 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006417 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006418
hayeswang1a964642013-04-01 22:23:41 +00006419 RTL_W8(Cfg9346, Cfg9346_Lock);
6420
Francois Romieu0e485152007-02-20 00:00:26 +01006421 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
6422
hayeswang1a964642013-04-01 22:23:41 +00006423 rtl_set_rx_mode(dev);
Francois Romieub8363902008-06-01 12:31:57 +02006424
Chun-Hao Lin05b96872014-10-01 23:17:12 +08006425 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01006426}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427
Francois Romieu2857ffb2008-08-02 21:08:49 +02006428#define R810X_CPCMD_QUIRK_MASK (\
6429 EnableBist | \
6430 Mac_dbgo_oe | \
6431 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00006432 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02006433 Force_txflow_en | \
6434 Cxpl_dbg_sel | \
6435 ASF | \
6436 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006437 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006438
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006439static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006440{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006441 void __iomem *ioaddr = tp->mmio_addr;
6442 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08006443 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02006444 { 0x01, 0, 0x6e65 },
6445 { 0x02, 0, 0x091f },
6446 { 0x03, 0, 0xc2f9 },
6447 { 0x06, 0, 0xafb5 },
6448 { 0x07, 0, 0x0e00 },
6449 { 0x19, 0, 0xec80 },
6450 { 0x01, 0, 0x2e65 },
6451 { 0x01, 0, 0x6e65 }
6452 };
6453 u8 cfg1;
6454
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006455 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006456
6457 RTL_W8(DBG_REG, FIX_NAK_1);
6458
6459 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6460
6461 RTL_W8(Config1,
6462 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
6463 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
6464
6465 cfg1 = RTL_R8(Config1);
6466 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
6467 RTL_W8(Config1, cfg1 & ~LEDS0);
6468
Francois Romieufdf6fc02012-07-06 22:40:38 +02006469 rtl_ephy_init(tp, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
Francois Romieu2857ffb2008-08-02 21:08:49 +02006470}
6471
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006472static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006473{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006474 void __iomem *ioaddr = tp->mmio_addr;
6475 struct pci_dev *pdev = tp->pci_dev;
6476
6477 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006478
6479 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6480
6481 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
6482 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006483}
6484
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006485static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006486{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006487 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006488
Francois Romieufdf6fc02012-07-06 22:40:38 +02006489 rtl_ephy_write(tp, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006490}
6491
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006492static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006493{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006494 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006495 static const struct ephy_info e_info_8105e_1[] = {
6496 { 0x07, 0, 0x4000 },
6497 { 0x19, 0, 0x0200 },
6498 { 0x19, 0, 0x0020 },
6499 { 0x1e, 0, 0x2000 },
6500 { 0x03, 0, 0x0001 },
6501 { 0x19, 0, 0x0100 },
6502 { 0x19, 0, 0x0004 },
6503 { 0x0a, 0, 0x0020 }
6504 };
6505
Francois Romieucecb5fd2011-04-01 10:21:07 +02006506 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006507 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6508
Francois Romieucecb5fd2011-04-01 10:21:07 +02006509 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006510 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
6511
6512 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08006513 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006514
Francois Romieufdf6fc02012-07-06 22:40:38 +02006515 rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
hayeswangb51ecea2014-07-09 14:52:51 +08006516
6517 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006518}
6519
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006520static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006521{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006522 rtl_hw_start_8105e_1(tp);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006523 rtl_ephy_write(tp, 0x1e, rtl_ephy_read(tp, 0x1e) | 0x8000);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006524}
6525
Hayes Wang7e18dca2012-03-30 14:33:02 +08006526static void rtl_hw_start_8402(struct rtl8169_private *tp)
6527{
6528 void __iomem *ioaddr = tp->mmio_addr;
6529 static const struct ephy_info e_info_8402[] = {
6530 { 0x19, 0xffff, 0xff64 },
6531 { 0x1e, 0, 0x4000 }
6532 };
6533
6534 rtl_csi_access_enable_2(tp);
6535
6536 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6537 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6538
6539 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6540 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6541
Francois Romieufdf6fc02012-07-06 22:40:38 +02006542 rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402));
Hayes Wang7e18dca2012-03-30 14:33:02 +08006543
6544 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
6545
Francois Romieufdf6fc02012-07-06 22:40:38 +02006546 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
6547 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006548 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6549 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006550 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6551 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006552 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006553
6554 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang7e18dca2012-03-30 14:33:02 +08006555}
6556
Hayes Wang5598bfe2012-07-02 17:23:21 +08006557static void rtl_hw_start_8106(struct rtl8169_private *tp)
6558{
6559 void __iomem *ioaddr = tp->mmio_addr;
6560
6561 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6562 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6563
Francois Romieu4521e1a92012-11-01 16:46:28 +00006564 RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006565 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
6566 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
hayeswangb51ecea2014-07-09 14:52:51 +08006567
6568 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006569}
6570
Francois Romieu07ce4062007-02-23 23:36:39 +01006571static void rtl_hw_start_8101(struct net_device *dev)
6572{
Francois Romieucdf1a602007-06-11 23:29:50 +02006573 struct rtl8169_private *tp = netdev_priv(dev);
6574 void __iomem *ioaddr = tp->mmio_addr;
6575 struct pci_dev *pdev = tp->pci_dev;
6576
Francois Romieuda78dbf2012-01-26 14:18:23 +01006577 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
6578 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00006579
Francois Romieucecb5fd2011-04-01 10:21:07 +02006580 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
Jiang Liu7d7903b2012-07-24 17:20:16 +08006581 tp->mac_version == RTL_GIGA_MAC_VER_16)
Bjorn Helgaas8200bc72012-08-22 10:29:42 -06006582 pcie_capability_set_word(pdev, PCI_EXP_DEVCTL,
6583 PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieucdf1a602007-06-11 23:29:50 +02006584
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006585 RTL_W8(Cfg9346, Cfg9346_Unlock);
6586
hayeswang1a964642013-04-01 22:23:41 +00006587 RTL_W8(MaxTxPacketSize, TxPacketMax);
6588
6589 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
6590
6591 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
6592 RTL_W16(CPlusCmd, tp->cp_cmd);
6593
6594 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6595
6596 rtl_set_rx_tx_config_registers(tp);
6597
Francois Romieu2857ffb2008-08-02 21:08:49 +02006598 switch (tp->mac_version) {
6599 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006600 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006601 break;
6602
6603 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006604 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006605 break;
6606
6607 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006608 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006609 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006610
6611 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006612 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006613 break;
6614 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006615 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006616 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08006617
6618 case RTL_GIGA_MAC_VER_37:
6619 rtl_hw_start_8402(tp);
6620 break;
Hayes Wang5598bfe2012-07-02 17:23:21 +08006621
6622 case RTL_GIGA_MAC_VER_39:
6623 rtl_hw_start_8106(tp);
6624 break;
hayeswang58152cd2013-04-01 22:23:42 +00006625 case RTL_GIGA_MAC_VER_43:
6626 rtl_hw_start_8168g_2(tp);
6627 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006628 case RTL_GIGA_MAC_VER_47:
6629 case RTL_GIGA_MAC_VER_48:
6630 rtl_hw_start_8168h_1(tp);
6631 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02006632 }
6633
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006634 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02006635
Francois Romieucdf1a602007-06-11 23:29:50 +02006636 RTL_W16(IntrMitigate, 0x0000);
6637
Francois Romieucdf1a602007-06-11 23:29:50 +02006638 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieucdf1a602007-06-11 23:29:50 +02006639
Francois Romieucdf1a602007-06-11 23:29:50 +02006640 rtl_set_rx_mode(dev);
6641
hayeswang1a964642013-04-01 22:23:41 +00006642 RTL_R8(IntrMask);
6643
Francois Romieucdf1a602007-06-11 23:29:50 +02006644 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645}
6646
6647static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
6648{
Francois Romieud58d46b2011-05-03 16:38:29 +02006649 struct rtl8169_private *tp = netdev_priv(dev);
6650
6651 if (new_mtu < ETH_ZLEN ||
6652 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006653 return -EINVAL;
6654
Francois Romieud58d46b2011-05-03 16:38:29 +02006655 if (new_mtu > ETH_DATA_LEN)
6656 rtl_hw_jumbo_enable(tp);
6657 else
6658 rtl_hw_jumbo_disable(tp);
6659
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00006661 netdev_update_features(dev);
6662
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006663 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664}
6665
6666static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
6667{
Al Viro95e09182007-12-22 18:55:39 +00006668 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
6670}
6671
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006672static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
6673 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006675 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006676 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006677
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006678 kfree(*data_buff);
6679 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680 rtl8169_make_unusable_by_asic(desc);
6681}
6682
6683static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
6684{
6685 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
6686
Alexander Duycka0750132014-12-11 15:02:17 -08006687 /* Force memory writes to complete before releasing descriptor */
6688 dma_wmb();
6689
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
6691}
6692
6693static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
6694 u32 rx_buf_sz)
6695{
6696 desc->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006697 rtl8169_mark_to_asic(desc, rx_buf_sz);
6698}
6699
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006700static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006702 return (void *)ALIGN((long)data, 16);
6703}
6704
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006705static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
6706 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006707{
6708 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006710 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006711 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006712 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006714 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
6715 if (!data)
6716 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01006717
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006718 if (rtl8169_align(data) != data) {
6719 kfree(data);
6720 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
6721 if (!data)
6722 return NULL;
6723 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006724
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006725 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006726 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006727 if (unlikely(dma_mapping_error(d, mapping))) {
6728 if (net_ratelimit())
6729 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006730 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732
6733 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006734 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006735
6736err_out:
6737 kfree(data);
6738 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739}
6740
6741static void rtl8169_rx_clear(struct rtl8169_private *tp)
6742{
Francois Romieu07d3f512007-02-21 22:40:46 +01006743 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744
6745 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006746 if (tp->Rx_databuff[i]) {
6747 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748 tp->RxDescArray + i);
6749 }
6750 }
6751}
6752
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006753static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006755 desc->opts1 |= cpu_to_le32(RingEnd);
6756}
Francois Romieu5b0384f2006-08-16 16:00:01 +02006757
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006758static int rtl8169_rx_fill(struct rtl8169_private *tp)
6759{
6760 unsigned int i;
6761
6762 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006763 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02006764
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006765 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02006767
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006768 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006769 if (!data) {
6770 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006771 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006772 }
6773 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006776 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
6777 return 0;
6778
6779err_out:
6780 rtl8169_rx_clear(tp);
6781 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782}
6783
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784static int rtl8169_init_ring(struct net_device *dev)
6785{
6786 struct rtl8169_private *tp = netdev_priv(dev);
6787
6788 rtl8169_init_ring_indexes(tp);
6789
6790 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006791 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006793 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794}
6795
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006796static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797 struct TxDesc *desc)
6798{
6799 unsigned int len = tx_skb->len;
6800
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006801 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
6802
Linus Torvalds1da177e2005-04-16 15:20:36 -07006803 desc->opts1 = 0x00;
6804 desc->opts2 = 0x00;
6805 desc->addr = 0x00;
6806 tx_skb->len = 0;
6807}
6808
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006809static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
6810 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811{
6812 unsigned int i;
6813
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006814 for (i = 0; i < n; i++) {
6815 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816 struct ring_info *tx_skb = tp->tx_skb + entry;
6817 unsigned int len = tx_skb->len;
6818
6819 if (len) {
6820 struct sk_buff *skb = tx_skb->skb;
6821
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006822 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823 tp->TxDescArray + entry);
6824 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00006825 tp->dev->stats.tx_dropped++;
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07006826 dev_kfree_skb_any(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827 tx_skb->skb = NULL;
6828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829 }
6830 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006831}
6832
6833static void rtl8169_tx_clear(struct rtl8169_private *tp)
6834{
6835 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836 tp->cur_tx = tp->dirty_tx = 0;
6837}
6838
Francois Romieu4422bcd2012-01-26 11:23:32 +01006839static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840{
David Howellsc4028952006-11-22 14:57:56 +00006841 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01006842 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843
Francois Romieuda78dbf2012-01-26 14:18:23 +01006844 napi_disable(&tp->napi);
6845 netif_stop_queue(dev);
6846 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847
françois romieuc7c2c392011-12-04 20:30:52 +00006848 rtl8169_hw_reset(tp);
6849
Francois Romieu56de4142011-03-15 17:29:31 +01006850 for (i = 0; i < NUM_RX_DESC; i++)
6851 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
6852
Linus Torvalds1da177e2005-04-16 15:20:36 -07006853 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00006854 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006855
Francois Romieuda78dbf2012-01-26 14:18:23 +01006856 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01006857 rtl_hw_start(dev);
6858 netif_wake_queue(dev);
6859 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860}
6861
6862static void rtl8169_tx_timeout(struct net_device *dev)
6863{
Francois Romieuda78dbf2012-01-26 14:18:23 +01006864 struct rtl8169_private *tp = netdev_priv(dev);
6865
6866 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867}
6868
6869static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07006870 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871{
6872 struct skb_shared_info *info = skb_shinfo(skb);
6873 unsigned int cur_frag, entry;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006874 struct TxDesc *uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006875 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876
6877 entry = tp->cur_tx;
6878 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006879 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880 dma_addr_t mapping;
6881 u32 status, len;
6882 void *addr;
6883
6884 entry = (entry + 1) % NUM_TX_DESC;
6885
6886 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00006887 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00006888 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006889 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006890 if (unlikely(dma_mapping_error(d, mapping))) {
6891 if (net_ratelimit())
6892 netif_err(tp, drv, tp->dev,
6893 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006894 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896
Francois Romieucecb5fd2011-04-01 10:21:07 +02006897 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07006898 status = opts[0] | len |
6899 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900
6901 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07006902 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903 txd->addr = cpu_to_le64(mapping);
6904
6905 tp->tx_skb[entry].len = len;
6906 }
6907
6908 if (cur_frag) {
6909 tp->tx_skb[entry].skb = skb;
6910 txd->opts1 |= cpu_to_le32(LastFrag);
6911 }
6912
6913 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006914
6915err_out:
6916 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
6917 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918}
6919
françois romieub423e9a2013-05-18 01:24:46 +00006920static bool rtl_test_hw_pad_bug(struct rtl8169_private *tp, struct sk_buff *skb)
6921{
6922 return skb->len < ETH_ZLEN && tp->mac_version == RTL_GIGA_MAC_VER_34;
6923}
6924
hayeswange9746042014-07-11 16:25:58 +08006925static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
6926 struct net_device *dev);
6927/* r8169_csum_workaround()
6928 * The hw limites the value the transport offset. When the offset is out of the
6929 * range, calculate the checksum by sw.
6930 */
6931static void r8169_csum_workaround(struct rtl8169_private *tp,
6932 struct sk_buff *skb)
6933{
6934 if (skb_shinfo(skb)->gso_size) {
6935 netdev_features_t features = tp->dev->features;
6936 struct sk_buff *segs, *nskb;
6937
6938 features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
6939 segs = skb_gso_segment(skb, features);
6940 if (IS_ERR(segs) || !segs)
6941 goto drop;
6942
6943 do {
6944 nskb = segs;
6945 segs = segs->next;
6946 nskb->next = NULL;
6947 rtl8169_start_xmit(nskb, tp->dev);
6948 } while (segs);
6949
Alexander Duyckeb781392015-05-01 10:34:44 -07006950 dev_consume_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08006951 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
6952 if (skb_checksum_help(skb) < 0)
6953 goto drop;
6954
6955 rtl8169_start_xmit(skb, tp->dev);
6956 } else {
6957 struct net_device_stats *stats;
6958
6959drop:
6960 stats = &tp->dev->stats;
6961 stats->tx_dropped++;
Alexander Duyckeb781392015-05-01 10:34:44 -07006962 dev_kfree_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08006963 }
6964}
6965
6966/* msdn_giant_send_check()
6967 * According to the document of microsoft, the TCP Pseudo Header excludes the
6968 * packet length for IPv6 TCP large packets.
6969 */
6970static int msdn_giant_send_check(struct sk_buff *skb)
6971{
6972 const struct ipv6hdr *ipv6h;
6973 struct tcphdr *th;
6974 int ret;
6975
6976 ret = skb_cow_head(skb, 0);
6977 if (ret)
6978 return ret;
6979
6980 ipv6h = ipv6_hdr(skb);
6981 th = tcp_hdr(skb);
6982
6983 th->check = 0;
6984 th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0);
6985
6986 return ret;
6987}
6988
6989static inline __be16 get_protocol(struct sk_buff *skb)
6990{
6991 __be16 protocol;
6992
6993 if (skb->protocol == htons(ETH_P_8021Q))
6994 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
6995 else
6996 protocol = skb->protocol;
6997
6998 return protocol;
6999}
7000
hayeswang5888d3f2014-07-11 16:25:56 +08007001static bool rtl8169_tso_csum_v1(struct rtl8169_private *tp,
7002 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003{
Michał Mirosław350fb322011-04-08 06:35:56 +00007004 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005
Francois Romieu2b7b4312011-04-18 22:53:24 -07007006 if (mss) {
7007 opts[0] |= TD_LSO;
hayeswang5888d3f2014-07-11 16:25:56 +08007008 opts[0] |= min(mss, TD_MSS_MAX) << TD0_MSS_SHIFT;
7009 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
7010 const struct iphdr *ip = ip_hdr(skb);
7011
7012 if (ip->protocol == IPPROTO_TCP)
7013 opts[0] |= TD0_IP_CS | TD0_TCP_CS;
7014 else if (ip->protocol == IPPROTO_UDP)
7015 opts[0] |= TD0_IP_CS | TD0_UDP_CS;
7016 else
7017 WARN_ON_ONCE(1);
7018 }
7019
7020 return true;
7021}
7022
7023static bool rtl8169_tso_csum_v2(struct rtl8169_private *tp,
7024 struct sk_buff *skb, u32 *opts)
7025{
hayeswangbdfa4ed2014-07-11 16:25:57 +08007026 u32 transport_offset = (u32)skb_transport_offset(skb);
hayeswang5888d3f2014-07-11 16:25:56 +08007027 u32 mss = skb_shinfo(skb)->gso_size;
7028
7029 if (mss) {
hayeswange9746042014-07-11 16:25:58 +08007030 if (transport_offset > GTTCPHO_MAX) {
7031 netif_warn(tp, tx_err, tp->dev,
7032 "Invalid transport offset 0x%x for TSO\n",
7033 transport_offset);
7034 return false;
7035 }
7036
7037 switch (get_protocol(skb)) {
7038 case htons(ETH_P_IP):
7039 opts[0] |= TD1_GTSENV4;
7040 break;
7041
7042 case htons(ETH_P_IPV6):
7043 if (msdn_giant_send_check(skb))
7044 return false;
7045
7046 opts[0] |= TD1_GTSENV6;
7047 break;
7048
7049 default:
7050 WARN_ON_ONCE(1);
7051 break;
7052 }
7053
hayeswangbdfa4ed2014-07-11 16:25:57 +08007054 opts[0] |= transport_offset << GTTCPHO_SHIFT;
hayeswang5888d3f2014-07-11 16:25:56 +08007055 opts[1] |= min(mss, TD_MSS_MAX) << TD1_MSS_SHIFT;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007056 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
hayeswange9746042014-07-11 16:25:58 +08007057 u8 ip_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007058
françois romieub423e9a2013-05-18 01:24:46 +00007059 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007060 return !(skb_checksum_help(skb) || eth_skb_pad(skb));
françois romieub423e9a2013-05-18 01:24:46 +00007061
hayeswange9746042014-07-11 16:25:58 +08007062 if (transport_offset > TCPHO_MAX) {
7063 netif_warn(tp, tx_err, tp->dev,
7064 "Invalid transport offset 0x%x\n",
7065 transport_offset);
7066 return false;
7067 }
7068
7069 switch (get_protocol(skb)) {
7070 case htons(ETH_P_IP):
7071 opts[1] |= TD1_IPv4_CS;
7072 ip_protocol = ip_hdr(skb)->protocol;
7073 break;
7074
7075 case htons(ETH_P_IPV6):
7076 opts[1] |= TD1_IPv6_CS;
7077 ip_protocol = ipv6_hdr(skb)->nexthdr;
7078 break;
7079
7080 default:
7081 ip_protocol = IPPROTO_RAW;
7082 break;
7083 }
7084
7085 if (ip_protocol == IPPROTO_TCP)
7086 opts[1] |= TD1_TCP_CS;
7087 else if (ip_protocol == IPPROTO_UDP)
7088 opts[1] |= TD1_UDP_CS;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007089 else
7090 WARN_ON_ONCE(1);
hayeswange9746042014-07-11 16:25:58 +08007091
7092 opts[1] |= transport_offset << TCPHO_SHIFT;
françois romieub423e9a2013-05-18 01:24:46 +00007093 } else {
7094 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007095 return !eth_skb_pad(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096 }
hayeswang5888d3f2014-07-11 16:25:56 +08007097
françois romieub423e9a2013-05-18 01:24:46 +00007098 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099}
7100
Stephen Hemminger613573252009-08-31 19:50:58 +00007101static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
7102 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103{
7104 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007105 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106 struct TxDesc *txd = tp->TxDescArray + entry;
7107 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007108 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109 dma_addr_t mapping;
7110 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007111 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007112 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02007113
Julien Ducourthial477206a2012-05-09 00:00:06 +02007114 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007115 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007116 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117 }
7118
7119 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007120 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007121
françois romieub423e9a2013-05-18 01:24:46 +00007122 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb));
7123 opts[0] = DescOwn;
7124
hayeswange9746042014-07-11 16:25:58 +08007125 if (!tp->tso_csum(tp, skb, opts)) {
7126 r8169_csum_workaround(tp, skb);
7127 return NETDEV_TX_OK;
7128 }
françois romieub423e9a2013-05-18 01:24:46 +00007129
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007130 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007131 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007132 if (unlikely(dma_mapping_error(d, mapping))) {
7133 if (net_ratelimit())
7134 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007135 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137
7138 tp->tx_skb[entry].len = len;
7139 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140
Francois Romieu2b7b4312011-04-18 22:53:24 -07007141 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007142 if (frags < 0)
7143 goto err_dma_1;
7144 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07007145 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007146 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07007147 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007148 tp->tx_skb[entry].skb = skb;
7149 }
7150
Francois Romieu2b7b4312011-04-18 22:53:24 -07007151 txd->opts2 = cpu_to_le32(opts[1]);
7152
Richard Cochran5047fb52012-03-10 07:29:42 +00007153 skb_tx_timestamp(skb);
7154
Alexander Duycka0750132014-12-11 15:02:17 -08007155 /* Force memory writes to complete before releasing descriptor */
7156 dma_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157
Francois Romieucecb5fd2011-04-01 10:21:07 +02007158 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07007159 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007160 txd->opts1 = cpu_to_le32(status);
7161
Alexander Duycka0750132014-12-11 15:02:17 -08007162 /* Force all memory writes to complete before notifying device */
David Dillow4c020a92010-03-03 16:33:10 +00007163 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007164
Alexander Duycka0750132014-12-11 15:02:17 -08007165 tp->cur_tx += frags + 1;
7166
David S. Miller87cda7c2015-02-22 15:54:29 -05007167 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168
David S. Miller87cda7c2015-02-22 15:54:29 -05007169 mmiowb();
Francois Romieuda78dbf2012-01-26 14:18:23 +01007170
David S. Miller87cda7c2015-02-22 15:54:29 -05007171 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01007172 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
7173 * not miss a ring update when it notices a stopped queue.
7174 */
7175 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007176 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01007177 /* Sync with rtl_tx:
7178 * - publish queue status and cur_tx ring index (write barrier)
7179 * - refresh dirty_tx ring index (read barrier).
7180 * May the current thread have a pessimistic view of the ring
7181 * status and forget to wake up queue, a racing rtl_tx thread
7182 * can't.
7183 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007184 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02007185 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007186 netif_wake_queue(dev);
7187 }
7188
Stephen Hemminger613573252009-08-31 19:50:58 +00007189 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007191err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007192 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007193err_dma_0:
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07007194 dev_kfree_skb_any(skb);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007195 dev->stats.tx_dropped++;
7196 return NETDEV_TX_OK;
7197
7198err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007200 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00007201 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202}
7203
7204static void rtl8169_pcierr_interrupt(struct net_device *dev)
7205{
7206 struct rtl8169_private *tp = netdev_priv(dev);
7207 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208 u16 pci_status, pci_cmd;
7209
7210 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
7211 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
7212
Joe Perchesbf82c182010-02-09 11:49:50 +00007213 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
7214 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007215
7216 /*
7217 * The recovery sequence below admits a very elaborated explanation:
7218 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01007219 * - I did not see what else could be done;
7220 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221 *
7222 * Feel free to adjust to your needs.
7223 */
Francois Romieua27993f2006-12-18 00:04:19 +01007224 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01007225 pci_cmd &= ~PCI_COMMAND_PARITY;
7226 else
7227 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
7228
7229 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007230
7231 pci_write_config_word(pdev, PCI_STATUS,
7232 pci_status & (PCI_STATUS_DETECTED_PARITY |
7233 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
7234 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
7235
7236 /* The infamous DAC f*ckup only happens at boot time */
Timo Teräs9fba0812013-01-15 21:01:24 +00007237 if ((tp->cp_cmd & PCIDAC) && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00007238 void __iomem *ioaddr = tp->mmio_addr;
7239
Joe Perchesbf82c182010-02-09 11:49:50 +00007240 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007241 tp->cp_cmd &= ~PCIDAC;
7242 RTL_W16(CPlusCmd, tp->cp_cmd);
7243 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007244 }
7245
françois romieue6de30d2011-01-03 15:08:37 +00007246 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01007247
Francois Romieu98ddf982012-01-31 10:47:34 +01007248 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249}
7250
Francois Romieuda78dbf2012-01-26 14:18:23 +01007251static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252{
7253 unsigned int dirty_tx, tx_left;
7254
Linus Torvalds1da177e2005-04-16 15:20:36 -07007255 dirty_tx = tp->dirty_tx;
7256 smp_rmb();
7257 tx_left = tp->cur_tx - dirty_tx;
7258
7259 while (tx_left > 0) {
7260 unsigned int entry = dirty_tx % NUM_TX_DESC;
7261 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007262 u32 status;
7263
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
7265 if (status & DescOwn)
7266 break;
7267
Alexander Duycka0750132014-12-11 15:02:17 -08007268 /* This barrier is needed to keep us from reading
7269 * any other fields out of the Tx descriptor until
7270 * we know the status of DescOwn
7271 */
7272 dma_rmb();
7273
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007274 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
7275 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007276 if (status & LastFrag) {
David S. Miller87cda7c2015-02-22 15:54:29 -05007277 u64_stats_update_begin(&tp->tx_stats.syncp);
7278 tp->tx_stats.packets++;
7279 tp->tx_stats.bytes += tx_skb->skb->len;
7280 u64_stats_update_end(&tp->tx_stats.syncp);
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07007281 dev_kfree_skb_any(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282 tx_skb->skb = NULL;
7283 }
7284 dirty_tx++;
7285 tx_left--;
7286 }
7287
7288 if (tp->dirty_tx != dirty_tx) {
7289 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01007290 /* Sync with rtl8169_start_xmit:
7291 * - publish dirty_tx ring index (write barrier)
7292 * - refresh cur_tx ring index and queue status (read barrier)
7293 * May the current thread miss the stopped queue condition,
7294 * a racing xmit thread can only have a right view of the
7295 * ring status.
7296 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007297 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007298 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02007299 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007300 netif_wake_queue(dev);
7301 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02007302 /*
7303 * 8168 hack: TxPoll requests are lost when the Tx packets are
7304 * too close. Let's kick an extra TxPoll request when a burst
7305 * of start_xmit activity is detected (if it is not detected,
7306 * it is slow enough). -- FR
7307 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007308 if (tp->cur_tx != dirty_tx) {
7309 void __iomem *ioaddr = tp->mmio_addr;
7310
Francois Romieud78ae2d2007-08-26 20:08:19 +02007311 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313 }
7314}
7315
Francois Romieu126fa4b2005-05-12 20:09:17 -04007316static inline int rtl8169_fragmented_frame(u32 status)
7317{
7318 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
7319}
7320
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007321static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323 u32 status = opts1 & RxProtoMask;
7324
7325 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00007326 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327 skb->ip_summed = CHECKSUM_UNNECESSARY;
7328 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07007329 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330}
7331
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007332static struct sk_buff *rtl8169_try_rx_copy(void *data,
7333 struct rtl8169_private *tp,
7334 int pkt_size,
7335 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02007337 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007338 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007340 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007341 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007342 prefetch(data);
Alexander Duycke2338f82014-12-09 19:41:09 -08007343 skb = napi_alloc_skb(&tp->napi, pkt_size);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007344 if (skb)
7345 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007346 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
7347
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007348 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349}
7350
Francois Romieuda78dbf2012-01-26 14:18:23 +01007351static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352{
7353 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007354 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356 cur_rx = tp->cur_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357
Timo Teräs9fba0812013-01-15 21:01:24 +00007358 for (rx_left = min(budget, NUM_RX_DESC); rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007360 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361 u32 status;
7362
David S. Miller8decf862011-09-22 03:23:13 -04007363 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364 if (status & DescOwn)
7365 break;
Alexander Duycka0750132014-12-11 15:02:17 -08007366
7367 /* This barrier is needed to keep us from reading
7368 * any other fields out of the Rx descriptor until
7369 * we know the status of DescOwn
7370 */
7371 dma_rmb();
7372
Richard Dawe4dcb7d32005-05-27 21:12:00 +02007373 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007374 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
7375 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007376 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02007378 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02007380 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007381 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01007382 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007383 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007384 }
Ben Greear6bbe0212012-02-10 15:04:33 +00007385 if ((status & (RxRUNT | RxCRC)) &&
7386 !(status & (RxRWT | RxFOVF)) &&
7387 (dev->features & NETIF_F_RXALL))
7388 goto process_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007389 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007390 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00007391 dma_addr_t addr;
7392 int pkt_size;
7393
7394process_pkt:
7395 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00007396 if (likely(!(dev->features & NETIF_F_RXFCS)))
7397 pkt_size = (status & 0x00003fff) - 4;
7398 else
7399 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400
Francois Romieu126fa4b2005-05-12 20:09:17 -04007401 /*
7402 * The driver does not support incoming fragmented
7403 * frames. They are seen as a symptom of over-mtu
7404 * sized frames.
7405 */
7406 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02007407 dev->stats.rx_dropped++;
7408 dev->stats.rx_length_errors++;
françois romieuce11ff52013-01-24 13:30:06 +00007409 goto release_descriptor;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007410 }
7411
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007412 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
7413 tp, pkt_size, addr);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007414 if (!skb) {
7415 dev->stats.rx_dropped++;
françois romieuce11ff52013-01-24 13:30:06 +00007416 goto release_descriptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417 }
7418
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007419 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420 skb_put(skb, pkt_size);
7421 skb->protocol = eth_type_trans(skb, dev);
7422
Francois Romieu7a8fc772011-03-01 17:18:33 +01007423 rtl8169_rx_vlan_tag(desc, skb);
7424
françois romieu39174292015-11-11 23:35:18 +01007425 if (skb->pkt_type == PACKET_MULTICAST)
7426 dev->stats.multicast++;
7427
Francois Romieu56de4142011-03-15 17:29:31 +01007428 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429
Junchang Wang8027aa22012-03-04 23:30:32 +01007430 u64_stats_update_begin(&tp->rx_stats.syncp);
7431 tp->rx_stats.packets++;
7432 tp->rx_stats.bytes += pkt_size;
7433 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434 }
françois romieuce11ff52013-01-24 13:30:06 +00007435release_descriptor:
7436 desc->opts2 = 0;
françois romieuce11ff52013-01-24 13:30:06 +00007437 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438 }
7439
7440 count = cur_rx - tp->cur_rx;
7441 tp->cur_rx = cur_rx;
7442
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443 return count;
7444}
7445
Francois Romieu07d3f512007-02-21 22:40:46 +01007446static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447{
Francois Romieu07d3f512007-02-21 22:40:46 +01007448 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007451 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007453 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007454 if (status && status != 0xffff) {
7455 status &= RTL_EVENT_NAPI | tp->event_slow;
7456 if (status) {
7457 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00007458
Francois Romieuda78dbf2012-01-26 14:18:23 +01007459 rtl_irq_disable(tp);
7460 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463 return IRQ_RETVAL(handled);
7464}
7465
Francois Romieuda78dbf2012-01-26 14:18:23 +01007466/*
7467 * Workqueue context.
7468 */
7469static void rtl_slow_event_work(struct rtl8169_private *tp)
7470{
7471 struct net_device *dev = tp->dev;
7472 u16 status;
7473
7474 status = rtl_get_events(tp) & tp->event_slow;
7475 rtl_ack_events(tp, status);
7476
7477 if (unlikely(status & RxFIFOOver)) {
7478 switch (tp->mac_version) {
7479 /* Work around for rx fifo overflow */
7480 case RTL_GIGA_MAC_VER_11:
7481 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01007482 /* XXX - Hack alert. See rtl_task(). */
7483 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007484 default:
7485 break;
7486 }
7487 }
7488
7489 if (unlikely(status & SYSErr))
7490 rtl8169_pcierr_interrupt(dev);
7491
7492 if (status & LinkChg)
7493 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
7494
françois romieu7dbb4912012-06-09 10:53:16 +00007495 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007496}
7497
Francois Romieu4422bcd2012-01-26 11:23:32 +01007498static void rtl_task(struct work_struct *work)
7499{
Francois Romieuda78dbf2012-01-26 14:18:23 +01007500 static const struct {
7501 int bitnr;
7502 void (*action)(struct rtl8169_private *);
7503 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01007504 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007505 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
7506 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
7507 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
7508 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01007509 struct rtl8169_private *tp =
7510 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007511 struct net_device *dev = tp->dev;
7512 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01007513
Francois Romieuda78dbf2012-01-26 14:18:23 +01007514 rtl_lock_work(tp);
7515
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007516 if (!netif_running(dev) ||
7517 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01007518 goto out_unlock;
7519
7520 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
7521 bool pending;
7522
Francois Romieuda78dbf2012-01-26 14:18:23 +01007523 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007524 if (pending)
7525 rtl_work[i].action(tp);
7526 }
7527
7528out_unlock:
7529 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01007530}
7531
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007532static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007534 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
7535 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01007536 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
7537 int work_done= 0;
7538 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007539
Francois Romieuda78dbf2012-01-26 14:18:23 +01007540 status = rtl_get_events(tp);
7541 rtl_ack_events(tp, status & ~tp->event_slow);
7542
7543 if (status & RTL_EVENT_NAPI_RX)
7544 work_done = rtl_rx(dev, tp, (u32) budget);
7545
7546 if (status & RTL_EVENT_NAPI_TX)
7547 rtl_tx(dev, tp);
7548
7549 if (status & tp->event_slow) {
7550 enable_mask &= ~tp->event_slow;
7551
7552 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
7553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007555 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08007556 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00007557
Francois Romieuda78dbf2012-01-26 14:18:23 +01007558 rtl_irq_enable(tp, enable_mask);
7559 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560 }
7561
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007562 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007563}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564
Francois Romieu523a6092008-09-10 22:28:56 +02007565static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
7566{
7567 struct rtl8169_private *tp = netdev_priv(dev);
7568
7569 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
7570 return;
7571
7572 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
7573 RTL_W32(RxMissed, 0);
7574}
7575
Linus Torvalds1da177e2005-04-16 15:20:36 -07007576static void rtl8169_down(struct net_device *dev)
7577{
7578 struct rtl8169_private *tp = netdev_priv(dev);
7579 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007580
Francois Romieu4876cc12011-03-11 21:07:11 +01007581 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01007583 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007584 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585
Hayes Wang92fc43b2011-07-06 15:58:03 +08007586 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007587 /*
7588 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01007589 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
7590 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007591 */
Francois Romieu523a6092008-09-10 22:28:56 +02007592 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007595 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007596
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597 rtl8169_tx_clear(tp);
7598
7599 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00007600
7601 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602}
7603
7604static int rtl8169_close(struct net_device *dev)
7605{
7606 struct rtl8169_private *tp = netdev_priv(dev);
7607 struct pci_dev *pdev = tp->pci_dev;
7608
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007609 pm_runtime_get_sync(&pdev->dev);
7610
Francois Romieucecb5fd2011-04-01 10:21:07 +02007611 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08007612 rtl8169_update_counters(dev);
7613
Francois Romieuda78dbf2012-01-26 14:18:23 +01007614 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007615 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007616
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007618 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619
Lekensteyn4ea72442013-07-22 09:53:30 +02007620 cancel_work_sync(&tp->wk.work);
7621
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007622 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00007624 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7625 tp->RxPhyAddr);
7626 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7627 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628 tp->TxDescArray = NULL;
7629 tp->RxDescArray = NULL;
7630
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007631 pm_runtime_put_sync(&pdev->dev);
7632
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633 return 0;
7634}
7635
Francois Romieudc1c00c2012-03-08 10:06:18 +01007636#ifdef CONFIG_NET_POLL_CONTROLLER
7637static void rtl8169_netpoll(struct net_device *dev)
7638{
7639 struct rtl8169_private *tp = netdev_priv(dev);
7640
7641 rtl8169_interrupt(tp->pci_dev->irq, dev);
7642}
7643#endif
7644
Francois Romieudf43ac72012-03-08 09:48:40 +01007645static int rtl_open(struct net_device *dev)
7646{
7647 struct rtl8169_private *tp = netdev_priv(dev);
7648 void __iomem *ioaddr = tp->mmio_addr;
7649 struct pci_dev *pdev = tp->pci_dev;
7650 int retval = -ENOMEM;
7651
7652 pm_runtime_get_sync(&pdev->dev);
7653
7654 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02007655 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01007656 * dma_alloc_coherent provides more.
7657 */
7658 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
7659 &tp->TxPhyAddr, GFP_KERNEL);
7660 if (!tp->TxDescArray)
7661 goto err_pm_runtime_put;
7662
7663 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
7664 &tp->RxPhyAddr, GFP_KERNEL);
7665 if (!tp->RxDescArray)
7666 goto err_free_tx_0;
7667
7668 retval = rtl8169_init_ring(dev);
7669 if (retval < 0)
7670 goto err_free_rx_1;
7671
7672 INIT_WORK(&tp->wk.work, rtl_task);
7673
7674 smp_mb();
7675
7676 rtl_request_firmware(tp);
7677
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007678 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01007679 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
7680 dev->name, dev);
7681 if (retval < 0)
7682 goto err_release_fw_2;
7683
7684 rtl_lock_work(tp);
7685
7686 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
7687
7688 napi_enable(&tp->napi);
7689
7690 rtl8169_init_phy(dev, tp);
7691
7692 __rtl8169_set_features(dev, dev->features);
7693
7694 rtl_pll_power_up(tp);
7695
7696 rtl_hw_start(dev);
7697
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007698 if (!rtl8169_init_counter_offsets(dev))
7699 netif_warn(tp, hw, dev, "counter reset/update failed\n");
7700
Francois Romieudf43ac72012-03-08 09:48:40 +01007701 netif_start_queue(dev);
7702
7703 rtl_unlock_work(tp);
7704
7705 tp->saved_wolopts = 0;
7706 pm_runtime_put_noidle(&pdev->dev);
7707
7708 rtl8169_check_link_status(dev, tp, ioaddr);
7709out:
7710 return retval;
7711
7712err_release_fw_2:
7713 rtl_release_firmware(tp);
7714 rtl8169_rx_clear(tp);
7715err_free_rx_1:
7716 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7717 tp->RxPhyAddr);
7718 tp->RxDescArray = NULL;
7719err_free_tx_0:
7720 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7721 tp->TxPhyAddr);
7722 tp->TxDescArray = NULL;
7723err_pm_runtime_put:
7724 pm_runtime_put_noidle(&pdev->dev);
7725 goto out;
7726}
7727
Junchang Wang8027aa22012-03-04 23:30:32 +01007728static struct rtnl_link_stats64 *
7729rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730{
7731 struct rtl8169_private *tp = netdev_priv(dev);
7732 void __iomem *ioaddr = tp->mmio_addr;
Corinna Vinschen42020322015-09-10 10:47:35 +02007733 struct rtl8169_counters *counters = tp->counters;
Junchang Wang8027aa22012-03-04 23:30:32 +01007734 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007735
Francois Romieuda78dbf2012-01-26 14:18:23 +01007736 if (netif_running(dev))
Francois Romieu523a6092008-09-10 22:28:56 +02007737 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02007738
Junchang Wang8027aa22012-03-04 23:30:32 +01007739 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07007740 start = u64_stats_fetch_begin_irq(&tp->rx_stats.syncp);
Junchang Wang8027aa22012-03-04 23:30:32 +01007741 stats->rx_packets = tp->rx_stats.packets;
7742 stats->rx_bytes = tp->rx_stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07007743 } while (u64_stats_fetch_retry_irq(&tp->rx_stats.syncp, start));
Junchang Wang8027aa22012-03-04 23:30:32 +01007744
Junchang Wang8027aa22012-03-04 23:30:32 +01007745 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07007746 start = u64_stats_fetch_begin_irq(&tp->tx_stats.syncp);
Junchang Wang8027aa22012-03-04 23:30:32 +01007747 stats->tx_packets = tp->tx_stats.packets;
7748 stats->tx_bytes = tp->tx_stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07007749 } while (u64_stats_fetch_retry_irq(&tp->tx_stats.syncp, start));
Junchang Wang8027aa22012-03-04 23:30:32 +01007750
7751 stats->rx_dropped = dev->stats.rx_dropped;
7752 stats->tx_dropped = dev->stats.tx_dropped;
7753 stats->rx_length_errors = dev->stats.rx_length_errors;
7754 stats->rx_errors = dev->stats.rx_errors;
7755 stats->rx_crc_errors = dev->stats.rx_crc_errors;
7756 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
7757 stats->rx_missed_errors = dev->stats.rx_missed_errors;
Corinna Vinschend7d2d892015-08-27 17:11:48 +02007758 stats->multicast = dev->stats.multicast;
Junchang Wang8027aa22012-03-04 23:30:32 +01007759
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007760 /*
7761 * Fetch additonal counter values missing in stats collected by driver
7762 * from tally counters.
7763 */
7764 rtl8169_update_counters(dev);
7765
7766 /*
7767 * Subtract values fetched during initalization.
7768 * See rtl8169_init_counter_offsets for a description why we do that.
7769 */
Corinna Vinschen42020322015-09-10 10:47:35 +02007770 stats->tx_errors = le64_to_cpu(counters->tx_errors) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007771 le64_to_cpu(tp->tc_offset.tx_errors);
Corinna Vinschen42020322015-09-10 10:47:35 +02007772 stats->collisions = le32_to_cpu(counters->tx_multi_collision) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007773 le32_to_cpu(tp->tc_offset.tx_multi_collision);
Corinna Vinschen42020322015-09-10 10:47:35 +02007774 stats->tx_aborted_errors = le16_to_cpu(counters->tx_aborted) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007775 le16_to_cpu(tp->tc_offset.tx_aborted);
7776
Junchang Wang8027aa22012-03-04 23:30:32 +01007777 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778}
7779
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007780static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01007781{
françois romieu065c27c2011-01-03 15:08:12 +00007782 struct rtl8169_private *tp = netdev_priv(dev);
7783
Francois Romieu5d06a992006-02-23 00:47:58 +01007784 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007785 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01007786
7787 netif_device_detach(dev);
7788 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007789
7790 rtl_lock_work(tp);
7791 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007792 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007793 rtl_unlock_work(tp);
7794
7795 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007796}
Francois Romieu5d06a992006-02-23 00:47:58 +01007797
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007798#ifdef CONFIG_PM
7799
7800static int rtl8169_suspend(struct device *device)
7801{
7802 struct pci_dev *pdev = to_pci_dev(device);
7803 struct net_device *dev = pci_get_drvdata(pdev);
7804
7805 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02007806
Francois Romieu5d06a992006-02-23 00:47:58 +01007807 return 0;
7808}
7809
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007810static void __rtl8169_resume(struct net_device *dev)
7811{
françois romieu065c27c2011-01-03 15:08:12 +00007812 struct rtl8169_private *tp = netdev_priv(dev);
7813
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007814 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00007815
7816 rtl_pll_power_up(tp);
7817
Artem Savkovcff4c162012-04-03 10:29:11 +00007818 rtl_lock_work(tp);
7819 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007820 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00007821 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007822
Francois Romieu98ddf982012-01-31 10:47:34 +01007823 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007824}
7825
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007826static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01007827{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007828 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01007829 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00007830 struct rtl8169_private *tp = netdev_priv(dev);
7831
7832 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01007833
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007834 if (netif_running(dev))
7835 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01007836
Francois Romieu5d06a992006-02-23 00:47:58 +01007837 return 0;
7838}
7839
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007840static int rtl8169_runtime_suspend(struct device *device)
7841{
7842 struct pci_dev *pdev = to_pci_dev(device);
7843 struct net_device *dev = pci_get_drvdata(pdev);
7844 struct rtl8169_private *tp = netdev_priv(dev);
7845
7846 if (!tp->TxDescArray)
7847 return 0;
7848
Francois Romieuda78dbf2012-01-26 14:18:23 +01007849 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007850 tp->saved_wolopts = __rtl8169_get_wol(tp);
7851 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007852 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007853
7854 rtl8169_net_suspend(dev);
7855
7856 return 0;
7857}
7858
7859static int rtl8169_runtime_resume(struct device *device)
7860{
7861 struct pci_dev *pdev = to_pci_dev(device);
7862 struct net_device *dev = pci_get_drvdata(pdev);
7863 struct rtl8169_private *tp = netdev_priv(dev);
7864
7865 if (!tp->TxDescArray)
7866 return 0;
7867
Francois Romieuda78dbf2012-01-26 14:18:23 +01007868 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007869 __rtl8169_set_wol(tp, tp->saved_wolopts);
7870 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01007871 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007872
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00007873 rtl8169_init_phy(dev, tp);
7874
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007875 __rtl8169_resume(dev);
7876
7877 return 0;
7878}
7879
7880static int rtl8169_runtime_idle(struct device *device)
7881{
7882 struct pci_dev *pdev = to_pci_dev(device);
7883 struct net_device *dev = pci_get_drvdata(pdev);
7884 struct rtl8169_private *tp = netdev_priv(dev);
7885
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00007886 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007887}
7888
Alexey Dobriyan47145212009-12-14 18:00:08 -08007889static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02007890 .suspend = rtl8169_suspend,
7891 .resume = rtl8169_resume,
7892 .freeze = rtl8169_suspend,
7893 .thaw = rtl8169_resume,
7894 .poweroff = rtl8169_suspend,
7895 .restore = rtl8169_resume,
7896 .runtime_suspend = rtl8169_runtime_suspend,
7897 .runtime_resume = rtl8169_runtime_resume,
7898 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007899};
7900
7901#define RTL8169_PM_OPS (&rtl8169_pm_ops)
7902
7903#else /* !CONFIG_PM */
7904
7905#define RTL8169_PM_OPS NULL
7906
7907#endif /* !CONFIG_PM */
7908
David S. Miller1805b2f2011-10-24 18:18:09 -04007909static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
7910{
7911 void __iomem *ioaddr = tp->mmio_addr;
7912
7913 /* WoL fails with 8168b when the receiver is disabled. */
7914 switch (tp->mac_version) {
7915 case RTL_GIGA_MAC_VER_11:
7916 case RTL_GIGA_MAC_VER_12:
7917 case RTL_GIGA_MAC_VER_17:
7918 pci_clear_master(tp->pci_dev);
7919
7920 RTL_W8(ChipCmd, CmdRxEnb);
7921 /* PCI commit */
7922 RTL_R8(ChipCmd);
7923 break;
7924 default:
7925 break;
7926 }
7927}
7928
Francois Romieu1765f952008-09-13 17:21:40 +02007929static void rtl_shutdown(struct pci_dev *pdev)
7930{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007931 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00007932 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00007933 struct device *d = &pdev->dev;
7934
7935 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02007936
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007937 rtl8169_net_suspend(dev);
7938
Francois Romieucecb5fd2011-04-01 10:21:07 +02007939 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08007940 rtl_rar_set(tp, dev->perm_addr);
7941
Hayes Wang92fc43b2011-07-06 15:58:03 +08007942 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00007943
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007944 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04007945 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
7946 rtl_wol_suspend_quirk(tp);
7947 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00007948 }
7949
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007950 pci_wake_from_d3(pdev, true);
7951 pci_set_power_state(pdev, PCI_D3hot);
7952 }
françois romieu2a15cd22012-03-06 01:14:12 +00007953
7954 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007955}
Francois Romieu5d06a992006-02-23 00:47:58 +01007956
Bill Pembertonbaf63292012-12-03 09:23:28 -05007957static void rtl_remove_one(struct pci_dev *pdev)
Francois Romieue27566e2012-03-08 09:54:01 +01007958{
7959 struct net_device *dev = pci_get_drvdata(pdev);
7960 struct rtl8169_private *tp = netdev_priv(dev);
7961
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08007962 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
7963 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08007964 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
7965 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
7966 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
7967 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08007968 r8168_check_dash(tp)) {
Francois Romieue27566e2012-03-08 09:54:01 +01007969 rtl8168_driver_stop(tp);
7970 }
7971
Devendra Nagaad1be8d2012-05-31 01:51:20 +00007972 netif_napi_del(&tp->napi);
7973
Francois Romieue27566e2012-03-08 09:54:01 +01007974 unregister_netdev(dev);
7975
Corinna Vinschen42020322015-09-10 10:47:35 +02007976 dma_free_coherent(&tp->pci_dev->dev, sizeof(*tp->counters),
7977 tp->counters, tp->counters_phys_addr);
7978
Francois Romieue27566e2012-03-08 09:54:01 +01007979 rtl_release_firmware(tp);
7980
7981 if (pci_dev_run_wake(pdev))
7982 pm_runtime_get_noresume(&pdev->dev);
7983
7984 /* restore original MAC address */
7985 rtl_rar_set(tp, dev->perm_addr);
7986
7987 rtl_disable_msi(pdev, tp);
7988 rtl8169_release_board(pdev, dev, tp->mmio_addr);
Francois Romieue27566e2012-03-08 09:54:01 +01007989}
7990
Francois Romieufa9c3852012-03-08 10:01:50 +01007991static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01007992 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01007993 .ndo_stop = rtl8169_close,
7994 .ndo_get_stats64 = rtl8169_get_stats64,
7995 .ndo_start_xmit = rtl8169_start_xmit,
7996 .ndo_tx_timeout = rtl8169_tx_timeout,
7997 .ndo_validate_addr = eth_validate_addr,
7998 .ndo_change_mtu = rtl8169_change_mtu,
7999 .ndo_fix_features = rtl8169_fix_features,
8000 .ndo_set_features = rtl8169_set_features,
8001 .ndo_set_mac_address = rtl_set_mac_address,
8002 .ndo_do_ioctl = rtl8169_ioctl,
8003 .ndo_set_rx_mode = rtl_set_rx_mode,
8004#ifdef CONFIG_NET_POLL_CONTROLLER
8005 .ndo_poll_controller = rtl8169_netpoll,
8006#endif
8007
8008};
8009
Francois Romieu31fa8b12012-03-08 10:09:40 +01008010static const struct rtl_cfg_info {
8011 void (*hw_start)(struct net_device *);
8012 unsigned int region;
8013 unsigned int align;
8014 u16 event_slow;
8015 unsigned features;
8016 u8 default_ver;
8017} rtl_cfg_infos [] = {
8018 [RTL_CFG_0] = {
8019 .hw_start = rtl_hw_start_8169,
8020 .region = 1,
8021 .align = 0,
8022 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
8023 .features = RTL_FEATURE_GMII,
8024 .default_ver = RTL_GIGA_MAC_VER_01,
8025 },
8026 [RTL_CFG_1] = {
8027 .hw_start = rtl_hw_start_8168,
8028 .region = 2,
8029 .align = 8,
8030 .event_slow = SYSErr | LinkChg | RxOverflow,
8031 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
8032 .default_ver = RTL_GIGA_MAC_VER_11,
8033 },
8034 [RTL_CFG_2] = {
8035 .hw_start = rtl_hw_start_8101,
8036 .region = 2,
8037 .align = 8,
8038 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
8039 PCSTimeout,
8040 .features = RTL_FEATURE_MSI,
8041 .default_ver = RTL_GIGA_MAC_VER_13,
8042 }
8043};
8044
8045/* Cfg9346_Unlock assumed. */
8046static unsigned rtl_try_msi(struct rtl8169_private *tp,
8047 const struct rtl_cfg_info *cfg)
8048{
8049 void __iomem *ioaddr = tp->mmio_addr;
8050 unsigned msi = 0;
8051 u8 cfg2;
8052
8053 cfg2 = RTL_R8(Config2) & ~MSIEnable;
8054 if (cfg->features & RTL_FEATURE_MSI) {
8055 if (pci_enable_msi(tp->pci_dev)) {
8056 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
8057 } else {
8058 cfg2 |= MSIEnable;
8059 msi = RTL_FEATURE_MSI;
8060 }
8061 }
8062 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
8063 RTL_W8(Config2, cfg2);
8064 return msi;
8065}
8066
Hayes Wangc5583862012-07-02 17:23:22 +08008067DECLARE_RTL_COND(rtl_link_list_ready_cond)
8068{
8069 void __iomem *ioaddr = tp->mmio_addr;
8070
8071 return RTL_R8(MCU) & LINK_LIST_RDY;
8072}
8073
8074DECLARE_RTL_COND(rtl_rxtx_empty_cond)
8075{
8076 void __iomem *ioaddr = tp->mmio_addr;
8077
8078 return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
8079}
8080
Bill Pembertonbaf63292012-12-03 09:23:28 -05008081static void rtl_hw_init_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008082{
8083 void __iomem *ioaddr = tp->mmio_addr;
8084 u32 data;
8085
8086 tp->ocp_base = OCP_STD_PHY_BASE;
8087
8088 RTL_W32(MISC, RTL_R32(MISC) | RXDV_GATED_EN);
8089
8090 if (!rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 42))
8091 return;
8092
8093 if (!rtl_udelay_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42))
8094 return;
8095
8096 RTL_W8(ChipCmd, RTL_R8(ChipCmd) & ~(CmdTxEnb | CmdRxEnb));
8097 msleep(1);
8098 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
8099
Hayes Wang5f8bcce2012-07-10 08:47:05 +02008100 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08008101 data &= ~(1 << 14);
8102 r8168_mac_ocp_write(tp, 0xe8de, data);
8103
8104 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
8105 return;
8106
Hayes Wang5f8bcce2012-07-10 08:47:05 +02008107 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08008108 data |= (1 << 15);
8109 r8168_mac_ocp_write(tp, 0xe8de, data);
8110
8111 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
8112 return;
8113}
8114
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008115static void rtl_hw_init_8168ep(struct rtl8169_private *tp)
8116{
8117 rtl8168ep_stop_cmac(tp);
8118 rtl_hw_init_8168g(tp);
8119}
8120
Bill Pembertonbaf63292012-12-03 09:23:28 -05008121static void rtl_hw_initialize(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008122{
8123 switch (tp->mac_version) {
8124 case RTL_GIGA_MAC_VER_40:
8125 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00008126 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00008127 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08008128 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008129 case RTL_GIGA_MAC_VER_45:
8130 case RTL_GIGA_MAC_VER_46:
8131 case RTL_GIGA_MAC_VER_47:
8132 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008133 rtl_hw_init_8168g(tp);
8134 break;
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008135 case RTL_GIGA_MAC_VER_49:
8136 case RTL_GIGA_MAC_VER_50:
8137 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008138 rtl_hw_init_8168ep(tp);
Hayes Wangc5583862012-07-02 17:23:22 +08008139 break;
Hayes Wangc5583862012-07-02 17:23:22 +08008140 default:
8141 break;
8142 }
8143}
8144
hayeswang929a0312014-09-16 11:40:47 +08008145static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Francois Romieu3b6cf252012-03-08 09:59:04 +01008146{
8147 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
8148 const unsigned int region = cfg->region;
8149 struct rtl8169_private *tp;
8150 struct mii_if_info *mii;
8151 struct net_device *dev;
8152 void __iomem *ioaddr;
8153 int chipset, i;
8154 int rc;
8155
8156 if (netif_msg_drv(&debug)) {
8157 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
8158 MODULENAME, RTL8169_VERSION);
8159 }
8160
8161 dev = alloc_etherdev(sizeof (*tp));
8162 if (!dev) {
8163 rc = -ENOMEM;
8164 goto out;
8165 }
8166
8167 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01008168 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008169 tp = netdev_priv(dev);
8170 tp->dev = dev;
8171 tp->pci_dev = pdev;
8172 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
8173
8174 mii = &tp->mii;
8175 mii->dev = dev;
8176 mii->mdio_read = rtl_mdio_read;
8177 mii->mdio_write = rtl_mdio_write;
8178 mii->phy_id_mask = 0x1f;
8179 mii->reg_num_mask = 0x1f;
8180 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
8181
8182 /* disable ASPM completely as that cause random device stop working
8183 * problems as well as full system hangs for some PCIe devices users */
8184 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
8185 PCIE_LINK_STATE_CLKPM);
8186
8187 /* enable device (incl. PCI PM wakeup and hotplug setup) */
8188 rc = pci_enable_device(pdev);
8189 if (rc < 0) {
8190 netif_err(tp, probe, dev, "enable failure\n");
8191 goto err_out_free_dev_1;
8192 }
8193
8194 if (pci_set_mwi(pdev) < 0)
8195 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
8196
8197 /* make sure PCI base addr 1 is MMIO */
8198 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
8199 netif_err(tp, probe, dev,
8200 "region #%d not an MMIO resource, aborting\n",
8201 region);
8202 rc = -ENODEV;
8203 goto err_out_mwi_2;
8204 }
8205
8206 /* check for weird/broken PCI region reporting */
8207 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
8208 netif_err(tp, probe, dev,
8209 "Invalid PCI region size(s), aborting\n");
8210 rc = -ENODEV;
8211 goto err_out_mwi_2;
8212 }
8213
8214 rc = pci_request_regions(pdev, MODULENAME);
8215 if (rc < 0) {
8216 netif_err(tp, probe, dev, "could not request regions\n");
8217 goto err_out_mwi_2;
8218 }
8219
hayeswang929a0312014-09-16 11:40:47 +08008220 tp->cp_cmd = 0;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008221
8222 if ((sizeof(dma_addr_t) > 4) &&
8223 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
8224 tp->cp_cmd |= PCIDAC;
8225 dev->features |= NETIF_F_HIGHDMA;
8226 } else {
8227 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8228 if (rc < 0) {
8229 netif_err(tp, probe, dev, "DMA configuration failed\n");
8230 goto err_out_free_res_3;
8231 }
8232 }
8233
8234 /* ioremap MMIO region */
8235 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
8236 if (!ioaddr) {
8237 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
8238 rc = -EIO;
8239 goto err_out_free_res_3;
8240 }
8241 tp->mmio_addr = ioaddr;
8242
8243 if (!pci_is_pcie(pdev))
8244 netif_info(tp, probe, dev, "not PCI Express\n");
8245
8246 /* Identify chip attached to board */
8247 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
8248
8249 rtl_init_rxcfg(tp);
8250
8251 rtl_irq_disable(tp);
8252
Hayes Wangc5583862012-07-02 17:23:22 +08008253 rtl_hw_initialize(tp);
8254
Francois Romieu3b6cf252012-03-08 09:59:04 +01008255 rtl_hw_reset(tp);
8256
8257 rtl_ack_events(tp, 0xffff);
8258
8259 pci_set_master(pdev);
8260
Francois Romieu3b6cf252012-03-08 09:59:04 +01008261 rtl_init_mdio_ops(tp);
8262 rtl_init_pll_power_ops(tp);
8263 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08008264 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008265
8266 rtl8169_print_mac_version(tp);
8267
8268 chipset = tp->mac_version;
8269 tp->txd_version = rtl_chip_infos[chipset].txd_version;
8270
8271 RTL_W8(Cfg9346, Cfg9346_Unlock);
8272 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
Peter Wu8f9d5132013-08-17 11:00:02 +02008273 RTL_W8(Config5, RTL_R8(Config5) & (BWF | MWF | UWF | LanWake | PMEStatus));
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008274 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008275 case RTL_GIGA_MAC_VER_34:
8276 case RTL_GIGA_MAC_VER_35:
8277 case RTL_GIGA_MAC_VER_36:
8278 case RTL_GIGA_MAC_VER_37:
8279 case RTL_GIGA_MAC_VER_38:
8280 case RTL_GIGA_MAC_VER_40:
8281 case RTL_GIGA_MAC_VER_41:
8282 case RTL_GIGA_MAC_VER_42:
8283 case RTL_GIGA_MAC_VER_43:
8284 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008285 case RTL_GIGA_MAC_VER_45:
8286 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008287 case RTL_GIGA_MAC_VER_47:
8288 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008289 case RTL_GIGA_MAC_VER_49:
8290 case RTL_GIGA_MAC_VER_50:
8291 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008292 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
8293 tp->features |= RTL_FEATURE_WOL;
8294 if ((RTL_R8(Config3) & LinkUp) != 0)
8295 tp->features |= RTL_FEATURE_WOL;
8296 break;
8297 default:
8298 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
8299 tp->features |= RTL_FEATURE_WOL;
8300 break;
8301 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008302 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
8303 tp->features |= RTL_FEATURE_WOL;
8304 tp->features |= rtl_try_msi(tp, cfg);
8305 RTL_W8(Cfg9346, Cfg9346_Lock);
8306
8307 if (rtl_tbi_enabled(tp)) {
8308 tp->set_speed = rtl8169_set_speed_tbi;
8309 tp->get_settings = rtl8169_gset_tbi;
8310 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
8311 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
8312 tp->link_ok = rtl8169_tbi_link_ok;
8313 tp->do_ioctl = rtl_tbi_ioctl;
8314 } else {
8315 tp->set_speed = rtl8169_set_speed_xmii;
8316 tp->get_settings = rtl8169_gset_xmii;
8317 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
8318 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
8319 tp->link_ok = rtl8169_xmii_link_ok;
8320 tp->do_ioctl = rtl_xmii_ioctl;
8321 }
8322
8323 mutex_init(&tp->wk.mutex);
Kyle McMartin340fea32014-02-24 20:12:28 -05008324 u64_stats_init(&tp->rx_stats.syncp);
8325 u64_stats_init(&tp->tx_stats.syncp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008326
8327 /* Get MAC address */
Chun-Hao Lin89cceb22014-10-01 23:17:15 +08008328 if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
8329 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
8330 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
8331 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
8332 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
8333 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
8334 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
8335 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
8336 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
8337 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008338 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
8339 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008340 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
8341 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8342 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8343 tp->mac_version == RTL_GIGA_MAC_VER_51) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008344 u16 mac_addr[3];
8345
Chun-Hao Lin05b96872014-10-01 23:17:12 +08008346 *(u32 *)&mac_addr[0] = rtl_eri_read(tp, 0xe0, ERIAR_EXGMAC);
8347 *(u16 *)&mac_addr[2] = rtl_eri_read(tp, 0xe4, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008348
8349 if (is_valid_ether_addr((u8 *)mac_addr))
8350 rtl_rar_set(tp, (u8 *)mac_addr);
8351 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008352 for (i = 0; i < ETH_ALEN; i++)
8353 dev->dev_addr[i] = RTL_R8(MAC0 + i);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008354
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00008355 dev->ethtool_ops = &rtl8169_ethtool_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008356 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008357
8358 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
8359
8360 /* don't enable SG, IP_CSUM and TSO by default - it might not work
8361 * properly for all devices */
8362 dev->features |= NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00008363 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008364
8365 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
Patrick McHardyf6469682013-04-19 02:04:27 +00008366 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_TX |
8367 NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008368 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
8369 NETIF_F_HIGHDMA;
8370
hayeswang929a0312014-09-16 11:40:47 +08008371 tp->cp_cmd |= RxChkSum | RxVlan;
8372
8373 /*
8374 * Pretend we are using VLANs; This bypasses a nasty bug where
8375 * Interrupts stop flowing on high load on 8110SCd controllers.
8376 */
Francois Romieu3b6cf252012-03-08 09:59:04 +01008377 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
hayeswang929a0312014-09-16 11:40:47 +08008378 /* Disallow toggling */
Patrick McHardyf6469682013-04-19 02:04:27 +00008379 dev->hw_features &= ~NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008380
hayeswang5888d3f2014-07-11 16:25:56 +08008381 if (tp->txd_version == RTL_TD_0)
8382 tp->tso_csum = rtl8169_tso_csum_v1;
hayeswange9746042014-07-11 16:25:58 +08008383 else if (tp->txd_version == RTL_TD_1) {
hayeswang5888d3f2014-07-11 16:25:56 +08008384 tp->tso_csum = rtl8169_tso_csum_v2;
hayeswange9746042014-07-11 16:25:58 +08008385 dev->hw_features |= NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
8386 } else
hayeswang5888d3f2014-07-11 16:25:56 +08008387 WARN_ON_ONCE(1);
8388
Francois Romieu3b6cf252012-03-08 09:59:04 +01008389 dev->hw_features |= NETIF_F_RXALL;
8390 dev->hw_features |= NETIF_F_RXFCS;
8391
8392 tp->hw_start = cfg->hw_start;
8393 tp->event_slow = cfg->event_slow;
8394
8395 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
8396 ~(RxBOVF | RxFOVF) : ~0;
8397
8398 init_timer(&tp->timer);
8399 tp->timer.data = (unsigned long) dev;
8400 tp->timer.function = rtl8169_phy_timer;
8401
8402 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
8403
Corinna Vinschen42020322015-09-10 10:47:35 +02008404 tp->counters = dma_alloc_coherent (&pdev->dev, sizeof(*tp->counters),
8405 &tp->counters_phys_addr, GFP_KERNEL);
8406 if (!tp->counters) {
8407 rc = -ENOMEM;
8408 goto err_out_msi_4;
8409 }
8410
Francois Romieu3b6cf252012-03-08 09:59:04 +01008411 rc = register_netdev(dev);
8412 if (rc < 0)
Corinna Vinschen42020322015-09-10 10:47:35 +02008413 goto err_out_cnt_5;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008414
8415 pci_set_drvdata(pdev, dev);
8416
Francois Romieu92a7c4e2012-03-10 10:42:12 +01008417 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
8418 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
8419 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008420 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
8421 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
8422 "tx checksumming: %s]\n",
8423 rtl_chip_infos[chipset].jumbo_max,
8424 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
8425 }
8426
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008427 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
8428 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008429 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
8430 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8431 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8432 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008433 r8168_check_dash(tp)) {
Francois Romieu3b6cf252012-03-08 09:59:04 +01008434 rtl8168_driver_start(tp);
8435 }
8436
8437 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
8438
8439 if (pci_dev_run_wake(pdev))
8440 pm_runtime_put_noidle(&pdev->dev);
8441
8442 netif_carrier_off(dev);
8443
8444out:
8445 return rc;
8446
Corinna Vinschen42020322015-09-10 10:47:35 +02008447err_out_cnt_5:
8448 dma_free_coherent(&pdev->dev, sizeof(*tp->counters), tp->counters,
8449 tp->counters_phys_addr);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008450err_out_msi_4:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00008451 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008452 rtl_disable_msi(pdev, tp);
8453 iounmap(ioaddr);
8454err_out_free_res_3:
8455 pci_release_regions(pdev);
8456err_out_mwi_2:
8457 pci_clear_mwi(pdev);
8458 pci_disable_device(pdev);
8459err_out_free_dev_1:
8460 free_netdev(dev);
8461 goto out;
8462}
8463
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464static struct pci_driver rtl8169_pci_driver = {
8465 .name = MODULENAME,
8466 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01008467 .probe = rtl_init_one,
Bill Pembertonbaf63292012-12-03 09:23:28 -05008468 .remove = rtl_remove_one,
Francois Romieu1765f952008-09-13 17:21:40 +02008469 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008470 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471};
8472
Devendra Naga3eeb7da2012-10-26 09:27:42 +00008473module_pci_driver(rtl8169_pci_driver);