blob: 94f08f1e841ce98bd29e2c7694035d5a2c11143c [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) &&
Chun-Hao Linc4556972016-03-11 14:21:14 +08002002 (advertising & ADVERTISED_1000baseT_Full) &&
2003 !pci_is_pcie(tp->pci_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01002005 }
2006out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 return ret;
2008}
2009
2010static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2011{
2012 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 int ret;
2014
Francois Romieu4876cc12011-03-11 21:07:11 +01002015 del_timer_sync(&tp->timer);
2016
Francois Romieuda78dbf2012-01-26 14:18:23 +01002017 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002018 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00002019 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002020 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 return ret;
2023}
2024
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002025static netdev_features_t rtl8169_fix_features(struct net_device *dev,
2026 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
Francois Romieud58d46b2011-05-03 16:38:29 +02002028 struct rtl8169_private *tp = netdev_priv(dev);
2029
Francois Romieu2b7b4312011-04-18 22:53:24 -07002030 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00002031 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Francois Romieud58d46b2011-05-03 16:38:29 +02002033 if (dev->mtu > JUMBO_1K &&
2034 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
2035 features &= ~NETIF_F_IP_CSUM;
2036
Michał Mirosław350fb322011-04-08 06:35:56 +00002037 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
2039
Francois Romieuda78dbf2012-01-26 14:18:23 +01002040static void __rtl8169_set_features(struct net_device *dev,
2041 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
2043 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002044 void __iomem *ioaddr = tp->mmio_addr;
hayeswang929a0312014-09-16 11:40:47 +08002045 u32 rx_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
hayeswang929a0312014-09-16 11:40:47 +08002047 rx_config = RTL_R32(RxConfig);
2048 if (features & NETIF_F_RXALL)
2049 rx_config |= (AcceptErr | AcceptRunt);
2050 else
2051 rx_config &= ~(AcceptErr | AcceptRunt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
hayeswang929a0312014-09-16 11:40:47 +08002053 RTL_W32(RxConfig, rx_config);
Michał Mirosław350fb322011-04-08 06:35:56 +00002054
hayeswang929a0312014-09-16 11:40:47 +08002055 if (features & NETIF_F_RXCSUM)
2056 tp->cp_cmd |= RxChkSum;
2057 else
2058 tp->cp_cmd &= ~RxChkSum;
Ben Greear6bbe0212012-02-10 15:04:33 +00002059
hayeswang929a0312014-09-16 11:40:47 +08002060 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2061 tp->cp_cmd |= RxVlan;
2062 else
2063 tp->cp_cmd &= ~RxVlan;
2064
2065 tp->cp_cmd |= RTL_R16(CPlusCmd) & ~(RxVlan | RxChkSum);
2066
2067 RTL_W16(CPlusCmd, tp->cp_cmd);
2068 RTL_R16(CPlusCmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002069}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Francois Romieuda78dbf2012-01-26 14:18:23 +01002071static int rtl8169_set_features(struct net_device *dev,
2072 netdev_features_t features)
2073{
2074 struct rtl8169_private *tp = netdev_priv(dev);
2075
hayeswang929a0312014-09-16 11:40:47 +08002076 features &= NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX;
2077
Francois Romieuda78dbf2012-01-26 14:18:23 +01002078 rtl_lock_work(tp);
Dan Carpenter85911d72014-09-19 13:40:25 +03002079 if (features ^ dev->features)
hayeswang929a0312014-09-16 11:40:47 +08002080 __rtl8169_set_features(dev, features);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002081 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 return 0;
2084}
2085
Francois Romieuda78dbf2012-01-26 14:18:23 +01002086
Kirill Smelkov810f4892012-11-10 21:11:02 +04002087static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002089 return (skb_vlan_tag_present(skb)) ?
2090 TxVlanTag | swab16(skb_vlan_tag_get(skb)) : 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
Francois Romieu7a8fc772011-03-01 17:18:33 +01002093static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
2095 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Francois Romieu7a8fc772011-03-01 17:18:33 +01002097 if (opts2 & RxVlanTag)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00002098 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
Francois Romieuccdffb92008-07-26 14:26:06 +02002101static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 struct rtl8169_private *tp = netdev_priv(dev);
2104 void __iomem *ioaddr = tp->mmio_addr;
2105 u32 status;
2106
2107 cmd->supported =
2108 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
2109 cmd->port = PORT_FIBRE;
2110 cmd->transceiver = XCVR_INTERNAL;
2111
2112 status = RTL_R32(TBICSR);
2113 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
2114 cmd->autoneg = !!(status & TBINwEnable);
2115
David Decotigny70739492011-04-27 18:32:40 +00002116 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02002118
2119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
Francois Romieuccdffb92008-07-26 14:26:06 +02002122static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
2124 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Francois Romieuccdffb92008-07-26 14:26:06 +02002126 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127}
2128
2129static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2130{
2131 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02002132 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Francois Romieuda78dbf2012-01-26 14:18:23 +01002134 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02002135 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002136 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Francois Romieuccdffb92008-07-26 14:26:06 +02002138 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139}
2140
2141static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2142 void *p)
2143{
Francois Romieu5b0384f2006-08-16 16:00:01 +02002144 struct rtl8169_private *tp = netdev_priv(dev);
Peter Wu15edae92013-08-21 23:17:11 +02002145 u32 __iomem *data = tp->mmio_addr;
2146 u32 *dw = p;
2147 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Francois Romieuda78dbf2012-01-26 14:18:23 +01002149 rtl_lock_work(tp);
Peter Wu15edae92013-08-21 23:17:11 +02002150 for (i = 0; i < R8169_REGS_SIZE; i += 4)
2151 memcpy_fromio(dw++, data++, 4);
Francois Romieuda78dbf2012-01-26 14:18:23 +01002152 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002155static u32 rtl8169_get_msglevel(struct net_device *dev)
2156{
2157 struct rtl8169_private *tp = netdev_priv(dev);
2158
2159 return tp->msg_enable;
2160}
2161
2162static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
2163{
2164 struct rtl8169_private *tp = netdev_priv(dev);
2165
2166 tp->msg_enable = value;
2167}
2168
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002169static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
2170 "tx_packets",
2171 "rx_packets",
2172 "tx_errors",
2173 "rx_errors",
2174 "rx_missed",
2175 "align_errors",
2176 "tx_single_collisions",
2177 "tx_multi_collisions",
2178 "unicast",
2179 "broadcast",
2180 "multicast",
2181 "tx_aborted",
2182 "tx_underrun",
2183};
2184
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002185static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002186{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002187 switch (sset) {
2188 case ETH_SS_STATS:
2189 return ARRAY_SIZE(rtl8169_gstrings);
2190 default:
2191 return -EOPNOTSUPP;
2192 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002193}
2194
Corinna Vinschen42020322015-09-10 10:47:35 +02002195DECLARE_RTL_COND(rtl_counters_cond)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002196{
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002197 void __iomem *ioaddr = tp->mmio_addr;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002198
Corinna Vinschen42020322015-09-10 10:47:35 +02002199 return RTL_R32(CounterAddrLow) & (CounterReset | CounterDump);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002200}
2201
Corinna Vinschen42020322015-09-10 10:47:35 +02002202static bool rtl8169_do_counters(struct net_device *dev, u32 counter_cmd)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002203{
2204 struct rtl8169_private *tp = netdev_priv(dev);
2205 void __iomem *ioaddr = tp->mmio_addr;
Corinna Vinschen42020322015-09-10 10:47:35 +02002206 dma_addr_t paddr = tp->counters_phys_addr;
2207 u32 cmd;
2208 bool ret;
2209
2210 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
2211 cmd = (u64)paddr & DMA_BIT_MASK(32);
2212 RTL_W32(CounterAddrLow, cmd);
2213 RTL_W32(CounterAddrLow, cmd | counter_cmd);
2214
2215 ret = rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002216
2217 RTL_W32(CounterAddrLow, 0);
2218 RTL_W32(CounterAddrHigh, 0);
2219
Corinna Vinschen42020322015-09-10 10:47:35 +02002220 return ret;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002221}
2222
2223static bool rtl8169_reset_counters(struct net_device *dev)
2224{
2225 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002226
2227 /*
2228 * Versions prior to RTL_GIGA_MAC_VER_19 don't support resetting the
2229 * tally counters.
2230 */
2231 if (tp->mac_version < RTL_GIGA_MAC_VER_19)
2232 return true;
2233
Corinna Vinschen42020322015-09-10 10:47:35 +02002234 return rtl8169_do_counters(dev, CounterReset);
Francois Romieuffc46952012-07-06 14:19:23 +02002235}
2236
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002237static bool rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002238{
2239 struct rtl8169_private *tp = netdev_priv(dev);
2240 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002241
Ivan Vecera355423d2009-02-06 21:49:57 -08002242 /*
2243 * Some chips are unable to dump tally counters when the receiver
2244 * is disabled.
2245 */
2246 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002247 return true;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002248
Corinna Vinschen42020322015-09-10 10:47:35 +02002249 return rtl8169_do_counters(dev, CounterDump);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002250}
2251
2252static bool rtl8169_init_counter_offsets(struct net_device *dev)
2253{
2254 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen42020322015-09-10 10:47:35 +02002255 struct rtl8169_counters *counters = tp->counters;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002256 bool ret = false;
2257
2258 /*
2259 * rtl8169_init_counter_offsets is called from rtl_open. On chip
2260 * versions prior to RTL_GIGA_MAC_VER_19 the tally counters are only
2261 * reset by a power cycle, while the counter values collected by the
2262 * driver are reset at every driver unload/load cycle.
2263 *
2264 * To make sure the HW values returned by @get_stats64 match the SW
2265 * values, we collect the initial values at first open(*) and use them
2266 * as offsets to normalize the values returned by @get_stats64.
2267 *
2268 * (*) We can't call rtl8169_init_counter_offsets from rtl_init_one
2269 * for the reason stated in rtl8169_update_counters; CmdRxEnb is only
2270 * set at open time by rtl_hw_start.
2271 */
2272
2273 if (tp->tc_offset.inited)
2274 return true;
2275
2276 /* If both, reset and update fail, propagate to caller. */
2277 if (rtl8169_reset_counters(dev))
2278 ret = true;
2279
2280 if (rtl8169_update_counters(dev))
2281 ret = true;
2282
Corinna Vinschen42020322015-09-10 10:47:35 +02002283 tp->tc_offset.tx_errors = counters->tx_errors;
2284 tp->tc_offset.tx_multi_collision = counters->tx_multi_collision;
2285 tp->tc_offset.tx_aborted = counters->tx_aborted;
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02002286 tp->tc_offset.inited = true;
2287
2288 return ret;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002289}
2290
Ivan Vecera355423d2009-02-06 21:49:57 -08002291static void rtl8169_get_ethtool_stats(struct net_device *dev,
2292 struct ethtool_stats *stats, u64 *data)
2293{
2294 struct rtl8169_private *tp = netdev_priv(dev);
Corinna Vinschen42020322015-09-10 10:47:35 +02002295 struct rtl8169_counters *counters = tp->counters;
Ivan Vecera355423d2009-02-06 21:49:57 -08002296
2297 ASSERT_RTNL();
2298
2299 rtl8169_update_counters(dev);
2300
Corinna Vinschen42020322015-09-10 10:47:35 +02002301 data[0] = le64_to_cpu(counters->tx_packets);
2302 data[1] = le64_to_cpu(counters->rx_packets);
2303 data[2] = le64_to_cpu(counters->tx_errors);
2304 data[3] = le32_to_cpu(counters->rx_errors);
2305 data[4] = le16_to_cpu(counters->rx_missed);
2306 data[5] = le16_to_cpu(counters->align_errors);
2307 data[6] = le32_to_cpu(counters->tx_one_collision);
2308 data[7] = le32_to_cpu(counters->tx_multi_collision);
2309 data[8] = le64_to_cpu(counters->rx_unicast);
2310 data[9] = le64_to_cpu(counters->rx_broadcast);
2311 data[10] = le32_to_cpu(counters->rx_multicast);
2312 data[11] = le16_to_cpu(counters->tx_aborted);
2313 data[12] = le16_to_cpu(counters->tx_underun);
Ivan Vecera355423d2009-02-06 21:49:57 -08002314}
2315
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002316static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2317{
2318 switch(stringset) {
2319 case ETH_SS_STATS:
2320 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
2321 break;
2322 }
2323}
2324
Jeff Garzik7282d492006-09-13 14:30:00 -04002325static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 .get_drvinfo = rtl8169_get_drvinfo,
2327 .get_regs_len = rtl8169_get_regs_len,
2328 .get_link = ethtool_op_get_link,
2329 .get_settings = rtl8169_get_settings,
2330 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002331 .get_msglevel = rtl8169_get_msglevel,
2332 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002334 .get_wol = rtl8169_get_wol,
2335 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002336 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002337 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002338 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00002339 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340};
2341
Francois Romieu07d3f512007-02-21 22:40:46 +01002342static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02002343 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344{
Francois Romieu5d320a22011-05-08 17:47:36 +02002345 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002346 /*
2347 * The driver currently handles the 8168Bf and the 8168Be identically
2348 * but they can be identified more specifically through the test below
2349 * if needed:
2350 *
2351 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01002352 *
2353 * Same thing for the 8101Eb and the 8101Ec:
2354 *
2355 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01002356 */
Francois Romieu37441002011-06-17 22:58:54 +02002357 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002359 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 int mac_version;
2361 } mac_info[] = {
Chun-Hao Lin935e2212014-10-07 15:10:41 +08002362 /* 8168EP family. */
2363 { 0x7cf00000, 0x50200000, RTL_GIGA_MAC_VER_51 },
2364 { 0x7cf00000, 0x50100000, RTL_GIGA_MAC_VER_50 },
2365 { 0x7cf00000, 0x50000000, RTL_GIGA_MAC_VER_49 },
2366
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002367 /* 8168H family. */
2368 { 0x7cf00000, 0x54100000, RTL_GIGA_MAC_VER_46 },
2369 { 0x7cf00000, 0x54000000, RTL_GIGA_MAC_VER_45 },
2370
Hayes Wangc5583862012-07-02 17:23:22 +08002371 /* 8168G family. */
hayeswang45dd95c2013-07-08 17:09:01 +08002372 { 0x7cf00000, 0x5c800000, RTL_GIGA_MAC_VER_44 },
hayeswang57538c42013-04-01 22:23:40 +00002373 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42 },
Hayes Wangc5583862012-07-02 17:23:22 +08002374 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2375 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2376
Hayes Wangc2218922011-09-06 16:55:18 +08002377 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08002378 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08002379 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2380 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2381
hayeswang01dc7fe2011-03-21 01:50:28 +00002382 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08002383 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00002384 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
2385 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2386 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2387
Francois Romieu5b538df2008-07-20 16:22:45 +02002388 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00002389 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
2390 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00002391 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002392
françois romieue6de30d2011-01-03 15:08:37 +00002393 /* 8168DP family. */
2394 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2395 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00002396 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00002397
Francois Romieuef808d52008-06-29 13:10:54 +02002398 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07002399 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02002400 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02002401 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002402 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002403 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2404 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02002405 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02002406 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02002407 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002408
2409 /* 8168B family. */
2410 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2411 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
2412 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2413 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2414
2415 /* 8101 family. */
Hayes Wang5598bfe2012-07-02 17:23:21 +08002416 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39 },
2417 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
Hayes Wang7e18dca2012-03-30 14:33:02 +08002418 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00002419 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08002420 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
2421 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2422 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002423 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
2424 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
2425 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2426 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2427 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2428 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002429 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002430 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002431 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002432 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2433 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002434 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2435 /* FIXME: where did these entries come from ? -- FR */
2436 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2437 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2438
2439 /* 8110 family. */
2440 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2441 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2442 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2443 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2444 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2445 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2446
Jean Delvaref21b75e2009-05-26 20:54:48 -07002447 /* Catch-all */
2448 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02002449 };
2450 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 u32 reg;
2452
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002453 reg = RTL_R32(TxConfig);
2454 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 p++;
2456 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02002457
2458 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2459 netif_notice(tp, probe, dev,
2460 "unknown MAC, using family default\n");
2461 tp->mac_version = default_version;
hayeswang58152cd2013-04-01 22:23:42 +00002462 } else if (tp->mac_version == RTL_GIGA_MAC_VER_42) {
2463 tp->mac_version = tp->mii.supports_gmii ?
2464 RTL_GIGA_MAC_VER_42 :
2465 RTL_GIGA_MAC_VER_43;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08002466 } else if (tp->mac_version == RTL_GIGA_MAC_VER_45) {
2467 tp->mac_version = tp->mii.supports_gmii ?
2468 RTL_GIGA_MAC_VER_45 :
2469 RTL_GIGA_MAC_VER_47;
2470 } else if (tp->mac_version == RTL_GIGA_MAC_VER_46) {
2471 tp->mac_version = tp->mii.supports_gmii ?
2472 RTL_GIGA_MAC_VER_46 :
2473 RTL_GIGA_MAC_VER_48;
Francois Romieu5d320a22011-05-08 17:47:36 +02002474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
2476
2477static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2478{
Francois Romieubcf0bf92006-07-26 23:14:13 +02002479 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
Francois Romieu867763c2007-08-17 18:21:58 +02002482struct phy_reg {
2483 u16 reg;
2484 u16 val;
2485};
2486
françois romieu4da19632011-01-03 15:07:55 +00002487static void rtl_writephy_batch(struct rtl8169_private *tp,
2488 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02002489{
2490 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00002491 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02002492 regs++;
2493 }
2494}
2495
françois romieubca03d52011-01-03 15:07:31 +00002496#define PHY_READ 0x00000000
2497#define PHY_DATA_OR 0x10000000
2498#define PHY_DATA_AND 0x20000000
2499#define PHY_BJMPN 0x30000000
hayeswangeee37862013-04-01 22:23:38 +00002500#define PHY_MDIO_CHG 0x40000000
françois romieubca03d52011-01-03 15:07:31 +00002501#define PHY_CLEAR_READCOUNT 0x70000000
2502#define PHY_WRITE 0x80000000
2503#define PHY_READCOUNT_EQ_SKIP 0x90000000
2504#define PHY_COMP_EQ_SKIPN 0xa0000000
2505#define PHY_COMP_NEQ_SKIPN 0xb0000000
2506#define PHY_WRITE_PREVIOUS 0xc0000000
2507#define PHY_SKIPN 0xd0000000
2508#define PHY_DELAY_MS 0xe0000000
françois romieubca03d52011-01-03 15:07:31 +00002509
Hayes Wang960aee62011-06-18 11:37:48 +02002510struct fw_info {
2511 u32 magic;
2512 char version[RTL_VER_SIZE];
2513 __le32 fw_start;
2514 __le32 fw_len;
2515 u8 chksum;
2516} __packed;
2517
Francois Romieu1c361ef2011-06-17 17:16:24 +02002518#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2519
2520static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002521{
Francois Romieub6ffd972011-06-17 17:00:05 +02002522 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002523 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002524 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2525 char *version = rtl_fw->version;
2526 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002527
Francois Romieu1c361ef2011-06-17 17:16:24 +02002528 if (fw->size < FW_OPCODE_SIZE)
2529 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002530
2531 if (!fw_info->magic) {
2532 size_t i, size, start;
2533 u8 checksum = 0;
2534
2535 if (fw->size < sizeof(*fw_info))
2536 goto out;
2537
2538 for (i = 0; i < fw->size; i++)
2539 checksum += fw->data[i];
2540 if (checksum != 0)
2541 goto out;
2542
2543 start = le32_to_cpu(fw_info->fw_start);
2544 if (start > fw->size)
2545 goto out;
2546
2547 size = le32_to_cpu(fw_info->fw_len);
2548 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2549 goto out;
2550
2551 memcpy(version, fw_info->version, RTL_VER_SIZE);
2552
2553 pa->code = (__le32 *)(fw->data + start);
2554 pa->size = size;
2555 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002556 if (fw->size % FW_OPCODE_SIZE)
2557 goto out;
2558
2559 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2560
2561 pa->code = (__le32 *)fw->data;
2562 pa->size = fw->size / FW_OPCODE_SIZE;
2563 }
2564 version[RTL_VER_SIZE - 1] = 0;
2565
2566 rc = true;
2567out:
2568 return rc;
2569}
2570
Francois Romieufd112f22011-06-18 00:10:29 +02002571static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2572 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002573{
Francois Romieufd112f22011-06-18 00:10:29 +02002574 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002575 size_t index;
2576
Francois Romieu1c361ef2011-06-17 17:16:24 +02002577 for (index = 0; index < pa->size; index++) {
2578 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002579 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002580
hayeswang42b82dc2011-01-10 02:07:25 +00002581 switch(action & 0xf0000000) {
2582 case PHY_READ:
2583 case PHY_DATA_OR:
2584 case PHY_DATA_AND:
hayeswangeee37862013-04-01 22:23:38 +00002585 case PHY_MDIO_CHG:
hayeswang42b82dc2011-01-10 02:07:25 +00002586 case PHY_CLEAR_READCOUNT:
2587 case PHY_WRITE:
2588 case PHY_WRITE_PREVIOUS:
2589 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002590 break;
2591
hayeswang42b82dc2011-01-10 02:07:25 +00002592 case PHY_BJMPN:
2593 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002594 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002595 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002596 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002597 }
2598 break;
2599 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002600 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002601 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002602 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002603 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002604 }
2605 break;
2606 case PHY_COMP_EQ_SKIPN:
2607 case PHY_COMP_NEQ_SKIPN:
2608 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002609 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002610 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002611 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002612 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002613 }
2614 break;
2615
hayeswang42b82dc2011-01-10 02:07:25 +00002616 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002617 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002618 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002619 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002620 }
2621 }
Francois Romieufd112f22011-06-18 00:10:29 +02002622 rc = true;
2623out:
2624 return rc;
2625}
françois romieubca03d52011-01-03 15:07:31 +00002626
Francois Romieufd112f22011-06-18 00:10:29 +02002627static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2628{
2629 struct net_device *dev = tp->dev;
2630 int rc = -EINVAL;
2631
2632 if (!rtl_fw_format_ok(tp, rtl_fw)) {
Yannick Guerrini5c2d2b12015-02-24 13:03:51 +01002633 netif_err(tp, ifup, dev, "invalid firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002634 goto out;
2635 }
2636
2637 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2638 rc = 0;
2639out:
2640 return rc;
2641}
2642
2643static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2644{
2645 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
hayeswangeee37862013-04-01 22:23:38 +00002646 struct mdio_ops org, *ops = &tp->mdio_ops;
Francois Romieufd112f22011-06-18 00:10:29 +02002647 u32 predata, count;
2648 size_t index;
2649
2650 predata = count = 0;
hayeswangeee37862013-04-01 22:23:38 +00002651 org.write = ops->write;
2652 org.read = ops->read;
hayeswang42b82dc2011-01-10 02:07:25 +00002653
Francois Romieu1c361ef2011-06-17 17:16:24 +02002654 for (index = 0; index < pa->size; ) {
2655 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002656 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002657 u32 regno = (action & 0x0fff0000) >> 16;
2658
2659 if (!action)
2660 break;
françois romieubca03d52011-01-03 15:07:31 +00002661
2662 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002663 case PHY_READ:
2664 predata = rtl_readphy(tp, regno);
2665 count++;
2666 index++;
françois romieubca03d52011-01-03 15:07:31 +00002667 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002668 case PHY_DATA_OR:
2669 predata |= data;
2670 index++;
2671 break;
2672 case PHY_DATA_AND:
2673 predata &= data;
2674 index++;
2675 break;
2676 case PHY_BJMPN:
2677 index -= regno;
2678 break;
hayeswangeee37862013-04-01 22:23:38 +00002679 case PHY_MDIO_CHG:
2680 if (data == 0) {
2681 ops->write = org.write;
2682 ops->read = org.read;
2683 } else if (data == 1) {
2684 ops->write = mac_mcu_write;
2685 ops->read = mac_mcu_read;
2686 }
2687
hayeswang42b82dc2011-01-10 02:07:25 +00002688 index++;
2689 break;
2690 case PHY_CLEAR_READCOUNT:
2691 count = 0;
2692 index++;
2693 break;
2694 case PHY_WRITE:
2695 rtl_writephy(tp, regno, data);
2696 index++;
2697 break;
2698 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002699 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002700 break;
2701 case PHY_COMP_EQ_SKIPN:
2702 if (predata == data)
2703 index += regno;
2704 index++;
2705 break;
2706 case PHY_COMP_NEQ_SKIPN:
2707 if (predata != data)
2708 index += regno;
2709 index++;
2710 break;
2711 case PHY_WRITE_PREVIOUS:
2712 rtl_writephy(tp, regno, predata);
2713 index++;
2714 break;
2715 case PHY_SKIPN:
2716 index += regno + 1;
2717 break;
2718 case PHY_DELAY_MS:
2719 mdelay(data);
2720 index++;
2721 break;
2722
françois romieubca03d52011-01-03 15:07:31 +00002723 default:
2724 BUG();
2725 }
2726 }
hayeswangeee37862013-04-01 22:23:38 +00002727
2728 ops->write = org.write;
2729 ops->read = org.read;
françois romieubca03d52011-01-03 15:07:31 +00002730}
2731
françois romieuf1e02ed2011-01-13 13:07:53 +00002732static void rtl_release_firmware(struct rtl8169_private *tp)
2733{
Francois Romieub6ffd972011-06-17 17:00:05 +02002734 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2735 release_firmware(tp->rtl_fw->fw);
2736 kfree(tp->rtl_fw);
2737 }
2738 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002739}
2740
François Romieu953a12c2011-04-24 17:38:48 +02002741static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002742{
Francois Romieub6ffd972011-06-17 17:00:05 +02002743 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002744
2745 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieueef63cc2013-02-08 23:43:20 +01002746 if (!IS_ERR_OR_NULL(rtl_fw))
Francois Romieub6ffd972011-06-17 17:00:05 +02002747 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002748}
2749
2750static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2751{
2752 if (rtl_readphy(tp, reg) != val)
2753 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2754 else
2755 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002756}
2757
françois romieu4da19632011-01-03 15:07:55 +00002758static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002760 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002761 { 0x1f, 0x0001 },
2762 { 0x06, 0x006e },
2763 { 0x08, 0x0708 },
2764 { 0x15, 0x4000 },
2765 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
françois romieu0b9b5712009-08-10 19:44:56 +00002767 { 0x1f, 0x0001 },
2768 { 0x03, 0x00a1 },
2769 { 0x02, 0x0008 },
2770 { 0x01, 0x0120 },
2771 { 0x00, 0x1000 },
2772 { 0x04, 0x0800 },
2773 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
françois romieu0b9b5712009-08-10 19:44:56 +00002775 { 0x03, 0xff41 },
2776 { 0x02, 0xdf60 },
2777 { 0x01, 0x0140 },
2778 { 0x00, 0x0077 },
2779 { 0x04, 0x7800 },
2780 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
françois romieu0b9b5712009-08-10 19:44:56 +00002782 { 0x03, 0x802f },
2783 { 0x02, 0x4f02 },
2784 { 0x01, 0x0409 },
2785 { 0x00, 0xf0f9 },
2786 { 0x04, 0x9800 },
2787 { 0x04, 0x9000 },
2788
2789 { 0x03, 0xdf01 },
2790 { 0x02, 0xdf20 },
2791 { 0x01, 0xff95 },
2792 { 0x00, 0xba00 },
2793 { 0x04, 0xa800 },
2794 { 0x04, 0xa000 },
2795
2796 { 0x03, 0xff41 },
2797 { 0x02, 0xdf20 },
2798 { 0x01, 0x0140 },
2799 { 0x00, 0x00bb },
2800 { 0x04, 0xb800 },
2801 { 0x04, 0xb000 },
2802
2803 { 0x03, 0xdf41 },
2804 { 0x02, 0xdc60 },
2805 { 0x01, 0x6340 },
2806 { 0x00, 0x007d },
2807 { 0x04, 0xd800 },
2808 { 0x04, 0xd000 },
2809
2810 { 0x03, 0xdf01 },
2811 { 0x02, 0xdf20 },
2812 { 0x01, 0x100a },
2813 { 0x00, 0xa0ff },
2814 { 0x04, 0xf800 },
2815 { 0x04, 0xf000 },
2816
2817 { 0x1f, 0x0000 },
2818 { 0x0b, 0x0000 },
2819 { 0x00, 0x9200 }
2820 };
2821
françois romieu4da19632011-01-03 15:07:55 +00002822 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
2824
françois romieu4da19632011-01-03 15:07:55 +00002825static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002826{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002827 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002828 { 0x1f, 0x0002 },
2829 { 0x01, 0x90d0 },
2830 { 0x1f, 0x0000 }
2831 };
2832
françois romieu4da19632011-01-03 15:07:55 +00002833 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002834}
2835
françois romieu4da19632011-01-03 15:07:55 +00002836static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002837{
2838 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002839
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002840 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2841 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002842 return;
2843
françois romieu4da19632011-01-03 15:07:55 +00002844 rtl_writephy(tp, 0x1f, 0x0001);
2845 rtl_writephy(tp, 0x10, 0xf01b);
2846 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002847}
2848
françois romieu4da19632011-01-03 15:07:55 +00002849static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002850{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002851 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002852 { 0x1f, 0x0001 },
2853 { 0x04, 0x0000 },
2854 { 0x03, 0x00a1 },
2855 { 0x02, 0x0008 },
2856 { 0x01, 0x0120 },
2857 { 0x00, 0x1000 },
2858 { 0x04, 0x0800 },
2859 { 0x04, 0x9000 },
2860 { 0x03, 0x802f },
2861 { 0x02, 0x4f02 },
2862 { 0x01, 0x0409 },
2863 { 0x00, 0xf099 },
2864 { 0x04, 0x9800 },
2865 { 0x04, 0xa000 },
2866 { 0x03, 0xdf01 },
2867 { 0x02, 0xdf20 },
2868 { 0x01, 0xff95 },
2869 { 0x00, 0xba00 },
2870 { 0x04, 0xa800 },
2871 { 0x04, 0xf000 },
2872 { 0x03, 0xdf01 },
2873 { 0x02, 0xdf20 },
2874 { 0x01, 0x101a },
2875 { 0x00, 0xa0ff },
2876 { 0x04, 0xf800 },
2877 { 0x04, 0x0000 },
2878 { 0x1f, 0x0000 },
2879
2880 { 0x1f, 0x0001 },
2881 { 0x10, 0xf41b },
2882 { 0x14, 0xfb54 },
2883 { 0x18, 0xf5c7 },
2884 { 0x1f, 0x0000 },
2885
2886 { 0x1f, 0x0001 },
2887 { 0x17, 0x0cc0 },
2888 { 0x1f, 0x0000 }
2889 };
2890
françois romieu4da19632011-01-03 15:07:55 +00002891 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002892
françois romieu4da19632011-01-03 15:07:55 +00002893 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002894}
2895
françois romieu4da19632011-01-03 15:07:55 +00002896static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002897{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002898 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002899 { 0x1f, 0x0001 },
2900 { 0x04, 0x0000 },
2901 { 0x03, 0x00a1 },
2902 { 0x02, 0x0008 },
2903 { 0x01, 0x0120 },
2904 { 0x00, 0x1000 },
2905 { 0x04, 0x0800 },
2906 { 0x04, 0x9000 },
2907 { 0x03, 0x802f },
2908 { 0x02, 0x4f02 },
2909 { 0x01, 0x0409 },
2910 { 0x00, 0xf099 },
2911 { 0x04, 0x9800 },
2912 { 0x04, 0xa000 },
2913 { 0x03, 0xdf01 },
2914 { 0x02, 0xdf20 },
2915 { 0x01, 0xff95 },
2916 { 0x00, 0xba00 },
2917 { 0x04, 0xa800 },
2918 { 0x04, 0xf000 },
2919 { 0x03, 0xdf01 },
2920 { 0x02, 0xdf20 },
2921 { 0x01, 0x101a },
2922 { 0x00, 0xa0ff },
2923 { 0x04, 0xf800 },
2924 { 0x04, 0x0000 },
2925 { 0x1f, 0x0000 },
2926
2927 { 0x1f, 0x0001 },
2928 { 0x0b, 0x8480 },
2929 { 0x1f, 0x0000 },
2930
2931 { 0x1f, 0x0001 },
2932 { 0x18, 0x67c7 },
2933 { 0x04, 0x2000 },
2934 { 0x03, 0x002f },
2935 { 0x02, 0x4360 },
2936 { 0x01, 0x0109 },
2937 { 0x00, 0x3022 },
2938 { 0x04, 0x2800 },
2939 { 0x1f, 0x0000 },
2940
2941 { 0x1f, 0x0001 },
2942 { 0x17, 0x0cc0 },
2943 { 0x1f, 0x0000 }
2944 };
2945
françois romieu4da19632011-01-03 15:07:55 +00002946 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002947}
2948
françois romieu4da19632011-01-03 15:07:55 +00002949static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002950{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002951 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002952 { 0x10, 0xf41b },
2953 { 0x1f, 0x0000 }
2954 };
2955
françois romieu4da19632011-01-03 15:07:55 +00002956 rtl_writephy(tp, 0x1f, 0x0001);
2957 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002958
françois romieu4da19632011-01-03 15:07:55 +00002959 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002960}
2961
françois romieu4da19632011-01-03 15:07:55 +00002962static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002963{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002964 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002965 { 0x1f, 0x0001 },
2966 { 0x10, 0xf41b },
2967 { 0x1f, 0x0000 }
2968 };
2969
françois romieu4da19632011-01-03 15:07:55 +00002970 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002971}
2972
françois romieu4da19632011-01-03 15:07:55 +00002973static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002974{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002975 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002976 { 0x1f, 0x0000 },
2977 { 0x1d, 0x0f00 },
2978 { 0x1f, 0x0002 },
2979 { 0x0c, 0x1ec8 },
2980 { 0x1f, 0x0000 }
2981 };
2982
françois romieu4da19632011-01-03 15:07:55 +00002983 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002984}
2985
françois romieu4da19632011-01-03 15:07:55 +00002986static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002987{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002988 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002989 { 0x1f, 0x0001 },
2990 { 0x1d, 0x3d98 },
2991 { 0x1f, 0x0000 }
2992 };
2993
françois romieu4da19632011-01-03 15:07:55 +00002994 rtl_writephy(tp, 0x1f, 0x0000);
2995 rtl_patchphy(tp, 0x14, 1 << 5);
2996 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002997
françois romieu4da19632011-01-03 15:07:55 +00002998 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002999}
3000
françois romieu4da19632011-01-03 15:07:55 +00003001static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02003002{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003003 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02003004 { 0x1f, 0x0001 },
3005 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02003006 { 0x1f, 0x0002 },
3007 { 0x00, 0x88d4 },
3008 { 0x01, 0x82b1 },
3009 { 0x03, 0x7002 },
3010 { 0x08, 0x9e30 },
3011 { 0x09, 0x01f0 },
3012 { 0x0a, 0x5500 },
3013 { 0x0c, 0x00c8 },
3014 { 0x1f, 0x0003 },
3015 { 0x12, 0xc096 },
3016 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02003017 { 0x1f, 0x0000 },
3018 { 0x1f, 0x0000 },
3019 { 0x09, 0x2000 },
3020 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02003021 };
3022
françois romieu4da19632011-01-03 15:07:55 +00003023 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003024
françois romieu4da19632011-01-03 15:07:55 +00003025 rtl_patchphy(tp, 0x14, 1 << 5);
3026 rtl_patchphy(tp, 0x0d, 1 << 5);
3027 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02003028}
3029
françois romieu4da19632011-01-03 15:07:55 +00003030static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02003031{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003032 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02003033 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003034 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003035 { 0x03, 0x802f },
3036 { 0x02, 0x4f02 },
3037 { 0x01, 0x0409 },
3038 { 0x00, 0xf099 },
3039 { 0x04, 0x9800 },
3040 { 0x04, 0x9000 },
3041 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003042 { 0x1f, 0x0002 },
3043 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02003044 { 0x06, 0x0761 },
3045 { 0x1f, 0x0003 },
3046 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02003047 { 0x1f, 0x0000 }
3048 };
3049
françois romieu4da19632011-01-03 15:07:55 +00003050 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02003051
françois romieu4da19632011-01-03 15:07:55 +00003052 rtl_patchphy(tp, 0x16, 1 << 0);
3053 rtl_patchphy(tp, 0x14, 1 << 5);
3054 rtl_patchphy(tp, 0x0d, 1 << 5);
3055 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003056}
3057
françois romieu4da19632011-01-03 15:07:55 +00003058static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02003059{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003060 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02003061 { 0x1f, 0x0001 },
3062 { 0x12, 0x2300 },
3063 { 0x1d, 0x3d98 },
3064 { 0x1f, 0x0002 },
3065 { 0x0c, 0x7eb8 },
3066 { 0x06, 0x5461 },
3067 { 0x1f, 0x0003 },
3068 { 0x16, 0x0f0a },
3069 { 0x1f, 0x0000 }
3070 };
3071
françois romieu4da19632011-01-03 15:07:55 +00003072 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02003073
françois romieu4da19632011-01-03 15:07:55 +00003074 rtl_patchphy(tp, 0x16, 1 << 0);
3075 rtl_patchphy(tp, 0x14, 1 << 5);
3076 rtl_patchphy(tp, 0x0d, 1 << 5);
3077 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02003078}
3079
françois romieu4da19632011-01-03 15:07:55 +00003080static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02003081{
françois romieu4da19632011-01-03 15:07:55 +00003082 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003083}
3084
françois romieubca03d52011-01-03 15:07:31 +00003085static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02003086{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003087 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003088 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02003089 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00003090 { 0x06, 0x4064 },
3091 { 0x07, 0x2863 },
3092 { 0x08, 0x059c },
3093 { 0x09, 0x26b4 },
3094 { 0x0a, 0x6a19 },
3095 { 0x0b, 0xdcc8 },
3096 { 0x10, 0xf06d },
3097 { 0x14, 0x7f68 },
3098 { 0x18, 0x7fd9 },
3099 { 0x1c, 0xf0ff },
3100 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02003101 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00003102 { 0x12, 0xf49f },
3103 { 0x13, 0x070b },
3104 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00003105 { 0x14, 0x94c0 },
3106
3107 /*
3108 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003109 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003110 */
Francois Romieu5b538df2008-07-20 16:22:45 +02003111 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00003112 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003113 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003114 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003115 { 0x06, 0x5561 },
3116
3117 /*
3118 * Can not link to 1Gbps with bad cable
3119 * Decrease SNR threshold form 21.07dB to 19.04dB
3120 */
3121 { 0x1f, 0x0001 },
3122 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003123
3124 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003125 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003126 };
3127
françois romieu4da19632011-01-03 15:07:55 +00003128 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02003129
françois romieubca03d52011-01-03 15:07:31 +00003130 /*
3131 * Rx Error Issue
3132 * Fine Tune Switching regulator parameter
3133 */
françois romieu4da19632011-01-03 15:07:55 +00003134 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003135 rtl_w0w1_phy(tp, 0x0b, 0x0010, 0x00ef);
3136 rtl_w0w1_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00003137
Francois Romieufdf6fc02012-07-06 22:40:38 +02003138 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003139 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003140 { 0x1f, 0x0002 },
3141 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02003142 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003143 { 0x05, 0x8330 },
3144 { 0x06, 0x669a },
3145 { 0x1f, 0x0002 }
3146 };
3147 int val;
3148
françois romieu4da19632011-01-03 15:07:55 +00003149 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003150
françois romieu4da19632011-01-03 15:07:55 +00003151 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003152
3153 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003154 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003155 0x0065, 0x0066, 0x0067, 0x0068,
3156 0x0069, 0x006a, 0x006b, 0x006c
3157 };
3158 int i;
3159
françois romieu4da19632011-01-03 15:07:55 +00003160 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003161
3162 val &= 0xff00;
3163 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003164 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003165 }
3166 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003167 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003168 { 0x1f, 0x0002 },
3169 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02003170 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00003171 { 0x05, 0x8330 },
3172 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02003173 };
3174
françois romieu4da19632011-01-03 15:07:55 +00003175 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003176 }
3177
françois romieubca03d52011-01-03 15:07:31 +00003178 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00003179 rtl_writephy(tp, 0x1f, 0x0002);
3180 rtl_patchphy(tp, 0x0d, 0x0300);
3181 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00003182
françois romieubca03d52011-01-03 15:07:31 +00003183 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003184 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003185 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3186 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003187
françois romieu4da19632011-01-03 15:07:55 +00003188 rtl_writephy(tp, 0x1f, 0x0005);
3189 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003190
3191 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00003192
françois romieu4da19632011-01-03 15:07:55 +00003193 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003194}
3195
françois romieubca03d52011-01-03 15:07:31 +00003196static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003197{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003198 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00003199 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00003200 { 0x1f, 0x0001 },
3201 { 0x06, 0x4064 },
3202 { 0x07, 0x2863 },
3203 { 0x08, 0x059c },
3204 { 0x09, 0x26b4 },
3205 { 0x0a, 0x6a19 },
3206 { 0x0b, 0xdcc8 },
3207 { 0x10, 0xf06d },
3208 { 0x14, 0x7f68 },
3209 { 0x18, 0x7fd9 },
3210 { 0x1c, 0xf0ff },
3211 { 0x1d, 0x3d9c },
3212 { 0x1f, 0x0003 },
3213 { 0x12, 0xf49f },
3214 { 0x13, 0x070b },
3215 { 0x1a, 0x05ad },
3216 { 0x14, 0x94c0 },
3217
françois romieubca03d52011-01-03 15:07:31 +00003218 /*
3219 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02003220 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00003221 */
françois romieudaf9df62009-10-07 12:44:20 +00003222 { 0x1f, 0x0002 },
3223 { 0x06, 0x5561 },
3224 { 0x1f, 0x0005 },
3225 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00003226 { 0x06, 0x5561 },
3227
3228 /*
3229 * Can not link to 1Gbps with bad cable
3230 * Decrease SNR threshold form 21.07dB to 19.04dB
3231 */
3232 { 0x1f, 0x0001 },
3233 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00003234
3235 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00003236 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00003237 };
3238
françois romieu4da19632011-01-03 15:07:55 +00003239 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00003240
Francois Romieufdf6fc02012-07-06 22:40:38 +02003241 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003242 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003243 { 0x1f, 0x0002 },
3244 { 0x05, 0x669a },
3245 { 0x1f, 0x0005 },
3246 { 0x05, 0x8330 },
3247 { 0x06, 0x669a },
3248
3249 { 0x1f, 0x0002 }
3250 };
3251 int val;
3252
françois romieu4da19632011-01-03 15:07:55 +00003253 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003254
françois romieu4da19632011-01-03 15:07:55 +00003255 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00003256 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08003257 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003258 0x0065, 0x0066, 0x0067, 0x0068,
3259 0x0069, 0x006a, 0x006b, 0x006c
3260 };
3261 int i;
3262
françois romieu4da19632011-01-03 15:07:55 +00003263 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00003264
3265 val &= 0xff00;
3266 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00003267 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00003268 }
3269 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003270 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003271 { 0x1f, 0x0002 },
3272 { 0x05, 0x2642 },
3273 { 0x1f, 0x0005 },
3274 { 0x05, 0x8330 },
3275 { 0x06, 0x2642 }
3276 };
3277
françois romieu4da19632011-01-03 15:07:55 +00003278 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00003279 }
3280
françois romieubca03d52011-01-03 15:07:31 +00003281 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00003282 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003283 rtl_w0w1_phy(tp, 0x02, 0x0100, 0x0600);
3284 rtl_w0w1_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00003285
françois romieubca03d52011-01-03 15:07:31 +00003286 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00003287 rtl_writephy(tp, 0x1f, 0x0002);
3288 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00003289
françois romieu4da19632011-01-03 15:07:55 +00003290 rtl_writephy(tp, 0x1f, 0x0005);
3291 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02003292
3293 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00003294
françois romieu4da19632011-01-03 15:07:55 +00003295 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00003296}
3297
françois romieu4da19632011-01-03 15:07:55 +00003298static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00003299{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003300 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00003301 { 0x1f, 0x0002 },
3302 { 0x10, 0x0008 },
3303 { 0x0d, 0x006c },
3304
3305 { 0x1f, 0x0000 },
3306 { 0x0d, 0xf880 },
3307
3308 { 0x1f, 0x0001 },
3309 { 0x17, 0x0cc0 },
3310
3311 { 0x1f, 0x0001 },
3312 { 0x0b, 0xa4d8 },
3313 { 0x09, 0x281c },
3314 { 0x07, 0x2883 },
3315 { 0x0a, 0x6b35 },
3316 { 0x1d, 0x3da4 },
3317 { 0x1c, 0xeffd },
3318 { 0x14, 0x7f52 },
3319 { 0x18, 0x7fc6 },
3320 { 0x08, 0x0601 },
3321 { 0x06, 0x4063 },
3322 { 0x10, 0xf074 },
3323 { 0x1f, 0x0003 },
3324 { 0x13, 0x0789 },
3325 { 0x12, 0xf4bd },
3326 { 0x1a, 0x04fd },
3327 { 0x14, 0x84b0 },
3328 { 0x1f, 0x0000 },
3329 { 0x00, 0x9200 },
3330
3331 { 0x1f, 0x0005 },
3332 { 0x01, 0x0340 },
3333 { 0x1f, 0x0001 },
3334 { 0x04, 0x4000 },
3335 { 0x03, 0x1d21 },
3336 { 0x02, 0x0c32 },
3337 { 0x01, 0x0200 },
3338 { 0x00, 0x5554 },
3339 { 0x04, 0x4800 },
3340 { 0x04, 0x4000 },
3341 { 0x04, 0xf000 },
3342 { 0x03, 0xdf01 },
3343 { 0x02, 0xdf20 },
3344 { 0x01, 0x101a },
3345 { 0x00, 0xa0ff },
3346 { 0x04, 0xf800 },
3347 { 0x04, 0xf000 },
3348 { 0x1f, 0x0000 },
3349
3350 { 0x1f, 0x0007 },
3351 { 0x1e, 0x0023 },
3352 { 0x16, 0x0000 },
3353 { 0x1f, 0x0000 }
3354 };
3355
françois romieu4da19632011-01-03 15:07:55 +00003356 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003357}
3358
françois romieue6de30d2011-01-03 15:08:37 +00003359static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
3360{
3361 static const struct phy_reg phy_reg_init[] = {
3362 { 0x1f, 0x0001 },
3363 { 0x17, 0x0cc0 },
3364
3365 { 0x1f, 0x0007 },
3366 { 0x1e, 0x002d },
3367 { 0x18, 0x0040 },
3368 { 0x1f, 0x0000 }
3369 };
3370
3371 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3372 rtl_patchphy(tp, 0x0d, 1 << 5);
3373}
3374
Hayes Wang70090422011-07-06 15:58:06 +08003375static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00003376{
3377 static const struct phy_reg phy_reg_init[] = {
3378 /* Enable Delay cap */
3379 { 0x1f, 0x0005 },
3380 { 0x05, 0x8b80 },
3381 { 0x06, 0xc896 },
3382 { 0x1f, 0x0000 },
3383
3384 /* Channel estimation fine tune */
3385 { 0x1f, 0x0001 },
3386 { 0x0b, 0x6c20 },
3387 { 0x07, 0x2872 },
3388 { 0x1c, 0xefff },
3389 { 0x1f, 0x0003 },
3390 { 0x14, 0x6420 },
3391 { 0x1f, 0x0000 },
3392
3393 /* Update PFM & 10M TX idle timer */
3394 { 0x1f, 0x0007 },
3395 { 0x1e, 0x002f },
3396 { 0x15, 0x1919 },
3397 { 0x1f, 0x0000 },
3398
3399 { 0x1f, 0x0007 },
3400 { 0x1e, 0x00ac },
3401 { 0x18, 0x0006 },
3402 { 0x1f, 0x0000 }
3403 };
3404
Francois Romieu15ecd032011-04-27 13:52:22 -07003405 rtl_apply_firmware(tp);
3406
hayeswang01dc7fe2011-03-21 01:50:28 +00003407 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3408
3409 /* DCO enable for 10M IDLE Power */
3410 rtl_writephy(tp, 0x1f, 0x0007);
3411 rtl_writephy(tp, 0x1e, 0x0023);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003412 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003413 rtl_writephy(tp, 0x1f, 0x0000);
3414
3415 /* For impedance matching */
3416 rtl_writephy(tp, 0x1f, 0x0002);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003417 rtl_w0w1_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003418 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003419
3420 /* PHY auto speed down */
3421 rtl_writephy(tp, 0x1f, 0x0007);
3422 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003423 rtl_w0w1_phy(tp, 0x18, 0x0050, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003424 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003425 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003426
3427 rtl_writephy(tp, 0x1f, 0x0005);
3428 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003429 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003430 rtl_writephy(tp, 0x1f, 0x0000);
3431
3432 rtl_writephy(tp, 0x1f, 0x0005);
3433 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003434 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003435 rtl_writephy(tp, 0x1f, 0x0007);
3436 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003437 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x1100);
hayeswang01dc7fe2011-03-21 01:50:28 +00003438 rtl_writephy(tp, 0x1f, 0x0006);
3439 rtl_writephy(tp, 0x00, 0x5a00);
3440 rtl_writephy(tp, 0x1f, 0x0000);
3441 rtl_writephy(tp, 0x0d, 0x0007);
3442 rtl_writephy(tp, 0x0e, 0x003c);
3443 rtl_writephy(tp, 0x0d, 0x4007);
3444 rtl_writephy(tp, 0x0e, 0x0000);
3445 rtl_writephy(tp, 0x0d, 0x0000);
3446}
3447
françois romieu9ecb9aa2012-12-07 11:20:21 +00003448static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3449{
3450 const u16 w[] = {
3451 addr[0] | (addr[1] << 8),
3452 addr[2] | (addr[3] << 8),
3453 addr[4] | (addr[5] << 8)
3454 };
3455 const struct exgmac_reg e[] = {
3456 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3457 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3458 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3459 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3460 };
3461
3462 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3463}
3464
Hayes Wang70090422011-07-06 15:58:06 +08003465static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3466{
3467 static const struct phy_reg phy_reg_init[] = {
3468 /* Enable Delay cap */
3469 { 0x1f, 0x0004 },
3470 { 0x1f, 0x0007 },
3471 { 0x1e, 0x00ac },
3472 { 0x18, 0x0006 },
3473 { 0x1f, 0x0002 },
3474 { 0x1f, 0x0000 },
3475 { 0x1f, 0x0000 },
3476
3477 /* Channel estimation fine tune */
3478 { 0x1f, 0x0003 },
3479 { 0x09, 0xa20f },
3480 { 0x1f, 0x0000 },
3481 { 0x1f, 0x0000 },
3482
3483 /* Green Setting */
3484 { 0x1f, 0x0005 },
3485 { 0x05, 0x8b5b },
3486 { 0x06, 0x9222 },
3487 { 0x05, 0x8b6d },
3488 { 0x06, 0x8000 },
3489 { 0x05, 0x8b76 },
3490 { 0x06, 0x8000 },
3491 { 0x1f, 0x0000 }
3492 };
3493
3494 rtl_apply_firmware(tp);
3495
3496 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3497
3498 /* For 4-corner performance improve */
3499 rtl_writephy(tp, 0x1f, 0x0005);
3500 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003501 rtl_w0w1_phy(tp, 0x17, 0x0006, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003502 rtl_writephy(tp, 0x1f, 0x0000);
3503
3504 /* PHY auto speed down */
3505 rtl_writephy(tp, 0x1f, 0x0004);
3506 rtl_writephy(tp, 0x1f, 0x0007);
3507 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003508 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003509 rtl_writephy(tp, 0x1f, 0x0002);
3510 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003511 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003512
3513 /* improve 10M EEE waveform */
3514 rtl_writephy(tp, 0x1f, 0x0005);
3515 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003516 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003517 rtl_writephy(tp, 0x1f, 0x0000);
3518
3519 /* Improve 2-pair detection performance */
3520 rtl_writephy(tp, 0x1f, 0x0005);
3521 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003522 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wang70090422011-07-06 15:58:06 +08003523 rtl_writephy(tp, 0x1f, 0x0000);
3524
3525 /* EEE setting */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08003526 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08003527 rtl_writephy(tp, 0x1f, 0x0005);
3528 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003529 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
Hayes Wang70090422011-07-06 15:58:06 +08003530 rtl_writephy(tp, 0x1f, 0x0004);
3531 rtl_writephy(tp, 0x1f, 0x0007);
3532 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003533 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003534 rtl_writephy(tp, 0x1f, 0x0002);
3535 rtl_writephy(tp, 0x1f, 0x0000);
3536 rtl_writephy(tp, 0x0d, 0x0007);
3537 rtl_writephy(tp, 0x0e, 0x003c);
3538 rtl_writephy(tp, 0x0d, 0x4007);
3539 rtl_writephy(tp, 0x0e, 0x0000);
3540 rtl_writephy(tp, 0x0d, 0x0000);
3541
3542 /* Green feature */
3543 rtl_writephy(tp, 0x1f, 0x0003);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003544 rtl_w0w1_phy(tp, 0x19, 0x0000, 0x0001);
3545 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0400);
Hayes Wang70090422011-07-06 15:58:06 +08003546 rtl_writephy(tp, 0x1f, 0x0000);
hayeswange0c07552012-10-23 20:24:03 +00003547
françois romieu9ecb9aa2012-12-07 11:20:21 +00003548 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3549 rtl_rar_exgmac_set(tp, tp->dev->dev_addr);
Hayes Wang70090422011-07-06 15:58:06 +08003550}
3551
Hayes Wang5f886e02012-03-30 14:33:03 +08003552static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3553{
3554 /* For 4-corner performance improve */
3555 rtl_writephy(tp, 0x1f, 0x0005);
3556 rtl_writephy(tp, 0x05, 0x8b80);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003557 rtl_w0w1_phy(tp, 0x06, 0x0006, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003558 rtl_writephy(tp, 0x1f, 0x0000);
3559
3560 /* PHY auto speed down */
3561 rtl_writephy(tp, 0x1f, 0x0007);
3562 rtl_writephy(tp, 0x1e, 0x002d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003563 rtl_w0w1_phy(tp, 0x18, 0x0010, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003564 rtl_writephy(tp, 0x1f, 0x0000);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003565 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003566
3567 /* Improve 10M EEE waveform */
3568 rtl_writephy(tp, 0x1f, 0x0005);
3569 rtl_writephy(tp, 0x05, 0x8b86);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003570 rtl_w0w1_phy(tp, 0x06, 0x0001, 0x0000);
Hayes Wang5f886e02012-03-30 14:33:03 +08003571 rtl_writephy(tp, 0x1f, 0x0000);
3572}
3573
Hayes Wangc2218922011-09-06 16:55:18 +08003574static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3575{
3576 static const struct phy_reg phy_reg_init[] = {
3577 /* Channel estimation fine tune */
3578 { 0x1f, 0x0003 },
3579 { 0x09, 0xa20f },
3580 { 0x1f, 0x0000 },
3581
3582 /* Modify green table for giga & fnet */
3583 { 0x1f, 0x0005 },
3584 { 0x05, 0x8b55 },
3585 { 0x06, 0x0000 },
3586 { 0x05, 0x8b5e },
3587 { 0x06, 0x0000 },
3588 { 0x05, 0x8b67 },
3589 { 0x06, 0x0000 },
3590 { 0x05, 0x8b70 },
3591 { 0x06, 0x0000 },
3592 { 0x1f, 0x0000 },
3593 { 0x1f, 0x0007 },
3594 { 0x1e, 0x0078 },
3595 { 0x17, 0x0000 },
3596 { 0x19, 0x00fb },
3597 { 0x1f, 0x0000 },
3598
3599 /* Modify green table for 10M */
3600 { 0x1f, 0x0005 },
3601 { 0x05, 0x8b79 },
3602 { 0x06, 0xaa00 },
3603 { 0x1f, 0x0000 },
3604
3605 /* Disable hiimpedance detection (RTCT) */
3606 { 0x1f, 0x0003 },
3607 { 0x01, 0x328a },
3608 { 0x1f, 0x0000 }
3609 };
3610
3611 rtl_apply_firmware(tp);
3612
3613 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3614
Hayes Wang5f886e02012-03-30 14:33:03 +08003615 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003616
3617 /* Improve 2-pair detection performance */
3618 rtl_writephy(tp, 0x1f, 0x0005);
3619 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003620 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangc2218922011-09-06 16:55:18 +08003621 rtl_writephy(tp, 0x1f, 0x0000);
3622}
3623
3624static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3625{
3626 rtl_apply_firmware(tp);
3627
Hayes Wang5f886e02012-03-30 14:33:03 +08003628 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003629}
3630
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003631static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3632{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003633 static const struct phy_reg phy_reg_init[] = {
3634 /* Channel estimation fine tune */
3635 { 0x1f, 0x0003 },
3636 { 0x09, 0xa20f },
3637 { 0x1f, 0x0000 },
3638
3639 /* Modify green table for giga & fnet */
3640 { 0x1f, 0x0005 },
3641 { 0x05, 0x8b55 },
3642 { 0x06, 0x0000 },
3643 { 0x05, 0x8b5e },
3644 { 0x06, 0x0000 },
3645 { 0x05, 0x8b67 },
3646 { 0x06, 0x0000 },
3647 { 0x05, 0x8b70 },
3648 { 0x06, 0x0000 },
3649 { 0x1f, 0x0000 },
3650 { 0x1f, 0x0007 },
3651 { 0x1e, 0x0078 },
3652 { 0x17, 0x0000 },
3653 { 0x19, 0x00aa },
3654 { 0x1f, 0x0000 },
3655
3656 /* Modify green table for 10M */
3657 { 0x1f, 0x0005 },
3658 { 0x05, 0x8b79 },
3659 { 0x06, 0xaa00 },
3660 { 0x1f, 0x0000 },
3661
3662 /* Disable hiimpedance detection (RTCT) */
3663 { 0x1f, 0x0003 },
3664 { 0x01, 0x328a },
3665 { 0x1f, 0x0000 }
3666 };
3667
3668
3669 rtl_apply_firmware(tp);
3670
3671 rtl8168f_hw_phy_config(tp);
3672
3673 /* Improve 2-pair detection performance */
3674 rtl_writephy(tp, 0x1f, 0x0005);
3675 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003676 rtl_w0w1_phy(tp, 0x06, 0x4000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003677 rtl_writephy(tp, 0x1f, 0x0000);
3678
3679 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3680
3681 /* Modify green table for giga */
3682 rtl_writephy(tp, 0x1f, 0x0005);
3683 rtl_writephy(tp, 0x05, 0x8b54);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003684 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003685 rtl_writephy(tp, 0x05, 0x8b5d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003686 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0800);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003687 rtl_writephy(tp, 0x05, 0x8a7c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003688 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003689 rtl_writephy(tp, 0x05, 0x8a7f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003690 rtl_w0w1_phy(tp, 0x06, 0x0100, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003691 rtl_writephy(tp, 0x05, 0x8a82);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003692 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003693 rtl_writephy(tp, 0x05, 0x8a85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003694 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003695 rtl_writephy(tp, 0x05, 0x8a88);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003696 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003697 rtl_writephy(tp, 0x1f, 0x0000);
3698
3699 /* uc same-seed solution */
3700 rtl_writephy(tp, 0x1f, 0x0005);
3701 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003702 rtl_w0w1_phy(tp, 0x06, 0x8000, 0x0000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003703 rtl_writephy(tp, 0x1f, 0x0000);
3704
3705 /* eee setting */
Chun-Hao Lin706123d2014-10-01 23:17:18 +08003706 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003707 rtl_writephy(tp, 0x1f, 0x0005);
3708 rtl_writephy(tp, 0x05, 0x8b85);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003709 rtl_w0w1_phy(tp, 0x06, 0x0000, 0x2000);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003710 rtl_writephy(tp, 0x1f, 0x0004);
3711 rtl_writephy(tp, 0x1f, 0x0007);
3712 rtl_writephy(tp, 0x1e, 0x0020);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003713 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003714 rtl_writephy(tp, 0x1f, 0x0000);
3715 rtl_writephy(tp, 0x0d, 0x0007);
3716 rtl_writephy(tp, 0x0e, 0x003c);
3717 rtl_writephy(tp, 0x0d, 0x4007);
3718 rtl_writephy(tp, 0x0e, 0x0000);
3719 rtl_writephy(tp, 0x0d, 0x0000);
3720
3721 /* Green feature */
3722 rtl_writephy(tp, 0x1f, 0x0003);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003723 rtl_w0w1_phy(tp, 0x19, 0x0000, 0x0001);
3724 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0400);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003725 rtl_writephy(tp, 0x1f, 0x0000);
3726}
3727
Hayes Wangc5583862012-07-02 17:23:22 +08003728static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp)
3729{
Hayes Wangc5583862012-07-02 17:23:22 +08003730 rtl_apply_firmware(tp);
3731
hayeswang41f44d12013-04-01 22:23:36 +00003732 rtl_writephy(tp, 0x1f, 0x0a46);
3733 if (rtl_readphy(tp, 0x10) & 0x0100) {
3734 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003735 rtl_w0w1_phy(tp, 0x12, 0x0000, 0x8000);
hayeswang41f44d12013-04-01 22:23:36 +00003736 } else {
3737 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003738 rtl_w0w1_phy(tp, 0x12, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003739 }
Hayes Wangc5583862012-07-02 17:23:22 +08003740
hayeswang41f44d12013-04-01 22:23:36 +00003741 rtl_writephy(tp, 0x1f, 0x0a46);
3742 if (rtl_readphy(tp, 0x13) & 0x0100) {
3743 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003744 rtl_w0w1_phy(tp, 0x15, 0x0002, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003745 } else {
hayeswangfe7524c2013-04-01 22:23:37 +00003746 rtl_writephy(tp, 0x1f, 0x0c41);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003747 rtl_w0w1_phy(tp, 0x15, 0x0000, 0x0002);
hayeswang41f44d12013-04-01 22:23:36 +00003748 }
Hayes Wangc5583862012-07-02 17:23:22 +08003749
hayeswang41f44d12013-04-01 22:23:36 +00003750 /* Enable PHY auto speed down */
3751 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003752 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003753
hayeswangfe7524c2013-04-01 22:23:37 +00003754 rtl_writephy(tp, 0x1f, 0x0bcc);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003755 rtl_w0w1_phy(tp, 0x14, 0x0100, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003756 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003757 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003758 rtl_writephy(tp, 0x1f, 0x0a43);
3759 rtl_writephy(tp, 0x13, 0x8084);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003760 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
3761 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
hayeswangfe7524c2013-04-01 22:23:37 +00003762
hayeswang41f44d12013-04-01 22:23:36 +00003763 /* EEE auto-fallback function */
3764 rtl_writephy(tp, 0x1f, 0x0a4b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003765 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003766
hayeswang41f44d12013-04-01 22:23:36 +00003767 /* Enable UC LPF tune function */
3768 rtl_writephy(tp, 0x1f, 0x0a43);
3769 rtl_writephy(tp, 0x13, 0x8012);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003770 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
hayeswang41f44d12013-04-01 22:23:36 +00003771
3772 rtl_writephy(tp, 0x1f, 0x0c42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003773 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
hayeswang41f44d12013-04-01 22:23:36 +00003774
hayeswangfe7524c2013-04-01 22:23:37 +00003775 /* Improve SWR Efficiency */
3776 rtl_writephy(tp, 0x1f, 0x0bcd);
3777 rtl_writephy(tp, 0x14, 0x5065);
3778 rtl_writephy(tp, 0x14, 0xd065);
3779 rtl_writephy(tp, 0x1f, 0x0bc8);
3780 rtl_writephy(tp, 0x11, 0x5655);
3781 rtl_writephy(tp, 0x1f, 0x0bcd);
3782 rtl_writephy(tp, 0x14, 0x1065);
3783 rtl_writephy(tp, 0x14, 0x9065);
3784 rtl_writephy(tp, 0x14, 0x1065);
3785
David Chang1bac1072013-11-27 15:48:36 +08003786 /* Check ALDPS bit, disable it if enabled */
3787 rtl_writephy(tp, 0x1f, 0x0a43);
3788 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003789 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
David Chang1bac1072013-11-27 15:48:36 +08003790
hayeswang41f44d12013-04-01 22:23:36 +00003791 rtl_writephy(tp, 0x1f, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003792}
3793
hayeswang57538c42013-04-01 22:23:40 +00003794static void rtl8168g_2_hw_phy_config(struct rtl8169_private *tp)
3795{
3796 rtl_apply_firmware(tp);
3797}
3798
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003799static void rtl8168h_1_hw_phy_config(struct rtl8169_private *tp)
3800{
3801 u16 dout_tapbin;
3802 u32 data;
3803
3804 rtl_apply_firmware(tp);
3805
3806 /* CHN EST parameters adjust - giga master */
3807 rtl_writephy(tp, 0x1f, 0x0a43);
3808 rtl_writephy(tp, 0x13, 0x809b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003809 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003810 rtl_writephy(tp, 0x13, 0x80a2);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003811 rtl_w0w1_phy(tp, 0x14, 0x8000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003812 rtl_writephy(tp, 0x13, 0x80a4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003813 rtl_w0w1_phy(tp, 0x14, 0x8500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003814 rtl_writephy(tp, 0x13, 0x809c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003815 rtl_w0w1_phy(tp, 0x14, 0xbd00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003816 rtl_writephy(tp, 0x1f, 0x0000);
3817
3818 /* CHN EST parameters adjust - giga slave */
3819 rtl_writephy(tp, 0x1f, 0x0a43);
3820 rtl_writephy(tp, 0x13, 0x80ad);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003821 rtl_w0w1_phy(tp, 0x14, 0x7000, 0xf800);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003822 rtl_writephy(tp, 0x13, 0x80b4);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003823 rtl_w0w1_phy(tp, 0x14, 0x5000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003824 rtl_writephy(tp, 0x13, 0x80ac);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003825 rtl_w0w1_phy(tp, 0x14, 0x4000, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003826 rtl_writephy(tp, 0x1f, 0x0000);
3827
3828 /* CHN EST parameters adjust - fnet */
3829 rtl_writephy(tp, 0x1f, 0x0a43);
3830 rtl_writephy(tp, 0x13, 0x808e);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003831 rtl_w0w1_phy(tp, 0x14, 0x1200, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003832 rtl_writephy(tp, 0x13, 0x8090);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003833 rtl_w0w1_phy(tp, 0x14, 0xe500, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003834 rtl_writephy(tp, 0x13, 0x8092);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003835 rtl_w0w1_phy(tp, 0x14, 0x9f00, 0xff00);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003836 rtl_writephy(tp, 0x1f, 0x0000);
3837
3838 /* enable R-tune & PGA-retune function */
3839 dout_tapbin = 0;
3840 rtl_writephy(tp, 0x1f, 0x0a46);
3841 data = rtl_readphy(tp, 0x13);
3842 data &= 3;
3843 data <<= 2;
3844 dout_tapbin |= data;
3845 data = rtl_readphy(tp, 0x12);
3846 data &= 0xc000;
3847 data >>= 14;
3848 dout_tapbin |= data;
3849 dout_tapbin = ~(dout_tapbin^0x08);
3850 dout_tapbin <<= 12;
3851 dout_tapbin &= 0xf000;
3852 rtl_writephy(tp, 0x1f, 0x0a43);
3853 rtl_writephy(tp, 0x13, 0x827a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003854 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003855 rtl_writephy(tp, 0x13, 0x827b);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003856 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003857 rtl_writephy(tp, 0x13, 0x827c);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003858 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003859 rtl_writephy(tp, 0x13, 0x827d);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003860 rtl_w0w1_phy(tp, 0x14, dout_tapbin, 0xf000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003861
3862 rtl_writephy(tp, 0x1f, 0x0a43);
3863 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003864 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003865 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003866 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003867 rtl_writephy(tp, 0x1f, 0x0000);
3868
3869 /* enable GPHY 10M */
3870 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003871 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003872 rtl_writephy(tp, 0x1f, 0x0000);
3873
3874 /* SAR ADC performance */
3875 rtl_writephy(tp, 0x1f, 0x0bca);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003876 rtl_w0w1_phy(tp, 0x17, 0x4000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003877 rtl_writephy(tp, 0x1f, 0x0000);
3878
3879 rtl_writephy(tp, 0x1f, 0x0a43);
3880 rtl_writephy(tp, 0x13, 0x803f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003881 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003882 rtl_writephy(tp, 0x13, 0x8047);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003883 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003884 rtl_writephy(tp, 0x13, 0x804f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003885 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003886 rtl_writephy(tp, 0x13, 0x8057);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003887 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003888 rtl_writephy(tp, 0x13, 0x805f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003889 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003890 rtl_writephy(tp, 0x13, 0x8067);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003891 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003892 rtl_writephy(tp, 0x13, 0x806f);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003893 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x3000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003894 rtl_writephy(tp, 0x1f, 0x0000);
3895
3896 /* disable phy pfm mode */
3897 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Linc832c35f2015-12-29 22:13:38 +08003898 rtl_w0w1_phy(tp, 0x11, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003899 rtl_writephy(tp, 0x1f, 0x0000);
3900
3901 /* Check ALDPS bit, disable it if enabled */
3902 rtl_writephy(tp, 0x1f, 0x0a43);
3903 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003904 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003905
3906 rtl_writephy(tp, 0x1f, 0x0000);
3907}
3908
3909static void rtl8168h_2_hw_phy_config(struct rtl8169_private *tp)
3910{
3911 u16 ioffset_p3, ioffset_p2, ioffset_p1, ioffset_p0;
3912 u16 rlen;
3913 u32 data;
3914
3915 rtl_apply_firmware(tp);
3916
3917 /* CHIN EST parameter update */
3918 rtl_writephy(tp, 0x1f, 0x0a43);
3919 rtl_writephy(tp, 0x13, 0x808a);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003920 rtl_w0w1_phy(tp, 0x14, 0x000a, 0x003f);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003921 rtl_writephy(tp, 0x1f, 0x0000);
3922
3923 /* enable R-tune & PGA-retune function */
3924 rtl_writephy(tp, 0x1f, 0x0a43);
3925 rtl_writephy(tp, 0x13, 0x0811);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003926 rtl_w0w1_phy(tp, 0x14, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003927 rtl_writephy(tp, 0x1f, 0x0a42);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003928 rtl_w0w1_phy(tp, 0x16, 0x0002, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003929 rtl_writephy(tp, 0x1f, 0x0000);
3930
3931 /* enable GPHY 10M */
3932 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Lin76564422014-10-01 23:17:17 +08003933 rtl_w0w1_phy(tp, 0x11, 0x0800, 0x0000);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003934 rtl_writephy(tp, 0x1f, 0x0000);
3935
3936 r8168_mac_ocp_write(tp, 0xdd02, 0x807d);
3937 data = r8168_mac_ocp_read(tp, 0xdd02);
3938 ioffset_p3 = ((data & 0x80)>>7);
3939 ioffset_p3 <<= 3;
3940
3941 data = r8168_mac_ocp_read(tp, 0xdd00);
3942 ioffset_p3 |= ((data & (0xe000))>>13);
3943 ioffset_p2 = ((data & (0x1e00))>>9);
3944 ioffset_p1 = ((data & (0x01e0))>>5);
3945 ioffset_p0 = ((data & 0x0010)>>4);
3946 ioffset_p0 <<= 3;
3947 ioffset_p0 |= (data & (0x07));
3948 data = (ioffset_p3<<12)|(ioffset_p2<<8)|(ioffset_p1<<4)|(ioffset_p0);
3949
Chun-Hao Lin05b96872014-10-01 23:17:12 +08003950 if ((ioffset_p3 != 0x0f) || (ioffset_p2 != 0x0f) ||
Chun-Hao Line2e27882015-12-24 21:15:26 +08003951 (ioffset_p1 != 0x0f) || (ioffset_p0 != 0x0f)) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003952 rtl_writephy(tp, 0x1f, 0x0bcf);
3953 rtl_writephy(tp, 0x16, data);
3954 rtl_writephy(tp, 0x1f, 0x0000);
3955 }
3956
3957 /* Modify rlen (TX LPF corner frequency) level */
3958 rtl_writephy(tp, 0x1f, 0x0bcd);
3959 data = rtl_readphy(tp, 0x16);
3960 data &= 0x000f;
3961 rlen = 0;
3962 if (data > 3)
3963 rlen = data - 3;
3964 data = rlen | (rlen<<4) | (rlen<<8) | (rlen<<12);
3965 rtl_writephy(tp, 0x17, data);
3966 rtl_writephy(tp, 0x1f, 0x0bcd);
3967 rtl_writephy(tp, 0x1f, 0x0000);
3968
3969 /* disable phy pfm mode */
3970 rtl_writephy(tp, 0x1f, 0x0a44);
Chun-Hao Linc832c35f2015-12-29 22:13:38 +08003971 rtl_w0w1_phy(tp, 0x11, 0x0000, 0x0080);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003972 rtl_writephy(tp, 0x1f, 0x0000);
3973
3974 /* Check ALDPS bit, disable it if enabled */
3975 rtl_writephy(tp, 0x1f, 0x0a43);
3976 if (rtl_readphy(tp, 0x10) & 0x0004)
Chun-Hao Lin76564422014-10-01 23:17:17 +08003977 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08003978
3979 rtl_writephy(tp, 0x1f, 0x0000);
3980}
3981
Chun-Hao Lin935e2212014-10-07 15:10:41 +08003982static void rtl8168ep_1_hw_phy_config(struct rtl8169_private *tp)
3983{
3984 /* Enable PHY auto speed down */
3985 rtl_writephy(tp, 0x1f, 0x0a44);
3986 rtl_w0w1_phy(tp, 0x11, 0x000c, 0x0000);
3987 rtl_writephy(tp, 0x1f, 0x0000);
3988
3989 /* patch 10M & ALDPS */
3990 rtl_writephy(tp, 0x1f, 0x0bcc);
3991 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
3992 rtl_writephy(tp, 0x1f, 0x0a44);
3993 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
3994 rtl_writephy(tp, 0x1f, 0x0a43);
3995 rtl_writephy(tp, 0x13, 0x8084);
3996 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
3997 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
3998 rtl_writephy(tp, 0x1f, 0x0000);
3999
4000 /* Enable EEE auto-fallback function */
4001 rtl_writephy(tp, 0x1f, 0x0a4b);
4002 rtl_w0w1_phy(tp, 0x11, 0x0004, 0x0000);
4003 rtl_writephy(tp, 0x1f, 0x0000);
4004
4005 /* Enable UC LPF tune function */
4006 rtl_writephy(tp, 0x1f, 0x0a43);
4007 rtl_writephy(tp, 0x13, 0x8012);
4008 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4009 rtl_writephy(tp, 0x1f, 0x0000);
4010
4011 /* set rg_sel_sdm_rate */
4012 rtl_writephy(tp, 0x1f, 0x0c42);
4013 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4014 rtl_writephy(tp, 0x1f, 0x0000);
4015
4016 /* Check ALDPS bit, disable it if enabled */
4017 rtl_writephy(tp, 0x1f, 0x0a43);
4018 if (rtl_readphy(tp, 0x10) & 0x0004)
4019 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4020
4021 rtl_writephy(tp, 0x1f, 0x0000);
4022}
4023
4024static void rtl8168ep_2_hw_phy_config(struct rtl8169_private *tp)
4025{
4026 /* patch 10M & ALDPS */
4027 rtl_writephy(tp, 0x1f, 0x0bcc);
4028 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x0100);
4029 rtl_writephy(tp, 0x1f, 0x0a44);
4030 rtl_w0w1_phy(tp, 0x11, 0x00c0, 0x0000);
4031 rtl_writephy(tp, 0x1f, 0x0a43);
4032 rtl_writephy(tp, 0x13, 0x8084);
4033 rtl_w0w1_phy(tp, 0x14, 0x0000, 0x6000);
4034 rtl_w0w1_phy(tp, 0x10, 0x1003, 0x0000);
4035 rtl_writephy(tp, 0x1f, 0x0000);
4036
4037 /* Enable UC LPF tune function */
4038 rtl_writephy(tp, 0x1f, 0x0a43);
4039 rtl_writephy(tp, 0x13, 0x8012);
4040 rtl_w0w1_phy(tp, 0x14, 0x8000, 0x0000);
4041 rtl_writephy(tp, 0x1f, 0x0000);
4042
4043 /* Set rg_sel_sdm_rate */
4044 rtl_writephy(tp, 0x1f, 0x0c42);
4045 rtl_w0w1_phy(tp, 0x11, 0x4000, 0x2000);
4046 rtl_writephy(tp, 0x1f, 0x0000);
4047
4048 /* Channel estimation parameters */
4049 rtl_writephy(tp, 0x1f, 0x0a43);
4050 rtl_writephy(tp, 0x13, 0x80f3);
4051 rtl_w0w1_phy(tp, 0x14, 0x8b00, ~0x8bff);
4052 rtl_writephy(tp, 0x13, 0x80f0);
4053 rtl_w0w1_phy(tp, 0x14, 0x3a00, ~0x3aff);
4054 rtl_writephy(tp, 0x13, 0x80ef);
4055 rtl_w0w1_phy(tp, 0x14, 0x0500, ~0x05ff);
4056 rtl_writephy(tp, 0x13, 0x80f6);
4057 rtl_w0w1_phy(tp, 0x14, 0x6e00, ~0x6eff);
4058 rtl_writephy(tp, 0x13, 0x80ec);
4059 rtl_w0w1_phy(tp, 0x14, 0x6800, ~0x68ff);
4060 rtl_writephy(tp, 0x13, 0x80ed);
4061 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4062 rtl_writephy(tp, 0x13, 0x80f2);
4063 rtl_w0w1_phy(tp, 0x14, 0xf400, ~0xf4ff);
4064 rtl_writephy(tp, 0x13, 0x80f4);
4065 rtl_w0w1_phy(tp, 0x14, 0x8500, ~0x85ff);
4066 rtl_writephy(tp, 0x1f, 0x0a43);
4067 rtl_writephy(tp, 0x13, 0x8110);
4068 rtl_w0w1_phy(tp, 0x14, 0xa800, ~0xa8ff);
4069 rtl_writephy(tp, 0x13, 0x810f);
4070 rtl_w0w1_phy(tp, 0x14, 0x1d00, ~0x1dff);
4071 rtl_writephy(tp, 0x13, 0x8111);
4072 rtl_w0w1_phy(tp, 0x14, 0xf500, ~0xf5ff);
4073 rtl_writephy(tp, 0x13, 0x8113);
4074 rtl_w0w1_phy(tp, 0x14, 0x6100, ~0x61ff);
4075 rtl_writephy(tp, 0x13, 0x8115);
4076 rtl_w0w1_phy(tp, 0x14, 0x9200, ~0x92ff);
4077 rtl_writephy(tp, 0x13, 0x810e);
4078 rtl_w0w1_phy(tp, 0x14, 0x0400, ~0x04ff);
4079 rtl_writephy(tp, 0x13, 0x810c);
4080 rtl_w0w1_phy(tp, 0x14, 0x7c00, ~0x7cff);
4081 rtl_writephy(tp, 0x13, 0x810b);
4082 rtl_w0w1_phy(tp, 0x14, 0x5a00, ~0x5aff);
4083 rtl_writephy(tp, 0x1f, 0x0a43);
4084 rtl_writephy(tp, 0x13, 0x80d1);
4085 rtl_w0w1_phy(tp, 0x14, 0xff00, ~0xffff);
4086 rtl_writephy(tp, 0x13, 0x80cd);
4087 rtl_w0w1_phy(tp, 0x14, 0x9e00, ~0x9eff);
4088 rtl_writephy(tp, 0x13, 0x80d3);
4089 rtl_w0w1_phy(tp, 0x14, 0x0e00, ~0x0eff);
4090 rtl_writephy(tp, 0x13, 0x80d5);
4091 rtl_w0w1_phy(tp, 0x14, 0xca00, ~0xcaff);
4092 rtl_writephy(tp, 0x13, 0x80d7);
4093 rtl_w0w1_phy(tp, 0x14, 0x8400, ~0x84ff);
4094
4095 /* Force PWM-mode */
4096 rtl_writephy(tp, 0x1f, 0x0bcd);
4097 rtl_writephy(tp, 0x14, 0x5065);
4098 rtl_writephy(tp, 0x14, 0xd065);
4099 rtl_writephy(tp, 0x1f, 0x0bc8);
4100 rtl_writephy(tp, 0x12, 0x00ed);
4101 rtl_writephy(tp, 0x1f, 0x0bcd);
4102 rtl_writephy(tp, 0x14, 0x1065);
4103 rtl_writephy(tp, 0x14, 0x9065);
4104 rtl_writephy(tp, 0x14, 0x1065);
4105 rtl_writephy(tp, 0x1f, 0x0000);
4106
4107 /* Check ALDPS bit, disable it if enabled */
4108 rtl_writephy(tp, 0x1f, 0x0a43);
4109 if (rtl_readphy(tp, 0x10) & 0x0004)
4110 rtl_w0w1_phy(tp, 0x10, 0x0000, 0x0004);
4111
4112 rtl_writephy(tp, 0x1f, 0x0000);
4113}
4114
françois romieu4da19632011-01-03 15:07:55 +00004115static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004116{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004117 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004118 { 0x1f, 0x0003 },
4119 { 0x08, 0x441d },
4120 { 0x01, 0x9100 },
4121 { 0x1f, 0x0000 }
4122 };
4123
françois romieu4da19632011-01-03 15:07:55 +00004124 rtl_writephy(tp, 0x1f, 0x0000);
4125 rtl_patchphy(tp, 0x11, 1 << 12);
4126 rtl_patchphy(tp, 0x19, 1 << 13);
4127 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004128
françois romieu4da19632011-01-03 15:07:55 +00004129 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02004130}
4131
Hayes Wang5a5e4442011-02-22 17:26:21 +08004132static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
4133{
4134 static const struct phy_reg phy_reg_init[] = {
4135 { 0x1f, 0x0005 },
4136 { 0x1a, 0x0000 },
4137 { 0x1f, 0x0000 },
4138
4139 { 0x1f, 0x0004 },
4140 { 0x1c, 0x0000 },
4141 { 0x1f, 0x0000 },
4142
4143 { 0x1f, 0x0001 },
4144 { 0x15, 0x7701 },
4145 { 0x1f, 0x0000 }
4146 };
4147
4148 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004149 rtl_writephy(tp, 0x1f, 0x0000);
4150 rtl_writephy(tp, 0x18, 0x0310);
4151 msleep(100);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004152
François Romieu953a12c2011-04-24 17:38:48 +02004153 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004154
4155 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4156}
4157
Hayes Wang7e18dca2012-03-30 14:33:02 +08004158static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
4159{
Hayes Wang7e18dca2012-03-30 14:33:02 +08004160 /* Disable ALDPS before setting firmware */
Francois Romieueef63cc2013-02-08 23:43:20 +01004161 rtl_writephy(tp, 0x1f, 0x0000);
4162 rtl_writephy(tp, 0x18, 0x0310);
4163 msleep(20);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004164
4165 rtl_apply_firmware(tp);
4166
4167 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02004168 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004169 rtl_writephy(tp, 0x1f, 0x0004);
4170 rtl_writephy(tp, 0x10, 0x401f);
4171 rtl_writephy(tp, 0x19, 0x7030);
4172 rtl_writephy(tp, 0x1f, 0x0000);
4173}
4174
Hayes Wang5598bfe2012-07-02 17:23:21 +08004175static void rtl8106e_hw_phy_config(struct rtl8169_private *tp)
4176{
Hayes Wang5598bfe2012-07-02 17:23:21 +08004177 static const struct phy_reg phy_reg_init[] = {
4178 { 0x1f, 0x0004 },
4179 { 0x10, 0xc07f },
4180 { 0x19, 0x7030 },
4181 { 0x1f, 0x0000 }
4182 };
4183
4184 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01004185 rtl_writephy(tp, 0x1f, 0x0000);
4186 rtl_writephy(tp, 0x18, 0x0310);
4187 msleep(100);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004188
4189 rtl_apply_firmware(tp);
4190
Francois Romieufdf6fc02012-07-06 22:40:38 +02004191 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004192 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
4193
Francois Romieufdf6fc02012-07-06 22:40:38 +02004194 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08004195}
4196
Francois Romieu5615d9f2007-08-17 17:50:46 +02004197static void rtl_hw_phy_config(struct net_device *dev)
4198{
4199 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004200
4201 rtl8169_print_mac_version(tp);
4202
4203 switch (tp->mac_version) {
4204 case RTL_GIGA_MAC_VER_01:
4205 break;
4206 case RTL_GIGA_MAC_VER_02:
4207 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00004208 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004209 break;
4210 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00004211 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02004212 break;
françois romieu2e9558562009-08-10 19:44:19 +00004213 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00004214 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00004215 break;
françois romieu8c7006a2009-08-10 19:43:29 +00004216 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00004217 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00004218 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02004219 case RTL_GIGA_MAC_VER_07:
4220 case RTL_GIGA_MAC_VER_08:
4221 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00004222 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004223 break;
Francois Romieu236b8082008-05-30 16:11:48 +02004224 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00004225 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004226 break;
4227 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00004228 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004229 break;
4230 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00004231 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02004232 break;
Francois Romieu867763c2007-08-17 18:21:58 +02004233 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00004234 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004235 break;
4236 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00004237 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02004238 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02004239 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00004240 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02004241 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004242 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00004243 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02004244 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004245 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00004246 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004247 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004248 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004249 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00004250 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004251 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004252 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00004253 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004254 break;
4255 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00004256 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00004257 break;
4258 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00004259 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02004260 break;
françois romieue6de30d2011-01-03 15:08:37 +00004261 case RTL_GIGA_MAC_VER_28:
4262 rtl8168d_4_hw_phy_config(tp);
4263 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004264 case RTL_GIGA_MAC_VER_29:
4265 case RTL_GIGA_MAC_VER_30:
4266 rtl8105e_hw_phy_config(tp);
4267 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004268 case RTL_GIGA_MAC_VER_31:
4269 /* None. */
4270 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00004271 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00004272 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004273 rtl8168e_1_hw_phy_config(tp);
4274 break;
4275 case RTL_GIGA_MAC_VER_34:
4276 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00004277 break;
Hayes Wangc2218922011-09-06 16:55:18 +08004278 case RTL_GIGA_MAC_VER_35:
4279 rtl8168f_1_hw_phy_config(tp);
4280 break;
4281 case RTL_GIGA_MAC_VER_36:
4282 rtl8168f_2_hw_phy_config(tp);
4283 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004284
Hayes Wang7e18dca2012-03-30 14:33:02 +08004285 case RTL_GIGA_MAC_VER_37:
4286 rtl8402_hw_phy_config(tp);
4287 break;
4288
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004289 case RTL_GIGA_MAC_VER_38:
4290 rtl8411_hw_phy_config(tp);
4291 break;
4292
Hayes Wang5598bfe2012-07-02 17:23:21 +08004293 case RTL_GIGA_MAC_VER_39:
4294 rtl8106e_hw_phy_config(tp);
4295 break;
4296
Hayes Wangc5583862012-07-02 17:23:22 +08004297 case RTL_GIGA_MAC_VER_40:
4298 rtl8168g_1_hw_phy_config(tp);
4299 break;
hayeswang57538c42013-04-01 22:23:40 +00004300 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004301 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004302 case RTL_GIGA_MAC_VER_44:
hayeswang57538c42013-04-01 22:23:40 +00004303 rtl8168g_2_hw_phy_config(tp);
4304 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004305 case RTL_GIGA_MAC_VER_45:
4306 case RTL_GIGA_MAC_VER_47:
4307 rtl8168h_1_hw_phy_config(tp);
4308 break;
4309 case RTL_GIGA_MAC_VER_46:
4310 case RTL_GIGA_MAC_VER_48:
4311 rtl8168h_2_hw_phy_config(tp);
4312 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004313
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004314 case RTL_GIGA_MAC_VER_49:
4315 rtl8168ep_1_hw_phy_config(tp);
4316 break;
4317 case RTL_GIGA_MAC_VER_50:
4318 case RTL_GIGA_MAC_VER_51:
4319 rtl8168ep_2_hw_phy_config(tp);
4320 break;
4321
Hayes Wangc5583862012-07-02 17:23:22 +08004322 case RTL_GIGA_MAC_VER_41:
Francois Romieu5615d9f2007-08-17 17:50:46 +02004323 default:
4324 break;
4325 }
4326}
4327
Francois Romieuda78dbf2012-01-26 14:18:23 +01004328static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 struct timer_list *timer = &tp->timer;
4331 void __iomem *ioaddr = tp->mmio_addr;
4332 unsigned long timeout = RTL8169_PHY_TIMEOUT;
4333
Francois Romieubcf0bf92006-07-26 23:14:13 +02004334 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
françois romieu4da19632011-01-03 15:07:55 +00004336 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02004337 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 * A busy loop could burn quite a few cycles on nowadays CPU.
4339 * Let's delay the execution of the timer for a few ticks.
4340 */
4341 timeout = HZ/10;
4342 goto out_mod_timer;
4343 }
4344
4345 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01004346 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347
Lekensteyn9bb8eeb2013-08-02 10:36:55 +02004348 netif_dbg(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349
françois romieu4da19632011-01-03 15:07:55 +00004350 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
4352out_mod_timer:
4353 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004354}
4355
4356static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
4357{
Francois Romieuda78dbf2012-01-26 14:18:23 +01004358 if (!test_and_set_bit(flag, tp->wk.flags))
4359 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01004360}
4361
4362static void rtl8169_phy_timer(unsigned long __opaque)
4363{
4364 struct net_device *dev = (struct net_device *)__opaque;
4365 struct rtl8169_private *tp = netdev_priv(dev);
4366
Francois Romieu98ddf982012-01-31 10:47:34 +01004367 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368}
4369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
4371 void __iomem *ioaddr)
4372{
4373 iounmap(ioaddr);
4374 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00004375 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 pci_disable_device(pdev);
4377 free_netdev(dev);
4378}
4379
Francois Romieuffc46952012-07-06 14:19:23 +02004380DECLARE_RTL_COND(rtl_phy_reset_cond)
4381{
4382 return tp->phy_reset_pending(tp);
4383}
4384
Francois Romieubf793292006-11-01 00:53:05 +01004385static void rtl8169_phy_reset(struct net_device *dev,
4386 struct rtl8169_private *tp)
4387{
françois romieu4da19632011-01-03 15:07:55 +00004388 tp->phy_reset_enable(tp);
Francois Romieuffc46952012-07-06 14:19:23 +02004389 rtl_msleep_loop_wait_low(tp, &rtl_phy_reset_cond, 1, 100);
Francois Romieubf793292006-11-01 00:53:05 +01004390}
4391
David S. Miller8decf862011-09-22 03:23:13 -04004392static bool rtl_tbi_enabled(struct rtl8169_private *tp)
4393{
4394 void __iomem *ioaddr = tp->mmio_addr;
4395
4396 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
4397 (RTL_R8(PHYstatus) & TBI_Enable);
4398}
4399
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004400static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004402 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004403
Francois Romieu5615d9f2007-08-17 17:50:46 +02004404 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004405
Marcus Sundberg773328942008-07-10 21:28:08 +02004406 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
4407 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4408 RTL_W8(0x82, 0x01);
4409 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004410
Francois Romieu6dccd162007-02-13 23:38:05 +01004411 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
4412
4413 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
4414 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004415
Francois Romieubcf0bf92006-07-26 23:14:13 +02004416 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004417 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
4418 RTL_W8(0x82, 0x01);
4419 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00004420 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004421 }
4422
Francois Romieubf793292006-11-01 00:53:05 +01004423 rtl8169_phy_reset(dev, tp);
4424
Oliver Neukum54405cd2011-01-06 21:55:13 +01004425 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02004426 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4427 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4428 (tp->mii.supports_gmii ?
4429 ADVERTISED_1000baseT_Half |
4430 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004431
David S. Miller8decf862011-09-22 03:23:13 -04004432 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00004433 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02004434}
4435
Francois Romieu773d2022007-01-31 23:47:43 +01004436static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
4437{
4438 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu773d2022007-01-31 23:47:43 +01004439
Francois Romieuda78dbf2012-01-26 14:18:23 +01004440 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004441
4442 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00004443
françois romieu9ecb9aa2012-12-07 11:20:21 +00004444 RTL_W32(MAC4, addr[4] | addr[5] << 8);
françois romieu908ba2b2010-04-26 11:42:58 +00004445 RTL_R32(MAC4);
4446
françois romieu9ecb9aa2012-12-07 11:20:21 +00004447 RTL_W32(MAC0, addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
françois romieu908ba2b2010-04-26 11:42:58 +00004448 RTL_R32(MAC0);
4449
françois romieu9ecb9aa2012-12-07 11:20:21 +00004450 if (tp->mac_version == RTL_GIGA_MAC_VER_34)
4451 rtl_rar_exgmac_set(tp, addr);
françois romieuc28aa382011-08-02 03:53:43 +00004452
Francois Romieu773d2022007-01-31 23:47:43 +01004453 RTL_W8(Cfg9346, Cfg9346_Lock);
4454
Francois Romieuda78dbf2012-01-26 14:18:23 +01004455 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01004456}
4457
4458static int rtl_set_mac_address(struct net_device *dev, void *p)
4459{
4460 struct rtl8169_private *tp = netdev_priv(dev);
4461 struct sockaddr *addr = p;
4462
4463 if (!is_valid_ether_addr(addr->sa_data))
4464 return -EADDRNOTAVAIL;
4465
4466 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
4467
4468 rtl_rar_set(tp, dev->dev_addr);
4469
4470 return 0;
4471}
4472
Francois Romieu5f787a12006-08-17 13:02:36 +02004473static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4474{
4475 struct rtl8169_private *tp = netdev_priv(dev);
4476 struct mii_ioctl_data *data = if_mii(ifr);
4477
Francois Romieu8b4ab282008-11-19 22:05:25 -08004478 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
4479}
Francois Romieu5f787a12006-08-17 13:02:36 +02004480
Francois Romieucecb5fd2011-04-01 10:21:07 +02004481static int rtl_xmii_ioctl(struct rtl8169_private *tp,
4482 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08004483{
Francois Romieu5f787a12006-08-17 13:02:36 +02004484 switch (cmd) {
4485 case SIOCGMIIPHY:
4486 data->phy_id = 32; /* Internal PHY */
4487 return 0;
4488
4489 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004490 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02004491 return 0;
4492
4493 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00004494 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02004495 return 0;
4496 }
4497 return -EOPNOTSUPP;
4498}
4499
Francois Romieu8b4ab282008-11-19 22:05:25 -08004500static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
4501{
4502 return -EOPNOTSUPP;
4503}
4504
Francois Romieufbac58f2007-10-04 22:51:38 +02004505static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
4506{
4507 if (tp->features & RTL_FEATURE_MSI) {
4508 pci_disable_msi(pdev);
4509 tp->features &= ~RTL_FEATURE_MSI;
4510 }
4511}
4512
Bill Pembertonbaf63292012-12-03 09:23:28 -05004513static void rtl_init_mdio_ops(struct rtl8169_private *tp)
françois romieuc0e45c12011-01-03 15:08:04 +00004514{
4515 struct mdio_ops *ops = &tp->mdio_ops;
4516
4517 switch (tp->mac_version) {
4518 case RTL_GIGA_MAC_VER_27:
4519 ops->write = r8168dp_1_mdio_write;
4520 ops->read = r8168dp_1_mdio_read;
4521 break;
françois romieue6de30d2011-01-03 15:08:37 +00004522 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004523 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00004524 ops->write = r8168dp_2_mdio_write;
4525 ops->read = r8168dp_2_mdio_read;
4526 break;
Hayes Wangc5583862012-07-02 17:23:22 +08004527 case RTL_GIGA_MAC_VER_40:
4528 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004529 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004530 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004531 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004532 case RTL_GIGA_MAC_VER_45:
4533 case RTL_GIGA_MAC_VER_46:
4534 case RTL_GIGA_MAC_VER_47:
4535 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004536 case RTL_GIGA_MAC_VER_49:
4537 case RTL_GIGA_MAC_VER_50:
4538 case RTL_GIGA_MAC_VER_51:
Hayes Wangc5583862012-07-02 17:23:22 +08004539 ops->write = r8168g_mdio_write;
4540 ops->read = r8168g_mdio_read;
4541 break;
françois romieuc0e45c12011-01-03 15:08:04 +00004542 default:
4543 ops->write = r8169_mdio_write;
4544 ops->read = r8169_mdio_read;
4545 break;
4546 }
4547}
4548
hayeswange2409d82013-03-31 17:02:04 +00004549static void rtl_speed_down(struct rtl8169_private *tp)
4550{
4551 u32 adv;
4552 int lpa;
4553
4554 rtl_writephy(tp, 0x1f, 0x0000);
4555 lpa = rtl_readphy(tp, MII_LPA);
4556
4557 if (lpa & (LPA_10HALF | LPA_10FULL))
4558 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full;
4559 else if (lpa & (LPA_100HALF | LPA_100FULL))
4560 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4561 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full;
4562 else
4563 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
4564 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
4565 (tp->mii.supports_gmii ?
4566 ADVERTISED_1000baseT_Half |
4567 ADVERTISED_1000baseT_Full : 0);
4568
4569 rtl8169_set_speed(tp->dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
4570 adv);
4571}
4572
David S. Miller1805b2f2011-10-24 18:18:09 -04004573static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
4574{
4575 void __iomem *ioaddr = tp->mmio_addr;
4576
4577 switch (tp->mac_version) {
Cyril Bruleboisb00e69d2012-10-31 14:00:46 +00004578 case RTL_GIGA_MAC_VER_25:
4579 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04004580 case RTL_GIGA_MAC_VER_29:
4581 case RTL_GIGA_MAC_VER_30:
4582 case RTL_GIGA_MAC_VER_32:
4583 case RTL_GIGA_MAC_VER_33:
4584 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004585 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004586 case RTL_GIGA_MAC_VER_38:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004587 case RTL_GIGA_MAC_VER_39:
Hayes Wangc5583862012-07-02 17:23:22 +08004588 case RTL_GIGA_MAC_VER_40:
4589 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004590 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004591 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004592 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004593 case RTL_GIGA_MAC_VER_45:
4594 case RTL_GIGA_MAC_VER_46:
4595 case RTL_GIGA_MAC_VER_47:
4596 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004597 case RTL_GIGA_MAC_VER_49:
4598 case RTL_GIGA_MAC_VER_50:
4599 case RTL_GIGA_MAC_VER_51:
David S. Miller1805b2f2011-10-24 18:18:09 -04004600 RTL_W32(RxConfig, RTL_R32(RxConfig) |
4601 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
4602 break;
4603 default:
4604 break;
4605 }
4606}
4607
4608static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
4609{
4610 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
4611 return false;
4612
hayeswange2409d82013-03-31 17:02:04 +00004613 rtl_speed_down(tp);
David S. Miller1805b2f2011-10-24 18:18:09 -04004614 rtl_wol_suspend_quirk(tp);
4615
4616 return true;
4617}
4618
françois romieu065c27c2011-01-03 15:08:12 +00004619static void r810x_phy_power_down(struct rtl8169_private *tp)
4620{
4621 rtl_writephy(tp, 0x1f, 0x0000);
4622 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4623}
4624
4625static void r810x_phy_power_up(struct rtl8169_private *tp)
4626{
4627 rtl_writephy(tp, 0x1f, 0x0000);
4628 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4629}
4630
4631static void r810x_pll_power_down(struct rtl8169_private *tp)
4632{
Hayes Wang00042992012-03-30 14:33:00 +08004633 void __iomem *ioaddr = tp->mmio_addr;
4634
David S. Miller1805b2f2011-10-24 18:18:09 -04004635 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004636 return;
françois romieu065c27c2011-01-03 15:08:12 +00004637
4638 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004639
4640 switch (tp->mac_version) {
4641 case RTL_GIGA_MAC_VER_07:
4642 case RTL_GIGA_MAC_VER_08:
4643 case RTL_GIGA_MAC_VER_09:
4644 case RTL_GIGA_MAC_VER_10:
4645 case RTL_GIGA_MAC_VER_13:
4646 case RTL_GIGA_MAC_VER_16:
4647 break;
4648 default:
4649 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4650 break;
4651 }
françois romieu065c27c2011-01-03 15:08:12 +00004652}
4653
4654static void r810x_pll_power_up(struct rtl8169_private *tp)
4655{
Hayes Wang00042992012-03-30 14:33:00 +08004656 void __iomem *ioaddr = tp->mmio_addr;
4657
françois romieu065c27c2011-01-03 15:08:12 +00004658 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08004659
4660 switch (tp->mac_version) {
4661 case RTL_GIGA_MAC_VER_07:
4662 case RTL_GIGA_MAC_VER_08:
4663 case RTL_GIGA_MAC_VER_09:
4664 case RTL_GIGA_MAC_VER_10:
4665 case RTL_GIGA_MAC_VER_13:
4666 case RTL_GIGA_MAC_VER_16:
4667 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004668 case RTL_GIGA_MAC_VER_47:
4669 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004670 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004671 break;
Hayes Wang00042992012-03-30 14:33:00 +08004672 default:
4673 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4674 break;
4675 }
françois romieu065c27c2011-01-03 15:08:12 +00004676}
4677
4678static void r8168_phy_power_up(struct rtl8169_private *tp)
4679{
4680 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004681 switch (tp->mac_version) {
4682 case RTL_GIGA_MAC_VER_11:
4683 case RTL_GIGA_MAC_VER_12:
4684 case RTL_GIGA_MAC_VER_17:
4685 case RTL_GIGA_MAC_VER_18:
4686 case RTL_GIGA_MAC_VER_19:
4687 case RTL_GIGA_MAC_VER_20:
4688 case RTL_GIGA_MAC_VER_21:
4689 case RTL_GIGA_MAC_VER_22:
4690 case RTL_GIGA_MAC_VER_23:
4691 case RTL_GIGA_MAC_VER_24:
4692 case RTL_GIGA_MAC_VER_25:
4693 case RTL_GIGA_MAC_VER_26:
4694 case RTL_GIGA_MAC_VER_27:
4695 case RTL_GIGA_MAC_VER_28:
4696 case RTL_GIGA_MAC_VER_31:
4697 rtl_writephy(tp, 0x0e, 0x0000);
4698 break;
4699 default:
4700 break;
4701 }
françois romieu065c27c2011-01-03 15:08:12 +00004702 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4703}
4704
4705static void r8168_phy_power_down(struct rtl8169_private *tp)
4706{
4707 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004708 switch (tp->mac_version) {
4709 case RTL_GIGA_MAC_VER_32:
4710 case RTL_GIGA_MAC_VER_33:
hayeswangbeb330a2013-04-01 22:23:39 +00004711 case RTL_GIGA_MAC_VER_40:
4712 case RTL_GIGA_MAC_VER_41:
hayeswang01dc7fe2011-03-21 01:50:28 +00004713 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
4714 break;
4715
4716 case RTL_GIGA_MAC_VER_11:
4717 case RTL_GIGA_MAC_VER_12:
4718 case RTL_GIGA_MAC_VER_17:
4719 case RTL_GIGA_MAC_VER_18:
4720 case RTL_GIGA_MAC_VER_19:
4721 case RTL_GIGA_MAC_VER_20:
4722 case RTL_GIGA_MAC_VER_21:
4723 case RTL_GIGA_MAC_VER_22:
4724 case RTL_GIGA_MAC_VER_23:
4725 case RTL_GIGA_MAC_VER_24:
4726 case RTL_GIGA_MAC_VER_25:
4727 case RTL_GIGA_MAC_VER_26:
4728 case RTL_GIGA_MAC_VER_27:
4729 case RTL_GIGA_MAC_VER_28:
4730 case RTL_GIGA_MAC_VER_31:
4731 rtl_writephy(tp, 0x0e, 0x0200);
4732 default:
4733 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4734 break;
4735 }
françois romieu065c27c2011-01-03 15:08:12 +00004736}
4737
4738static void r8168_pll_power_down(struct rtl8169_private *tp)
4739{
4740 void __iomem *ioaddr = tp->mmio_addr;
4741
Francois Romieucecb5fd2011-04-01 10:21:07 +02004742 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4743 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004744 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
4745 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
4746 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
4747 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Lin2f8c0402014-10-01 23:17:19 +08004748 r8168_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00004749 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08004750 }
françois romieu065c27c2011-01-03 15:08:12 +00004751
Francois Romieucecb5fd2011-04-01 10:21:07 +02004752 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
4753 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00004754 (RTL_R16(CPlusCmd) & ASF)) {
4755 return;
4756 }
4757
hayeswang01dc7fe2011-03-21 01:50:28 +00004758 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
4759 tp->mac_version == RTL_GIGA_MAC_VER_33)
Francois Romieufdf6fc02012-07-06 22:40:38 +02004760 rtl_ephy_write(tp, 0x19, 0xff64);
hayeswang01dc7fe2011-03-21 01:50:28 +00004761
David S. Miller1805b2f2011-10-24 18:18:09 -04004762 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004763 return;
françois romieu065c27c2011-01-03 15:08:12 +00004764
4765 r8168_phy_power_down(tp);
4766
4767 switch (tp->mac_version) {
4768 case RTL_GIGA_MAC_VER_25:
4769 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004770 case RTL_GIGA_MAC_VER_27:
4771 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004772 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004773 case RTL_GIGA_MAC_VER_32:
4774 case RTL_GIGA_MAC_VER_33:
Chun-Hao Lin42fde732014-10-01 23:17:14 +08004775 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004776 case RTL_GIGA_MAC_VER_45:
4777 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004778 case RTL_GIGA_MAC_VER_50:
4779 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00004780 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4781 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004782 case RTL_GIGA_MAC_VER_40:
4783 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004784 case RTL_GIGA_MAC_VER_49:
Chun-Hao Lin706123d2014-10-01 23:17:18 +08004785 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0x00000000,
hayeswangbeb330a2013-04-01 22:23:39 +00004786 0xfc000000, ERIAR_EXGMAC);
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08004787 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
hayeswangbeb330a2013-04-01 22:23:39 +00004788 break;
françois romieu065c27c2011-01-03 15:08:12 +00004789 }
4790}
4791
4792static void r8168_pll_power_up(struct rtl8169_private *tp)
4793{
4794 void __iomem *ioaddr = tp->mmio_addr;
4795
françois romieu065c27c2011-01-03 15:08:12 +00004796 switch (tp->mac_version) {
4797 case RTL_GIGA_MAC_VER_25:
4798 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004799 case RTL_GIGA_MAC_VER_27:
4800 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004801 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004802 case RTL_GIGA_MAC_VER_32:
4803 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004804 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4805 break;
Chun-Hao Lin42fde732014-10-01 23:17:14 +08004806 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004807 case RTL_GIGA_MAC_VER_45:
4808 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004809 case RTL_GIGA_MAC_VER_50:
4810 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin05b96872014-10-01 23:17:12 +08004811 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004812 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004813 case RTL_GIGA_MAC_VER_40:
4814 case RTL_GIGA_MAC_VER_41:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004815 case RTL_GIGA_MAC_VER_49:
Chun-Hao Linb8e5e6a2014-10-01 23:17:13 +08004816 RTL_W8(PMCH, RTL_R8(PMCH) | 0xc0);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08004817 rtl_w0w1_eri(tp, 0x1a8, ERIAR_MASK_1111, 0xfc000000,
hayeswangbeb330a2013-04-01 22:23:39 +00004818 0x00000000, ERIAR_EXGMAC);
4819 break;
françois romieu065c27c2011-01-03 15:08:12 +00004820 }
4821
4822 r8168_phy_power_up(tp);
4823}
4824
Francois Romieud58d46b2011-05-03 16:38:29 +02004825static void rtl_generic_op(struct rtl8169_private *tp,
4826 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00004827{
4828 if (op)
4829 op(tp);
4830}
4831
4832static void rtl_pll_power_down(struct rtl8169_private *tp)
4833{
Francois Romieud58d46b2011-05-03 16:38:29 +02004834 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00004835}
4836
4837static void rtl_pll_power_up(struct rtl8169_private *tp)
4838{
Francois Romieud58d46b2011-05-03 16:38:29 +02004839 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00004840}
4841
Bill Pembertonbaf63292012-12-03 09:23:28 -05004842static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
françois romieu065c27c2011-01-03 15:08:12 +00004843{
4844 struct pll_power_ops *ops = &tp->pll_power_ops;
4845
4846 switch (tp->mac_version) {
4847 case RTL_GIGA_MAC_VER_07:
4848 case RTL_GIGA_MAC_VER_08:
4849 case RTL_GIGA_MAC_VER_09:
4850 case RTL_GIGA_MAC_VER_10:
4851 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08004852 case RTL_GIGA_MAC_VER_29:
4853 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004854 case RTL_GIGA_MAC_VER_37:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004855 case RTL_GIGA_MAC_VER_39:
hayeswang58152cd2013-04-01 22:23:42 +00004856 case RTL_GIGA_MAC_VER_43:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004857 case RTL_GIGA_MAC_VER_47:
4858 case RTL_GIGA_MAC_VER_48:
françois romieu065c27c2011-01-03 15:08:12 +00004859 ops->down = r810x_pll_power_down;
4860 ops->up = r810x_pll_power_up;
4861 break;
4862
4863 case RTL_GIGA_MAC_VER_11:
4864 case RTL_GIGA_MAC_VER_12:
4865 case RTL_GIGA_MAC_VER_17:
4866 case RTL_GIGA_MAC_VER_18:
4867 case RTL_GIGA_MAC_VER_19:
4868 case RTL_GIGA_MAC_VER_20:
4869 case RTL_GIGA_MAC_VER_21:
4870 case RTL_GIGA_MAC_VER_22:
4871 case RTL_GIGA_MAC_VER_23:
4872 case RTL_GIGA_MAC_VER_24:
4873 case RTL_GIGA_MAC_VER_25:
4874 case RTL_GIGA_MAC_VER_26:
4875 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00004876 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004877 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004878 case RTL_GIGA_MAC_VER_32:
4879 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004880 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08004881 case RTL_GIGA_MAC_VER_35:
4882 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004883 case RTL_GIGA_MAC_VER_38:
Hayes Wangc5583862012-07-02 17:23:22 +08004884 case RTL_GIGA_MAC_VER_40:
4885 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004886 case RTL_GIGA_MAC_VER_42:
hayeswang45dd95c2013-07-08 17:09:01 +08004887 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004888 case RTL_GIGA_MAC_VER_45:
4889 case RTL_GIGA_MAC_VER_46:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004890 case RTL_GIGA_MAC_VER_49:
4891 case RTL_GIGA_MAC_VER_50:
4892 case RTL_GIGA_MAC_VER_51:
françois romieu065c27c2011-01-03 15:08:12 +00004893 ops->down = r8168_pll_power_down;
4894 ops->up = r8168_pll_power_up;
4895 break;
4896
4897 default:
4898 ops->down = NULL;
4899 ops->up = NULL;
4900 break;
4901 }
4902}
4903
Hayes Wange542a222011-07-06 15:58:04 +08004904static void rtl_init_rxcfg(struct rtl8169_private *tp)
4905{
4906 void __iomem *ioaddr = tp->mmio_addr;
4907
4908 switch (tp->mac_version) {
4909 case RTL_GIGA_MAC_VER_01:
4910 case RTL_GIGA_MAC_VER_02:
4911 case RTL_GIGA_MAC_VER_03:
4912 case RTL_GIGA_MAC_VER_04:
4913 case RTL_GIGA_MAC_VER_05:
4914 case RTL_GIGA_MAC_VER_06:
4915 case RTL_GIGA_MAC_VER_10:
4916 case RTL_GIGA_MAC_VER_11:
4917 case RTL_GIGA_MAC_VER_12:
4918 case RTL_GIGA_MAC_VER_13:
4919 case RTL_GIGA_MAC_VER_14:
4920 case RTL_GIGA_MAC_VER_15:
4921 case RTL_GIGA_MAC_VER_16:
4922 case RTL_GIGA_MAC_VER_17:
4923 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
4924 break;
4925 case RTL_GIGA_MAC_VER_18:
4926 case RTL_GIGA_MAC_VER_19:
4927 case RTL_GIGA_MAC_VER_20:
4928 case RTL_GIGA_MAC_VER_21:
4929 case RTL_GIGA_MAC_VER_22:
4930 case RTL_GIGA_MAC_VER_23:
4931 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00004932 case RTL_GIGA_MAC_VER_34:
françois romieu3ced8c92013-09-08 01:15:35 +02004933 case RTL_GIGA_MAC_VER_35:
Hayes Wange542a222011-07-06 15:58:04 +08004934 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
4935 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004936 case RTL_GIGA_MAC_VER_40:
4937 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004938 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004939 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08004940 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08004941 case RTL_GIGA_MAC_VER_45:
4942 case RTL_GIGA_MAC_VER_46:
4943 case RTL_GIGA_MAC_VER_47:
4944 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08004945 case RTL_GIGA_MAC_VER_49:
4946 case RTL_GIGA_MAC_VER_50:
4947 case RTL_GIGA_MAC_VER_51:
Ivan Vecera7ebc4822015-08-04 22:11:43 +02004948 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST | RX_EARLY_OFF);
hayeswangbeb330a2013-04-01 22:23:39 +00004949 break;
Hayes Wange542a222011-07-06 15:58:04 +08004950 default:
4951 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
4952 break;
4953 }
4954}
4955
Hayes Wang92fc43b2011-07-06 15:58:03 +08004956static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4957{
Timo Teräs9fba0812013-01-15 21:01:24 +00004958 tp->dirty_tx = tp->cur_tx = tp->cur_rx = 0;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004959}
4960
Francois Romieud58d46b2011-05-03 16:38:29 +02004961static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
4962{
françois romieu9c5028e2012-03-02 04:43:14 +00004963 void __iomem *ioaddr = tp->mmio_addr;
4964
4965 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004966 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00004967 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004968}
4969
4970static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
4971{
françois romieu9c5028e2012-03-02 04:43:14 +00004972 void __iomem *ioaddr = tp->mmio_addr;
4973
4974 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004975 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00004976 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004977}
4978
4979static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
4980{
4981 void __iomem *ioaddr = tp->mmio_addr;
4982
4983 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4984 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01004985 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02004986}
4987
4988static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
4989{
4990 void __iomem *ioaddr = tp->mmio_addr;
4991
4992 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4993 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
4994 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
4995}
4996
4997static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
4998{
4999 void __iomem *ioaddr = tp->mmio_addr;
5000
5001 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5002}
5003
5004static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
5005{
5006 void __iomem *ioaddr = tp->mmio_addr;
5007
5008 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5009}
5010
5011static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
5012{
5013 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005014
5015 RTL_W8(MaxTxPacketSize, 0x3f);
5016 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
5017 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005018 rtl_tx_performance_tweak(tp->pci_dev, PCI_EXP_DEVCTL_READRQ_512B);
Francois Romieud58d46b2011-05-03 16:38:29 +02005019}
5020
5021static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
5022{
5023 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02005024
5025 RTL_W8(MaxTxPacketSize, 0x0c);
5026 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
5027 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01005028 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02005029}
5030
5031static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
5032{
5033 rtl_tx_performance_tweak(tp->pci_dev,
Rafał Miłeckif65d5392015-01-26 18:06:31 +01005034 PCI_EXP_DEVCTL_READRQ_512B | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieud58d46b2011-05-03 16:38:29 +02005035}
5036
5037static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
5038{
5039 rtl_tx_performance_tweak(tp->pci_dev,
5040 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
5041}
5042
5043static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
5044{
5045 void __iomem *ioaddr = tp->mmio_addr;
5046
5047 r8168b_0_hw_jumbo_enable(tp);
5048
5049 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
5050}
5051
5052static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
5053{
5054 void __iomem *ioaddr = tp->mmio_addr;
5055
5056 r8168b_0_hw_jumbo_disable(tp);
5057
5058 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
5059}
5060
Bill Pembertonbaf63292012-12-03 09:23:28 -05005061static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
Francois Romieud58d46b2011-05-03 16:38:29 +02005062{
5063 struct jumbo_ops *ops = &tp->jumbo_ops;
5064
5065 switch (tp->mac_version) {
5066 case RTL_GIGA_MAC_VER_11:
5067 ops->disable = r8168b_0_hw_jumbo_disable;
5068 ops->enable = r8168b_0_hw_jumbo_enable;
5069 break;
5070 case RTL_GIGA_MAC_VER_12:
5071 case RTL_GIGA_MAC_VER_17:
5072 ops->disable = r8168b_1_hw_jumbo_disable;
5073 ops->enable = r8168b_1_hw_jumbo_enable;
5074 break;
5075 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
5076 case RTL_GIGA_MAC_VER_19:
5077 case RTL_GIGA_MAC_VER_20:
5078 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
5079 case RTL_GIGA_MAC_VER_22:
5080 case RTL_GIGA_MAC_VER_23:
5081 case RTL_GIGA_MAC_VER_24:
5082 case RTL_GIGA_MAC_VER_25:
5083 case RTL_GIGA_MAC_VER_26:
5084 ops->disable = r8168c_hw_jumbo_disable;
5085 ops->enable = r8168c_hw_jumbo_enable;
5086 break;
5087 case RTL_GIGA_MAC_VER_27:
5088 case RTL_GIGA_MAC_VER_28:
5089 ops->disable = r8168dp_hw_jumbo_disable;
5090 ops->enable = r8168dp_hw_jumbo_enable;
5091 break;
5092 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
5093 case RTL_GIGA_MAC_VER_32:
5094 case RTL_GIGA_MAC_VER_33:
5095 case RTL_GIGA_MAC_VER_34:
5096 ops->disable = r8168e_hw_jumbo_disable;
5097 ops->enable = r8168e_hw_jumbo_enable;
5098 break;
5099
5100 /*
5101 * No action needed for jumbo frames with 8169.
5102 * No jumbo for 810x at all.
5103 */
Hayes Wangc5583862012-07-02 17:23:22 +08005104 case RTL_GIGA_MAC_VER_40:
5105 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00005106 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00005107 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08005108 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005109 case RTL_GIGA_MAC_VER_45:
5110 case RTL_GIGA_MAC_VER_46:
5111 case RTL_GIGA_MAC_VER_47:
5112 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005113 case RTL_GIGA_MAC_VER_49:
5114 case RTL_GIGA_MAC_VER_50:
5115 case RTL_GIGA_MAC_VER_51:
Francois Romieud58d46b2011-05-03 16:38:29 +02005116 default:
5117 ops->disable = NULL;
5118 ops->enable = NULL;
5119 break;
5120 }
5121}
5122
Francois Romieuffc46952012-07-06 14:19:23 +02005123DECLARE_RTL_COND(rtl_chipcmd_cond)
5124{
5125 void __iomem *ioaddr = tp->mmio_addr;
5126
5127 return RTL_R8(ChipCmd) & CmdReset;
5128}
5129
Francois Romieu6f43adc2011-04-29 15:05:51 +02005130static void rtl_hw_reset(struct rtl8169_private *tp)
5131{
5132 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu6f43adc2011-04-29 15:05:51 +02005133
Francois Romieu6f43adc2011-04-29 15:05:51 +02005134 RTL_W8(ChipCmd, CmdReset);
5135
Francois Romieuffc46952012-07-06 14:19:23 +02005136 rtl_udelay_loop_wait_low(tp, &rtl_chipcmd_cond, 100, 100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02005137}
5138
Francois Romieub6ffd972011-06-17 17:00:05 +02005139static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
5140{
5141 struct rtl_fw *rtl_fw;
5142 const char *name;
5143 int rc = -ENOMEM;
5144
5145 name = rtl_lookup_firmware_name(tp);
5146 if (!name)
5147 goto out_no_firmware;
5148
5149 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
5150 if (!rtl_fw)
5151 goto err_warn;
5152
5153 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
5154 if (rc < 0)
5155 goto err_free;
5156
Francois Romieufd112f22011-06-18 00:10:29 +02005157 rc = rtl_check_firmware(tp, rtl_fw);
5158 if (rc < 0)
5159 goto err_release_firmware;
5160
Francois Romieub6ffd972011-06-17 17:00:05 +02005161 tp->rtl_fw = rtl_fw;
5162out:
5163 return;
5164
Francois Romieufd112f22011-06-18 00:10:29 +02005165err_release_firmware:
5166 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02005167err_free:
5168 kfree(rtl_fw);
5169err_warn:
5170 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
5171 name, rc);
5172out_no_firmware:
5173 tp->rtl_fw = NULL;
5174 goto out;
5175}
5176
François Romieu953a12c2011-04-24 17:38:48 +02005177static void rtl_request_firmware(struct rtl8169_private *tp)
5178{
Francois Romieub6ffd972011-06-17 17:00:05 +02005179 if (IS_ERR(tp->rtl_fw))
5180 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02005181}
5182
Hayes Wang92fc43b2011-07-06 15:58:03 +08005183static void rtl_rx_close(struct rtl8169_private *tp)
5184{
5185 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08005186
Francois Romieu1687b562011-07-19 17:21:29 +02005187 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005188}
5189
Francois Romieuffc46952012-07-06 14:19:23 +02005190DECLARE_RTL_COND(rtl_npq_cond)
5191{
5192 void __iomem *ioaddr = tp->mmio_addr;
5193
5194 return RTL_R8(TxPoll) & NPQ;
5195}
5196
5197DECLARE_RTL_COND(rtl_txcfg_empty_cond)
5198{
5199 void __iomem *ioaddr = tp->mmio_addr;
5200
5201 return RTL_R32(TxConfig) & TXCFG_EMPTY;
5202}
5203
françois romieue6de30d2011-01-03 15:08:37 +00005204static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205{
françois romieue6de30d2011-01-03 15:08:37 +00005206 void __iomem *ioaddr = tp->mmio_addr;
5207
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00005209 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210
Hayes Wang92fc43b2011-07-06 15:58:03 +08005211 rtl_rx_close(tp);
5212
Hayes Wang5d2e1952011-02-22 17:26:22 +08005213 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00005214 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
5215 tp->mac_version == RTL_GIGA_MAC_VER_31) {
Francois Romieuffc46952012-07-06 14:19:23 +02005216 rtl_udelay_loop_wait_low(tp, &rtl_npq_cond, 20, 42*42);
Hayes Wangc2218922011-09-06 16:55:18 +08005217 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08005218 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
5219 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
5220 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
5221 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
5222 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
5223 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
5224 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
5225 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
5226 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
5227 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
5228 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
5229 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08005230 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
5231 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
5232 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
5233 tp->mac_version == RTL_GIGA_MAC_VER_51) {
David S. Miller8decf862011-09-22 03:23:13 -04005234 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Francois Romieuffc46952012-07-06 14:19:23 +02005235 rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666);
Hayes Wang92fc43b2011-07-06 15:58:03 +08005236 } else {
5237 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
5238 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00005239 }
5240
Hayes Wang92fc43b2011-07-06 15:58:03 +08005241 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242}
5243
Francois Romieu7f796d832007-06-11 23:04:41 +02005244static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005245{
5246 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01005247
5248 /* Set DMA burst size and Interframe Gap Time */
5249 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
5250 (InterFrameGap << TxInterFrameGapShift));
5251}
5252
Francois Romieu07ce4062007-02-23 23:36:39 +01005253static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254{
5255 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256
Francois Romieu07ce4062007-02-23 23:36:39 +01005257 tp->hw_start(dev);
5258
Francois Romieuda78dbf2012-01-26 14:18:23 +01005259 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01005260}
5261
Francois Romieu7f796d832007-06-11 23:04:41 +02005262static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
5263 void __iomem *ioaddr)
5264{
5265 /*
5266 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
5267 * register to be written before TxDescAddrLow to work.
5268 * Switching from MMIO to I/O access fixes the issue as well.
5269 */
5270 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005271 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005272 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07005273 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02005274}
5275
5276static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
5277{
5278 u16 cmd;
5279
5280 cmd = RTL_R16(CPlusCmd);
5281 RTL_W16(CPlusCmd, cmd);
5282 return cmd;
5283}
5284
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07005285static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02005286{
5287 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00005288 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02005289}
5290
Francois Romieu6dccd162007-02-13 23:38:05 +01005291static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
5292{
Francois Romieu37441002011-06-17 22:58:54 +02005293 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01005294 u32 mac_version;
5295 u32 clk;
5296 u32 val;
5297 } cfg2_info [] = {
5298 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
5299 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
5300 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
5301 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02005302 };
5303 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01005304 unsigned int i;
5305 u32 clk;
5306
5307 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01005308 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01005309 if ((p->mac_version == mac_version) && (p->clk == clk)) {
5310 RTL_W32(0x7c, p->val);
5311 break;
5312 }
5313 }
5314}
5315
Francois Romieue6b763e2012-03-08 09:35:39 +01005316static void rtl_set_rx_mode(struct net_device *dev)
5317{
5318 struct rtl8169_private *tp = netdev_priv(dev);
5319 void __iomem *ioaddr = tp->mmio_addr;
5320 u32 mc_filter[2]; /* Multicast hash filter */
5321 int rx_mode;
5322 u32 tmp = 0;
5323
5324 if (dev->flags & IFF_PROMISC) {
5325 /* Unconditionally log net taps. */
5326 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
5327 rx_mode =
5328 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
5329 AcceptAllPhys;
5330 mc_filter[1] = mc_filter[0] = 0xffffffff;
5331 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
5332 (dev->flags & IFF_ALLMULTI)) {
5333 /* Too many to filter perfectly -- accept all multicasts. */
5334 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
5335 mc_filter[1] = mc_filter[0] = 0xffffffff;
5336 } else {
5337 struct netdev_hw_addr *ha;
5338
5339 rx_mode = AcceptBroadcast | AcceptMyPhys;
5340 mc_filter[1] = mc_filter[0] = 0;
5341 netdev_for_each_mc_addr(ha, dev) {
5342 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
5343 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
5344 rx_mode |= AcceptMulticast;
5345 }
5346 }
5347
5348 if (dev->features & NETIF_F_RXALL)
5349 rx_mode |= (AcceptErr | AcceptRunt);
5350
5351 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
5352
5353 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
5354 u32 data = mc_filter[0];
5355
5356 mc_filter[0] = swab32(mc_filter[1]);
5357 mc_filter[1] = swab32(data);
5358 }
5359
Nathan Walp04817762012-11-01 12:08:47 +00005360 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
5361 mc_filter[1] = mc_filter[0] = 0xffffffff;
5362
Francois Romieue6b763e2012-03-08 09:35:39 +01005363 RTL_W32(MAR0 + 4, mc_filter[1]);
5364 RTL_W32(MAR0 + 0, mc_filter[0]);
5365
5366 RTL_W32(RxConfig, tmp);
5367}
5368
Francois Romieu07ce4062007-02-23 23:36:39 +01005369static void rtl_hw_start_8169(struct net_device *dev)
5370{
5371 struct rtl8169_private *tp = netdev_priv(dev);
5372 void __iomem *ioaddr = tp->mmio_addr;
5373 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01005374
Francois Romieu9cb427b2006-11-02 00:10:16 +01005375 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
5376 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
5377 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
5378 }
5379
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02005381 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5382 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5383 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5384 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01005385 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5386
Hayes Wange542a222011-07-06 15:58:04 +08005387 rtl_init_rxcfg(tp);
5388
françois romieuf0298f82011-01-03 15:07:42 +00005389 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005391 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392
Francois Romieucecb5fd2011-04-01 10:21:07 +02005393 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
5394 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5395 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
5396 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02005397 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398
Francois Romieu7f796d832007-06-11 23:04:41 +02005399 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005400
Francois Romieucecb5fd2011-04-01 10:21:07 +02005401 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
5402 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005403 dprintk("Set MAC Reg C+CR Offset 0xe0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02005405 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406 }
5407
Francois Romieubcf0bf92006-07-26 23:14:13 +02005408 RTL_W16(CPlusCmd, tp->cp_cmd);
5409
Francois Romieu6dccd162007-02-13 23:38:05 +01005410 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
5411
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 /*
5413 * Undocumented corner. Supposedly:
5414 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
5415 */
5416 RTL_W16(IntrMitigate, 0x0000);
5417
Francois Romieu7f796d832007-06-11 23:04:41 +02005418 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01005419
Francois Romieucecb5fd2011-04-01 10:21:07 +02005420 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
5421 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
5422 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
5423 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02005424 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5425 rtl_set_rx_tx_config_registers(tp);
5426 }
5427
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02005429
5430 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
5431 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
5433 RTL_W32(RxMissed, 0);
5434
Francois Romieu07ce4062007-02-23 23:36:39 +01005435 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436
5437 /* no early-rx interrupts */
Chun-Hao Lin05b96872014-10-01 23:17:12 +08005438 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005439}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005441static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
5442{
5443 if (tp->csi_ops.write)
Francois Romieu52989f02012-07-06 13:37:00 +02005444 tp->csi_ops.write(tp, addr, value);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005445}
5446
5447static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
5448{
Francois Romieu52989f02012-07-06 13:37:00 +02005449 return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005450}
5451
5452static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02005453{
5454 u32 csi;
5455
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005456 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
5457 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00005458}
5459
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005460static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005461{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005462 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00005463}
5464
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005465static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00005466{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005467 rtl_csi_access_enable(tp, 0x27000000);
5468}
5469
Francois Romieuffc46952012-07-06 14:19:23 +02005470DECLARE_RTL_COND(rtl_csiar_cond)
5471{
5472 void __iomem *ioaddr = tp->mmio_addr;
5473
5474 return RTL_R32(CSIAR) & CSIAR_FLAG;
5475}
5476
Francois Romieu52989f02012-07-06 13:37:00 +02005477static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005478{
Francois Romieu52989f02012-07-06 13:37:00 +02005479 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005480
5481 RTL_W32(CSIDR, value);
5482 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5483 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5484
Francois Romieuffc46952012-07-06 14:19:23 +02005485 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005486}
5487
Francois Romieu52989f02012-07-06 13:37:00 +02005488static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005489{
Francois Romieu52989f02012-07-06 13:37:00 +02005490 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005491
5492 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
5493 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5494
Francois Romieuffc46952012-07-06 14:19:23 +02005495 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5496 RTL_R32(CSIDR) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005497}
5498
Francois Romieu52989f02012-07-06 13:37:00 +02005499static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005500{
Francois Romieu52989f02012-07-06 13:37:00 +02005501 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005502
5503 RTL_W32(CSIDR, value);
5504 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5505 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5506 CSIAR_FUNC_NIC);
5507
Francois Romieuffc46952012-07-06 14:19:23 +02005508 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wang7e18dca2012-03-30 14:33:02 +08005509}
5510
Francois Romieu52989f02012-07-06 13:37:00 +02005511static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wang7e18dca2012-03-30 14:33:02 +08005512{
Francois Romieu52989f02012-07-06 13:37:00 +02005513 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005514
5515 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
5516 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5517
Francois Romieuffc46952012-07-06 14:19:23 +02005518 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5519 RTL_R32(CSIDR) : ~0;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005520}
5521
hayeswang45dd95c2013-07-08 17:09:01 +08005522static void r8411_csi_write(struct rtl8169_private *tp, int addr, int value)
5523{
5524 void __iomem *ioaddr = tp->mmio_addr;
5525
5526 RTL_W32(CSIDR, value);
5527 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
5528 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
5529 CSIAR_FUNC_NIC2);
5530
5531 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
5532}
5533
5534static u32 r8411_csi_read(struct rtl8169_private *tp, int addr)
5535{
5536 void __iomem *ioaddr = tp->mmio_addr;
5537
5538 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC2 |
5539 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
5540
5541 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
5542 RTL_R32(CSIDR) : ~0;
5543}
5544
Bill Pembertonbaf63292012-12-03 09:23:28 -05005545static void rtl_init_csi_ops(struct rtl8169_private *tp)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005546{
5547 struct csi_ops *ops = &tp->csi_ops;
5548
5549 switch (tp->mac_version) {
5550 case RTL_GIGA_MAC_VER_01:
5551 case RTL_GIGA_MAC_VER_02:
5552 case RTL_GIGA_MAC_VER_03:
5553 case RTL_GIGA_MAC_VER_04:
5554 case RTL_GIGA_MAC_VER_05:
5555 case RTL_GIGA_MAC_VER_06:
5556 case RTL_GIGA_MAC_VER_10:
5557 case RTL_GIGA_MAC_VER_11:
5558 case RTL_GIGA_MAC_VER_12:
5559 case RTL_GIGA_MAC_VER_13:
5560 case RTL_GIGA_MAC_VER_14:
5561 case RTL_GIGA_MAC_VER_15:
5562 case RTL_GIGA_MAC_VER_16:
5563 case RTL_GIGA_MAC_VER_17:
5564 ops->write = NULL;
5565 ops->read = NULL;
5566 break;
5567
Hayes Wang7e18dca2012-03-30 14:33:02 +08005568 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005569 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08005570 ops->write = r8402_csi_write;
5571 ops->read = r8402_csi_read;
5572 break;
5573
hayeswang45dd95c2013-07-08 17:09:01 +08005574 case RTL_GIGA_MAC_VER_44:
5575 ops->write = r8411_csi_write;
5576 ops->read = r8411_csi_read;
5577 break;
5578
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005579 default:
5580 ops->write = r8169_csi_write;
5581 ops->read = r8169_csi_read;
5582 break;
5583 }
Francois Romieudacf8152008-08-02 20:44:13 +02005584}
5585
5586struct ephy_info {
5587 unsigned int offset;
5588 u16 mask;
5589 u16 bits;
5590};
5591
Francois Romieufdf6fc02012-07-06 22:40:38 +02005592static void rtl_ephy_init(struct rtl8169_private *tp, const struct ephy_info *e,
5593 int len)
Francois Romieudacf8152008-08-02 20:44:13 +02005594{
5595 u16 w;
5596
5597 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02005598 w = (rtl_ephy_read(tp, e->offset) & ~e->mask) | e->bits;
5599 rtl_ephy_write(tp, e->offset, w);
Francois Romieudacf8152008-08-02 20:44:13 +02005600 e++;
5601 }
5602}
5603
Francois Romieub726e492008-06-28 12:22:59 +02005604static void rtl_disable_clock_request(struct pci_dev *pdev)
5605{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005606 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL,
5607 PCI_EXP_LNKCTL_CLKREQ_EN);
Francois Romieub726e492008-06-28 12:22:59 +02005608}
5609
françois romieue6de30d2011-01-03 15:08:37 +00005610static void rtl_enable_clock_request(struct pci_dev *pdev)
5611{
Jiang Liu7d7903b2012-07-24 17:20:16 +08005612 pcie_capability_set_word(pdev, PCI_EXP_LNKCTL,
5613 PCI_EXP_LNKCTL_CLKREQ_EN);
françois romieue6de30d2011-01-03 15:08:37 +00005614}
5615
hayeswangb51ecea2014-07-09 14:52:51 +08005616static void rtl_pcie_state_l2l3_enable(struct rtl8169_private *tp, bool enable)
5617{
5618 void __iomem *ioaddr = tp->mmio_addr;
5619 u8 data;
5620
5621 data = RTL_R8(Config3);
5622
5623 if (enable)
5624 data |= Rdy_to_L23;
5625 else
5626 data &= ~Rdy_to_L23;
5627
5628 RTL_W8(Config3, data);
5629}
5630
Francois Romieub726e492008-06-28 12:22:59 +02005631#define R8168_CPCMD_QUIRK_MASK (\
5632 EnableBist | \
5633 Mac_dbgo_oe | \
5634 Force_half_dup | \
5635 Force_rxflow_en | \
5636 Force_txflow_en | \
5637 Cxpl_dbg_sel | \
5638 ASF | \
5639 PktCntrDisable | \
5640 Mac_dbgo_sel)
5641
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005642static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005643{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005644 void __iomem *ioaddr = tp->mmio_addr;
5645 struct pci_dev *pdev = tp->pci_dev;
5646
Francois Romieub726e492008-06-28 12:22:59 +02005647 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5648
5649 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5650
françois romieufaf1e782013-02-27 13:01:57 +00005651 if (tp->dev->mtu <= ETH_DATA_LEN) {
5652 rtl_tx_performance_tweak(pdev, (0x5 << MAX_READ_REQUEST_SHIFT) |
5653 PCI_EXP_DEVCTL_NOSNOOP_EN);
5654 }
Francois Romieu219a1e92008-06-28 11:58:39 +02005655}
5656
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005657static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005658{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005659 void __iomem *ioaddr = tp->mmio_addr;
5660
5661 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005662
françois romieuf0298f82011-01-03 15:07:42 +00005663 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02005664
5665 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02005666}
5667
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005668static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005669{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005670 void __iomem *ioaddr = tp->mmio_addr;
5671 struct pci_dev *pdev = tp->pci_dev;
5672
Francois Romieub726e492008-06-28 12:22:59 +02005673 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
5674
5675 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5676
françois romieufaf1e782013-02-27 13:01:57 +00005677 if (tp->dev->mtu <= ETH_DATA_LEN)
5678 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02005679
5680 rtl_disable_clock_request(pdev);
5681
5682 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02005683}
5684
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005685static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005686{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005687 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005688 { 0x01, 0, 0x0001 },
5689 { 0x02, 0x0800, 0x1000 },
5690 { 0x03, 0, 0x0042 },
5691 { 0x06, 0x0080, 0x0000 },
5692 { 0x07, 0, 0x2000 }
5693 };
5694
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005695 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005696
Francois Romieufdf6fc02012-07-06 22:40:38 +02005697 rtl_ephy_init(tp, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
Francois Romieub726e492008-06-28 12:22:59 +02005698
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005699 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005700}
5701
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005702static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02005703{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005704 void __iomem *ioaddr = tp->mmio_addr;
5705 struct pci_dev *pdev = tp->pci_dev;
5706
5707 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02005708
5709 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5710
françois romieufaf1e782013-02-27 13:01:57 +00005711 if (tp->dev->mtu <= ETH_DATA_LEN)
5712 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieuef3386f2008-06-29 12:24:30 +02005713
5714 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5715}
5716
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005717static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005718{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005719 void __iomem *ioaddr = tp->mmio_addr;
5720 struct pci_dev *pdev = tp->pci_dev;
5721
5722 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005723
5724 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5725
5726 /* Magic. */
5727 RTL_W8(DBG_REG, 0x20);
5728
françois romieuf0298f82011-01-03 15:07:42 +00005729 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005730
françois romieufaf1e782013-02-27 13:01:57 +00005731 if (tp->dev->mtu <= ETH_DATA_LEN)
5732 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005733
5734 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5735}
5736
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005737static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005738{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005739 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005740 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005741 { 0x02, 0x0800, 0x1000 },
5742 { 0x03, 0, 0x0002 },
5743 { 0x06, 0x0080, 0x0000 }
5744 };
5745
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005746 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005747
5748 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
5749
Francois Romieufdf6fc02012-07-06 22:40:38 +02005750 rtl_ephy_init(tp, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
Francois Romieub726e492008-06-28 12:22:59 +02005751
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005752 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005753}
5754
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005755static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02005756{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005757 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02005758 { 0x01, 0, 0x0001 },
5759 { 0x03, 0x0400, 0x0220 }
5760 };
5761
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005762 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02005763
Francois Romieufdf6fc02012-07-06 22:40:38 +02005764 rtl_ephy_init(tp, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
Francois Romieub726e492008-06-28 12:22:59 +02005765
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005766 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02005767}
5768
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005769static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02005770{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005771 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02005772}
5773
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005774static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02005775{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005776 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005777
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005778 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02005779}
5780
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005781static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02005782{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005783 void __iomem *ioaddr = tp->mmio_addr;
5784 struct pci_dev *pdev = tp->pci_dev;
5785
5786 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02005787
5788 rtl_disable_clock_request(pdev);
5789
françois romieuf0298f82011-01-03 15:07:42 +00005790 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02005791
françois romieufaf1e782013-02-27 13:01:57 +00005792 if (tp->dev->mtu <= ETH_DATA_LEN)
5793 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu5b538df2008-07-20 16:22:45 +02005794
5795 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5796}
5797
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005798static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00005799{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005800 void __iomem *ioaddr = tp->mmio_addr;
5801 struct pci_dev *pdev = tp->pci_dev;
5802
5803 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005804
françois romieufaf1e782013-02-27 13:01:57 +00005805 if (tp->dev->mtu <= ETH_DATA_LEN)
5806 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang4804b3b2011-03-21 01:50:29 +00005807
5808 RTL_W8(MaxTxPacketSize, TxPacketMax);
5809
5810 rtl_disable_clock_request(pdev);
5811}
5812
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005813static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005814{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005815 void __iomem *ioaddr = tp->mmio_addr;
5816 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00005817 static const struct ephy_info e_info_8168d_4[] = {
Chun-Hao Lin1016a4a2015-12-29 22:13:39 +08005818 { 0x0b, 0x0000, 0x0048 },
5819 { 0x19, 0x0020, 0x0050 },
5820 { 0x0c, 0x0100, 0x0020 }
françois romieue6de30d2011-01-03 15:08:37 +00005821 };
françois romieue6de30d2011-01-03 15:08:37 +00005822
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005823 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00005824
5825 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5826
5827 RTL_W8(MaxTxPacketSize, TxPacketMax);
5828
Chun-Hao Lin1016a4a2015-12-29 22:13:39 +08005829 rtl_ephy_init(tp, e_info_8168d_4, ARRAY_SIZE(e_info_8168d_4));
françois romieue6de30d2011-01-03 15:08:37 +00005830
5831 rtl_enable_clock_request(pdev);
5832}
5833
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005834static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00005835{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005836 void __iomem *ioaddr = tp->mmio_addr;
5837 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005838 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00005839 { 0x00, 0x0200, 0x0100 },
5840 { 0x00, 0x0000, 0x0004 },
5841 { 0x06, 0x0002, 0x0001 },
5842 { 0x06, 0x0000, 0x0030 },
5843 { 0x07, 0x0000, 0x2000 },
5844 { 0x00, 0x0000, 0x0020 },
5845 { 0x03, 0x5800, 0x2000 },
5846 { 0x03, 0x0000, 0x0001 },
5847 { 0x01, 0x0800, 0x1000 },
5848 { 0x07, 0x0000, 0x4000 },
5849 { 0x1e, 0x0000, 0x2000 },
5850 { 0x19, 0xffff, 0xfe6c },
5851 { 0x0a, 0x0000, 0x0040 }
5852 };
5853
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005854 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005855
Francois Romieufdf6fc02012-07-06 22:40:38 +02005856 rtl_ephy_init(tp, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00005857
françois romieufaf1e782013-02-27 13:01:57 +00005858 if (tp->dev->mtu <= ETH_DATA_LEN)
5859 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang01dc7fe2011-03-21 01:50:28 +00005860
5861 RTL_W8(MaxTxPacketSize, TxPacketMax);
5862
5863 rtl_disable_clock_request(pdev);
5864
5865 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02005866 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
5867 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00005868
Francois Romieucecb5fd2011-04-01 10:21:07 +02005869 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00005870}
5871
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005872static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08005873{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005874 void __iomem *ioaddr = tp->mmio_addr;
5875 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005876 static const struct ephy_info e_info_8168e_2[] = {
5877 { 0x09, 0x0000, 0x0080 },
5878 { 0x19, 0x0000, 0x0224 }
5879 };
5880
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005881 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005882
Francois Romieufdf6fc02012-07-06 22:40:38 +02005883 rtl_ephy_init(tp, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
Hayes Wang70090422011-07-06 15:58:06 +08005884
françois romieufaf1e782013-02-27 13:01:57 +00005885 if (tp->dev->mtu <= ETH_DATA_LEN)
5886 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Hayes Wang70090422011-07-06 15:58:06 +08005887
Francois Romieufdf6fc02012-07-06 22:40:38 +02005888 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5889 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5890 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5891 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5892 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5893 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005894 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5895 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08005896
Hayes Wang3090bd92011-09-06 16:55:15 +08005897 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08005898
Francois Romieu4521e1a92012-11-01 16:46:28 +00005899 rtl_disable_clock_request(pdev);
5900
Hayes Wang70090422011-07-06 15:58:06 +08005901 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5902 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5903
5904 /* Adjust EEE LED frequency */
5905 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5906
5907 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
5908 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005909 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wang70090422011-07-06 15:58:06 +08005910}
5911
Hayes Wang5f886e02012-03-30 14:33:03 +08005912static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08005913{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005914 void __iomem *ioaddr = tp->mmio_addr;
5915 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08005916
Hayes Wang5f886e02012-03-30 14:33:03 +08005917 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005918
5919 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5920
Francois Romieufdf6fc02012-07-06 22:40:38 +02005921 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5922 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5923 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5924 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005925 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5926 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5927 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5928 rtl_w0w1_eri(tp, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02005929 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5930 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08005931
5932 RTL_W8(MaxTxPacketSize, EarlySize);
5933
Francois Romieu4521e1a92012-11-01 16:46:28 +00005934 rtl_disable_clock_request(pdev);
5935
Hayes Wangc2218922011-09-06 16:55:18 +08005936 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5937 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08005938 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005939 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
5940 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wangc2218922011-09-06 16:55:18 +08005941}
5942
Hayes Wang5f886e02012-03-30 14:33:03 +08005943static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
5944{
5945 void __iomem *ioaddr = tp->mmio_addr;
5946 static const struct ephy_info e_info_8168f_1[] = {
5947 { 0x06, 0x00c0, 0x0020 },
5948 { 0x08, 0x0001, 0x0002 },
5949 { 0x09, 0x0000, 0x0080 },
5950 { 0x19, 0x0000, 0x0224 }
5951 };
5952
5953 rtl_hw_start_8168f(tp);
5954
Francois Romieufdf6fc02012-07-06 22:40:38 +02005955 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wang5f886e02012-03-30 14:33:03 +08005956
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005957 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang5f886e02012-03-30 14:33:03 +08005958
5959 /* Adjust EEE LED frequency */
5960 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5961}
5962
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005963static void rtl_hw_start_8411(struct rtl8169_private *tp)
5964{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005965 static const struct ephy_info e_info_8168f_1[] = {
5966 { 0x06, 0x00c0, 0x0020 },
5967 { 0x0f, 0xffff, 0x5200 },
5968 { 0x1e, 0x0000, 0x4000 },
5969 { 0x19, 0x0000, 0x0224 }
5970 };
5971
5972 rtl_hw_start_8168f(tp);
hayeswangb51ecea2014-07-09 14:52:51 +08005973 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005974
Francois Romieufdf6fc02012-07-06 22:40:38 +02005975 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005976
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005977 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005978}
5979
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08005980static void rtl_hw_start_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08005981{
5982 void __iomem *ioaddr = tp->mmio_addr;
5983 struct pci_dev *pdev = tp->pci_dev;
5984
hayeswangbeb330a2013-04-01 22:23:39 +00005985 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5986
Hayes Wangc5583862012-07-02 17:23:22 +08005987 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x080002, ERIAR_EXGMAC);
5988 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
5989 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
5990 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5991
5992 rtl_csi_access_enable_1(tp);
5993
5994 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5995
Chun-Hao Lin706123d2014-10-01 23:17:18 +08005996 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5997 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
hayeswangbeb330a2013-04-01 22:23:39 +00005998 rtl_eri_write(tp, 0x2f8, ERIAR_MASK_0011, 0x1d8f, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08005999
Francois Romieu4521e1a92012-11-01 16:46:28 +00006000 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
Hayes Wangc5583862012-07-02 17:23:22 +08006001 RTL_W8(MaxTxPacketSize, EarlySize);
6002
6003 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6004 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6005
6006 /* Adjust EEE LED frequency */
6007 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6008
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006009 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6010 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006011
6012 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wangc5583862012-07-02 17:23:22 +08006013}
6014
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006015static void rtl_hw_start_8168g_1(struct rtl8169_private *tp)
6016{
6017 void __iomem *ioaddr = tp->mmio_addr;
6018 static const struct ephy_info e_info_8168g_1[] = {
6019 { 0x00, 0x0000, 0x0008 },
6020 { 0x0c, 0x37d0, 0x0820 },
6021 { 0x1e, 0x0000, 0x0001 },
6022 { 0x19, 0x8000, 0x0000 }
6023 };
6024
6025 rtl_hw_start_8168g(tp);
6026
6027 /* disable aspm and clock request before access ephy */
6028 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6029 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6030 rtl_ephy_init(tp, e_info_8168g_1, ARRAY_SIZE(e_info_8168g_1));
6031}
6032
hayeswang57538c42013-04-01 22:23:40 +00006033static void rtl_hw_start_8168g_2(struct rtl8169_private *tp)
6034{
6035 void __iomem *ioaddr = tp->mmio_addr;
6036 static const struct ephy_info e_info_8168g_2[] = {
6037 { 0x00, 0x0000, 0x0008 },
6038 { 0x0c, 0x3df0, 0x0200 },
6039 { 0x19, 0xffff, 0xfc00 },
6040 { 0x1e, 0xffff, 0x20eb }
6041 };
6042
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006043 rtl_hw_start_8168g(tp);
hayeswang57538c42013-04-01 22:23:40 +00006044
6045 /* disable aspm and clock request before access ephy */
6046 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6047 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6048 rtl_ephy_init(tp, e_info_8168g_2, ARRAY_SIZE(e_info_8168g_2));
6049}
6050
hayeswang45dd95c2013-07-08 17:09:01 +08006051static void rtl_hw_start_8411_2(struct rtl8169_private *tp)
6052{
6053 void __iomem *ioaddr = tp->mmio_addr;
6054 static const struct ephy_info e_info_8411_2[] = {
6055 { 0x00, 0x0000, 0x0008 },
6056 { 0x0c, 0x3df0, 0x0200 },
6057 { 0x0f, 0xffff, 0x5200 },
6058 { 0x19, 0x0020, 0x0000 },
6059 { 0x1e, 0x0000, 0x2000 }
6060 };
6061
Chun-Hao Lin5fbea332014-12-10 21:28:38 +08006062 rtl_hw_start_8168g(tp);
hayeswang45dd95c2013-07-08 17:09:01 +08006063
6064 /* disable aspm and clock request before access ephy */
6065 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6066 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6067 rtl_ephy_init(tp, e_info_8411_2, ARRAY_SIZE(e_info_8411_2));
6068}
6069
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006070static void rtl_hw_start_8168h_1(struct rtl8169_private *tp)
6071{
6072 void __iomem *ioaddr = tp->mmio_addr;
6073 struct pci_dev *pdev = tp->pci_dev;
Andrzej Hajda72521ea2015-09-24 16:00:24 +02006074 int rg_saw_cnt;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006075 u32 data;
6076 static const struct ephy_info e_info_8168h_1[] = {
6077 { 0x1e, 0x0800, 0x0001 },
6078 { 0x1d, 0x0000, 0x0800 },
6079 { 0x05, 0xffff, 0x2089 },
6080 { 0x06, 0xffff, 0x5881 },
6081 { 0x04, 0xffff, 0x154a },
6082 { 0x01, 0xffff, 0x068b }
6083 };
6084
6085 /* disable aspm and clock request before access ephy */
6086 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6087 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6088 rtl_ephy_init(tp, e_info_8168h_1, ARRAY_SIZE(e_info_8168h_1));
6089
6090 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6091
6092 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6093 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
6094 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
6095 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6096
6097 rtl_csi_access_enable_1(tp);
6098
6099 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6100
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006101 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6102 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006103
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006104 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_1111, 0x0010, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006105
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006106 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f00, 0x00, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006107
6108 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6109
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006110 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6111 RTL_W8(MaxTxPacketSize, EarlySize);
6112
6113 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6114 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6115
6116 /* Adjust EEE LED frequency */
6117 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6118
6119 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006120 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006121
6122 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6123
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006124 rtl_w0w1_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006125
6126 rtl_pcie_state_l2l3_enable(tp, false);
6127
6128 rtl_writephy(tp, 0x1f, 0x0c42);
Chun-Hao Lin58493332015-12-24 21:15:27 +08006129 rg_saw_cnt = (rtl_readphy(tp, 0x13) & 0x3fff);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006130 rtl_writephy(tp, 0x1f, 0x0000);
6131 if (rg_saw_cnt > 0) {
6132 u16 sw_cnt_1ms_ini;
6133
6134 sw_cnt_1ms_ini = 16000000/rg_saw_cnt;
6135 sw_cnt_1ms_ini &= 0x0fff;
6136 data = r8168_mac_ocp_read(tp, 0xd412);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006137 data &= ~0x0fff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006138 data |= sw_cnt_1ms_ini;
6139 r8168_mac_ocp_write(tp, 0xd412, data);
6140 }
6141
6142 data = r8168_mac_ocp_read(tp, 0xe056);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006143 data &= ~0xf0;
6144 data |= 0x70;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006145 r8168_mac_ocp_write(tp, 0xe056, data);
6146
6147 data = r8168_mac_ocp_read(tp, 0xe052);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006148 data &= ~0x6000;
6149 data |= 0x8008;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006150 r8168_mac_ocp_write(tp, 0xe052, data);
6151
6152 data = r8168_mac_ocp_read(tp, 0xe0d6);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006153 data &= ~0x01ff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006154 data |= 0x017f;
6155 r8168_mac_ocp_write(tp, 0xe0d6, data);
6156
6157 data = r8168_mac_ocp_read(tp, 0xd420);
Chun-Hao Lina2cb7ec2016-02-05 02:28:00 +08006158 data &= ~0x0fff;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006159 data |= 0x047f;
6160 r8168_mac_ocp_write(tp, 0xd420, data);
6161
6162 r8168_mac_ocp_write(tp, 0xe63e, 0x0001);
6163 r8168_mac_ocp_write(tp, 0xe63e, 0x0000);
6164 r8168_mac_ocp_write(tp, 0xc094, 0x0000);
6165 r8168_mac_ocp_write(tp, 0xc09e, 0x0000);
6166}
6167
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006168static void rtl_hw_start_8168ep(struct rtl8169_private *tp)
6169{
6170 void __iomem *ioaddr = tp->mmio_addr;
6171 struct pci_dev *pdev = tp->pci_dev;
6172
Chun-Hao Lin003609d2014-12-02 16:48:31 +08006173 rtl8168ep_stop_cmac(tp);
6174
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006175 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6176
6177 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x00080002, ERIAR_EXGMAC);
6178 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x2f, ERIAR_EXGMAC);
6179 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x5f, ERIAR_EXGMAC);
6180 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
6181
6182 rtl_csi_access_enable_1(tp);
6183
6184 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6185
6186 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6187 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
6188
6189 rtl_w0w1_eri(tp, 0xd4, ERIAR_MASK_1111, 0x1f80, 0x00, ERIAR_EXGMAC);
6190
6191 rtl_eri_write(tp, 0x5f0, ERIAR_MASK_0011, 0x4f87, ERIAR_EXGMAC);
6192
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006193 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
6194 RTL_W8(MaxTxPacketSize, EarlySize);
6195
6196 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6197 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6198
6199 /* Adjust EEE LED frequency */
6200 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
6201
6202 rtl_w0w1_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
6203
6204 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~TX_10M_PS_EN);
6205
6206 rtl_pcie_state_l2l3_enable(tp, false);
6207}
6208
6209static void rtl_hw_start_8168ep_1(struct rtl8169_private *tp)
6210{
6211 void __iomem *ioaddr = tp->mmio_addr;
6212 static const struct ephy_info e_info_8168ep_1[] = {
6213 { 0x00, 0xffff, 0x10ab },
6214 { 0x06, 0xffff, 0xf030 },
6215 { 0x08, 0xffff, 0x2006 },
6216 { 0x0d, 0xffff, 0x1666 },
6217 { 0x0c, 0x3ff0, 0x0000 }
6218 };
6219
6220 /* disable aspm and clock request before access ephy */
6221 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6222 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6223 rtl_ephy_init(tp, e_info_8168ep_1, ARRAY_SIZE(e_info_8168ep_1));
6224
6225 rtl_hw_start_8168ep(tp);
6226}
6227
6228static void rtl_hw_start_8168ep_2(struct rtl8169_private *tp)
6229{
6230 void __iomem *ioaddr = tp->mmio_addr;
6231 static const struct ephy_info e_info_8168ep_2[] = {
6232 { 0x00, 0xffff, 0x10a3 },
6233 { 0x19, 0xffff, 0xfc00 },
6234 { 0x1e, 0xffff, 0x20ea }
6235 };
6236
6237 /* disable aspm and clock request before access ephy */
6238 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6239 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6240 rtl_ephy_init(tp, e_info_8168ep_2, ARRAY_SIZE(e_info_8168ep_2));
6241
6242 rtl_hw_start_8168ep(tp);
6243
6244 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006245 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006246}
6247
6248static void rtl_hw_start_8168ep_3(struct rtl8169_private *tp)
6249{
6250 void __iomem *ioaddr = tp->mmio_addr;
6251 u32 data;
6252 static const struct ephy_info e_info_8168ep_3[] = {
6253 { 0x00, 0xffff, 0x10a3 },
6254 { 0x19, 0xffff, 0x7c00 },
6255 { 0x1e, 0xffff, 0x20eb },
6256 { 0x0d, 0xffff, 0x1666 }
6257 };
6258
6259 /* disable aspm and clock request before access ephy */
6260 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
6261 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
6262 rtl_ephy_init(tp, e_info_8168ep_3, ARRAY_SIZE(e_info_8168ep_3));
6263
6264 rtl_hw_start_8168ep(tp);
6265
6266 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
Chun-Hao Lin69f3dc32015-12-29 22:13:37 +08006267 RTL_W8(MISC_1, RTL_R8(MISC_1) & ~PFM_D3COLD_EN);
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006268
6269 data = r8168_mac_ocp_read(tp, 0xd3e2);
6270 data &= 0xf000;
6271 data |= 0x0271;
6272 r8168_mac_ocp_write(tp, 0xd3e2, data);
6273
6274 data = r8168_mac_ocp_read(tp, 0xd3e4);
6275 data &= 0xff00;
6276 r8168_mac_ocp_write(tp, 0xd3e4, data);
6277
6278 data = r8168_mac_ocp_read(tp, 0xe860);
6279 data |= 0x0080;
6280 r8168_mac_ocp_write(tp, 0xe860, data);
6281}
6282
Francois Romieu07ce4062007-02-23 23:36:39 +01006283static void rtl_hw_start_8168(struct net_device *dev)
6284{
Francois Romieu2dd99532007-06-11 23:22:52 +02006285 struct rtl8169_private *tp = netdev_priv(dev);
6286 void __iomem *ioaddr = tp->mmio_addr;
6287
6288 RTL_W8(Cfg9346, Cfg9346_Unlock);
6289
françois romieuf0298f82011-01-03 15:07:42 +00006290 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02006291
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006292 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02006293
Francois Romieu0e485152007-02-20 00:00:26 +01006294 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02006295
6296 RTL_W16(CPlusCmd, tp->cp_cmd);
6297
Francois Romieu0e485152007-02-20 00:00:26 +01006298 RTL_W16(IntrMitigate, 0x5151);
6299
6300 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00006301 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01006302 tp->event_slow |= RxFIFOOver | PCSTimeout;
6303 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01006304 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006305
6306 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6307
hayeswang1a964642013-04-01 22:23:41 +00006308 rtl_set_rx_tx_config_registers(tp);
Francois Romieu2dd99532007-06-11 23:22:52 +02006309
6310 RTL_R8(IntrMask);
6311
Francois Romieu219a1e92008-06-28 11:58:39 +02006312 switch (tp->mac_version) {
6313 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006314 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006315 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006316
6317 case RTL_GIGA_MAC_VER_12:
6318 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006319 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006320 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006321
6322 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006323 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006324 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006325
6326 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006327 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006328 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006329
6330 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006331 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006332 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006333
Francois Romieu197ff762008-06-28 13:16:02 +02006334 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006335 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006336 break;
Francois Romieu197ff762008-06-28 13:16:02 +02006337
Francois Romieu6fb07052008-06-29 11:54:28 +02006338 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006339 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006340 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02006341
Francois Romieuef3386f2008-06-29 12:24:30 +02006342 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006343 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006344 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02006345
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006346 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006347 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006348 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02006349
Francois Romieu5b538df2008-07-20 16:22:45 +02006350 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00006351 case RTL_GIGA_MAC_VER_26:
6352 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006353 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006354 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02006355
françois romieue6de30d2011-01-03 15:08:37 +00006356 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006357 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006358 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02006359
hayeswang4804b3b2011-03-21 01:50:29 +00006360 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006361 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00006362 break;
6363
hayeswang01dc7fe2011-03-21 01:50:28 +00006364 case RTL_GIGA_MAC_VER_32:
6365 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006366 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08006367 break;
6368 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006369 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00006370 break;
françois romieue6de30d2011-01-03 15:08:37 +00006371
Hayes Wangc2218922011-09-06 16:55:18 +08006372 case RTL_GIGA_MAC_VER_35:
6373 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006374 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08006375 break;
6376
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08006377 case RTL_GIGA_MAC_VER_38:
6378 rtl_hw_start_8411(tp);
6379 break;
6380
Hayes Wangc5583862012-07-02 17:23:22 +08006381 case RTL_GIGA_MAC_VER_40:
6382 case RTL_GIGA_MAC_VER_41:
6383 rtl_hw_start_8168g_1(tp);
6384 break;
hayeswang57538c42013-04-01 22:23:40 +00006385 case RTL_GIGA_MAC_VER_42:
6386 rtl_hw_start_8168g_2(tp);
6387 break;
Hayes Wangc5583862012-07-02 17:23:22 +08006388
hayeswang45dd95c2013-07-08 17:09:01 +08006389 case RTL_GIGA_MAC_VER_44:
6390 rtl_hw_start_8411_2(tp);
6391 break;
6392
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006393 case RTL_GIGA_MAC_VER_45:
6394 case RTL_GIGA_MAC_VER_46:
6395 rtl_hw_start_8168h_1(tp);
6396 break;
6397
Chun-Hao Lin935e2212014-10-07 15:10:41 +08006398 case RTL_GIGA_MAC_VER_49:
6399 rtl_hw_start_8168ep_1(tp);
6400 break;
6401
6402 case RTL_GIGA_MAC_VER_50:
6403 rtl_hw_start_8168ep_2(tp);
6404 break;
6405
6406 case RTL_GIGA_MAC_VER_51:
6407 rtl_hw_start_8168ep_3(tp);
6408 break;
6409
Francois Romieu219a1e92008-06-28 11:58:39 +02006410 default:
6411 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
6412 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00006413 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02006414 }
Francois Romieu2dd99532007-06-11 23:22:52 +02006415
hayeswang1a964642013-04-01 22:23:41 +00006416 RTL_W8(Cfg9346, Cfg9346_Lock);
6417
Francois Romieu0e485152007-02-20 00:00:26 +01006418 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
6419
hayeswang1a964642013-04-01 22:23:41 +00006420 rtl_set_rx_mode(dev);
Francois Romieub8363902008-06-01 12:31:57 +02006421
Chun-Hao Lin05b96872014-10-01 23:17:12 +08006422 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu07ce4062007-02-23 23:36:39 +01006423}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
Francois Romieu2857ffb2008-08-02 21:08:49 +02006425#define R810X_CPCMD_QUIRK_MASK (\
6426 EnableBist | \
6427 Mac_dbgo_oe | \
6428 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00006429 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02006430 Force_txflow_en | \
6431 Cxpl_dbg_sel | \
6432 ASF | \
6433 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006434 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006435
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006436static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006437{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006438 void __iomem *ioaddr = tp->mmio_addr;
6439 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08006440 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02006441 { 0x01, 0, 0x6e65 },
6442 { 0x02, 0, 0x091f },
6443 { 0x03, 0, 0xc2f9 },
6444 { 0x06, 0, 0xafb5 },
6445 { 0x07, 0, 0x0e00 },
6446 { 0x19, 0, 0xec80 },
6447 { 0x01, 0, 0x2e65 },
6448 { 0x01, 0, 0x6e65 }
6449 };
6450 u8 cfg1;
6451
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006452 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006453
6454 RTL_W8(DBG_REG, FIX_NAK_1);
6455
6456 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6457
6458 RTL_W8(Config1,
6459 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
6460 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
6461
6462 cfg1 = RTL_R8(Config1);
6463 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
6464 RTL_W8(Config1, cfg1 & ~LEDS0);
6465
Francois Romieufdf6fc02012-07-06 22:40:38 +02006466 rtl_ephy_init(tp, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
Francois Romieu2857ffb2008-08-02 21:08:49 +02006467}
6468
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006469static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006470{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006471 void __iomem *ioaddr = tp->mmio_addr;
6472 struct pci_dev *pdev = tp->pci_dev;
6473
6474 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006475
6476 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
6477
6478 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
6479 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006480}
6481
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006482static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02006483{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006484 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006485
Francois Romieufdf6fc02012-07-06 22:40:38 +02006486 rtl_ephy_write(tp, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006487}
6488
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006489static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006490{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006491 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006492 static const struct ephy_info e_info_8105e_1[] = {
6493 { 0x07, 0, 0x4000 },
6494 { 0x19, 0, 0x0200 },
6495 { 0x19, 0, 0x0020 },
6496 { 0x1e, 0, 0x2000 },
6497 { 0x03, 0, 0x0001 },
6498 { 0x19, 0, 0x0100 },
6499 { 0x19, 0, 0x0004 },
6500 { 0x0a, 0, 0x0020 }
6501 };
6502
Francois Romieucecb5fd2011-04-01 10:21:07 +02006503 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006504 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6505
Francois Romieucecb5fd2011-04-01 10:21:07 +02006506 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08006507 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
6508
6509 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08006510 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006511
Francois Romieufdf6fc02012-07-06 22:40:38 +02006512 rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
hayeswangb51ecea2014-07-09 14:52:51 +08006513
6514 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006515}
6516
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006517static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08006518{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006519 rtl_hw_start_8105e_1(tp);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006520 rtl_ephy_write(tp, 0x1e, rtl_ephy_read(tp, 0x1e) | 0x8000);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006521}
6522
Hayes Wang7e18dca2012-03-30 14:33:02 +08006523static void rtl_hw_start_8402(struct rtl8169_private *tp)
6524{
6525 void __iomem *ioaddr = tp->mmio_addr;
6526 static const struct ephy_info e_info_8402[] = {
6527 { 0x19, 0xffff, 0xff64 },
6528 { 0x1e, 0, 0x4000 }
6529 };
6530
6531 rtl_csi_access_enable_2(tp);
6532
6533 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6534 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6535
6536 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
6537 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6538
Francois Romieufdf6fc02012-07-06 22:40:38 +02006539 rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402));
Hayes Wang7e18dca2012-03-30 14:33:02 +08006540
6541 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
6542
Francois Romieufdf6fc02012-07-06 22:40:38 +02006543 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
6544 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006545 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
6546 rtl_w0w1_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02006547 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
6548 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Chun-Hao Lin706123d2014-10-01 23:17:18 +08006549 rtl_w0w1_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00, ERIAR_EXGMAC);
hayeswangb51ecea2014-07-09 14:52:51 +08006550
6551 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang7e18dca2012-03-30 14:33:02 +08006552}
6553
Hayes Wang5598bfe2012-07-02 17:23:21 +08006554static void rtl_hw_start_8106(struct rtl8169_private *tp)
6555{
6556 void __iomem *ioaddr = tp->mmio_addr;
6557
6558 /* Force LAN exit from ASPM if Rx/Tx are not idle */
6559 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
6560
Francois Romieu4521e1a92012-11-01 16:46:28 +00006561 RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006562 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
6563 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
hayeswangb51ecea2014-07-09 14:52:51 +08006564
6565 rtl_pcie_state_l2l3_enable(tp, false);
Hayes Wang5598bfe2012-07-02 17:23:21 +08006566}
6567
Francois Romieu07ce4062007-02-23 23:36:39 +01006568static void rtl_hw_start_8101(struct net_device *dev)
6569{
Francois Romieucdf1a602007-06-11 23:29:50 +02006570 struct rtl8169_private *tp = netdev_priv(dev);
6571 void __iomem *ioaddr = tp->mmio_addr;
6572 struct pci_dev *pdev = tp->pci_dev;
6573
Francois Romieuda78dbf2012-01-26 14:18:23 +01006574 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
6575 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00006576
Francois Romieucecb5fd2011-04-01 10:21:07 +02006577 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
Jiang Liu7d7903b2012-07-24 17:20:16 +08006578 tp->mac_version == RTL_GIGA_MAC_VER_16)
Bjorn Helgaas8200bc72012-08-22 10:29:42 -06006579 pcie_capability_set_word(pdev, PCI_EXP_DEVCTL,
6580 PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieucdf1a602007-06-11 23:29:50 +02006581
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006582 RTL_W8(Cfg9346, Cfg9346_Unlock);
6583
hayeswang1a964642013-04-01 22:23:41 +00006584 RTL_W8(MaxTxPacketSize, TxPacketMax);
6585
6586 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
6587
6588 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
6589 RTL_W16(CPlusCmd, tp->cp_cmd);
6590
6591 rtl_set_rx_tx_desc_registers(tp, ioaddr);
6592
6593 rtl_set_rx_tx_config_registers(tp);
6594
Francois Romieu2857ffb2008-08-02 21:08:49 +02006595 switch (tp->mac_version) {
6596 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006597 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006598 break;
6599
6600 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006601 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006602 break;
6603
6604 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006605 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02006606 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08006607
6608 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006609 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006610 break;
6611 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006612 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08006613 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08006614
6615 case RTL_GIGA_MAC_VER_37:
6616 rtl_hw_start_8402(tp);
6617 break;
Hayes Wang5598bfe2012-07-02 17:23:21 +08006618
6619 case RTL_GIGA_MAC_VER_39:
6620 rtl_hw_start_8106(tp);
6621 break;
hayeswang58152cd2013-04-01 22:23:42 +00006622 case RTL_GIGA_MAC_VER_43:
6623 rtl_hw_start_8168g_2(tp);
6624 break;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006625 case RTL_GIGA_MAC_VER_47:
6626 case RTL_GIGA_MAC_VER_48:
6627 rtl_hw_start_8168h_1(tp);
6628 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02006629 }
6630
Hayes Wangd24e9aa2011-02-22 17:26:19 +08006631 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02006632
Francois Romieucdf1a602007-06-11 23:29:50 +02006633 RTL_W16(IntrMitigate, 0x0000);
6634
Francois Romieucdf1a602007-06-11 23:29:50 +02006635 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieucdf1a602007-06-11 23:29:50 +02006636
Francois Romieucdf1a602007-06-11 23:29:50 +02006637 rtl_set_rx_mode(dev);
6638
hayeswang1a964642013-04-01 22:23:41 +00006639 RTL_R8(IntrMask);
6640
Francois Romieucdf1a602007-06-11 23:29:50 +02006641 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642}
6643
6644static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
6645{
Francois Romieud58d46b2011-05-03 16:38:29 +02006646 struct rtl8169_private *tp = netdev_priv(dev);
6647
6648 if (new_mtu < ETH_ZLEN ||
6649 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650 return -EINVAL;
6651
Francois Romieud58d46b2011-05-03 16:38:29 +02006652 if (new_mtu > ETH_DATA_LEN)
6653 rtl_hw_jumbo_enable(tp);
6654 else
6655 rtl_hw_jumbo_disable(tp);
6656
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00006658 netdev_update_features(dev);
6659
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661}
6662
6663static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
6664{
Al Viro95e09182007-12-22 18:55:39 +00006665 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
6667}
6668
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006669static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
6670 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006672 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006673 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006674
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006675 kfree(*data_buff);
6676 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677 rtl8169_make_unusable_by_asic(desc);
6678}
6679
6680static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
6681{
6682 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
6683
Alexander Duycka0750132014-12-11 15:02:17 -08006684 /* Force memory writes to complete before releasing descriptor */
6685 dma_wmb();
6686
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
6688}
6689
6690static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
6691 u32 rx_buf_sz)
6692{
6693 desc->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694 rtl8169_mark_to_asic(desc, rx_buf_sz);
6695}
6696
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006697static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006699 return (void *)ALIGN((long)data, 16);
6700}
6701
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006702static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
6703 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006704{
6705 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006707 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006708 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006709 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006711 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
6712 if (!data)
6713 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01006714
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006715 if (rtl8169_align(data) != data) {
6716 kfree(data);
6717 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
6718 if (!data)
6719 return NULL;
6720 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006721
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006722 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00006723 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006724 if (unlikely(dma_mapping_error(d, mapping))) {
6725 if (net_ratelimit())
6726 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006727 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729
6730 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006731 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006732
6733err_out:
6734 kfree(data);
6735 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006736}
6737
6738static void rtl8169_rx_clear(struct rtl8169_private *tp)
6739{
Francois Romieu07d3f512007-02-21 22:40:46 +01006740 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741
6742 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006743 if (tp->Rx_databuff[i]) {
6744 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006745 tp->RxDescArray + i);
6746 }
6747 }
6748}
6749
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006750static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006752 desc->opts1 |= cpu_to_le32(RingEnd);
6753}
Francois Romieu5b0384f2006-08-16 16:00:01 +02006754
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006755static int rtl8169_rx_fill(struct rtl8169_private *tp)
6756{
6757 unsigned int i;
6758
6759 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006760 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02006761
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006762 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02006764
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006765 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006766 if (!data) {
6767 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006768 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006769 }
6770 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006773 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
6774 return 0;
6775
6776err_out:
6777 rtl8169_rx_clear(tp);
6778 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779}
6780
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781static int rtl8169_init_ring(struct net_device *dev)
6782{
6783 struct rtl8169_private *tp = netdev_priv(dev);
6784
6785 rtl8169_init_ring_indexes(tp);
6786
6787 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006788 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00006790 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791}
6792
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006793static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794 struct TxDesc *desc)
6795{
6796 unsigned int len = tx_skb->len;
6797
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006798 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
6799
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800 desc->opts1 = 0x00;
6801 desc->opts2 = 0x00;
6802 desc->addr = 0x00;
6803 tx_skb->len = 0;
6804}
6805
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006806static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
6807 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006808{
6809 unsigned int i;
6810
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006811 for (i = 0; i < n; i++) {
6812 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813 struct ring_info *tx_skb = tp->tx_skb + entry;
6814 unsigned int len = tx_skb->len;
6815
6816 if (len) {
6817 struct sk_buff *skb = tx_skb->skb;
6818
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006819 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820 tp->TxDescArray + entry);
6821 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00006822 tp->dev->stats.tx_dropped++;
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07006823 dev_kfree_skb_any(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824 tx_skb->skb = NULL;
6825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826 }
6827 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006828}
6829
6830static void rtl8169_tx_clear(struct rtl8169_private *tp)
6831{
6832 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833 tp->cur_tx = tp->dirty_tx = 0;
6834}
6835
Francois Romieu4422bcd2012-01-26 11:23:32 +01006836static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837{
David Howellsc4028952006-11-22 14:57:56 +00006838 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01006839 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840
Francois Romieuda78dbf2012-01-26 14:18:23 +01006841 napi_disable(&tp->napi);
6842 netif_stop_queue(dev);
6843 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844
françois romieuc7c2c392011-12-04 20:30:52 +00006845 rtl8169_hw_reset(tp);
6846
Francois Romieu56de4142011-03-15 17:29:31 +01006847 for (i = 0; i < NUM_RX_DESC; i++)
6848 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
6849
Linus Torvalds1da177e2005-04-16 15:20:36 -07006850 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00006851 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006852
Francois Romieuda78dbf2012-01-26 14:18:23 +01006853 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01006854 rtl_hw_start(dev);
6855 netif_wake_queue(dev);
6856 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857}
6858
6859static void rtl8169_tx_timeout(struct net_device *dev)
6860{
Francois Romieuda78dbf2012-01-26 14:18:23 +01006861 struct rtl8169_private *tp = netdev_priv(dev);
6862
6863 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864}
6865
6866static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07006867 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006868{
6869 struct skb_shared_info *info = skb_shinfo(skb);
6870 unsigned int cur_frag, entry;
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08006871 struct TxDesc *uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006872 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873
6874 entry = tp->cur_tx;
6875 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006876 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877 dma_addr_t mapping;
6878 u32 status, len;
6879 void *addr;
6880
6881 entry = (entry + 1) % NUM_TX_DESC;
6882
6883 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00006884 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00006885 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006886 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006887 if (unlikely(dma_mapping_error(d, mapping))) {
6888 if (net_ratelimit())
6889 netif_err(tp, drv, tp->dev,
6890 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006891 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00006892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893
Francois Romieucecb5fd2011-04-01 10:21:07 +02006894 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07006895 status = opts[0] | len |
6896 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897
6898 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07006899 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900 txd->addr = cpu_to_le64(mapping);
6901
6902 tp->tx_skb[entry].len = len;
6903 }
6904
6905 if (cur_frag) {
6906 tp->tx_skb[entry].skb = skb;
6907 txd->opts1 |= cpu_to_le32(LastFrag);
6908 }
6909
6910 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00006911
6912err_out:
6913 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
6914 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915}
6916
françois romieub423e9a2013-05-18 01:24:46 +00006917static bool rtl_test_hw_pad_bug(struct rtl8169_private *tp, struct sk_buff *skb)
6918{
6919 return skb->len < ETH_ZLEN && tp->mac_version == RTL_GIGA_MAC_VER_34;
6920}
6921
hayeswange9746042014-07-11 16:25:58 +08006922static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
6923 struct net_device *dev);
6924/* r8169_csum_workaround()
6925 * The hw limites the value the transport offset. When the offset is out of the
6926 * range, calculate the checksum by sw.
6927 */
6928static void r8169_csum_workaround(struct rtl8169_private *tp,
6929 struct sk_buff *skb)
6930{
6931 if (skb_shinfo(skb)->gso_size) {
6932 netdev_features_t features = tp->dev->features;
6933 struct sk_buff *segs, *nskb;
6934
6935 features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
6936 segs = skb_gso_segment(skb, features);
6937 if (IS_ERR(segs) || !segs)
6938 goto drop;
6939
6940 do {
6941 nskb = segs;
6942 segs = segs->next;
6943 nskb->next = NULL;
6944 rtl8169_start_xmit(nskb, tp->dev);
6945 } while (segs);
6946
Alexander Duyckeb781392015-05-01 10:34:44 -07006947 dev_consume_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08006948 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
6949 if (skb_checksum_help(skb) < 0)
6950 goto drop;
6951
6952 rtl8169_start_xmit(skb, tp->dev);
6953 } else {
6954 struct net_device_stats *stats;
6955
6956drop:
6957 stats = &tp->dev->stats;
6958 stats->tx_dropped++;
Alexander Duyckeb781392015-05-01 10:34:44 -07006959 dev_kfree_skb_any(skb);
hayeswange9746042014-07-11 16:25:58 +08006960 }
6961}
6962
6963/* msdn_giant_send_check()
6964 * According to the document of microsoft, the TCP Pseudo Header excludes the
6965 * packet length for IPv6 TCP large packets.
6966 */
6967static int msdn_giant_send_check(struct sk_buff *skb)
6968{
6969 const struct ipv6hdr *ipv6h;
6970 struct tcphdr *th;
6971 int ret;
6972
6973 ret = skb_cow_head(skb, 0);
6974 if (ret)
6975 return ret;
6976
6977 ipv6h = ipv6_hdr(skb);
6978 th = tcp_hdr(skb);
6979
6980 th->check = 0;
6981 th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0);
6982
6983 return ret;
6984}
6985
6986static inline __be16 get_protocol(struct sk_buff *skb)
6987{
6988 __be16 protocol;
6989
6990 if (skb->protocol == htons(ETH_P_8021Q))
6991 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
6992 else
6993 protocol = skb->protocol;
6994
6995 return protocol;
6996}
6997
hayeswang5888d3f2014-07-11 16:25:56 +08006998static bool rtl8169_tso_csum_v1(struct rtl8169_private *tp,
6999 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000{
Michał Mirosław350fb322011-04-08 06:35:56 +00007001 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002
Francois Romieu2b7b4312011-04-18 22:53:24 -07007003 if (mss) {
7004 opts[0] |= TD_LSO;
hayeswang5888d3f2014-07-11 16:25:56 +08007005 opts[0] |= min(mss, TD_MSS_MAX) << TD0_MSS_SHIFT;
7006 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
7007 const struct iphdr *ip = ip_hdr(skb);
7008
7009 if (ip->protocol == IPPROTO_TCP)
7010 opts[0] |= TD0_IP_CS | TD0_TCP_CS;
7011 else if (ip->protocol == IPPROTO_UDP)
7012 opts[0] |= TD0_IP_CS | TD0_UDP_CS;
7013 else
7014 WARN_ON_ONCE(1);
7015 }
7016
7017 return true;
7018}
7019
7020static bool rtl8169_tso_csum_v2(struct rtl8169_private *tp,
7021 struct sk_buff *skb, u32 *opts)
7022{
hayeswangbdfa4ed2014-07-11 16:25:57 +08007023 u32 transport_offset = (u32)skb_transport_offset(skb);
hayeswang5888d3f2014-07-11 16:25:56 +08007024 u32 mss = skb_shinfo(skb)->gso_size;
7025
7026 if (mss) {
hayeswange9746042014-07-11 16:25:58 +08007027 if (transport_offset > GTTCPHO_MAX) {
7028 netif_warn(tp, tx_err, tp->dev,
7029 "Invalid transport offset 0x%x for TSO\n",
7030 transport_offset);
7031 return false;
7032 }
7033
7034 switch (get_protocol(skb)) {
7035 case htons(ETH_P_IP):
7036 opts[0] |= TD1_GTSENV4;
7037 break;
7038
7039 case htons(ETH_P_IPV6):
7040 if (msdn_giant_send_check(skb))
7041 return false;
7042
7043 opts[0] |= TD1_GTSENV6;
7044 break;
7045
7046 default:
7047 WARN_ON_ONCE(1);
7048 break;
7049 }
7050
hayeswangbdfa4ed2014-07-11 16:25:57 +08007051 opts[0] |= transport_offset << GTTCPHO_SHIFT;
hayeswang5888d3f2014-07-11 16:25:56 +08007052 opts[1] |= min(mss, TD_MSS_MAX) << TD1_MSS_SHIFT;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007053 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
hayeswange9746042014-07-11 16:25:58 +08007054 u8 ip_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055
françois romieub423e9a2013-05-18 01:24:46 +00007056 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007057 return !(skb_checksum_help(skb) || eth_skb_pad(skb));
françois romieub423e9a2013-05-18 01:24:46 +00007058
hayeswange9746042014-07-11 16:25:58 +08007059 if (transport_offset > TCPHO_MAX) {
7060 netif_warn(tp, tx_err, tp->dev,
7061 "Invalid transport offset 0x%x\n",
7062 transport_offset);
7063 return false;
7064 }
7065
7066 switch (get_protocol(skb)) {
7067 case htons(ETH_P_IP):
7068 opts[1] |= TD1_IPv4_CS;
7069 ip_protocol = ip_hdr(skb)->protocol;
7070 break;
7071
7072 case htons(ETH_P_IPV6):
7073 opts[1] |= TD1_IPv6_CS;
7074 ip_protocol = ipv6_hdr(skb)->nexthdr;
7075 break;
7076
7077 default:
7078 ip_protocol = IPPROTO_RAW;
7079 break;
7080 }
7081
7082 if (ip_protocol == IPPROTO_TCP)
7083 opts[1] |= TD1_TCP_CS;
7084 else if (ip_protocol == IPPROTO_UDP)
7085 opts[1] |= TD1_UDP_CS;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007086 else
7087 WARN_ON_ONCE(1);
hayeswange9746042014-07-11 16:25:58 +08007088
7089 opts[1] |= transport_offset << TCPHO_SHIFT;
françois romieub423e9a2013-05-18 01:24:46 +00007090 } else {
7091 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
Alexander Duyck207c5f42014-12-03 08:18:04 -08007092 return !eth_skb_pad(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007093 }
hayeswang5888d3f2014-07-11 16:25:56 +08007094
françois romieub423e9a2013-05-18 01:24:46 +00007095 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096}
7097
Stephen Hemminger613573252009-08-31 19:50:58 +00007098static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
7099 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007100{
7101 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007102 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103 struct TxDesc *txd = tp->TxDescArray + entry;
7104 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007105 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106 dma_addr_t mapping;
7107 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07007108 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007109 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02007110
Julien Ducourthial477206a2012-05-09 00:00:06 +02007111 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007112 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007113 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114 }
7115
7116 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007117 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118
françois romieub423e9a2013-05-18 01:24:46 +00007119 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb));
7120 opts[0] = DescOwn;
7121
hayeswange9746042014-07-11 16:25:58 +08007122 if (!tp->tso_csum(tp, skb, opts)) {
7123 r8169_csum_workaround(tp, skb);
7124 return NETDEV_TX_OK;
7125 }
françois romieub423e9a2013-05-18 01:24:46 +00007126
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007127 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007128 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007129 if (unlikely(dma_mapping_error(d, mapping))) {
7130 if (net_ratelimit())
7131 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007132 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00007133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134
7135 tp->tx_skb[entry].len = len;
7136 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137
Francois Romieu2b7b4312011-04-18 22:53:24 -07007138 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007139 if (frags < 0)
7140 goto err_dma_1;
7141 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07007142 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007143 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07007144 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007145 tp->tx_skb[entry].skb = skb;
7146 }
7147
Francois Romieu2b7b4312011-04-18 22:53:24 -07007148 txd->opts2 = cpu_to_le32(opts[1]);
7149
Richard Cochran5047fb52012-03-10 07:29:42 +00007150 skb_tx_timestamp(skb);
7151
Alexander Duycka0750132014-12-11 15:02:17 -08007152 /* Force memory writes to complete before releasing descriptor */
7153 dma_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007154
Francois Romieucecb5fd2011-04-01 10:21:07 +02007155 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07007156 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157 txd->opts1 = cpu_to_le32(status);
7158
Alexander Duycka0750132014-12-11 15:02:17 -08007159 /* Force all memory writes to complete before notifying device */
David Dillow4c020a92010-03-03 16:33:10 +00007160 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161
Alexander Duycka0750132014-12-11 15:02:17 -08007162 tp->cur_tx += frags + 1;
7163
David S. Miller87cda7c2015-02-22 15:54:29 -05007164 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165
David S. Miller87cda7c2015-02-22 15:54:29 -05007166 mmiowb();
Francois Romieuda78dbf2012-01-26 14:18:23 +01007167
David S. Miller87cda7c2015-02-22 15:54:29 -05007168 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01007169 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
7170 * not miss a ring update when it notices a stopped queue.
7171 */
7172 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01007174 /* Sync with rtl_tx:
7175 * - publish queue status and cur_tx ring index (write barrier)
7176 * - refresh dirty_tx ring index (read barrier).
7177 * May the current thread have a pessimistic view of the ring
7178 * status and forget to wake up queue, a racing rtl_tx thread
7179 * can't.
7180 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007181 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02007182 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007183 netif_wake_queue(dev);
7184 }
7185
Stephen Hemminger613573252009-08-31 19:50:58 +00007186 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007187
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007188err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007189 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007190err_dma_0:
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07007191 dev_kfree_skb_any(skb);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00007192 dev->stats.tx_dropped++;
7193 return NETDEV_TX_OK;
7194
7195err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007196 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007197 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00007198 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199}
7200
7201static void rtl8169_pcierr_interrupt(struct net_device *dev)
7202{
7203 struct rtl8169_private *tp = netdev_priv(dev);
7204 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205 u16 pci_status, pci_cmd;
7206
7207 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
7208 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
7209
Joe Perchesbf82c182010-02-09 11:49:50 +00007210 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
7211 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212
7213 /*
7214 * The recovery sequence below admits a very elaborated explanation:
7215 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01007216 * - I did not see what else could be done;
7217 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218 *
7219 * Feel free to adjust to your needs.
7220 */
Francois Romieua27993f2006-12-18 00:04:19 +01007221 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01007222 pci_cmd &= ~PCI_COMMAND_PARITY;
7223 else
7224 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
7225
7226 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007227
7228 pci_write_config_word(pdev, PCI_STATUS,
7229 pci_status & (PCI_STATUS_DETECTED_PARITY |
7230 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
7231 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
7232
7233 /* The infamous DAC f*ckup only happens at boot time */
Timo Teräs9fba0812013-01-15 21:01:24 +00007234 if ((tp->cp_cmd & PCIDAC) && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00007235 void __iomem *ioaddr = tp->mmio_addr;
7236
Joe Perchesbf82c182010-02-09 11:49:50 +00007237 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007238 tp->cp_cmd &= ~PCIDAC;
7239 RTL_W16(CPlusCmd, tp->cp_cmd);
7240 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007241 }
7242
françois romieue6de30d2011-01-03 15:08:37 +00007243 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01007244
Francois Romieu98ddf982012-01-31 10:47:34 +01007245 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007246}
7247
Francois Romieuda78dbf2012-01-26 14:18:23 +01007248static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249{
7250 unsigned int dirty_tx, tx_left;
7251
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252 dirty_tx = tp->dirty_tx;
7253 smp_rmb();
7254 tx_left = tp->cur_tx - dirty_tx;
7255
7256 while (tx_left > 0) {
7257 unsigned int entry = dirty_tx % NUM_TX_DESC;
7258 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259 u32 status;
7260
Linus Torvalds1da177e2005-04-16 15:20:36 -07007261 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
7262 if (status & DescOwn)
7263 break;
7264
Alexander Duycka0750132014-12-11 15:02:17 -08007265 /* This barrier is needed to keep us from reading
7266 * any other fields out of the Tx descriptor until
7267 * we know the status of DescOwn
7268 */
7269 dma_rmb();
7270
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007271 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
7272 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007273 if (status & LastFrag) {
David S. Miller87cda7c2015-02-22 15:54:29 -05007274 u64_stats_update_begin(&tp->tx_stats.syncp);
7275 tp->tx_stats.packets++;
7276 tp->tx_stats.bytes += tx_skb->skb->len;
7277 u64_stats_update_end(&tp->tx_stats.syncp);
Eric W. Biederman989c9ba2014-03-11 14:16:14 -07007278 dev_kfree_skb_any(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279 tx_skb->skb = NULL;
7280 }
7281 dirty_tx++;
7282 tx_left--;
7283 }
7284
7285 if (tp->dirty_tx != dirty_tx) {
7286 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01007287 /* Sync with rtl8169_start_xmit:
7288 * - publish dirty_tx ring index (write barrier)
7289 * - refresh cur_tx ring index and queue status (read barrier)
7290 * May the current thread miss the stopped queue condition,
7291 * a racing xmit thread can only have a right view of the
7292 * ring status.
7293 */
Francois Romieu1e874e02012-01-27 15:05:38 +01007294 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007295 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02007296 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007297 netif_wake_queue(dev);
7298 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02007299 /*
7300 * 8168 hack: TxPoll requests are lost when the Tx packets are
7301 * too close. Let's kick an extra TxPoll request when a burst
7302 * of start_xmit activity is detected (if it is not detected,
7303 * it is slow enough). -- FR
7304 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007305 if (tp->cur_tx != dirty_tx) {
7306 void __iomem *ioaddr = tp->mmio_addr;
7307
Francois Romieud78ae2d2007-08-26 20:08:19 +02007308 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310 }
7311}
7312
Francois Romieu126fa4b2005-05-12 20:09:17 -04007313static inline int rtl8169_fragmented_frame(u32 status)
7314{
7315 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
7316}
7317
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007318static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320 u32 status = opts1 & RxProtoMask;
7321
7322 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00007323 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324 skb->ip_summed = CHECKSUM_UNNECESSARY;
7325 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07007326 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327}
7328
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007329static struct sk_buff *rtl8169_try_rx_copy(void *data,
7330 struct rtl8169_private *tp,
7331 int pkt_size,
7332 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02007334 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007335 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007337 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007338 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007339 prefetch(data);
Alexander Duycke2338f82014-12-09 19:41:09 -08007340 skb = napi_alloc_skb(&tp->napi, pkt_size);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007341 if (skb)
7342 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00007343 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
7344
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007345 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346}
7347
Francois Romieuda78dbf2012-01-26 14:18:23 +01007348static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349{
7350 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007351 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353 cur_rx = tp->cur_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354
Timo Teräs9fba0812013-01-15 21:01:24 +00007355 for (rx_left = min(budget, NUM_RX_DESC); rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007357 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007358 u32 status;
7359
David S. Miller8decf862011-09-22 03:23:13 -04007360 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361 if (status & DescOwn)
7362 break;
Alexander Duycka0750132014-12-11 15:02:17 -08007363
7364 /* This barrier is needed to keep us from reading
7365 * any other fields out of the Rx descriptor until
7366 * we know the status of DescOwn
7367 */
7368 dma_rmb();
7369
Richard Dawe4dcb7d32005-05-27 21:12:00 +02007370 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00007371 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
7372 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007373 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02007375 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02007377 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007378 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01007379 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02007380 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02007381 }
Ben Greear6bbe0212012-02-10 15:04:33 +00007382 if ((status & (RxRUNT | RxCRC)) &&
7383 !(status & (RxRWT | RxFOVF)) &&
7384 (dev->features & NETIF_F_RXALL))
7385 goto process_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007387 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00007388 dma_addr_t addr;
7389 int pkt_size;
7390
7391process_pkt:
7392 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00007393 if (likely(!(dev->features & NETIF_F_RXFCS)))
7394 pkt_size = (status & 0x00003fff) - 4;
7395 else
7396 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397
Francois Romieu126fa4b2005-05-12 20:09:17 -04007398 /*
7399 * The driver does not support incoming fragmented
7400 * frames. They are seen as a symptom of over-mtu
7401 * sized frames.
7402 */
7403 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02007404 dev->stats.rx_dropped++;
7405 dev->stats.rx_length_errors++;
françois romieuce11ff52013-01-24 13:30:06 +00007406 goto release_descriptor;
Francois Romieu126fa4b2005-05-12 20:09:17 -04007407 }
7408
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007409 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
7410 tp, pkt_size, addr);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00007411 if (!skb) {
7412 dev->stats.rx_dropped++;
françois romieuce11ff52013-01-24 13:30:06 +00007413 goto release_descriptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007414 }
7415
Eric Dumazetadea1ac72010-09-05 20:04:05 -07007416 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417 skb_put(skb, pkt_size);
7418 skb->protocol = eth_type_trans(skb, dev);
7419
Francois Romieu7a8fc772011-03-01 17:18:33 +01007420 rtl8169_rx_vlan_tag(desc, skb);
7421
françois romieu39174292015-11-11 23:35:18 +01007422 if (skb->pkt_type == PACKET_MULTICAST)
7423 dev->stats.multicast++;
7424
Francois Romieu56de4142011-03-15 17:29:31 +01007425 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426
Junchang Wang8027aa22012-03-04 23:30:32 +01007427 u64_stats_update_begin(&tp->rx_stats.syncp);
7428 tp->rx_stats.packets++;
7429 tp->rx_stats.bytes += pkt_size;
7430 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431 }
françois romieuce11ff52013-01-24 13:30:06 +00007432release_descriptor:
7433 desc->opts2 = 0;
françois romieuce11ff52013-01-24 13:30:06 +00007434 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435 }
7436
7437 count = cur_rx - tp->cur_rx;
7438 tp->cur_rx = cur_rx;
7439
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440 return count;
7441}
7442
Francois Romieu07d3f512007-02-21 22:40:46 +01007443static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444{
Francois Romieu07d3f512007-02-21 22:40:46 +01007445 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007448 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449
Francois Romieu9085cdfa2012-01-26 12:59:08 +01007450 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007451 if (status && status != 0xffff) {
7452 status &= RTL_EVENT_NAPI | tp->event_slow;
7453 if (status) {
7454 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00007455
Francois Romieuda78dbf2012-01-26 14:18:23 +01007456 rtl_irq_disable(tp);
7457 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460 return IRQ_RETVAL(handled);
7461}
7462
Francois Romieuda78dbf2012-01-26 14:18:23 +01007463/*
7464 * Workqueue context.
7465 */
7466static void rtl_slow_event_work(struct rtl8169_private *tp)
7467{
7468 struct net_device *dev = tp->dev;
7469 u16 status;
7470
7471 status = rtl_get_events(tp) & tp->event_slow;
7472 rtl_ack_events(tp, status);
7473
7474 if (unlikely(status & RxFIFOOver)) {
7475 switch (tp->mac_version) {
7476 /* Work around for rx fifo overflow */
7477 case RTL_GIGA_MAC_VER_11:
7478 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01007479 /* XXX - Hack alert. See rtl_task(). */
7480 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007481 default:
7482 break;
7483 }
7484 }
7485
7486 if (unlikely(status & SYSErr))
7487 rtl8169_pcierr_interrupt(dev);
7488
7489 if (status & LinkChg)
7490 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
7491
françois romieu7dbb4912012-06-09 10:53:16 +00007492 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007493}
7494
Francois Romieu4422bcd2012-01-26 11:23:32 +01007495static void rtl_task(struct work_struct *work)
7496{
Francois Romieuda78dbf2012-01-26 14:18:23 +01007497 static const struct {
7498 int bitnr;
7499 void (*action)(struct rtl8169_private *);
7500 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01007501 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007502 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
7503 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
7504 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
7505 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01007506 struct rtl8169_private *tp =
7507 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007508 struct net_device *dev = tp->dev;
7509 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01007510
Francois Romieuda78dbf2012-01-26 14:18:23 +01007511 rtl_lock_work(tp);
7512
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007513 if (!netif_running(dev) ||
7514 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01007515 goto out_unlock;
7516
7517 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
7518 bool pending;
7519
Francois Romieuda78dbf2012-01-26 14:18:23 +01007520 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007521 if (pending)
7522 rtl_work[i].action(tp);
7523 }
7524
7525out_unlock:
7526 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01007527}
7528
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007529static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007531 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
7532 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01007533 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
7534 int work_done= 0;
7535 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007536
Francois Romieuda78dbf2012-01-26 14:18:23 +01007537 status = rtl_get_events(tp);
7538 rtl_ack_events(tp, status & ~tp->event_slow);
7539
7540 if (status & RTL_EVENT_NAPI_RX)
7541 work_done = rtl_rx(dev, tp, (u32) budget);
7542
7543 if (status & RTL_EVENT_NAPI_TX)
7544 rtl_tx(dev, tp);
7545
7546 if (status & tp->event_slow) {
7547 enable_mask &= ~tp->event_slow;
7548
7549 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
7550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007552 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08007553 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00007554
Francois Romieuda78dbf2012-01-26 14:18:23 +01007555 rtl_irq_enable(tp, enable_mask);
7556 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557 }
7558
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007559 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561
Francois Romieu523a6092008-09-10 22:28:56 +02007562static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
7563{
7564 struct rtl8169_private *tp = netdev_priv(dev);
7565
7566 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
7567 return;
7568
7569 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
7570 RTL_W32(RxMissed, 0);
7571}
7572
Linus Torvalds1da177e2005-04-16 15:20:36 -07007573static void rtl8169_down(struct net_device *dev)
7574{
7575 struct rtl8169_private *tp = netdev_priv(dev);
7576 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007577
Francois Romieu4876cc12011-03-11 21:07:11 +01007578 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007579
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01007580 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007581 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582
Hayes Wang92fc43b2011-07-06 15:58:03 +08007583 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007584 /*
7585 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01007586 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
7587 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00007588 */
Francois Romieu523a6092008-09-10 22:28:56 +02007589 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01007592 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594 rtl8169_tx_clear(tp);
7595
7596 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00007597
7598 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599}
7600
7601static int rtl8169_close(struct net_device *dev)
7602{
7603 struct rtl8169_private *tp = netdev_priv(dev);
7604 struct pci_dev *pdev = tp->pci_dev;
7605
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007606 pm_runtime_get_sync(&pdev->dev);
7607
Francois Romieucecb5fd2011-04-01 10:21:07 +02007608 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08007609 rtl8169_update_counters(dev);
7610
Francois Romieuda78dbf2012-01-26 14:18:23 +01007611 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007612 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007613
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007615 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007616
Lekensteyn4ea72442013-07-22 09:53:30 +02007617 cancel_work_sync(&tp->wk.work);
7618
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007619 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00007621 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7622 tp->RxPhyAddr);
7623 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7624 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625 tp->TxDescArray = NULL;
7626 tp->RxDescArray = NULL;
7627
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007628 pm_runtime_put_sync(&pdev->dev);
7629
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630 return 0;
7631}
7632
Francois Romieudc1c00c2012-03-08 10:06:18 +01007633#ifdef CONFIG_NET_POLL_CONTROLLER
7634static void rtl8169_netpoll(struct net_device *dev)
7635{
7636 struct rtl8169_private *tp = netdev_priv(dev);
7637
7638 rtl8169_interrupt(tp->pci_dev->irq, dev);
7639}
7640#endif
7641
Francois Romieudf43ac72012-03-08 09:48:40 +01007642static int rtl_open(struct net_device *dev)
7643{
7644 struct rtl8169_private *tp = netdev_priv(dev);
7645 void __iomem *ioaddr = tp->mmio_addr;
7646 struct pci_dev *pdev = tp->pci_dev;
7647 int retval = -ENOMEM;
7648
7649 pm_runtime_get_sync(&pdev->dev);
7650
7651 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02007652 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01007653 * dma_alloc_coherent provides more.
7654 */
7655 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
7656 &tp->TxPhyAddr, GFP_KERNEL);
7657 if (!tp->TxDescArray)
7658 goto err_pm_runtime_put;
7659
7660 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
7661 &tp->RxPhyAddr, GFP_KERNEL);
7662 if (!tp->RxDescArray)
7663 goto err_free_tx_0;
7664
7665 retval = rtl8169_init_ring(dev);
7666 if (retval < 0)
7667 goto err_free_rx_1;
7668
7669 INIT_WORK(&tp->wk.work, rtl_task);
7670
7671 smp_mb();
7672
7673 rtl_request_firmware(tp);
7674
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007675 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01007676 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
7677 dev->name, dev);
7678 if (retval < 0)
7679 goto err_release_fw_2;
7680
7681 rtl_lock_work(tp);
7682
7683 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
7684
7685 napi_enable(&tp->napi);
7686
7687 rtl8169_init_phy(dev, tp);
7688
7689 __rtl8169_set_features(dev, dev->features);
7690
7691 rtl_pll_power_up(tp);
7692
7693 rtl_hw_start(dev);
7694
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007695 if (!rtl8169_init_counter_offsets(dev))
7696 netif_warn(tp, hw, dev, "counter reset/update failed\n");
7697
Francois Romieudf43ac72012-03-08 09:48:40 +01007698 netif_start_queue(dev);
7699
7700 rtl_unlock_work(tp);
7701
7702 tp->saved_wolopts = 0;
7703 pm_runtime_put_noidle(&pdev->dev);
7704
7705 rtl8169_check_link_status(dev, tp, ioaddr);
7706out:
7707 return retval;
7708
7709err_release_fw_2:
7710 rtl_release_firmware(tp);
7711 rtl8169_rx_clear(tp);
7712err_free_rx_1:
7713 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
7714 tp->RxPhyAddr);
7715 tp->RxDescArray = NULL;
7716err_free_tx_0:
7717 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
7718 tp->TxPhyAddr);
7719 tp->TxDescArray = NULL;
7720err_pm_runtime_put:
7721 pm_runtime_put_noidle(&pdev->dev);
7722 goto out;
7723}
7724
Junchang Wang8027aa22012-03-04 23:30:32 +01007725static struct rtnl_link_stats64 *
7726rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007727{
7728 struct rtl8169_private *tp = netdev_priv(dev);
7729 void __iomem *ioaddr = tp->mmio_addr;
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007730 struct pci_dev *pdev = tp->pci_dev;
Corinna Vinschen42020322015-09-10 10:47:35 +02007731 struct rtl8169_counters *counters = tp->counters;
Junchang Wang8027aa22012-03-04 23:30:32 +01007732 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007734 pm_runtime_get_noresume(&pdev->dev);
7735
7736 if (netif_running(dev) && pm_runtime_active(&pdev->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 */
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007764 if (pm_runtime_active(&pdev->dev))
7765 rtl8169_update_counters(dev);
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007766
7767 /*
7768 * Subtract values fetched during initalization.
7769 * See rtl8169_init_counter_offsets for a description why we do that.
7770 */
Corinna Vinschen42020322015-09-10 10:47:35 +02007771 stats->tx_errors = le64_to_cpu(counters->tx_errors) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007772 le64_to_cpu(tp->tc_offset.tx_errors);
Corinna Vinschen42020322015-09-10 10:47:35 +02007773 stats->collisions = le32_to_cpu(counters->tx_multi_collision) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007774 le32_to_cpu(tp->tc_offset.tx_multi_collision);
Corinna Vinschen42020322015-09-10 10:47:35 +02007775 stats->tx_aborted_errors = le16_to_cpu(counters->tx_aborted) -
Corinna Vinschen6e85d5a2015-08-24 12:52:39 +02007776 le16_to_cpu(tp->tc_offset.tx_aborted);
7777
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007778 pm_runtime_put_noidle(&pdev->dev);
7779
Junchang Wang8027aa22012-03-04 23:30:32 +01007780 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007781}
7782
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007783static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01007784{
françois romieu065c27c2011-01-03 15:08:12 +00007785 struct rtl8169_private *tp = netdev_priv(dev);
7786
Francois Romieu5d06a992006-02-23 00:47:58 +01007787 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007788 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01007789
7790 netif_device_detach(dev);
7791 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007792
7793 rtl_lock_work(tp);
7794 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007795 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007796 rtl_unlock_work(tp);
7797
7798 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007799}
Francois Romieu5d06a992006-02-23 00:47:58 +01007800
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007801#ifdef CONFIG_PM
7802
7803static int rtl8169_suspend(struct device *device)
7804{
7805 struct pci_dev *pdev = to_pci_dev(device);
7806 struct net_device *dev = pci_get_drvdata(pdev);
7807
7808 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02007809
Francois Romieu5d06a992006-02-23 00:47:58 +01007810 return 0;
7811}
7812
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007813static void __rtl8169_resume(struct net_device *dev)
7814{
françois romieu065c27c2011-01-03 15:08:12 +00007815 struct rtl8169_private *tp = netdev_priv(dev);
7816
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007817 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00007818
7819 rtl_pll_power_up(tp);
7820
Artem Savkovcff4c162012-04-03 10:29:11 +00007821 rtl_lock_work(tp);
7822 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01007823 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00007824 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007825
Francois Romieu98ddf982012-01-31 10:47:34 +01007826 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007827}
7828
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007829static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01007830{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007831 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01007832 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00007833 struct rtl8169_private *tp = netdev_priv(dev);
7834
7835 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01007836
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007837 if (netif_running(dev))
7838 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01007839
Francois Romieu5d06a992006-02-23 00:47:58 +01007840 return 0;
7841}
7842
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007843static int rtl8169_runtime_suspend(struct device *device)
7844{
7845 struct pci_dev *pdev = to_pci_dev(device);
7846 struct net_device *dev = pci_get_drvdata(pdev);
7847 struct rtl8169_private *tp = netdev_priv(dev);
7848
7849 if (!tp->TxDescArray)
7850 return 0;
7851
Francois Romieuda78dbf2012-01-26 14:18:23 +01007852 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007853 tp->saved_wolopts = __rtl8169_get_wol(tp);
7854 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01007855 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007856
7857 rtl8169_net_suspend(dev);
7858
Chun-Hao Linf09cf4b2016-02-24 14:18:42 +08007859 /* Update counters before going runtime suspend */
7860 rtl8169_rx_missed(dev, tp->mmio_addr);
7861 rtl8169_update_counters(dev);
7862
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007863 return 0;
7864}
7865
7866static int rtl8169_runtime_resume(struct device *device)
7867{
7868 struct pci_dev *pdev = to_pci_dev(device);
7869 struct net_device *dev = pci_get_drvdata(pdev);
7870 struct rtl8169_private *tp = netdev_priv(dev);
7871
7872 if (!tp->TxDescArray)
7873 return 0;
7874
Francois Romieuda78dbf2012-01-26 14:18:23 +01007875 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007876 __rtl8169_set_wol(tp, tp->saved_wolopts);
7877 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01007878 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007879
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00007880 rtl8169_init_phy(dev, tp);
7881
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007882 __rtl8169_resume(dev);
7883
7884 return 0;
7885}
7886
7887static int rtl8169_runtime_idle(struct device *device)
7888{
7889 struct pci_dev *pdev = to_pci_dev(device);
7890 struct net_device *dev = pci_get_drvdata(pdev);
7891 struct rtl8169_private *tp = netdev_priv(dev);
7892
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00007893 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00007894}
7895
Alexey Dobriyan47145212009-12-14 18:00:08 -08007896static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02007897 .suspend = rtl8169_suspend,
7898 .resume = rtl8169_resume,
7899 .freeze = rtl8169_suspend,
7900 .thaw = rtl8169_resume,
7901 .poweroff = rtl8169_suspend,
7902 .restore = rtl8169_resume,
7903 .runtime_suspend = rtl8169_runtime_suspend,
7904 .runtime_resume = rtl8169_runtime_resume,
7905 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007906};
7907
7908#define RTL8169_PM_OPS (&rtl8169_pm_ops)
7909
7910#else /* !CONFIG_PM */
7911
7912#define RTL8169_PM_OPS NULL
7913
7914#endif /* !CONFIG_PM */
7915
David S. Miller1805b2f2011-10-24 18:18:09 -04007916static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
7917{
7918 void __iomem *ioaddr = tp->mmio_addr;
7919
7920 /* WoL fails with 8168b when the receiver is disabled. */
7921 switch (tp->mac_version) {
7922 case RTL_GIGA_MAC_VER_11:
7923 case RTL_GIGA_MAC_VER_12:
7924 case RTL_GIGA_MAC_VER_17:
7925 pci_clear_master(tp->pci_dev);
7926
7927 RTL_W8(ChipCmd, CmdRxEnb);
7928 /* PCI commit */
7929 RTL_R8(ChipCmd);
7930 break;
7931 default:
7932 break;
7933 }
7934}
7935
Francois Romieu1765f952008-09-13 17:21:40 +02007936static void rtl_shutdown(struct pci_dev *pdev)
7937{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007938 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00007939 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00007940 struct device *d = &pdev->dev;
7941
7942 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02007943
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007944 rtl8169_net_suspend(dev);
7945
Francois Romieucecb5fd2011-04-01 10:21:07 +02007946 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08007947 rtl_rar_set(tp, dev->perm_addr);
7948
Hayes Wang92fc43b2011-07-06 15:58:03 +08007949 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00007950
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007951 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04007952 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
7953 rtl_wol_suspend_quirk(tp);
7954 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00007955 }
7956
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007957 pci_wake_from_d3(pdev, true);
7958 pci_set_power_state(pdev, PCI_D3hot);
7959 }
françois romieu2a15cd22012-03-06 01:14:12 +00007960
7961 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007962}
Francois Romieu5d06a992006-02-23 00:47:58 +01007963
Bill Pembertonbaf63292012-12-03 09:23:28 -05007964static void rtl_remove_one(struct pci_dev *pdev)
Francois Romieue27566e2012-03-08 09:54:01 +01007965{
7966 struct net_device *dev = pci_get_drvdata(pdev);
7967 struct rtl8169_private *tp = netdev_priv(dev);
7968
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08007969 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
7970 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08007971 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
7972 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
7973 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
7974 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08007975 r8168_check_dash(tp)) {
Francois Romieue27566e2012-03-08 09:54:01 +01007976 rtl8168_driver_stop(tp);
7977 }
7978
Devendra Nagaad1be8d2012-05-31 01:51:20 +00007979 netif_napi_del(&tp->napi);
7980
Francois Romieue27566e2012-03-08 09:54:01 +01007981 unregister_netdev(dev);
7982
Corinna Vinschen42020322015-09-10 10:47:35 +02007983 dma_free_coherent(&tp->pci_dev->dev, sizeof(*tp->counters),
7984 tp->counters, tp->counters_phys_addr);
7985
Francois Romieue27566e2012-03-08 09:54:01 +01007986 rtl_release_firmware(tp);
7987
7988 if (pci_dev_run_wake(pdev))
7989 pm_runtime_get_noresume(&pdev->dev);
7990
7991 /* restore original MAC address */
7992 rtl_rar_set(tp, dev->perm_addr);
7993
7994 rtl_disable_msi(pdev, tp);
7995 rtl8169_release_board(pdev, dev, tp->mmio_addr);
Francois Romieue27566e2012-03-08 09:54:01 +01007996}
7997
Francois Romieufa9c3852012-03-08 10:01:50 +01007998static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01007999 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01008000 .ndo_stop = rtl8169_close,
8001 .ndo_get_stats64 = rtl8169_get_stats64,
8002 .ndo_start_xmit = rtl8169_start_xmit,
8003 .ndo_tx_timeout = rtl8169_tx_timeout,
8004 .ndo_validate_addr = eth_validate_addr,
8005 .ndo_change_mtu = rtl8169_change_mtu,
8006 .ndo_fix_features = rtl8169_fix_features,
8007 .ndo_set_features = rtl8169_set_features,
8008 .ndo_set_mac_address = rtl_set_mac_address,
8009 .ndo_do_ioctl = rtl8169_ioctl,
8010 .ndo_set_rx_mode = rtl_set_rx_mode,
8011#ifdef CONFIG_NET_POLL_CONTROLLER
8012 .ndo_poll_controller = rtl8169_netpoll,
8013#endif
8014
8015};
8016
Francois Romieu31fa8b12012-03-08 10:09:40 +01008017static const struct rtl_cfg_info {
8018 void (*hw_start)(struct net_device *);
8019 unsigned int region;
8020 unsigned int align;
8021 u16 event_slow;
8022 unsigned features;
8023 u8 default_ver;
8024} rtl_cfg_infos [] = {
8025 [RTL_CFG_0] = {
8026 .hw_start = rtl_hw_start_8169,
8027 .region = 1,
8028 .align = 0,
8029 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
8030 .features = RTL_FEATURE_GMII,
8031 .default_ver = RTL_GIGA_MAC_VER_01,
8032 },
8033 [RTL_CFG_1] = {
8034 .hw_start = rtl_hw_start_8168,
8035 .region = 2,
8036 .align = 8,
8037 .event_slow = SYSErr | LinkChg | RxOverflow,
8038 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
8039 .default_ver = RTL_GIGA_MAC_VER_11,
8040 },
8041 [RTL_CFG_2] = {
8042 .hw_start = rtl_hw_start_8101,
8043 .region = 2,
8044 .align = 8,
8045 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
8046 PCSTimeout,
8047 .features = RTL_FEATURE_MSI,
8048 .default_ver = RTL_GIGA_MAC_VER_13,
8049 }
8050};
8051
8052/* Cfg9346_Unlock assumed. */
8053static unsigned rtl_try_msi(struct rtl8169_private *tp,
8054 const struct rtl_cfg_info *cfg)
8055{
8056 void __iomem *ioaddr = tp->mmio_addr;
8057 unsigned msi = 0;
8058 u8 cfg2;
8059
8060 cfg2 = RTL_R8(Config2) & ~MSIEnable;
8061 if (cfg->features & RTL_FEATURE_MSI) {
8062 if (pci_enable_msi(tp->pci_dev)) {
8063 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
8064 } else {
8065 cfg2 |= MSIEnable;
8066 msi = RTL_FEATURE_MSI;
8067 }
8068 }
8069 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
8070 RTL_W8(Config2, cfg2);
8071 return msi;
8072}
8073
Hayes Wangc5583862012-07-02 17:23:22 +08008074DECLARE_RTL_COND(rtl_link_list_ready_cond)
8075{
8076 void __iomem *ioaddr = tp->mmio_addr;
8077
8078 return RTL_R8(MCU) & LINK_LIST_RDY;
8079}
8080
8081DECLARE_RTL_COND(rtl_rxtx_empty_cond)
8082{
8083 void __iomem *ioaddr = tp->mmio_addr;
8084
8085 return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
8086}
8087
Bill Pembertonbaf63292012-12-03 09:23:28 -05008088static void rtl_hw_init_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008089{
8090 void __iomem *ioaddr = tp->mmio_addr;
8091 u32 data;
8092
8093 tp->ocp_base = OCP_STD_PHY_BASE;
8094
8095 RTL_W32(MISC, RTL_R32(MISC) | RXDV_GATED_EN);
8096
8097 if (!rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 42))
8098 return;
8099
8100 if (!rtl_udelay_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42))
8101 return;
8102
8103 RTL_W8(ChipCmd, RTL_R8(ChipCmd) & ~(CmdTxEnb | CmdRxEnb));
8104 msleep(1);
8105 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
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 << 14);
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
Hayes Wang5f8bcce2012-07-10 08:47:05 +02008114 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08008115 data |= (1 << 15);
8116 r8168_mac_ocp_write(tp, 0xe8de, data);
8117
8118 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
8119 return;
8120}
8121
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008122static void rtl_hw_init_8168ep(struct rtl8169_private *tp)
8123{
8124 rtl8168ep_stop_cmac(tp);
8125 rtl_hw_init_8168g(tp);
8126}
8127
Bill Pembertonbaf63292012-12-03 09:23:28 -05008128static void rtl_hw_initialize(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08008129{
8130 switch (tp->mac_version) {
8131 case RTL_GIGA_MAC_VER_40:
8132 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00008133 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00008134 case RTL_GIGA_MAC_VER_43:
hayeswang45dd95c2013-07-08 17:09:01 +08008135 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008136 case RTL_GIGA_MAC_VER_45:
8137 case RTL_GIGA_MAC_VER_46:
8138 case RTL_GIGA_MAC_VER_47:
8139 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008140 rtl_hw_init_8168g(tp);
8141 break;
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008142 case RTL_GIGA_MAC_VER_49:
8143 case RTL_GIGA_MAC_VER_50:
8144 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin003609d2014-12-02 16:48:31 +08008145 rtl_hw_init_8168ep(tp);
Hayes Wangc5583862012-07-02 17:23:22 +08008146 break;
Hayes Wangc5583862012-07-02 17:23:22 +08008147 default:
8148 break;
8149 }
8150}
8151
hayeswang929a0312014-09-16 11:40:47 +08008152static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Francois Romieu3b6cf252012-03-08 09:59:04 +01008153{
8154 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
8155 const unsigned int region = cfg->region;
8156 struct rtl8169_private *tp;
8157 struct mii_if_info *mii;
8158 struct net_device *dev;
8159 void __iomem *ioaddr;
8160 int chipset, i;
8161 int rc;
8162
8163 if (netif_msg_drv(&debug)) {
8164 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
8165 MODULENAME, RTL8169_VERSION);
8166 }
8167
8168 dev = alloc_etherdev(sizeof (*tp));
8169 if (!dev) {
8170 rc = -ENOMEM;
8171 goto out;
8172 }
8173
8174 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01008175 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008176 tp = netdev_priv(dev);
8177 tp->dev = dev;
8178 tp->pci_dev = pdev;
8179 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
8180
8181 mii = &tp->mii;
8182 mii->dev = dev;
8183 mii->mdio_read = rtl_mdio_read;
8184 mii->mdio_write = rtl_mdio_write;
8185 mii->phy_id_mask = 0x1f;
8186 mii->reg_num_mask = 0x1f;
8187 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
8188
8189 /* disable ASPM completely as that cause random device stop working
8190 * problems as well as full system hangs for some PCIe devices users */
8191 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
8192 PCIE_LINK_STATE_CLKPM);
8193
8194 /* enable device (incl. PCI PM wakeup and hotplug setup) */
8195 rc = pci_enable_device(pdev);
8196 if (rc < 0) {
8197 netif_err(tp, probe, dev, "enable failure\n");
8198 goto err_out_free_dev_1;
8199 }
8200
8201 if (pci_set_mwi(pdev) < 0)
8202 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
8203
8204 /* make sure PCI base addr 1 is MMIO */
8205 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
8206 netif_err(tp, probe, dev,
8207 "region #%d not an MMIO resource, aborting\n",
8208 region);
8209 rc = -ENODEV;
8210 goto err_out_mwi_2;
8211 }
8212
8213 /* check for weird/broken PCI region reporting */
8214 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
8215 netif_err(tp, probe, dev,
8216 "Invalid PCI region size(s), aborting\n");
8217 rc = -ENODEV;
8218 goto err_out_mwi_2;
8219 }
8220
8221 rc = pci_request_regions(pdev, MODULENAME);
8222 if (rc < 0) {
8223 netif_err(tp, probe, dev, "could not request regions\n");
8224 goto err_out_mwi_2;
8225 }
8226
hayeswang929a0312014-09-16 11:40:47 +08008227 tp->cp_cmd = 0;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008228
8229 if ((sizeof(dma_addr_t) > 4) &&
8230 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
8231 tp->cp_cmd |= PCIDAC;
8232 dev->features |= NETIF_F_HIGHDMA;
8233 } else {
8234 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8235 if (rc < 0) {
8236 netif_err(tp, probe, dev, "DMA configuration failed\n");
8237 goto err_out_free_res_3;
8238 }
8239 }
8240
8241 /* ioremap MMIO region */
8242 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
8243 if (!ioaddr) {
8244 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
8245 rc = -EIO;
8246 goto err_out_free_res_3;
8247 }
8248 tp->mmio_addr = ioaddr;
8249
8250 if (!pci_is_pcie(pdev))
8251 netif_info(tp, probe, dev, "not PCI Express\n");
8252
8253 /* Identify chip attached to board */
8254 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
8255
8256 rtl_init_rxcfg(tp);
8257
8258 rtl_irq_disable(tp);
8259
Hayes Wangc5583862012-07-02 17:23:22 +08008260 rtl_hw_initialize(tp);
8261
Francois Romieu3b6cf252012-03-08 09:59:04 +01008262 rtl_hw_reset(tp);
8263
8264 rtl_ack_events(tp, 0xffff);
8265
8266 pci_set_master(pdev);
8267
Francois Romieu3b6cf252012-03-08 09:59:04 +01008268 rtl_init_mdio_ops(tp);
8269 rtl_init_pll_power_ops(tp);
8270 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08008271 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008272
8273 rtl8169_print_mac_version(tp);
8274
8275 chipset = tp->mac_version;
8276 tp->txd_version = rtl_chip_infos[chipset].txd_version;
8277
8278 RTL_W8(Cfg9346, Cfg9346_Unlock);
8279 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
Peter Wu8f9d5132013-08-17 11:00:02 +02008280 RTL_W8(Config5, RTL_R8(Config5) & (BWF | MWF | UWF | LanWake | PMEStatus));
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008281 switch (tp->mac_version) {
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008282 case RTL_GIGA_MAC_VER_34:
8283 case RTL_GIGA_MAC_VER_35:
8284 case RTL_GIGA_MAC_VER_36:
8285 case RTL_GIGA_MAC_VER_37:
8286 case RTL_GIGA_MAC_VER_38:
8287 case RTL_GIGA_MAC_VER_40:
8288 case RTL_GIGA_MAC_VER_41:
8289 case RTL_GIGA_MAC_VER_42:
8290 case RTL_GIGA_MAC_VER_43:
8291 case RTL_GIGA_MAC_VER_44:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008292 case RTL_GIGA_MAC_VER_45:
8293 case RTL_GIGA_MAC_VER_46:
Chun-Hao Linac85bcd2014-10-01 23:17:16 +08008294 case RTL_GIGA_MAC_VER_47:
8295 case RTL_GIGA_MAC_VER_48:
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008296 case RTL_GIGA_MAC_VER_49:
8297 case RTL_GIGA_MAC_VER_50:
8298 case RTL_GIGA_MAC_VER_51:
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008299 if (rtl_eri_read(tp, 0xdc, ERIAR_EXGMAC) & MagicPacket_v2)
8300 tp->features |= RTL_FEATURE_WOL;
8301 if ((RTL_R8(Config3) & LinkUp) != 0)
8302 tp->features |= RTL_FEATURE_WOL;
8303 break;
8304 default:
8305 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
8306 tp->features |= RTL_FEATURE_WOL;
8307 break;
8308 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008309 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
8310 tp->features |= RTL_FEATURE_WOL;
8311 tp->features |= rtl_try_msi(tp, cfg);
8312 RTL_W8(Cfg9346, Cfg9346_Lock);
8313
8314 if (rtl_tbi_enabled(tp)) {
8315 tp->set_speed = rtl8169_set_speed_tbi;
8316 tp->get_settings = rtl8169_gset_tbi;
8317 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
8318 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
8319 tp->link_ok = rtl8169_tbi_link_ok;
8320 tp->do_ioctl = rtl_tbi_ioctl;
8321 } else {
8322 tp->set_speed = rtl8169_set_speed_xmii;
8323 tp->get_settings = rtl8169_gset_xmii;
8324 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
8325 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
8326 tp->link_ok = rtl8169_xmii_link_ok;
8327 tp->do_ioctl = rtl_xmii_ioctl;
8328 }
8329
8330 mutex_init(&tp->wk.mutex);
Kyle McMartin340fea32014-02-24 20:12:28 -05008331 u64_stats_init(&tp->rx_stats.syncp);
8332 u64_stats_init(&tp->tx_stats.syncp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008333
8334 /* Get MAC address */
Chun-Hao Lin89cceb22014-10-01 23:17:15 +08008335 if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
8336 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
8337 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
8338 tp->mac_version == RTL_GIGA_MAC_VER_38 ||
8339 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
8340 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
8341 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
8342 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
8343 tp->mac_version == RTL_GIGA_MAC_VER_44 ||
8344 tp->mac_version == RTL_GIGA_MAC_VER_45 ||
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008345 tp->mac_version == RTL_GIGA_MAC_VER_46 ||
8346 tp->mac_version == RTL_GIGA_MAC_VER_47 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008347 tp->mac_version == RTL_GIGA_MAC_VER_48 ||
8348 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8349 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8350 tp->mac_version == RTL_GIGA_MAC_VER_51) {
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008351 u16 mac_addr[3];
8352
Chun-Hao Lin05b96872014-10-01 23:17:12 +08008353 *(u32 *)&mac_addr[0] = rtl_eri_read(tp, 0xe0, ERIAR_EXGMAC);
8354 *(u16 *)&mac_addr[2] = rtl_eri_read(tp, 0xe4, ERIAR_EXGMAC);
Chun-Hao Lin6e1d0b82014-08-20 01:54:04 +08008355
8356 if (is_valid_ether_addr((u8 *)mac_addr))
8357 rtl_rar_set(tp, (u8 *)mac_addr);
8358 }
Francois Romieu3b6cf252012-03-08 09:59:04 +01008359 for (i = 0; i < ETH_ALEN; i++)
8360 dev->dev_addr[i] = RTL_R8(MAC0 + i);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008361
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00008362 dev->ethtool_ops = &rtl8169_ethtool_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008363 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008364
8365 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
8366
8367 /* don't enable SG, IP_CSUM and TSO by default - it might not work
8368 * properly for all devices */
8369 dev->features |= NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00008370 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008371
8372 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
Patrick McHardyf6469682013-04-19 02:04:27 +00008373 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_TX |
8374 NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008375 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
8376 NETIF_F_HIGHDMA;
8377
hayeswang929a0312014-09-16 11:40:47 +08008378 tp->cp_cmd |= RxChkSum | RxVlan;
8379
8380 /*
8381 * Pretend we are using VLANs; This bypasses a nasty bug where
8382 * Interrupts stop flowing on high load on 8110SCd controllers.
8383 */
Francois Romieu3b6cf252012-03-08 09:59:04 +01008384 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
hayeswang929a0312014-09-16 11:40:47 +08008385 /* Disallow toggling */
Patrick McHardyf6469682013-04-19 02:04:27 +00008386 dev->hw_features &= ~NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008387
hayeswang5888d3f2014-07-11 16:25:56 +08008388 if (tp->txd_version == RTL_TD_0)
8389 tp->tso_csum = rtl8169_tso_csum_v1;
hayeswange9746042014-07-11 16:25:58 +08008390 else if (tp->txd_version == RTL_TD_1) {
hayeswang5888d3f2014-07-11 16:25:56 +08008391 tp->tso_csum = rtl8169_tso_csum_v2;
hayeswange9746042014-07-11 16:25:58 +08008392 dev->hw_features |= NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
8393 } else
hayeswang5888d3f2014-07-11 16:25:56 +08008394 WARN_ON_ONCE(1);
8395
Francois Romieu3b6cf252012-03-08 09:59:04 +01008396 dev->hw_features |= NETIF_F_RXALL;
8397 dev->hw_features |= NETIF_F_RXFCS;
8398
8399 tp->hw_start = cfg->hw_start;
8400 tp->event_slow = cfg->event_slow;
8401
8402 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
8403 ~(RxBOVF | RxFOVF) : ~0;
8404
8405 init_timer(&tp->timer);
8406 tp->timer.data = (unsigned long) dev;
8407 tp->timer.function = rtl8169_phy_timer;
8408
8409 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
8410
Corinna Vinschen42020322015-09-10 10:47:35 +02008411 tp->counters = dma_alloc_coherent (&pdev->dev, sizeof(*tp->counters),
8412 &tp->counters_phys_addr, GFP_KERNEL);
8413 if (!tp->counters) {
8414 rc = -ENOMEM;
8415 goto err_out_msi_4;
8416 }
8417
Francois Romieu3b6cf252012-03-08 09:59:04 +01008418 rc = register_netdev(dev);
8419 if (rc < 0)
Corinna Vinschen42020322015-09-10 10:47:35 +02008420 goto err_out_cnt_5;
Francois Romieu3b6cf252012-03-08 09:59:04 +01008421
8422 pci_set_drvdata(pdev, dev);
8423
Francois Romieu92a7c4e2012-03-10 10:42:12 +01008424 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
8425 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
8426 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008427 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
8428 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
8429 "tx checksumming: %s]\n",
8430 rtl_chip_infos[chipset].jumbo_max,
8431 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
8432 }
8433
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008434 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
8435 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
Chun-Hao Lin935e2212014-10-07 15:10:41 +08008436 tp->mac_version == RTL_GIGA_MAC_VER_31 ||
8437 tp->mac_version == RTL_GIGA_MAC_VER_49 ||
8438 tp->mac_version == RTL_GIGA_MAC_VER_50 ||
8439 tp->mac_version == RTL_GIGA_MAC_VER_51) &&
Chun-Hao Linee7a1be2014-10-01 23:17:21 +08008440 r8168_check_dash(tp)) {
Francois Romieu3b6cf252012-03-08 09:59:04 +01008441 rtl8168_driver_start(tp);
8442 }
8443
8444 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
8445
8446 if (pci_dev_run_wake(pdev))
8447 pm_runtime_put_noidle(&pdev->dev);
8448
8449 netif_carrier_off(dev);
8450
8451out:
8452 return rc;
8453
Corinna Vinschen42020322015-09-10 10:47:35 +02008454err_out_cnt_5:
8455 dma_free_coherent(&pdev->dev, sizeof(*tp->counters), tp->counters,
8456 tp->counters_phys_addr);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008457err_out_msi_4:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00008458 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01008459 rtl_disable_msi(pdev, tp);
8460 iounmap(ioaddr);
8461err_out_free_res_3:
8462 pci_release_regions(pdev);
8463err_out_mwi_2:
8464 pci_clear_mwi(pdev);
8465 pci_disable_device(pdev);
8466err_out_free_dev_1:
8467 free_netdev(dev);
8468 goto out;
8469}
8470
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471static struct pci_driver rtl8169_pci_driver = {
8472 .name = MODULENAME,
8473 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01008474 .probe = rtl_init_one,
Bill Pembertonbaf63292012-12-03 09:23:28 -05008475 .remove = rtl_remove_one,
Francois Romieu1765f952008-09-13 17:21:40 +02008476 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00008477 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008478};
8479
Devendra Naga3eeb7da2012-10-26 09:27:42 +00008480module_pci_driver(rtl8169_pci_driver);