blob: 393f961a013cec14daf9c624021fdd60be23939d [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>
24#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000025#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/dma-mapping.h>
Rafael J. Wysockie1759442010-03-14 14:33:51 +000027#include <linux/pm_runtime.h>
françois romieubca03d52011-01-03 15:07:31 +000028#include <linux/firmware.h>
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +000029#include <linux/pci-aspm.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040030#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/io.h>
33#include <asm/irq.h>
34
Francois Romieu865c6522008-05-11 14:51:00 +020035#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define MODULENAME "r8169"
37#define PFX MODULENAME ": "
38
françois romieubca03d52011-01-03 15:07:31 +000039#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
40#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
hayeswang01dc7fe2011-03-21 01:50:28 +000041#define FIRMWARE_8168E_1 "rtl_nic/rtl8168e-1.fw"
42#define FIRMWARE_8168E_2 "rtl_nic/rtl8168e-2.fw"
Hayes Wang70090422011-07-06 15:58:06 +080043#define FIRMWARE_8168E_3 "rtl_nic/rtl8168e-3.fw"
Hayes Wangc2218922011-09-06 16:55:18 +080044#define FIRMWARE_8168F_1 "rtl_nic/rtl8168f-1.fw"
45#define FIRMWARE_8168F_2 "rtl_nic/rtl8168f-2.fw"
Hayes Wang5a5e4442011-02-22 17:26:21 +080046#define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
Hayes Wang7e18dca2012-03-30 14:33:02 +080047#define FIRMWARE_8402_1 "rtl_nic/rtl8402-1.fw"
Hayes Wangb3d7b2f2012-03-30 14:48:06 +080048#define FIRMWARE_8411_1 "rtl_nic/rtl8411-1.fw"
Hayes Wang5598bfe2012-07-02 17:23:21 +080049#define FIRMWARE_8106E_1 "rtl_nic/rtl8106e-1.fw"
hayeswang58152cd2013-04-01 22:23:42 +000050#define FIRMWARE_8106E_2 "rtl_nic/rtl8106e-2.fw"
hayeswangbeb330a2013-04-01 22:23:39 +000051#define FIRMWARE_8168G_2 "rtl_nic/rtl8168g-2.fw"
hayeswang57538c42013-04-01 22:23:40 +000052#define FIRMWARE_8168G_3 "rtl_nic/rtl8168g-3.fw"
françois romieubca03d52011-01-03 15:07:31 +000053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#ifdef RTL8169_DEBUG
55#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020056 if (!(expr)) { \
57 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070058 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020059 }
Joe Perches06fa7352007-10-18 21:15:00 +020060#define dprintk(fmt, args...) \
61 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#else
63#define assert(expr) do {} while (0)
64#define dprintk(fmt, args...) do {} while (0)
65#endif /* RTL8169_DEBUG */
66
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020067#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070068 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020069
Julien Ducourthial477206a2012-05-09 00:00:06 +020070#define TX_SLOTS_AVAIL(tp) \
71 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
72
73/* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
74#define TX_FRAGS_READY_FOR(tp,nr_frags) \
75 (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
78 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050079static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Francois Romieu9c14cea2008-07-05 00:21:15 +020081#define MAX_READ_REQUEST_SHIFT 12
Michal Schmidtaee77e42012-09-09 13:55:26 +000082#define TX_DMA_BURST 7 /* Maximum PCI burst, '7' is unlimited */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
84
85#define R8169_REGS_SIZE 256
86#define R8169_NAPI_WEIGHT 64
87#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
Timo Teräs9fba0812013-01-15 21:01:24 +000088#define NUM_RX_DESC 256U /* Number of Rx descriptor registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
90#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
91
92#define RTL8169_TX_TIMEOUT (6*HZ)
93#define RTL8169_PHY_TIMEOUT (10*HZ)
94
95/* write/read MMIO register */
96#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
97#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
98#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
99#define RTL_R8(reg) readb (ioaddr + (reg))
100#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +0000101#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103enum mac_version {
Francois Romieu85bffe62011-04-27 08:22:39 +0200104 RTL_GIGA_MAC_VER_01 = 0,
105 RTL_GIGA_MAC_VER_02,
106 RTL_GIGA_MAC_VER_03,
107 RTL_GIGA_MAC_VER_04,
108 RTL_GIGA_MAC_VER_05,
109 RTL_GIGA_MAC_VER_06,
110 RTL_GIGA_MAC_VER_07,
111 RTL_GIGA_MAC_VER_08,
112 RTL_GIGA_MAC_VER_09,
113 RTL_GIGA_MAC_VER_10,
114 RTL_GIGA_MAC_VER_11,
115 RTL_GIGA_MAC_VER_12,
116 RTL_GIGA_MAC_VER_13,
117 RTL_GIGA_MAC_VER_14,
118 RTL_GIGA_MAC_VER_15,
119 RTL_GIGA_MAC_VER_16,
120 RTL_GIGA_MAC_VER_17,
121 RTL_GIGA_MAC_VER_18,
122 RTL_GIGA_MAC_VER_19,
123 RTL_GIGA_MAC_VER_20,
124 RTL_GIGA_MAC_VER_21,
125 RTL_GIGA_MAC_VER_22,
126 RTL_GIGA_MAC_VER_23,
127 RTL_GIGA_MAC_VER_24,
128 RTL_GIGA_MAC_VER_25,
129 RTL_GIGA_MAC_VER_26,
130 RTL_GIGA_MAC_VER_27,
131 RTL_GIGA_MAC_VER_28,
132 RTL_GIGA_MAC_VER_29,
133 RTL_GIGA_MAC_VER_30,
134 RTL_GIGA_MAC_VER_31,
135 RTL_GIGA_MAC_VER_32,
136 RTL_GIGA_MAC_VER_33,
Hayes Wang70090422011-07-06 15:58:06 +0800137 RTL_GIGA_MAC_VER_34,
Hayes Wangc2218922011-09-06 16:55:18 +0800138 RTL_GIGA_MAC_VER_35,
139 RTL_GIGA_MAC_VER_36,
Hayes Wang7e18dca2012-03-30 14:33:02 +0800140 RTL_GIGA_MAC_VER_37,
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800141 RTL_GIGA_MAC_VER_38,
Hayes Wang5598bfe2012-07-02 17:23:21 +0800142 RTL_GIGA_MAC_VER_39,
Hayes Wangc5583862012-07-02 17:23:22 +0800143 RTL_GIGA_MAC_VER_40,
144 RTL_GIGA_MAC_VER_41,
hayeswang57538c42013-04-01 22:23:40 +0000145 RTL_GIGA_MAC_VER_42,
hayeswang58152cd2013-04-01 22:23:42 +0000146 RTL_GIGA_MAC_VER_43,
Francois Romieu85bffe62011-04-27 08:22:39 +0200147 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148};
149
Francois Romieu2b7b4312011-04-18 22:53:24 -0700150enum rtl_tx_desc_version {
151 RTL_TD_0 = 0,
152 RTL_TD_1 = 1,
153};
154
Francois Romieud58d46b2011-05-03 16:38:29 +0200155#define JUMBO_1K ETH_DATA_LEN
156#define JUMBO_4K (4*1024 - ETH_HLEN - 2)
157#define JUMBO_6K (6*1024 - ETH_HLEN - 2)
158#define JUMBO_7K (7*1024 - ETH_HLEN - 2)
159#define JUMBO_9K (9*1024 - ETH_HLEN - 2)
160
161#define _R(NAME,TD,FW,SZ,B) { \
162 .name = NAME, \
163 .txd_version = TD, \
164 .fw_name = FW, \
165 .jumbo_max = SZ, \
166 .jumbo_tx_csum = B \
167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800169static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700171 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200172 const char *fw_name;
Francois Romieud58d46b2011-05-03 16:38:29 +0200173 u16 jumbo_max;
174 bool jumbo_tx_csum;
Francois Romieu85bffe62011-04-27 08:22:39 +0200175} rtl_chip_infos[] = {
176 /* PCI devices. */
177 [RTL_GIGA_MAC_VER_01] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200178 _R("RTL8169", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200179 [RTL_GIGA_MAC_VER_02] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200180 _R("RTL8169s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200181 [RTL_GIGA_MAC_VER_03] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200182 _R("RTL8110s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200183 [RTL_GIGA_MAC_VER_04] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200184 _R("RTL8169sb/8110sb", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200185 [RTL_GIGA_MAC_VER_05] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200186 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200187 [RTL_GIGA_MAC_VER_06] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200188 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200189 /* PCI-E devices. */
190 [RTL_GIGA_MAC_VER_07] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200191 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200192 [RTL_GIGA_MAC_VER_08] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200193 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200194 [RTL_GIGA_MAC_VER_09] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200195 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200196 [RTL_GIGA_MAC_VER_10] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200197 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200198 [RTL_GIGA_MAC_VER_11] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200199 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200200 [RTL_GIGA_MAC_VER_12] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200201 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200202 [RTL_GIGA_MAC_VER_13] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200203 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200204 [RTL_GIGA_MAC_VER_14] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200205 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200206 [RTL_GIGA_MAC_VER_15] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200207 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200208 [RTL_GIGA_MAC_VER_16] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200209 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200210 [RTL_GIGA_MAC_VER_17] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200211 _R("RTL8168b/8111b", RTL_TD_1, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200212 [RTL_GIGA_MAC_VER_18] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200213 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200214 [RTL_GIGA_MAC_VER_19] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200215 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200216 [RTL_GIGA_MAC_VER_20] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200217 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200218 [RTL_GIGA_MAC_VER_21] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200219 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200220 [RTL_GIGA_MAC_VER_22] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200221 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200222 [RTL_GIGA_MAC_VER_23] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200223 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200224 [RTL_GIGA_MAC_VER_24] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200225 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200226 [RTL_GIGA_MAC_VER_25] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200227 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1,
228 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200229 [RTL_GIGA_MAC_VER_26] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200230 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2,
231 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200232 [RTL_GIGA_MAC_VER_27] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200233 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200234 [RTL_GIGA_MAC_VER_28] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200235 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200236 [RTL_GIGA_MAC_VER_29] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200237 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
238 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200239 [RTL_GIGA_MAC_VER_30] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200240 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
241 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200242 [RTL_GIGA_MAC_VER_31] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200243 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200244 [RTL_GIGA_MAC_VER_32] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200245 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1,
246 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200247 [RTL_GIGA_MAC_VER_33] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200248 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2,
249 JUMBO_9K, false),
Hayes Wang70090422011-07-06 15:58:06 +0800250 [RTL_GIGA_MAC_VER_34] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200251 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3,
252 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800253 [RTL_GIGA_MAC_VER_35] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200254 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_1,
255 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800256 [RTL_GIGA_MAC_VER_36] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200257 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_2,
258 JUMBO_9K, false),
Hayes Wang7e18dca2012-03-30 14:33:02 +0800259 [RTL_GIGA_MAC_VER_37] =
260 _R("RTL8402", RTL_TD_1, FIRMWARE_8402_1,
261 JUMBO_1K, true),
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800262 [RTL_GIGA_MAC_VER_38] =
263 _R("RTL8411", RTL_TD_1, FIRMWARE_8411_1,
264 JUMBO_9K, false),
Hayes Wang5598bfe2012-07-02 17:23:21 +0800265 [RTL_GIGA_MAC_VER_39] =
266 _R("RTL8106e", RTL_TD_1, FIRMWARE_8106E_1,
267 JUMBO_1K, true),
Hayes Wangc5583862012-07-02 17:23:22 +0800268 [RTL_GIGA_MAC_VER_40] =
hayeswangbeb330a2013-04-01 22:23:39 +0000269 _R("RTL8168g/8111g", RTL_TD_1, FIRMWARE_8168G_2,
Hayes Wangc5583862012-07-02 17:23:22 +0800270 JUMBO_9K, false),
271 [RTL_GIGA_MAC_VER_41] =
272 _R("RTL8168g/8111g", RTL_TD_1, NULL, JUMBO_9K, false),
hayeswang57538c42013-04-01 22:23:40 +0000273 [RTL_GIGA_MAC_VER_42] =
274 _R("RTL8168g/8111g", RTL_TD_1, FIRMWARE_8168G_3,
275 JUMBO_9K, false),
hayeswang58152cd2013-04-01 22:23:42 +0000276 [RTL_GIGA_MAC_VER_43] =
277 _R("RTL8106e", RTL_TD_1, FIRMWARE_8106E_2,
278 JUMBO_1K, true),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279};
280#undef _R
281
Francois Romieubcf0bf92006-07-26 23:14:13 +0200282enum cfg_version {
283 RTL_CFG_0 = 0x00,
284 RTL_CFG_1,
285 RTL_CFG_2
286};
287
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000288static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200289 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200290 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200291 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100292 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200293 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
Francois Romieu2a35cfa2012-08-31 23:06:17 +0200294 { PCI_VENDOR_ID_DLINK, 0x4300,
295 PCI_VENDOR_ID_DLINK, 0x4b10, 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200296 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000297 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200298 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200299 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
300 { PCI_VENDOR_ID_LINKSYS, 0x1032,
301 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100302 { 0x0001, 0x8168,
303 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 {0,},
305};
306
307MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
308
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000309static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700310static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200311static struct {
312 u32 msg_enable;
313} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Francois Romieu07d3f512007-02-21 22:40:46 +0100315enum rtl_registers {
316 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100317 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100318 MAR0 = 8, /* Multicast filter. */
319 CounterAddrLow = 0x10,
320 CounterAddrHigh = 0x14,
321 TxDescStartAddrLow = 0x20,
322 TxDescStartAddrHigh = 0x24,
323 TxHDescStartAddrLow = 0x28,
324 TxHDescStartAddrHigh = 0x2c,
325 FLASH = 0x30,
326 ERSR = 0x36,
327 ChipCmd = 0x37,
328 TxPoll = 0x38,
329 IntrMask = 0x3c,
330 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700331
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800332 TxConfig = 0x40,
333#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
334#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
335
336 RxConfig = 0x44,
337#define RX128_INT_EN (1 << 15) /* 8111c and later */
338#define RX_MULTI_EN (1 << 14) /* 8111c only */
339#define RXCFG_FIFO_SHIFT 13
340 /* No threshold before first PCI xfer */
341#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
hayeswangbeb330a2013-04-01 22:23:39 +0000342#define RX_EARLY_OFF (1 << 11)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800343#define RXCFG_DMA_SHIFT 8
344 /* Unlimited maximum PCI burst. */
345#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700346
Francois Romieu07d3f512007-02-21 22:40:46 +0100347 RxMissed = 0x4c,
348 Cfg9346 = 0x50,
349 Config0 = 0x51,
350 Config1 = 0x52,
351 Config2 = 0x53,
Francois Romieud387b422012-04-17 11:12:01 +0200352#define PME_SIGNAL (1 << 5) /* 8168c and later */
353
Francois Romieu07d3f512007-02-21 22:40:46 +0100354 Config3 = 0x54,
355 Config4 = 0x55,
356 Config5 = 0x56,
357 MultiIntr = 0x5c,
358 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100359 PHYstatus = 0x6c,
360 RxMaxSize = 0xda,
361 CPlusCmd = 0xe0,
362 IntrMitigate = 0xe2,
363 RxDescAddrLow = 0xe4,
364 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000365 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
366
367#define NoEarlyTx 0x3f /* Max value : no early transmit. */
368
369 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
370
371#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800372#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000373
Francois Romieu07d3f512007-02-21 22:40:46 +0100374 FuncEvent = 0xf0,
375 FuncEventMask = 0xf4,
376 FuncPresetState = 0xf8,
377 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378};
379
Francois Romieuf162a5d2008-06-01 22:37:49 +0200380enum rtl8110_registers {
381 TBICSR = 0x64,
382 TBI_ANAR = 0x68,
383 TBI_LPAR = 0x6a,
384};
385
386enum rtl8168_8101_registers {
387 CSIDR = 0x64,
388 CSIAR = 0x68,
389#define CSIAR_FLAG 0x80000000
390#define CSIAR_WRITE_CMD 0x80000000
391#define CSIAR_BYTE_ENABLE 0x0f
392#define CSIAR_BYTE_ENABLE_SHIFT 12
393#define CSIAR_ADDR_MASK 0x0fff
Hayes Wang7e18dca2012-03-30 14:33:02 +0800394#define CSIAR_FUNC_CARD 0x00000000
395#define CSIAR_FUNC_SDIO 0x00010000
396#define CSIAR_FUNC_NIC 0x00020000
françois romieu065c27c2011-01-03 15:08:12 +0000397 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200398 EPHYAR = 0x80,
399#define EPHYAR_FLAG 0x80000000
400#define EPHYAR_WRITE_CMD 0x80000000
401#define EPHYAR_REG_MASK 0x1f
402#define EPHYAR_REG_SHIFT 16
403#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800404 DLLPR = 0xd0,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800405#define PFM_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200406 DBG_REG = 0xd1,
407#define FIX_NAK_1 (1 << 4)
408#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800409 TWSI = 0xd2,
410 MCU = 0xd3,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800411#define NOW_IS_OOB (1 << 7)
Hayes Wangc5583862012-07-02 17:23:22 +0800412#define TX_EMPTY (1 << 5)
413#define RX_EMPTY (1 << 4)
414#define RXTX_EMPTY (TX_EMPTY | RX_EMPTY)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800415#define EN_NDP (1 << 3)
416#define EN_OOB_RESET (1 << 2)
Hayes Wangc5583862012-07-02 17:23:22 +0800417#define LINK_LIST_RDY (1 << 1)
françois romieudaf9df62009-10-07 12:44:20 +0000418 EFUSEAR = 0xdc,
419#define EFUSEAR_FLAG 0x80000000
420#define EFUSEAR_WRITE_CMD 0x80000000
421#define EFUSEAR_READ_CMD 0x00000000
422#define EFUSEAR_REG_MASK 0x03ff
423#define EFUSEAR_REG_SHIFT 8
424#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200425};
426
françois romieuc0e45c12011-01-03 15:08:04 +0000427enum rtl8168_registers {
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800428 LED_FREQ = 0x1a,
429 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000430 ERIDR = 0x70,
431 ERIAR = 0x74,
432#define ERIAR_FLAG 0x80000000
433#define ERIAR_WRITE_CMD 0x80000000
434#define ERIAR_READ_CMD 0x00000000
435#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000436#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800437#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
438#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
439#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
440#define ERIAR_MASK_SHIFT 12
441#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
442#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
Hayes Wangc5583862012-07-02 17:23:22 +0800443#define ERIAR_MASK_0101 (0x5 << ERIAR_MASK_SHIFT)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800444#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000445 EPHY_RXER_NUM = 0x7c,
446 OCPDR = 0xb0, /* OCP GPHY access */
447#define OCPDR_WRITE_CMD 0x80000000
448#define OCPDR_READ_CMD 0x00000000
449#define OCPDR_REG_MASK 0x7f
450#define OCPDR_GPHY_REG_SHIFT 16
451#define OCPDR_DATA_MASK 0xffff
452 OCPAR = 0xb4,
453#define OCPAR_FLAG 0x80000000
454#define OCPAR_GPHY_WRITE_CMD 0x8000f060
455#define OCPAR_GPHY_READ_CMD 0x0000f060
Hayes Wangc5583862012-07-02 17:23:22 +0800456 GPHY_OCP = 0xb8,
hayeswang01dc7fe2011-03-21 01:50:28 +0000457 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
458 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200459#define TXPLA_RST (1 << 29)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800460#define DISABLE_LAN_EN (1 << 23) /* Enable GPIO pin */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800461#define PWM_EN (1 << 22)
Hayes Wangc5583862012-07-02 17:23:22 +0800462#define RXDV_GATED_EN (1 << 19)
Hayes Wang5598bfe2012-07-02 17:23:21 +0800463#define EARLY_TALLY_EN (1 << 16)
françois romieuc0e45c12011-01-03 15:08:04 +0000464};
465
Francois Romieu07d3f512007-02-21 22:40:46 +0100466enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100468 SYSErr = 0x8000,
469 PCSTimeout = 0x4000,
470 SWInt = 0x0100,
471 TxDescUnavail = 0x0080,
472 RxFIFOOver = 0x0040,
473 LinkChg = 0x0020,
474 RxOverflow = 0x0010,
475 TxErr = 0x0008,
476 TxOK = 0x0004,
477 RxErr = 0x0002,
478 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400481 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200482 RxFOVF = (1 << 23),
483 RxRWT = (1 << 22),
484 RxRES = (1 << 21),
485 RxRUNT = (1 << 20),
486 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /* ChipCmdBits */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800489 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100490 CmdReset = 0x10,
491 CmdRxEnb = 0x08,
492 CmdTxEnb = 0x04,
493 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Francois Romieu275391a2007-02-23 23:50:28 +0100495 /* TXPoll register p.5 */
496 HPQ = 0x80, /* Poll cmd on the high prio queue */
497 NPQ = 0x40, /* Poll cmd on the low prio queue */
498 FSWInt = 0x01, /* Forced software interrupt */
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100501 Cfg9346_Lock = 0x00,
502 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100505 AcceptErr = 0x20,
506 AcceptRunt = 0x10,
507 AcceptBroadcast = 0x08,
508 AcceptMulticast = 0x04,
509 AcceptMyPhys = 0x02,
510 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200511#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /* TxConfigBits */
514 TxInterFrameGapShift = 24,
515 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
516
Francois Romieu5d06a992006-02-23 00:47:58 +0100517 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200518 LEDS1 = (1 << 7),
519 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200520 Speed_down = (1 << 4),
521 MEMMAP = (1 << 3),
522 IOMAP = (1 << 2),
523 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100524 PMEnable = (1 << 0), /* Power Management Enable */
525
Francois Romieu6dccd162007-02-13 23:38:05 +0100526 /* Config2 register p. 25 */
hayeswang57538c42013-04-01 22:23:40 +0000527 ClkReqEn = (1 << 7), /* Clock Request Enable */
françois romieu2ca6cf02011-12-15 08:37:43 +0000528 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100529 PCI_Clock_66MHz = 0x01,
530 PCI_Clock_33MHz = 0x00,
531
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100532 /* Config3 register p.25 */
533 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
534 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200535 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200536 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100537
Francois Romieud58d46b2011-05-03 16:38:29 +0200538 /* Config4 register */
539 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
540
Francois Romieu5d06a992006-02-23 00:47:58 +0100541 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100542 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
543 MWF = (1 << 5), /* Accept Multicast wakeup frame */
544 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200545 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100546 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100547 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
hayeswang57538c42013-04-01 22:23:40 +0000548 ASPM_en = (1 << 0), /* ASPM enable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 /* TBICSR p.28 */
551 TBIReset = 0x80000000,
552 TBILoopback = 0x40000000,
553 TBINwEnable = 0x20000000,
554 TBINwRestart = 0x10000000,
555 TBILinkOk = 0x02000000,
556 TBINwComplete = 0x01000000,
557
558 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200559 EnableBist = (1 << 15), // 8168 8101
560 Mac_dbgo_oe = (1 << 14), // 8168 8101
561 Normal_mode = (1 << 13), // unused
562 Force_half_dup = (1 << 12), // 8168 8101
563 Force_rxflow_en = (1 << 11), // 8168 8101
564 Force_txflow_en = (1 << 10), // 8168 8101
565 Cxpl_dbg_sel = (1 << 9), // 8168 8101
566 ASF = (1 << 8), // 8168 8101
567 PktCntrDisable = (1 << 7), // 8168 8101
568 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 RxVlan = (1 << 6),
570 RxChkSum = (1 << 5),
571 PCIDAC = (1 << 4),
572 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100573 INTT_0 = 0x0000, // 8168
574 INTT_1 = 0x0001, // 8168
575 INTT_2 = 0x0002, // 8168
576 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100579 TBI_Enable = 0x80,
580 TxFlowCtrl = 0x40,
581 RxFlowCtrl = 0x20,
582 _1000bpsF = 0x10,
583 _100bps = 0x08,
584 _10bps = 0x04,
585 LinkStatus = 0x02,
586 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100589 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200590
591 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100592 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593};
594
Francois Romieu2b7b4312011-04-18 22:53:24 -0700595enum rtl_desc_bit {
596 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
598 RingEnd = (1 << 30), /* End of descriptor ring */
599 FirstFrag = (1 << 29), /* First segment of a packet */
600 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700601};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Francois Romieu2b7b4312011-04-18 22:53:24 -0700603/* Generic case. */
604enum rtl_tx_desc_bit {
605 /* First doubleword. */
606 TD_LSO = (1 << 27), /* Large Send Offload */
607#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Francois Romieu2b7b4312011-04-18 22:53:24 -0700609 /* Second doubleword. */
610 TxVlanTag = (1 << 17), /* Add VLAN tag */
611};
612
613/* 8169, 8168b and 810x except 8102e. */
614enum rtl_tx_desc_bit_0 {
615 /* First doubleword. */
616#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
617 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
618 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
619 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
620};
621
622/* 8102e, 8168c and beyond. */
623enum rtl_tx_desc_bit_1 {
624 /* Second doubleword. */
625#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
626 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
627 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
628 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
629};
630
631static const struct rtl_tx_desc_info {
632 struct {
633 u32 udp;
634 u32 tcp;
635 } checksum;
636 u16 mss_shift;
637 u16 opts_offset;
638} tx_desc_info [] = {
639 [RTL_TD_0] = {
640 .checksum = {
641 .udp = TD0_IP_CS | TD0_UDP_CS,
642 .tcp = TD0_IP_CS | TD0_TCP_CS
643 },
644 .mss_shift = TD0_MSS_SHIFT,
645 .opts_offset = 0
646 },
647 [RTL_TD_1] = {
648 .checksum = {
649 .udp = TD1_IP_CS | TD1_UDP_CS,
650 .tcp = TD1_IP_CS | TD1_TCP_CS
651 },
652 .mss_shift = TD1_MSS_SHIFT,
653 .opts_offset = 1
654 }
655};
656
657enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /* Rx private */
659 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
660 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
661
662#define RxProtoUDP (PID1)
663#define RxProtoTCP (PID0)
664#define RxProtoIP (PID1 | PID0)
665#define RxProtoMask RxProtoIP
666
667 IPFail = (1 << 16), /* IP checksum failed */
668 UDPFail = (1 << 15), /* UDP/IP checksum failed */
669 TCPFail = (1 << 14), /* TCP/IP checksum failed */
670 RxVlanTag = (1 << 16), /* VLAN tag available */
671};
672
673#define RsvdMask 0x3fffc000
674
675struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200676 __le32 opts1;
677 __le32 opts2;
678 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679};
680
681struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200682 __le32 opts1;
683 __le32 opts2;
684 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685};
686
687struct ring_info {
688 struct sk_buff *skb;
689 u32 len;
690 u8 __pad[sizeof(void *) - sizeof(u32)];
691};
692
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200693enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200694 RTL_FEATURE_WOL = (1 << 0),
695 RTL_FEATURE_MSI = (1 << 1),
696 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200697};
698
Ivan Vecera355423d2009-02-06 21:49:57 -0800699struct rtl8169_counters {
700 __le64 tx_packets;
701 __le64 rx_packets;
702 __le64 tx_errors;
703 __le32 rx_errors;
704 __le16 rx_missed;
705 __le16 align_errors;
706 __le32 tx_one_collision;
707 __le32 tx_multi_collision;
708 __le64 rx_unicast;
709 __le64 rx_broadcast;
710 __le32 rx_multicast;
711 __le16 tx_aborted;
712 __le16 tx_underun;
713};
714
Francois Romieuda78dbf2012-01-26 14:18:23 +0100715enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100716 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100717 RTL_FLAG_TASK_SLOW_PENDING,
718 RTL_FLAG_TASK_RESET_PENDING,
719 RTL_FLAG_TASK_PHY_PENDING,
720 RTL_FLAG_MAX
721};
722
Junchang Wang8027aa22012-03-04 23:30:32 +0100723struct rtl8169_stats {
724 u64 packets;
725 u64 bytes;
726 struct u64_stats_sync syncp;
727};
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729struct rtl8169_private {
730 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200731 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000732 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700733 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200734 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700735 u16 txd_version;
736 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
738 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100740 struct rtl8169_stats rx_stats;
741 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
743 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
744 dma_addr_t TxPhyAddr;
745 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000746 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 struct timer_list timer;
749 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100750
751 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000752
753 struct mdio_ops {
Francois Romieu24192212012-07-06 20:19:42 +0200754 void (*write)(struct rtl8169_private *, int, int);
755 int (*read)(struct rtl8169_private *, int);
françois romieuc0e45c12011-01-03 15:08:04 +0000756 } mdio_ops;
757
françois romieu065c27c2011-01-03 15:08:12 +0000758 struct pll_power_ops {
759 void (*down)(struct rtl8169_private *);
760 void (*up)(struct rtl8169_private *);
761 } pll_power_ops;
762
Francois Romieud58d46b2011-05-03 16:38:29 +0200763 struct jumbo_ops {
764 void (*enable)(struct rtl8169_private *);
765 void (*disable)(struct rtl8169_private *);
766 } jumbo_ops;
767
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800768 struct csi_ops {
Francois Romieu52989f02012-07-06 13:37:00 +0200769 void (*write)(struct rtl8169_private *, int, int);
770 u32 (*read)(struct rtl8169_private *, int);
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800771 } csi_ops;
772
Oliver Neukum54405cd2011-01-06 21:55:13 +0100773 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200774 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000775 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100776 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000777 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800779 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100780
781 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100782 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
783 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100784 struct work_struct work;
785 } wk;
786
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200787 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200788
789 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800790 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000791 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400792 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000793
Francois Romieub6ffd972011-06-17 17:00:05 +0200794 struct rtl_fw {
795 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200796
797#define RTL_VER_SIZE 32
798
799 char version[RTL_VER_SIZE];
800
801 struct rtl_fw_phy_action {
802 __le32 *code;
803 size_t size;
804 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200805 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300806#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Hayes Wangc5583862012-07-02 17:23:22 +0800807
808 u32 ocp_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809};
810
Ralf Baechle979b6c12005-06-13 14:30:40 -0700811MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700814MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200815module_param_named(debug, debug.msg_enable, int, 0);
816MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817MODULE_LICENSE("GPL");
818MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000819MODULE_FIRMWARE(FIRMWARE_8168D_1);
820MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000821MODULE_FIRMWARE(FIRMWARE_8168E_1);
822MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400823MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800824MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800825MODULE_FIRMWARE(FIRMWARE_8168F_1);
826MODULE_FIRMWARE(FIRMWARE_8168F_2);
Hayes Wang7e18dca2012-03-30 14:33:02 +0800827MODULE_FIRMWARE(FIRMWARE_8402_1);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800828MODULE_FIRMWARE(FIRMWARE_8411_1);
Hayes Wang5598bfe2012-07-02 17:23:21 +0800829MODULE_FIRMWARE(FIRMWARE_8106E_1);
hayeswang58152cd2013-04-01 22:23:42 +0000830MODULE_FIRMWARE(FIRMWARE_8106E_2);
hayeswangbeb330a2013-04-01 22:23:39 +0000831MODULE_FIRMWARE(FIRMWARE_8168G_2);
hayeswang57538c42013-04-01 22:23:40 +0000832MODULE_FIRMWARE(FIRMWARE_8168G_3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Francois Romieuda78dbf2012-01-26 14:18:23 +0100834static void rtl_lock_work(struct rtl8169_private *tp)
835{
836 mutex_lock(&tp->wk.mutex);
837}
838
839static void rtl_unlock_work(struct rtl8169_private *tp)
840{
841 mutex_unlock(&tp->wk.mutex);
842}
843
Francois Romieud58d46b2011-05-03 16:38:29 +0200844static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
845{
Jiang Liu7d7903b2012-07-24 17:20:16 +0800846 pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
847 PCI_EXP_DEVCTL_READRQ, force);
Francois Romieud58d46b2011-05-03 16:38:29 +0200848}
849
Francois Romieuffc46952012-07-06 14:19:23 +0200850struct rtl_cond {
851 bool (*check)(struct rtl8169_private *);
852 const char *msg;
853};
854
855static void rtl_udelay(unsigned int d)
856{
857 udelay(d);
858}
859
860static bool rtl_loop_wait(struct rtl8169_private *tp, const struct rtl_cond *c,
861 void (*delay)(unsigned int), unsigned int d, int n,
862 bool high)
863{
864 int i;
865
866 for (i = 0; i < n; i++) {
867 delay(d);
868 if (c->check(tp) == high)
869 return true;
870 }
Francois Romieu82e316e2012-07-11 23:39:51 +0200871 netif_err(tp, drv, tp->dev, "%s == %d (loop: %d, delay: %d).\n",
872 c->msg, !high, n, d);
Francois Romieuffc46952012-07-06 14:19:23 +0200873 return false;
874}
875
876static bool rtl_udelay_loop_wait_high(struct rtl8169_private *tp,
877 const struct rtl_cond *c,
878 unsigned int d, int n)
879{
880 return rtl_loop_wait(tp, c, rtl_udelay, d, n, true);
881}
882
883static bool rtl_udelay_loop_wait_low(struct rtl8169_private *tp,
884 const struct rtl_cond *c,
885 unsigned int d, int n)
886{
887 return rtl_loop_wait(tp, c, rtl_udelay, d, n, false);
888}
889
890static bool rtl_msleep_loop_wait_high(struct rtl8169_private *tp,
891 const struct rtl_cond *c,
892 unsigned int d, int n)
893{
894 return rtl_loop_wait(tp, c, msleep, d, n, true);
895}
896
897static bool rtl_msleep_loop_wait_low(struct rtl8169_private *tp,
898 const struct rtl_cond *c,
899 unsigned int d, int n)
900{
901 return rtl_loop_wait(tp, c, msleep, d, n, false);
902}
903
904#define DECLARE_RTL_COND(name) \
905static bool name ## _check(struct rtl8169_private *); \
906 \
907static const struct rtl_cond name = { \
908 .check = name ## _check, \
909 .msg = #name \
910}; \
911 \
912static bool name ## _check(struct rtl8169_private *tp)
913
914DECLARE_RTL_COND(rtl_ocpar_cond)
915{
916 void __iomem *ioaddr = tp->mmio_addr;
917
918 return RTL_R32(OCPAR) & OCPAR_FLAG;
919}
920
françois romieub646d902011-01-03 15:08:21 +0000921static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
922{
923 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000924
925 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
Francois Romieuffc46952012-07-06 14:19:23 +0200926
927 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 100, 20) ?
928 RTL_R32(OCPDR) : ~0;
françois romieub646d902011-01-03 15:08:21 +0000929}
930
931static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
932{
933 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000934
935 RTL_W32(OCPDR, data);
936 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
Francois Romieuffc46952012-07-06 14:19:23 +0200937
938 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 100, 20);
939}
940
941DECLARE_RTL_COND(rtl_eriar_cond)
942{
943 void __iomem *ioaddr = tp->mmio_addr;
944
945 return RTL_R32(ERIAR) & ERIAR_FLAG;
françois romieub646d902011-01-03 15:08:21 +0000946}
947
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800948static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000949{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800950 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000951
952 RTL_W8(ERIDR, cmd);
953 RTL_W32(ERIAR, 0x800010e8);
954 msleep(2);
Francois Romieuffc46952012-07-06 14:19:23 +0200955
956 if (!rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 5))
957 return;
françois romieub646d902011-01-03 15:08:21 +0000958
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800959 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000960}
961
962#define OOB_CMD_RESET 0x00
963#define OOB_CMD_DRIVER_START 0x05
964#define OOB_CMD_DRIVER_STOP 0x06
965
Francois Romieucecb5fd2011-04-01 10:21:07 +0200966static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
967{
968 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
969}
970
Francois Romieuffc46952012-07-06 14:19:23 +0200971DECLARE_RTL_COND(rtl_ocp_read_cond)
françois romieub646d902011-01-03 15:08:21 +0000972{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200973 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000974
Francois Romieucecb5fd2011-04-01 10:21:07 +0200975 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000976
Francois Romieuffc46952012-07-06 14:19:23 +0200977 return ocp_read(tp, 0x0f, reg) & 0x00000800;
978}
979
980static void rtl8168_driver_start(struct rtl8169_private *tp)
981{
982 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
983
984 rtl_msleep_loop_wait_high(tp, &rtl_ocp_read_cond, 10, 10);
françois romieub646d902011-01-03 15:08:21 +0000985}
986
987static void rtl8168_driver_stop(struct rtl8169_private *tp)
988{
françois romieub646d902011-01-03 15:08:21 +0000989 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
990
Francois Romieuffc46952012-07-06 14:19:23 +0200991 rtl_msleep_loop_wait_low(tp, &rtl_ocp_read_cond, 10, 10);
françois romieub646d902011-01-03 15:08:21 +0000992}
993
hayeswang4804b3b2011-03-21 01:50:29 +0000994static int r8168dp_check_dash(struct rtl8169_private *tp)
995{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200996 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000997
Francois Romieucecb5fd2011-04-01 10:21:07 +0200998 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +0000999}
françois romieub646d902011-01-03 15:08:21 +00001000
Hayes Wangc5583862012-07-02 17:23:22 +08001001static bool rtl_ocp_reg_failure(struct rtl8169_private *tp, u32 reg)
1002{
1003 if (reg & 0xffff0001) {
1004 netif_err(tp, drv, tp->dev, "Invalid ocp reg %x!\n", reg);
1005 return true;
1006 }
1007 return false;
1008}
1009
1010DECLARE_RTL_COND(rtl_ocp_gphy_cond)
1011{
1012 void __iomem *ioaddr = tp->mmio_addr;
1013
1014 return RTL_R32(GPHY_OCP) & OCPAR_FLAG;
1015}
1016
1017static void r8168_phy_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1018{
1019 void __iomem *ioaddr = tp->mmio_addr;
1020
1021 if (rtl_ocp_reg_failure(tp, reg))
1022 return;
1023
1024 RTL_W32(GPHY_OCP, OCPAR_FLAG | (reg << 15) | data);
1025
1026 rtl_udelay_loop_wait_low(tp, &rtl_ocp_gphy_cond, 25, 10);
1027}
1028
1029static u16 r8168_phy_ocp_read(struct rtl8169_private *tp, u32 reg)
1030{
1031 void __iomem *ioaddr = tp->mmio_addr;
1032
1033 if (rtl_ocp_reg_failure(tp, reg))
1034 return 0;
1035
1036 RTL_W32(GPHY_OCP, reg << 15);
1037
1038 return rtl_udelay_loop_wait_high(tp, &rtl_ocp_gphy_cond, 25, 10) ?
1039 (RTL_R32(GPHY_OCP) & 0xffff) : ~0;
1040}
1041
Hayes Wangc5583862012-07-02 17:23:22 +08001042static void r8168_mac_ocp_write(struct rtl8169_private *tp, u32 reg, u32 data)
1043{
1044 void __iomem *ioaddr = tp->mmio_addr;
1045
1046 if (rtl_ocp_reg_failure(tp, reg))
1047 return;
1048
1049 RTL_W32(OCPDR, OCPAR_FLAG | (reg << 15) | data);
Hayes Wangc5583862012-07-02 17:23:22 +08001050}
1051
1052static u16 r8168_mac_ocp_read(struct rtl8169_private *tp, u32 reg)
1053{
1054 void __iomem *ioaddr = tp->mmio_addr;
1055
1056 if (rtl_ocp_reg_failure(tp, reg))
1057 return 0;
1058
1059 RTL_W32(OCPDR, reg << 15);
1060
Hayes Wang3a83ad12012-07-11 20:31:56 +08001061 return RTL_R32(OCPDR);
Hayes Wangc5583862012-07-02 17:23:22 +08001062}
1063
1064#define OCP_STD_PHY_BASE 0xa400
1065
1066static void r8168g_mdio_write(struct rtl8169_private *tp, int reg, int value)
1067{
1068 if (reg == 0x1f) {
1069 tp->ocp_base = value ? value << 4 : OCP_STD_PHY_BASE;
1070 return;
1071 }
1072
1073 if (tp->ocp_base != OCP_STD_PHY_BASE)
1074 reg -= 0x10;
1075
1076 r8168_phy_ocp_write(tp, tp->ocp_base + reg * 2, value);
1077}
1078
1079static int r8168g_mdio_read(struct rtl8169_private *tp, int reg)
1080{
1081 if (tp->ocp_base != OCP_STD_PHY_BASE)
1082 reg -= 0x10;
1083
1084 return r8168_phy_ocp_read(tp, tp->ocp_base + reg * 2);
1085}
1086
hayeswangeee37862013-04-01 22:23:38 +00001087static void mac_mcu_write(struct rtl8169_private *tp, int reg, int value)
1088{
1089 if (reg == 0x1f) {
1090 tp->ocp_base = value << 4;
1091 return;
1092 }
1093
1094 r8168_mac_ocp_write(tp, tp->ocp_base + reg, value);
1095}
1096
1097static int mac_mcu_read(struct rtl8169_private *tp, int reg)
1098{
1099 return r8168_mac_ocp_read(tp, tp->ocp_base + reg);
1100}
1101
Francois Romieuffc46952012-07-06 14:19:23 +02001102DECLARE_RTL_COND(rtl_phyar_cond)
1103{
1104 void __iomem *ioaddr = tp->mmio_addr;
1105
1106 return RTL_R32(PHYAR) & 0x80000000;
1107}
1108
Francois Romieu24192212012-07-06 20:19:42 +02001109static void r8169_mdio_write(struct rtl8169_private *tp, int reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Francois Romieu24192212012-07-06 20:19:42 +02001111 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Francois Romieu24192212012-07-06 20:19:42 +02001113 RTL_W32(PHYAR, 0x80000000 | (reg & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Francois Romieuffc46952012-07-06 14:19:23 +02001115 rtl_udelay_loop_wait_low(tp, &rtl_phyar_cond, 25, 20);
Timo Teräs024a07b2010-06-06 15:38:47 -07001116 /*
Timo Teräs81a95f02010-06-09 17:31:48 -07001117 * According to hardware specs a 20us delay is required after write
1118 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -07001119 */
Timo Teräs81a95f02010-06-09 17:31:48 -07001120 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
Francois Romieu24192212012-07-06 20:19:42 +02001123static int r8169_mdio_read(struct rtl8169_private *tp, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
Francois Romieu24192212012-07-06 20:19:42 +02001125 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieuffc46952012-07-06 14:19:23 +02001126 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Francois Romieu24192212012-07-06 20:19:42 +02001128 RTL_W32(PHYAR, 0x0 | (reg & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Francois Romieuffc46952012-07-06 14:19:23 +02001130 value = rtl_udelay_loop_wait_high(tp, &rtl_phyar_cond, 25, 20) ?
1131 RTL_R32(PHYAR) & 0xffff : ~0;
1132
Timo Teräs81a95f02010-06-09 17:31:48 -07001133 /*
1134 * According to hardware specs a 20us delay is required after read
1135 * complete indication, but before sending next command.
1136 */
1137 udelay(20);
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return value;
1140}
1141
Francois Romieu24192212012-07-06 20:19:42 +02001142static void r8168dp_1_mdio_access(struct rtl8169_private *tp, int reg, u32 data)
françois romieuc0e45c12011-01-03 15:08:04 +00001143{
Francois Romieu24192212012-07-06 20:19:42 +02001144 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001145
Francois Romieu24192212012-07-06 20:19:42 +02001146 RTL_W32(OCPDR, data | ((reg & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
françois romieuc0e45c12011-01-03 15:08:04 +00001147 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
1148 RTL_W32(EPHY_RXER_NUM, 0);
1149
Francois Romieuffc46952012-07-06 14:19:23 +02001150 rtl_udelay_loop_wait_low(tp, &rtl_ocpar_cond, 1000, 100);
françois romieuc0e45c12011-01-03 15:08:04 +00001151}
1152
Francois Romieu24192212012-07-06 20:19:42 +02001153static void r8168dp_1_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieuc0e45c12011-01-03 15:08:04 +00001154{
Francois Romieu24192212012-07-06 20:19:42 +02001155 r8168dp_1_mdio_access(tp, reg,
1156 OCPDR_WRITE_CMD | (value & OCPDR_DATA_MASK));
françois romieuc0e45c12011-01-03 15:08:04 +00001157}
1158
Francois Romieu24192212012-07-06 20:19:42 +02001159static int r8168dp_1_mdio_read(struct rtl8169_private *tp, int reg)
françois romieuc0e45c12011-01-03 15:08:04 +00001160{
Francois Romieu24192212012-07-06 20:19:42 +02001161 void __iomem *ioaddr = tp->mmio_addr;
françois romieuc0e45c12011-01-03 15:08:04 +00001162
Francois Romieu24192212012-07-06 20:19:42 +02001163 r8168dp_1_mdio_access(tp, reg, OCPDR_READ_CMD);
françois romieuc0e45c12011-01-03 15:08:04 +00001164
1165 mdelay(1);
1166 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
1167 RTL_W32(EPHY_RXER_NUM, 0);
1168
Francois Romieuffc46952012-07-06 14:19:23 +02001169 return rtl_udelay_loop_wait_high(tp, &rtl_ocpar_cond, 1000, 100) ?
1170 RTL_R32(OCPDR) & OCPDR_DATA_MASK : ~0;
françois romieuc0e45c12011-01-03 15:08:04 +00001171}
1172
françois romieue6de30d2011-01-03 15:08:37 +00001173#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1174
1175static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1176{
1177 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1178}
1179
1180static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1181{
1182 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1183}
1184
Francois Romieu24192212012-07-06 20:19:42 +02001185static void r8168dp_2_mdio_write(struct rtl8169_private *tp, int reg, int value)
françois romieue6de30d2011-01-03 15:08:37 +00001186{
Francois Romieu24192212012-07-06 20:19:42 +02001187 void __iomem *ioaddr = tp->mmio_addr;
1188
françois romieue6de30d2011-01-03 15:08:37 +00001189 r8168dp_2_mdio_start(ioaddr);
1190
Francois Romieu24192212012-07-06 20:19:42 +02001191 r8169_mdio_write(tp, reg, value);
françois romieue6de30d2011-01-03 15:08:37 +00001192
1193 r8168dp_2_mdio_stop(ioaddr);
1194}
1195
Francois Romieu24192212012-07-06 20:19:42 +02001196static int r8168dp_2_mdio_read(struct rtl8169_private *tp, int reg)
françois romieue6de30d2011-01-03 15:08:37 +00001197{
Francois Romieu24192212012-07-06 20:19:42 +02001198 void __iomem *ioaddr = tp->mmio_addr;
françois romieue6de30d2011-01-03 15:08:37 +00001199 int value;
1200
1201 r8168dp_2_mdio_start(ioaddr);
1202
Francois Romieu24192212012-07-06 20:19:42 +02001203 value = r8169_mdio_read(tp, reg);
françois romieue6de30d2011-01-03 15:08:37 +00001204
1205 r8168dp_2_mdio_stop(ioaddr);
1206
1207 return value;
1208}
1209
françois romieu4da19632011-01-03 15:07:55 +00001210static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001211{
Francois Romieu24192212012-07-06 20:19:42 +02001212 tp->mdio_ops.write(tp, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001213}
1214
françois romieu4da19632011-01-03 15:07:55 +00001215static int rtl_readphy(struct rtl8169_private *tp, int location)
1216{
Francois Romieu24192212012-07-06 20:19:42 +02001217 return tp->mdio_ops.read(tp, location);
françois romieu4da19632011-01-03 15:07:55 +00001218}
1219
1220static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1221{
1222 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1223}
1224
1225static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001226{
1227 int val;
1228
françois romieu4da19632011-01-03 15:07:55 +00001229 val = rtl_readphy(tp, reg_addr);
1230 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +00001231}
1232
Francois Romieuccdffb92008-07-26 14:26:06 +02001233static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1234 int val)
1235{
1236 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001237
françois romieu4da19632011-01-03 15:07:55 +00001238 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001239}
1240
1241static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1242{
1243 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001244
françois romieu4da19632011-01-03 15:07:55 +00001245 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001246}
1247
Francois Romieuffc46952012-07-06 14:19:23 +02001248DECLARE_RTL_COND(rtl_ephyar_cond)
1249{
1250 void __iomem *ioaddr = tp->mmio_addr;
1251
1252 return RTL_R32(EPHYAR) & EPHYAR_FLAG;
1253}
1254
Francois Romieufdf6fc02012-07-06 22:40:38 +02001255static void rtl_ephy_write(struct rtl8169_private *tp, int reg_addr, int value)
Francois Romieudacf8152008-08-02 20:44:13 +02001256{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001257 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001258
1259 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1260 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1261
Francois Romieuffc46952012-07-06 14:19:23 +02001262 rtl_udelay_loop_wait_low(tp, &rtl_ephyar_cond, 10, 100);
1263
1264 udelay(10);
Francois Romieudacf8152008-08-02 20:44:13 +02001265}
1266
Francois Romieufdf6fc02012-07-06 22:40:38 +02001267static u16 rtl_ephy_read(struct rtl8169_private *tp, int reg_addr)
Francois Romieudacf8152008-08-02 20:44:13 +02001268{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001269 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieudacf8152008-08-02 20:44:13 +02001270
1271 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1272
Francois Romieuffc46952012-07-06 14:19:23 +02001273 return rtl_udelay_loop_wait_high(tp, &rtl_ephyar_cond, 10, 100) ?
1274 RTL_R32(EPHYAR) & EPHYAR_DATA_MASK : ~0;
Francois Romieudacf8152008-08-02 20:44:13 +02001275}
1276
Francois Romieufdf6fc02012-07-06 22:40:38 +02001277static void rtl_eri_write(struct rtl8169_private *tp, int addr, u32 mask,
1278 u32 val, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001279{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001280 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001281
1282 BUG_ON((addr & 3) || (mask == 0));
1283 RTL_W32(ERIDR, val);
1284 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1285
Francois Romieuffc46952012-07-06 14:19:23 +02001286 rtl_udelay_loop_wait_low(tp, &rtl_eriar_cond, 100, 100);
Hayes Wang133ac402011-07-06 15:58:05 +08001287}
1288
Francois Romieufdf6fc02012-07-06 22:40:38 +02001289static u32 rtl_eri_read(struct rtl8169_private *tp, int addr, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001290{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001291 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang133ac402011-07-06 15:58:05 +08001292
1293 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1294
Francois Romieuffc46952012-07-06 14:19:23 +02001295 return rtl_udelay_loop_wait_high(tp, &rtl_eriar_cond, 100, 100) ?
1296 RTL_R32(ERIDR) : ~0;
Hayes Wang133ac402011-07-06 15:58:05 +08001297}
1298
Francois Romieufdf6fc02012-07-06 22:40:38 +02001299static void rtl_w1w0_eri(struct rtl8169_private *tp, int addr, u32 mask, u32 p,
1300 u32 m, int type)
Hayes Wang133ac402011-07-06 15:58:05 +08001301{
1302 u32 val;
1303
Francois Romieufdf6fc02012-07-06 22:40:38 +02001304 val = rtl_eri_read(tp, addr, type);
1305 rtl_eri_write(tp, addr, mask, (val & ~m) | p, type);
Hayes Wang133ac402011-07-06 15:58:05 +08001306}
1307
françois romieuc28aa382011-08-02 03:53:43 +00001308struct exgmac_reg {
1309 u16 addr;
1310 u16 mask;
1311 u32 val;
1312};
1313
Francois Romieufdf6fc02012-07-06 22:40:38 +02001314static void rtl_write_exgmac_batch(struct rtl8169_private *tp,
françois romieuc28aa382011-08-02 03:53:43 +00001315 const struct exgmac_reg *r, int len)
1316{
1317 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001318 rtl_eri_write(tp, r->addr, r->mask, r->val, ERIAR_EXGMAC);
françois romieuc28aa382011-08-02 03:53:43 +00001319 r++;
1320 }
1321}
1322
Francois Romieuffc46952012-07-06 14:19:23 +02001323DECLARE_RTL_COND(rtl_efusear_cond)
1324{
1325 void __iomem *ioaddr = tp->mmio_addr;
1326
1327 return RTL_R32(EFUSEAR) & EFUSEAR_FLAG;
1328}
1329
Francois Romieufdf6fc02012-07-06 22:40:38 +02001330static u8 rtl8168d_efuse_read(struct rtl8169_private *tp, int reg_addr)
françois romieudaf9df62009-10-07 12:44:20 +00001331{
Francois Romieufdf6fc02012-07-06 22:40:38 +02001332 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00001333
1334 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1335
Francois Romieuffc46952012-07-06 14:19:23 +02001336 return rtl_udelay_loop_wait_high(tp, &rtl_efusear_cond, 100, 300) ?
1337 RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK : ~0;
françois romieudaf9df62009-10-07 12:44:20 +00001338}
1339
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001340static u16 rtl_get_events(struct rtl8169_private *tp)
1341{
1342 void __iomem *ioaddr = tp->mmio_addr;
1343
1344 return RTL_R16(IntrStatus);
1345}
1346
1347static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1348{
1349 void __iomem *ioaddr = tp->mmio_addr;
1350
1351 RTL_W16(IntrStatus, bits);
1352 mmiowb();
1353}
1354
1355static void rtl_irq_disable(struct rtl8169_private *tp)
1356{
1357 void __iomem *ioaddr = tp->mmio_addr;
1358
1359 RTL_W16(IntrMask, 0);
1360 mmiowb();
1361}
1362
Francois Romieu3e990ff2012-01-26 12:50:01 +01001363static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1364{
1365 void __iomem *ioaddr = tp->mmio_addr;
1366
1367 RTL_W16(IntrMask, bits);
1368}
1369
Francois Romieuda78dbf2012-01-26 14:18:23 +01001370#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1371#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1372#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1373
1374static void rtl_irq_enable_all(struct rtl8169_private *tp)
1375{
1376 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1377}
1378
françois romieu811fd302011-12-04 20:30:45 +00001379static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
françois romieu811fd302011-12-04 20:30:45 +00001381 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001383 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001384 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001385 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387
françois romieu4da19632011-01-03 15:07:55 +00001388static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
françois romieu4da19632011-01-03 15:07:55 +00001390 void __iomem *ioaddr = tp->mmio_addr;
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return RTL_R32(TBICSR) & TBIReset;
1393}
1394
françois romieu4da19632011-01-03 15:07:55 +00001395static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
françois romieu4da19632011-01-03 15:07:55 +00001397 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
1400static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1401{
1402 return RTL_R32(TBICSR) & TBILinkOk;
1403}
1404
1405static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1406{
1407 return RTL_R8(PHYstatus) & LinkStatus;
1408}
1409
françois romieu4da19632011-01-03 15:07:55 +00001410static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
françois romieu4da19632011-01-03 15:07:55 +00001412 void __iomem *ioaddr = tp->mmio_addr;
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1415}
1416
françois romieu4da19632011-01-03 15:07:55 +00001417static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
1419 unsigned int val;
1420
françois romieu4da19632011-01-03 15:07:55 +00001421 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1422 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
Hayes Wang70090422011-07-06 15:58:06 +08001425static void rtl_link_chg_patch(struct rtl8169_private *tp)
1426{
1427 void __iomem *ioaddr = tp->mmio_addr;
1428 struct net_device *dev = tp->dev;
1429
1430 if (!netif_running(dev))
1431 return;
1432
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001433 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1434 tp->mac_version == RTL_GIGA_MAC_VER_38) {
Hayes Wang70090422011-07-06 15:58:06 +08001435 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001436 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1437 ERIAR_EXGMAC);
1438 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1439 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001440 } else if (RTL_R8(PHYstatus) & _100bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001441 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1442 ERIAR_EXGMAC);
1443 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1444 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001445 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001446 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1447 ERIAR_EXGMAC);
1448 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1449 ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08001450 }
1451 /* Reset packet filter */
Francois Romieufdf6fc02012-07-06 22:40:38 +02001452 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
Hayes Wang70090422011-07-06 15:58:06 +08001453 ERIAR_EXGMAC);
Francois Romieufdf6fc02012-07-06 22:40:38 +02001454 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
Hayes Wang70090422011-07-06 15:58:06 +08001455 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001456 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1457 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1458 if (RTL_R8(PHYstatus) & _1000bpsF) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001459 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x00000011,
1460 ERIAR_EXGMAC);
1461 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x00000005,
1462 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001463 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001464 rtl_eri_write(tp, 0x1bc, ERIAR_MASK_1111, 0x0000001f,
1465 ERIAR_EXGMAC);
1466 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_1111, 0x0000003f,
1467 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001468 }
Hayes Wang7e18dca2012-03-30 14:33:02 +08001469 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1470 if (RTL_R8(PHYstatus) & _10bps) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001471 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x4d02,
1472 ERIAR_EXGMAC);
1473 rtl_eri_write(tp, 0x1dc, ERIAR_MASK_0011, 0x0060,
1474 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001475 } else {
Francois Romieufdf6fc02012-07-06 22:40:38 +02001476 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000,
1477 ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08001478 }
Hayes Wang70090422011-07-06 15:58:06 +08001479 }
1480}
1481
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001482static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001483 struct rtl8169_private *tp,
1484 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001487 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001488 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001489 if (pm)
1490 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001492 if (net_ratelimit())
1493 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001494 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001496 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001497 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001498 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001502static void rtl8169_check_link_status(struct net_device *dev,
1503 struct rtl8169_private *tp,
1504 void __iomem *ioaddr)
1505{
1506 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1507}
1508
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001509#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1510
1511static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1512{
1513 void __iomem *ioaddr = tp->mmio_addr;
1514 u8 options;
1515 u32 wolopts = 0;
1516
1517 options = RTL_R8(Config1);
1518 if (!(options & PMEnable))
1519 return 0;
1520
1521 options = RTL_R8(Config3);
1522 if (options & LinkUp)
1523 wolopts |= WAKE_PHY;
1524 if (options & MagicPacket)
1525 wolopts |= WAKE_MAGIC;
1526
1527 options = RTL_R8(Config5);
1528 if (options & UWF)
1529 wolopts |= WAKE_UCAST;
1530 if (options & BWF)
1531 wolopts |= WAKE_BCAST;
1532 if (options & MWF)
1533 wolopts |= WAKE_MCAST;
1534
1535 return wolopts;
1536}
1537
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001538static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1539{
1540 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001541
Francois Romieuda78dbf2012-01-26 14:18:23 +01001542 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001543
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001544 wol->supported = WAKE_ANY;
1545 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001546
Francois Romieuda78dbf2012-01-26 14:18:23 +01001547 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001548}
1549
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001550static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001551{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001552 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001553 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001554 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001555 u32 opt;
1556 u16 reg;
1557 u8 mask;
1558 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001559 { WAKE_PHY, Config3, LinkUp },
1560 { WAKE_MAGIC, Config3, MagicPacket },
1561 { WAKE_UCAST, Config5, UWF },
1562 { WAKE_BCAST, Config5, BWF },
1563 { WAKE_MCAST, Config5, MWF },
1564 { WAKE_ANY, Config5, LanWake }
1565 };
Francois Romieu851e6022012-04-17 11:10:11 +02001566 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001567
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001568 RTL_W8(Cfg9346, Cfg9346_Unlock);
1569
1570 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
Francois Romieu851e6022012-04-17 11:10:11 +02001571 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001572 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001573 options |= cfg[i].mask;
1574 RTL_W8(cfg[i].reg, options);
1575 }
1576
Francois Romieu851e6022012-04-17 11:10:11 +02001577 switch (tp->mac_version) {
1578 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1579 options = RTL_R8(Config1) & ~PMEnable;
1580 if (wolopts)
1581 options |= PMEnable;
1582 RTL_W8(Config1, options);
1583 break;
1584 default:
Francois Romieud387b422012-04-17 11:12:01 +02001585 options = RTL_R8(Config2) & ~PME_SIGNAL;
1586 if (wolopts)
1587 options |= PME_SIGNAL;
1588 RTL_W8(Config2, options);
Francois Romieu851e6022012-04-17 11:10:11 +02001589 break;
1590 }
1591
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001592 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001593}
1594
1595static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1596{
1597 struct rtl8169_private *tp = netdev_priv(dev);
1598
Francois Romieuda78dbf2012-01-26 14:18:23 +01001599 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001600
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001601 if (wol->wolopts)
1602 tp->features |= RTL_FEATURE_WOL;
1603 else
1604 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001605 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001606
1607 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001608
françois romieuea809072010-11-08 13:23:58 +00001609 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1610
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001611 return 0;
1612}
1613
Francois Romieu31bd2042011-04-26 18:58:59 +02001614static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1615{
Francois Romieu85bffe62011-04-27 08:22:39 +02001616 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001617}
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619static void rtl8169_get_drvinfo(struct net_device *dev,
1620 struct ethtool_drvinfo *info)
1621{
1622 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001623 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Rick Jones68aad782011-11-07 13:29:27 +00001625 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1626 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1627 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001628 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001629 if (!IS_ERR_OR_NULL(rtl_fw))
1630 strlcpy(info->fw_version, rtl_fw->version,
1631 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
1634static int rtl8169_get_regs_len(struct net_device *dev)
1635{
1636 return R8169_REGS_SIZE;
1637}
1638
1639static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001640 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
1642 struct rtl8169_private *tp = netdev_priv(dev);
1643 void __iomem *ioaddr = tp->mmio_addr;
1644 int ret = 0;
1645 u32 reg;
1646
1647 reg = RTL_R32(TBICSR);
1648 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1649 (duplex == DUPLEX_FULL)) {
1650 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1651 } else if (autoneg == AUTONEG_ENABLE)
1652 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1653 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001654 netif_warn(tp, link, dev,
1655 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 ret = -EOPNOTSUPP;
1657 }
1658
1659 return ret;
1660}
1661
1662static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001663 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
1665 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001666 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001667 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Hayes Wang716b50a2011-02-22 17:26:18 +08001669 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
1671 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001672 int auto_nego;
1673
françois romieu4da19632011-01-03 15:07:55 +00001674 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001675 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1676 ADVERTISE_100HALF | ADVERTISE_100FULL);
1677
1678 if (adv & ADVERTISED_10baseT_Half)
1679 auto_nego |= ADVERTISE_10HALF;
1680 if (adv & ADVERTISED_10baseT_Full)
1681 auto_nego |= ADVERTISE_10FULL;
1682 if (adv & ADVERTISED_100baseT_Half)
1683 auto_nego |= ADVERTISE_100HALF;
1684 if (adv & ADVERTISED_100baseT_Full)
1685 auto_nego |= ADVERTISE_100FULL;
1686
françois romieu3577aa12009-05-19 10:46:48 +00001687 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1688
françois romieu4da19632011-01-03 15:07:55 +00001689 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001690 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1691
1692 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001693 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001694 if (adv & ADVERTISED_1000baseT_Half)
1695 giga_ctrl |= ADVERTISE_1000HALF;
1696 if (adv & ADVERTISED_1000baseT_Full)
1697 giga_ctrl |= ADVERTISE_1000FULL;
1698 } else if (adv & (ADVERTISED_1000baseT_Half |
1699 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001700 netif_info(tp, link, dev,
1701 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001702 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
françois romieu3577aa12009-05-19 10:46:48 +00001705 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001706
françois romieu4da19632011-01-03 15:07:55 +00001707 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1708 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001709 } else {
1710 giga_ctrl = 0;
1711
1712 if (speed == SPEED_10)
1713 bmcr = 0;
1714 else if (speed == SPEED_100)
1715 bmcr = BMCR_SPEED100;
1716 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001717 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001718
1719 if (duplex == DUPLEX_FULL)
1720 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001721 }
1722
françois romieu4da19632011-01-03 15:07:55 +00001723 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001724
Francois Romieucecb5fd2011-04-01 10:21:07 +02001725 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1726 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001727 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001728 rtl_writephy(tp, 0x17, 0x2138);
1729 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001730 } else {
françois romieu4da19632011-01-03 15:07:55 +00001731 rtl_writephy(tp, 0x17, 0x2108);
1732 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001733 }
1734 }
1735
Oliver Neukum54405cd2011-01-06 21:55:13 +01001736 rc = 0;
1737out:
1738 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
1741static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001742 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
1744 struct rtl8169_private *tp = netdev_priv(dev);
1745 int ret;
1746
Oliver Neukum54405cd2011-01-06 21:55:13 +01001747 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001748 if (ret < 0)
1749 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Francois Romieu4876cc12011-03-11 21:07:11 +01001751 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1752 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001754 }
1755out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return ret;
1757}
1758
1759static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1760{
1761 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 int ret;
1763
Francois Romieu4876cc12011-03-11 21:07:11 +01001764 del_timer_sync(&tp->timer);
1765
Francois Romieuda78dbf2012-01-26 14:18:23 +01001766 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001767 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001768 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001769 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 return ret;
1772}
1773
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001774static netdev_features_t rtl8169_fix_features(struct net_device *dev,
1775 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
Francois Romieud58d46b2011-05-03 16:38:29 +02001777 struct rtl8169_private *tp = netdev_priv(dev);
1778
Francois Romieu2b7b4312011-04-18 22:53:24 -07001779 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001780 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Francois Romieud58d46b2011-05-03 16:38:29 +02001782 if (dev->mtu > JUMBO_1K &&
1783 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
1784 features &= ~NETIF_F_IP_CSUM;
1785
Michał Mirosław350fb322011-04-08 06:35:56 +00001786 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
Francois Romieuda78dbf2012-01-26 14:18:23 +01001789static void __rtl8169_set_features(struct net_device *dev,
1790 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
1792 struct rtl8169_private *tp = netdev_priv(dev);
Ben Greear6bbe0212012-02-10 15:04:33 +00001793 netdev_features_t changed = features ^ dev->features;
Francois Romieuda78dbf2012-01-26 14:18:23 +01001794 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Patrick McHardyf6469682013-04-19 02:04:27 +00001796 if (!(changed & (NETIF_F_RXALL | NETIF_F_RXCSUM |
1797 NETIF_F_HW_VLAN_CTAG_RX)))
Ben Greear6bbe0212012-02-10 15:04:33 +00001798 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Patrick McHardyf6469682013-04-19 02:04:27 +00001800 if (changed & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX)) {
Ben Greear6bbe0212012-02-10 15:04:33 +00001801 if (features & NETIF_F_RXCSUM)
1802 tp->cp_cmd |= RxChkSum;
1803 else
1804 tp->cp_cmd &= ~RxChkSum;
Michał Mirosław350fb322011-04-08 06:35:56 +00001805
Patrick McHardyf6469682013-04-19 02:04:27 +00001806 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
Ben Greear6bbe0212012-02-10 15:04:33 +00001807 tp->cp_cmd |= RxVlan;
1808 else
1809 tp->cp_cmd &= ~RxVlan;
1810
1811 RTL_W16(CPlusCmd, tp->cp_cmd);
1812 RTL_R16(CPlusCmd);
1813 }
1814 if (changed & NETIF_F_RXALL) {
1815 int tmp = (RTL_R32(RxConfig) & ~(AcceptErr | AcceptRunt));
1816 if (features & NETIF_F_RXALL)
1817 tmp |= (AcceptErr | AcceptRunt);
1818 RTL_W32(RxConfig, tmp);
1819 }
Francois Romieuda78dbf2012-01-26 14:18:23 +01001820}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Francois Romieuda78dbf2012-01-26 14:18:23 +01001822static int rtl8169_set_features(struct net_device *dev,
1823 netdev_features_t features)
1824{
1825 struct rtl8169_private *tp = netdev_priv(dev);
1826
1827 rtl_lock_work(tp);
1828 __rtl8169_set_features(dev, features);
1829 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 return 0;
1832}
1833
Francois Romieuda78dbf2012-01-26 14:18:23 +01001834
Kirill Smelkov810f4892012-11-10 21:11:02 +04001835static inline u32 rtl8169_tx_vlan_tag(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
Jesse Grosseab6d182010-10-20 13:56:03 +00001837 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1839}
1840
Francois Romieu7a8fc772011-03-01 17:18:33 +01001841static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842{
1843 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Francois Romieu7a8fc772011-03-01 17:18:33 +01001845 if (opts2 & RxVlanTag)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001846 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
Francois Romieuccdffb92008-07-26 14:26:06 +02001849static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
1851 struct rtl8169_private *tp = netdev_priv(dev);
1852 void __iomem *ioaddr = tp->mmio_addr;
1853 u32 status;
1854
1855 cmd->supported =
1856 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1857 cmd->port = PORT_FIBRE;
1858 cmd->transceiver = XCVR_INTERNAL;
1859
1860 status = RTL_R32(TBICSR);
1861 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1862 cmd->autoneg = !!(status & TBINwEnable);
1863
David Decotigny70739492011-04-27 18:32:40 +00001864 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001866
1867 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
1869
Francois Romieuccdffb92008-07-26 14:26:06 +02001870static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
1872 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Francois Romieuccdffb92008-07-26 14:26:06 +02001874 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875}
1876
1877static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1878{
1879 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001880 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Francois Romieuda78dbf2012-01-26 14:18:23 +01001882 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02001883 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001884 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Francois Romieuccdffb92008-07-26 14:26:06 +02001886 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887}
1888
1889static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1890 void *p)
1891{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001892 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Francois Romieu5b0384f2006-08-16 16:00:01 +02001894 if (regs->len > R8169_REGS_SIZE)
1895 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Francois Romieuda78dbf2012-01-26 14:18:23 +01001897 rtl_lock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001898 memcpy_fromio(p, tp->mmio_addr, regs->len);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001899 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001902static u32 rtl8169_get_msglevel(struct net_device *dev)
1903{
1904 struct rtl8169_private *tp = netdev_priv(dev);
1905
1906 return tp->msg_enable;
1907}
1908
1909static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1910{
1911 struct rtl8169_private *tp = netdev_priv(dev);
1912
1913 tp->msg_enable = value;
1914}
1915
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001916static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1917 "tx_packets",
1918 "rx_packets",
1919 "tx_errors",
1920 "rx_errors",
1921 "rx_missed",
1922 "align_errors",
1923 "tx_single_collisions",
1924 "tx_multi_collisions",
1925 "unicast",
1926 "broadcast",
1927 "multicast",
1928 "tx_aborted",
1929 "tx_underrun",
1930};
1931
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001932static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001933{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001934 switch (sset) {
1935 case ETH_SS_STATS:
1936 return ARRAY_SIZE(rtl8169_gstrings);
1937 default:
1938 return -EOPNOTSUPP;
1939 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001940}
1941
Francois Romieuffc46952012-07-06 14:19:23 +02001942DECLARE_RTL_COND(rtl_counters_cond)
1943{
1944 void __iomem *ioaddr = tp->mmio_addr;
1945
1946 return RTL_R32(CounterAddrLow) & CounterDump;
1947}
1948
Ivan Vecera355423d2009-02-06 21:49:57 -08001949static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001950{
1951 struct rtl8169_private *tp = netdev_priv(dev);
1952 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001953 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001954 struct rtl8169_counters *counters;
1955 dma_addr_t paddr;
1956 u32 cmd;
1957
Ivan Vecera355423d2009-02-06 21:49:57 -08001958 /*
1959 * Some chips are unable to dump tally counters when the receiver
1960 * is disabled.
1961 */
1962 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1963 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001964
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001965 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001966 if (!counters)
1967 return;
1968
1969 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001970 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001971 RTL_W32(CounterAddrLow, cmd);
1972 RTL_W32(CounterAddrLow, cmd | CounterDump);
1973
Francois Romieuffc46952012-07-06 14:19:23 +02001974 if (rtl_udelay_loop_wait_low(tp, &rtl_counters_cond, 10, 1000))
1975 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001976
1977 RTL_W32(CounterAddrLow, 0);
1978 RTL_W32(CounterAddrHigh, 0);
1979
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001980 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001981}
1982
Ivan Vecera355423d2009-02-06 21:49:57 -08001983static void rtl8169_get_ethtool_stats(struct net_device *dev,
1984 struct ethtool_stats *stats, u64 *data)
1985{
1986 struct rtl8169_private *tp = netdev_priv(dev);
1987
1988 ASSERT_RTNL();
1989
1990 rtl8169_update_counters(dev);
1991
1992 data[0] = le64_to_cpu(tp->counters.tx_packets);
1993 data[1] = le64_to_cpu(tp->counters.rx_packets);
1994 data[2] = le64_to_cpu(tp->counters.tx_errors);
1995 data[3] = le32_to_cpu(tp->counters.rx_errors);
1996 data[4] = le16_to_cpu(tp->counters.rx_missed);
1997 data[5] = le16_to_cpu(tp->counters.align_errors);
1998 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1999 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
2000 data[8] = le64_to_cpu(tp->counters.rx_unicast);
2001 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
2002 data[10] = le32_to_cpu(tp->counters.rx_multicast);
2003 data[11] = le16_to_cpu(tp->counters.tx_aborted);
2004 data[12] = le16_to_cpu(tp->counters.tx_underun);
2005}
2006
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002007static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2008{
2009 switch(stringset) {
2010 case ETH_SS_STATS:
2011 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
2012 break;
2013 }
2014}
2015
Jeff Garzik7282d492006-09-13 14:30:00 -04002016static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 .get_drvinfo = rtl8169_get_drvinfo,
2018 .get_regs_len = rtl8169_get_regs_len,
2019 .get_link = ethtool_op_get_link,
2020 .get_settings = rtl8169_get_settings,
2021 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002022 .get_msglevel = rtl8169_get_msglevel,
2023 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002025 .get_wol = rtl8169_get_wol,
2026 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002027 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002028 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02002029 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00002030 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031};
2032
Francois Romieu07d3f512007-02-21 22:40:46 +01002033static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02002034 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Francois Romieu5d320a22011-05-08 17:47:36 +02002036 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002037 /*
2038 * The driver currently handles the 8168Bf and the 8168Be identically
2039 * but they can be identified more specifically through the test below
2040 * if needed:
2041 *
2042 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01002043 *
2044 * Same thing for the 8101Eb and the 8101Ec:
2045 *
2046 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01002047 */
Francois Romieu37441002011-06-17 22:58:54 +02002048 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002050 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 int mac_version;
2052 } mac_info[] = {
Hayes Wangc5583862012-07-02 17:23:22 +08002053 /* 8168G family. */
hayeswang57538c42013-04-01 22:23:40 +00002054 { 0x7cf00000, 0x50900000, RTL_GIGA_MAC_VER_42 },
Hayes Wangc5583862012-07-02 17:23:22 +08002055 { 0x7cf00000, 0x4c100000, RTL_GIGA_MAC_VER_41 },
2056 { 0x7cf00000, 0x4c000000, RTL_GIGA_MAC_VER_40 },
2057
Hayes Wangc2218922011-09-06 16:55:18 +08002058 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08002059 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08002060 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
2061 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
2062
hayeswang01dc7fe2011-03-21 01:50:28 +00002063 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08002064 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00002065 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
2066 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
2067 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
2068
Francois Romieu5b538df2008-07-20 16:22:45 +02002069 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00002070 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
2071 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00002072 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002073
françois romieue6de30d2011-01-03 15:08:37 +00002074 /* 8168DP family. */
2075 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
2076 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00002077 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00002078
Francois Romieuef808d52008-06-29 13:10:54 +02002079 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07002080 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02002081 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02002082 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002083 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002084 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
2085 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02002086 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02002087 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02002088 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002089
2090 /* 8168B family. */
2091 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
2092 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
2093 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
2094 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
2095
2096 /* 8101 family. */
Hayes Wang5598bfe2012-07-02 17:23:21 +08002097 { 0x7cf00000, 0x44900000, RTL_GIGA_MAC_VER_39 },
2098 { 0x7c800000, 0x44800000, RTL_GIGA_MAC_VER_39 },
Hayes Wang7e18dca2012-03-30 14:33:02 +08002099 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00002100 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08002101 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
2102 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
2103 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002104 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
2105 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
2106 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
2107 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
2108 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
2109 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002110 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002111 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002112 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02002113 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
2114 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002115 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
2116 /* FIXME: where did these entries come from ? -- FR */
2117 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
2118 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
2119
2120 /* 8110 family. */
2121 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
2122 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
2123 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
2124 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
2125 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
2126 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
2127
Jean Delvaref21b75e2009-05-26 20:54:48 -07002128 /* Catch-all */
2129 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02002130 };
2131 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 u32 reg;
2133
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002134 reg = RTL_R32(TxConfig);
2135 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 p++;
2137 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02002138
2139 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
2140 netif_notice(tp, probe, dev,
2141 "unknown MAC, using family default\n");
2142 tp->mac_version = default_version;
hayeswang58152cd2013-04-01 22:23:42 +00002143 } else if (tp->mac_version == RTL_GIGA_MAC_VER_42) {
2144 tp->mac_version = tp->mii.supports_gmii ?
2145 RTL_GIGA_MAC_VER_42 :
2146 RTL_GIGA_MAC_VER_43;
Francois Romieu5d320a22011-05-08 17:47:36 +02002147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
2149
2150static void rtl8169_print_mac_version(struct rtl8169_private *tp)
2151{
Francois Romieubcf0bf92006-07-26 23:14:13 +02002152 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
Francois Romieu867763c2007-08-17 18:21:58 +02002155struct phy_reg {
2156 u16 reg;
2157 u16 val;
2158};
2159
françois romieu4da19632011-01-03 15:07:55 +00002160static void rtl_writephy_batch(struct rtl8169_private *tp,
2161 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02002162{
2163 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00002164 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02002165 regs++;
2166 }
2167}
2168
françois romieubca03d52011-01-03 15:07:31 +00002169#define PHY_READ 0x00000000
2170#define PHY_DATA_OR 0x10000000
2171#define PHY_DATA_AND 0x20000000
2172#define PHY_BJMPN 0x30000000
hayeswangeee37862013-04-01 22:23:38 +00002173#define PHY_MDIO_CHG 0x40000000
françois romieubca03d52011-01-03 15:07:31 +00002174#define PHY_CLEAR_READCOUNT 0x70000000
2175#define PHY_WRITE 0x80000000
2176#define PHY_READCOUNT_EQ_SKIP 0x90000000
2177#define PHY_COMP_EQ_SKIPN 0xa0000000
2178#define PHY_COMP_NEQ_SKIPN 0xb0000000
2179#define PHY_WRITE_PREVIOUS 0xc0000000
2180#define PHY_SKIPN 0xd0000000
2181#define PHY_DELAY_MS 0xe0000000
françois romieubca03d52011-01-03 15:07:31 +00002182
Hayes Wang960aee62011-06-18 11:37:48 +02002183struct fw_info {
2184 u32 magic;
2185 char version[RTL_VER_SIZE];
2186 __le32 fw_start;
2187 __le32 fw_len;
2188 u8 chksum;
2189} __packed;
2190
Francois Romieu1c361ef2011-06-17 17:16:24 +02002191#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2192
2193static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002194{
Francois Romieub6ffd972011-06-17 17:00:05 +02002195 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002196 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002197 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2198 char *version = rtl_fw->version;
2199 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002200
Francois Romieu1c361ef2011-06-17 17:16:24 +02002201 if (fw->size < FW_OPCODE_SIZE)
2202 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002203
2204 if (!fw_info->magic) {
2205 size_t i, size, start;
2206 u8 checksum = 0;
2207
2208 if (fw->size < sizeof(*fw_info))
2209 goto out;
2210
2211 for (i = 0; i < fw->size; i++)
2212 checksum += fw->data[i];
2213 if (checksum != 0)
2214 goto out;
2215
2216 start = le32_to_cpu(fw_info->fw_start);
2217 if (start > fw->size)
2218 goto out;
2219
2220 size = le32_to_cpu(fw_info->fw_len);
2221 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2222 goto out;
2223
2224 memcpy(version, fw_info->version, RTL_VER_SIZE);
2225
2226 pa->code = (__le32 *)(fw->data + start);
2227 pa->size = size;
2228 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002229 if (fw->size % FW_OPCODE_SIZE)
2230 goto out;
2231
2232 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2233
2234 pa->code = (__le32 *)fw->data;
2235 pa->size = fw->size / FW_OPCODE_SIZE;
2236 }
2237 version[RTL_VER_SIZE - 1] = 0;
2238
2239 rc = true;
2240out:
2241 return rc;
2242}
2243
Francois Romieufd112f22011-06-18 00:10:29 +02002244static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2245 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002246{
Francois Romieufd112f22011-06-18 00:10:29 +02002247 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002248 size_t index;
2249
Francois Romieu1c361ef2011-06-17 17:16:24 +02002250 for (index = 0; index < pa->size; index++) {
2251 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002252 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002253
hayeswang42b82dc2011-01-10 02:07:25 +00002254 switch(action & 0xf0000000) {
2255 case PHY_READ:
2256 case PHY_DATA_OR:
2257 case PHY_DATA_AND:
hayeswangeee37862013-04-01 22:23:38 +00002258 case PHY_MDIO_CHG:
hayeswang42b82dc2011-01-10 02:07:25 +00002259 case PHY_CLEAR_READCOUNT:
2260 case PHY_WRITE:
2261 case PHY_WRITE_PREVIOUS:
2262 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002263 break;
2264
hayeswang42b82dc2011-01-10 02:07:25 +00002265 case PHY_BJMPN:
2266 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002267 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002268 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002269 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002270 }
2271 break;
2272 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002273 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002274 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002275 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002276 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002277 }
2278 break;
2279 case PHY_COMP_EQ_SKIPN:
2280 case PHY_COMP_NEQ_SKIPN:
2281 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002282 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002283 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002284 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002285 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002286 }
2287 break;
2288
hayeswang42b82dc2011-01-10 02:07:25 +00002289 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002290 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002291 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002292 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002293 }
2294 }
Francois Romieufd112f22011-06-18 00:10:29 +02002295 rc = true;
2296out:
2297 return rc;
2298}
françois romieubca03d52011-01-03 15:07:31 +00002299
Francois Romieufd112f22011-06-18 00:10:29 +02002300static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2301{
2302 struct net_device *dev = tp->dev;
2303 int rc = -EINVAL;
2304
2305 if (!rtl_fw_format_ok(tp, rtl_fw)) {
2306 netif_err(tp, ifup, dev, "invalid firwmare\n");
2307 goto out;
2308 }
2309
2310 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2311 rc = 0;
2312out:
2313 return rc;
2314}
2315
2316static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2317{
2318 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
hayeswangeee37862013-04-01 22:23:38 +00002319 struct mdio_ops org, *ops = &tp->mdio_ops;
Francois Romieufd112f22011-06-18 00:10:29 +02002320 u32 predata, count;
2321 size_t index;
2322
2323 predata = count = 0;
hayeswangeee37862013-04-01 22:23:38 +00002324 org.write = ops->write;
2325 org.read = ops->read;
hayeswang42b82dc2011-01-10 02:07:25 +00002326
Francois Romieu1c361ef2011-06-17 17:16:24 +02002327 for (index = 0; index < pa->size; ) {
2328 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002329 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002330 u32 regno = (action & 0x0fff0000) >> 16;
2331
2332 if (!action)
2333 break;
françois romieubca03d52011-01-03 15:07:31 +00002334
2335 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002336 case PHY_READ:
2337 predata = rtl_readphy(tp, regno);
2338 count++;
2339 index++;
françois romieubca03d52011-01-03 15:07:31 +00002340 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002341 case PHY_DATA_OR:
2342 predata |= data;
2343 index++;
2344 break;
2345 case PHY_DATA_AND:
2346 predata &= data;
2347 index++;
2348 break;
2349 case PHY_BJMPN:
2350 index -= regno;
2351 break;
hayeswangeee37862013-04-01 22:23:38 +00002352 case PHY_MDIO_CHG:
2353 if (data == 0) {
2354 ops->write = org.write;
2355 ops->read = org.read;
2356 } else if (data == 1) {
2357 ops->write = mac_mcu_write;
2358 ops->read = mac_mcu_read;
2359 }
2360
hayeswang42b82dc2011-01-10 02:07:25 +00002361 index++;
2362 break;
2363 case PHY_CLEAR_READCOUNT:
2364 count = 0;
2365 index++;
2366 break;
2367 case PHY_WRITE:
2368 rtl_writephy(tp, regno, data);
2369 index++;
2370 break;
2371 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002372 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002373 break;
2374 case PHY_COMP_EQ_SKIPN:
2375 if (predata == data)
2376 index += regno;
2377 index++;
2378 break;
2379 case PHY_COMP_NEQ_SKIPN:
2380 if (predata != data)
2381 index += regno;
2382 index++;
2383 break;
2384 case PHY_WRITE_PREVIOUS:
2385 rtl_writephy(tp, regno, predata);
2386 index++;
2387 break;
2388 case PHY_SKIPN:
2389 index += regno + 1;
2390 break;
2391 case PHY_DELAY_MS:
2392 mdelay(data);
2393 index++;
2394 break;
2395
françois romieubca03d52011-01-03 15:07:31 +00002396 default:
2397 BUG();
2398 }
2399 }
hayeswangeee37862013-04-01 22:23:38 +00002400
2401 ops->write = org.write;
2402 ops->read = org.read;
françois romieubca03d52011-01-03 15:07:31 +00002403}
2404
françois romieuf1e02ed2011-01-13 13:07:53 +00002405static void rtl_release_firmware(struct rtl8169_private *tp)
2406{
Francois Romieub6ffd972011-06-17 17:00:05 +02002407 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2408 release_firmware(tp->rtl_fw->fw);
2409 kfree(tp->rtl_fw);
2410 }
2411 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002412}
2413
François Romieu953a12c2011-04-24 17:38:48 +02002414static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002415{
Francois Romieub6ffd972011-06-17 17:00:05 +02002416 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002417
2418 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieueef63cc2013-02-08 23:43:20 +01002419 if (!IS_ERR_OR_NULL(rtl_fw))
Francois Romieub6ffd972011-06-17 17:00:05 +02002420 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002421}
2422
2423static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2424{
2425 if (rtl_readphy(tp, reg) != val)
2426 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2427 else
2428 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002429}
2430
françois romieu4da19632011-01-03 15:07:55 +00002431static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002433 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002434 { 0x1f, 0x0001 },
2435 { 0x06, 0x006e },
2436 { 0x08, 0x0708 },
2437 { 0x15, 0x4000 },
2438 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
françois romieu0b9b5712009-08-10 19:44:56 +00002440 { 0x1f, 0x0001 },
2441 { 0x03, 0x00a1 },
2442 { 0x02, 0x0008 },
2443 { 0x01, 0x0120 },
2444 { 0x00, 0x1000 },
2445 { 0x04, 0x0800 },
2446 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
françois romieu0b9b5712009-08-10 19:44:56 +00002448 { 0x03, 0xff41 },
2449 { 0x02, 0xdf60 },
2450 { 0x01, 0x0140 },
2451 { 0x00, 0x0077 },
2452 { 0x04, 0x7800 },
2453 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
françois romieu0b9b5712009-08-10 19:44:56 +00002455 { 0x03, 0x802f },
2456 { 0x02, 0x4f02 },
2457 { 0x01, 0x0409 },
2458 { 0x00, 0xf0f9 },
2459 { 0x04, 0x9800 },
2460 { 0x04, 0x9000 },
2461
2462 { 0x03, 0xdf01 },
2463 { 0x02, 0xdf20 },
2464 { 0x01, 0xff95 },
2465 { 0x00, 0xba00 },
2466 { 0x04, 0xa800 },
2467 { 0x04, 0xa000 },
2468
2469 { 0x03, 0xff41 },
2470 { 0x02, 0xdf20 },
2471 { 0x01, 0x0140 },
2472 { 0x00, 0x00bb },
2473 { 0x04, 0xb800 },
2474 { 0x04, 0xb000 },
2475
2476 { 0x03, 0xdf41 },
2477 { 0x02, 0xdc60 },
2478 { 0x01, 0x6340 },
2479 { 0x00, 0x007d },
2480 { 0x04, 0xd800 },
2481 { 0x04, 0xd000 },
2482
2483 { 0x03, 0xdf01 },
2484 { 0x02, 0xdf20 },
2485 { 0x01, 0x100a },
2486 { 0x00, 0xa0ff },
2487 { 0x04, 0xf800 },
2488 { 0x04, 0xf000 },
2489
2490 { 0x1f, 0x0000 },
2491 { 0x0b, 0x0000 },
2492 { 0x00, 0x9200 }
2493 };
2494
françois romieu4da19632011-01-03 15:07:55 +00002495 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
françois romieu4da19632011-01-03 15:07:55 +00002498static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002499{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002500 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002501 { 0x1f, 0x0002 },
2502 { 0x01, 0x90d0 },
2503 { 0x1f, 0x0000 }
2504 };
2505
françois romieu4da19632011-01-03 15:07:55 +00002506 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002507}
2508
françois romieu4da19632011-01-03 15:07:55 +00002509static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002510{
2511 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002512
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002513 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2514 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002515 return;
2516
françois romieu4da19632011-01-03 15:07:55 +00002517 rtl_writephy(tp, 0x1f, 0x0001);
2518 rtl_writephy(tp, 0x10, 0xf01b);
2519 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002520}
2521
françois romieu4da19632011-01-03 15:07:55 +00002522static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002523{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002524 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002525 { 0x1f, 0x0001 },
2526 { 0x04, 0x0000 },
2527 { 0x03, 0x00a1 },
2528 { 0x02, 0x0008 },
2529 { 0x01, 0x0120 },
2530 { 0x00, 0x1000 },
2531 { 0x04, 0x0800 },
2532 { 0x04, 0x9000 },
2533 { 0x03, 0x802f },
2534 { 0x02, 0x4f02 },
2535 { 0x01, 0x0409 },
2536 { 0x00, 0xf099 },
2537 { 0x04, 0x9800 },
2538 { 0x04, 0xa000 },
2539 { 0x03, 0xdf01 },
2540 { 0x02, 0xdf20 },
2541 { 0x01, 0xff95 },
2542 { 0x00, 0xba00 },
2543 { 0x04, 0xa800 },
2544 { 0x04, 0xf000 },
2545 { 0x03, 0xdf01 },
2546 { 0x02, 0xdf20 },
2547 { 0x01, 0x101a },
2548 { 0x00, 0xa0ff },
2549 { 0x04, 0xf800 },
2550 { 0x04, 0x0000 },
2551 { 0x1f, 0x0000 },
2552
2553 { 0x1f, 0x0001 },
2554 { 0x10, 0xf41b },
2555 { 0x14, 0xfb54 },
2556 { 0x18, 0xf5c7 },
2557 { 0x1f, 0x0000 },
2558
2559 { 0x1f, 0x0001 },
2560 { 0x17, 0x0cc0 },
2561 { 0x1f, 0x0000 }
2562 };
2563
françois romieu4da19632011-01-03 15:07:55 +00002564 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002565
françois romieu4da19632011-01-03 15:07:55 +00002566 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002567}
2568
françois romieu4da19632011-01-03 15:07:55 +00002569static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002570{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002571 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002572 { 0x1f, 0x0001 },
2573 { 0x04, 0x0000 },
2574 { 0x03, 0x00a1 },
2575 { 0x02, 0x0008 },
2576 { 0x01, 0x0120 },
2577 { 0x00, 0x1000 },
2578 { 0x04, 0x0800 },
2579 { 0x04, 0x9000 },
2580 { 0x03, 0x802f },
2581 { 0x02, 0x4f02 },
2582 { 0x01, 0x0409 },
2583 { 0x00, 0xf099 },
2584 { 0x04, 0x9800 },
2585 { 0x04, 0xa000 },
2586 { 0x03, 0xdf01 },
2587 { 0x02, 0xdf20 },
2588 { 0x01, 0xff95 },
2589 { 0x00, 0xba00 },
2590 { 0x04, 0xa800 },
2591 { 0x04, 0xf000 },
2592 { 0x03, 0xdf01 },
2593 { 0x02, 0xdf20 },
2594 { 0x01, 0x101a },
2595 { 0x00, 0xa0ff },
2596 { 0x04, 0xf800 },
2597 { 0x04, 0x0000 },
2598 { 0x1f, 0x0000 },
2599
2600 { 0x1f, 0x0001 },
2601 { 0x0b, 0x8480 },
2602 { 0x1f, 0x0000 },
2603
2604 { 0x1f, 0x0001 },
2605 { 0x18, 0x67c7 },
2606 { 0x04, 0x2000 },
2607 { 0x03, 0x002f },
2608 { 0x02, 0x4360 },
2609 { 0x01, 0x0109 },
2610 { 0x00, 0x3022 },
2611 { 0x04, 0x2800 },
2612 { 0x1f, 0x0000 },
2613
2614 { 0x1f, 0x0001 },
2615 { 0x17, 0x0cc0 },
2616 { 0x1f, 0x0000 }
2617 };
2618
françois romieu4da19632011-01-03 15:07:55 +00002619 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002620}
2621
françois romieu4da19632011-01-03 15:07:55 +00002622static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002623{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002624 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002625 { 0x10, 0xf41b },
2626 { 0x1f, 0x0000 }
2627 };
2628
françois romieu4da19632011-01-03 15:07:55 +00002629 rtl_writephy(tp, 0x1f, 0x0001);
2630 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002631
françois romieu4da19632011-01-03 15:07:55 +00002632 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002633}
2634
françois romieu4da19632011-01-03 15:07:55 +00002635static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002636{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002637 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002638 { 0x1f, 0x0001 },
2639 { 0x10, 0xf41b },
2640 { 0x1f, 0x0000 }
2641 };
2642
françois romieu4da19632011-01-03 15:07:55 +00002643 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002644}
2645
françois romieu4da19632011-01-03 15:07:55 +00002646static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002647{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002648 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002649 { 0x1f, 0x0000 },
2650 { 0x1d, 0x0f00 },
2651 { 0x1f, 0x0002 },
2652 { 0x0c, 0x1ec8 },
2653 { 0x1f, 0x0000 }
2654 };
2655
françois romieu4da19632011-01-03 15:07:55 +00002656 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002657}
2658
françois romieu4da19632011-01-03 15:07:55 +00002659static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002660{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002661 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002662 { 0x1f, 0x0001 },
2663 { 0x1d, 0x3d98 },
2664 { 0x1f, 0x0000 }
2665 };
2666
françois romieu4da19632011-01-03 15:07:55 +00002667 rtl_writephy(tp, 0x1f, 0x0000);
2668 rtl_patchphy(tp, 0x14, 1 << 5);
2669 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002670
françois romieu4da19632011-01-03 15:07:55 +00002671 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002672}
2673
françois romieu4da19632011-01-03 15:07:55 +00002674static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002675{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002676 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002677 { 0x1f, 0x0001 },
2678 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002679 { 0x1f, 0x0002 },
2680 { 0x00, 0x88d4 },
2681 { 0x01, 0x82b1 },
2682 { 0x03, 0x7002 },
2683 { 0x08, 0x9e30 },
2684 { 0x09, 0x01f0 },
2685 { 0x0a, 0x5500 },
2686 { 0x0c, 0x00c8 },
2687 { 0x1f, 0x0003 },
2688 { 0x12, 0xc096 },
2689 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002690 { 0x1f, 0x0000 },
2691 { 0x1f, 0x0000 },
2692 { 0x09, 0x2000 },
2693 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002694 };
2695
françois romieu4da19632011-01-03 15:07:55 +00002696 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002697
françois romieu4da19632011-01-03 15:07:55 +00002698 rtl_patchphy(tp, 0x14, 1 << 5);
2699 rtl_patchphy(tp, 0x0d, 1 << 5);
2700 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002701}
2702
françois romieu4da19632011-01-03 15:07:55 +00002703static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002704{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002705 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002706 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002707 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002708 { 0x03, 0x802f },
2709 { 0x02, 0x4f02 },
2710 { 0x01, 0x0409 },
2711 { 0x00, 0xf099 },
2712 { 0x04, 0x9800 },
2713 { 0x04, 0x9000 },
2714 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002715 { 0x1f, 0x0002 },
2716 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002717 { 0x06, 0x0761 },
2718 { 0x1f, 0x0003 },
2719 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002720 { 0x1f, 0x0000 }
2721 };
2722
françois romieu4da19632011-01-03 15:07:55 +00002723 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002724
françois romieu4da19632011-01-03 15:07:55 +00002725 rtl_patchphy(tp, 0x16, 1 << 0);
2726 rtl_patchphy(tp, 0x14, 1 << 5);
2727 rtl_patchphy(tp, 0x0d, 1 << 5);
2728 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002729}
2730
françois romieu4da19632011-01-03 15:07:55 +00002731static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002732{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002733 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002734 { 0x1f, 0x0001 },
2735 { 0x12, 0x2300 },
2736 { 0x1d, 0x3d98 },
2737 { 0x1f, 0x0002 },
2738 { 0x0c, 0x7eb8 },
2739 { 0x06, 0x5461 },
2740 { 0x1f, 0x0003 },
2741 { 0x16, 0x0f0a },
2742 { 0x1f, 0x0000 }
2743 };
2744
françois romieu4da19632011-01-03 15:07:55 +00002745 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002746
françois romieu4da19632011-01-03 15:07:55 +00002747 rtl_patchphy(tp, 0x16, 1 << 0);
2748 rtl_patchphy(tp, 0x14, 1 << 5);
2749 rtl_patchphy(tp, 0x0d, 1 << 5);
2750 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002751}
2752
françois romieu4da19632011-01-03 15:07:55 +00002753static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002754{
françois romieu4da19632011-01-03 15:07:55 +00002755 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002756}
2757
françois romieubca03d52011-01-03 15:07:31 +00002758static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002759{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002760 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002761 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002762 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002763 { 0x06, 0x4064 },
2764 { 0x07, 0x2863 },
2765 { 0x08, 0x059c },
2766 { 0x09, 0x26b4 },
2767 { 0x0a, 0x6a19 },
2768 { 0x0b, 0xdcc8 },
2769 { 0x10, 0xf06d },
2770 { 0x14, 0x7f68 },
2771 { 0x18, 0x7fd9 },
2772 { 0x1c, 0xf0ff },
2773 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002774 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002775 { 0x12, 0xf49f },
2776 { 0x13, 0x070b },
2777 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002778 { 0x14, 0x94c0 },
2779
2780 /*
2781 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002782 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002783 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002784 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002785 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002786 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002787 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002788 { 0x06, 0x5561 },
2789
2790 /*
2791 * Can not link to 1Gbps with bad cable
2792 * Decrease SNR threshold form 21.07dB to 19.04dB
2793 */
2794 { 0x1f, 0x0001 },
2795 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002796
2797 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002798 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002799 };
2800
françois romieu4da19632011-01-03 15:07:55 +00002801 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002802
françois romieubca03d52011-01-03 15:07:31 +00002803 /*
2804 * Rx Error Issue
2805 * Fine Tune Switching regulator parameter
2806 */
françois romieu4da19632011-01-03 15:07:55 +00002807 rtl_writephy(tp, 0x1f, 0x0002);
2808 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2809 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002810
Francois Romieufdf6fc02012-07-06 22:40:38 +02002811 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002812 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002813 { 0x1f, 0x0002 },
2814 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002815 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002816 { 0x05, 0x8330 },
2817 { 0x06, 0x669a },
2818 { 0x1f, 0x0002 }
2819 };
2820 int val;
2821
françois romieu4da19632011-01-03 15:07:55 +00002822 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002823
françois romieu4da19632011-01-03 15:07:55 +00002824 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002825
2826 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002827 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002828 0x0065, 0x0066, 0x0067, 0x0068,
2829 0x0069, 0x006a, 0x006b, 0x006c
2830 };
2831 int i;
2832
françois romieu4da19632011-01-03 15:07:55 +00002833 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002834
2835 val &= 0xff00;
2836 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002837 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002838 }
2839 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002840 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002841 { 0x1f, 0x0002 },
2842 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002843 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002844 { 0x05, 0x8330 },
2845 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002846 };
2847
françois romieu4da19632011-01-03 15:07:55 +00002848 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002849 }
2850
françois romieubca03d52011-01-03 15:07:31 +00002851 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002852 rtl_writephy(tp, 0x1f, 0x0002);
2853 rtl_patchphy(tp, 0x0d, 0x0300);
2854 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002855
françois romieubca03d52011-01-03 15:07:31 +00002856 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002857 rtl_writephy(tp, 0x1f, 0x0002);
2858 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2859 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002860
françois romieu4da19632011-01-03 15:07:55 +00002861 rtl_writephy(tp, 0x1f, 0x0005);
2862 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002863
2864 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002865
françois romieu4da19632011-01-03 15:07:55 +00002866 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002867}
2868
françois romieubca03d52011-01-03 15:07:31 +00002869static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002870{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002871 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002872 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002873 { 0x1f, 0x0001 },
2874 { 0x06, 0x4064 },
2875 { 0x07, 0x2863 },
2876 { 0x08, 0x059c },
2877 { 0x09, 0x26b4 },
2878 { 0x0a, 0x6a19 },
2879 { 0x0b, 0xdcc8 },
2880 { 0x10, 0xf06d },
2881 { 0x14, 0x7f68 },
2882 { 0x18, 0x7fd9 },
2883 { 0x1c, 0xf0ff },
2884 { 0x1d, 0x3d9c },
2885 { 0x1f, 0x0003 },
2886 { 0x12, 0xf49f },
2887 { 0x13, 0x070b },
2888 { 0x1a, 0x05ad },
2889 { 0x14, 0x94c0 },
2890
françois romieubca03d52011-01-03 15:07:31 +00002891 /*
2892 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002893 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002894 */
françois romieudaf9df62009-10-07 12:44:20 +00002895 { 0x1f, 0x0002 },
2896 { 0x06, 0x5561 },
2897 { 0x1f, 0x0005 },
2898 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002899 { 0x06, 0x5561 },
2900
2901 /*
2902 * Can not link to 1Gbps with bad cable
2903 * Decrease SNR threshold form 21.07dB to 19.04dB
2904 */
2905 { 0x1f, 0x0001 },
2906 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002907
2908 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002909 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002910 };
2911
françois romieu4da19632011-01-03 15:07:55 +00002912 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002913
Francois Romieufdf6fc02012-07-06 22:40:38 +02002914 if (rtl8168d_efuse_read(tp, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002915 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002916 { 0x1f, 0x0002 },
2917 { 0x05, 0x669a },
2918 { 0x1f, 0x0005 },
2919 { 0x05, 0x8330 },
2920 { 0x06, 0x669a },
2921
2922 { 0x1f, 0x0002 }
2923 };
2924 int val;
2925
françois romieu4da19632011-01-03 15:07:55 +00002926 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002927
françois romieu4da19632011-01-03 15:07:55 +00002928 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002929 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002930 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002931 0x0065, 0x0066, 0x0067, 0x0068,
2932 0x0069, 0x006a, 0x006b, 0x006c
2933 };
2934 int i;
2935
françois romieu4da19632011-01-03 15:07:55 +00002936 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002937
2938 val &= 0xff00;
2939 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002940 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002941 }
2942 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002943 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002944 { 0x1f, 0x0002 },
2945 { 0x05, 0x2642 },
2946 { 0x1f, 0x0005 },
2947 { 0x05, 0x8330 },
2948 { 0x06, 0x2642 }
2949 };
2950
françois romieu4da19632011-01-03 15:07:55 +00002951 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002952 }
2953
françois romieubca03d52011-01-03 15:07:31 +00002954 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002955 rtl_writephy(tp, 0x1f, 0x0002);
2956 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2957 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002958
françois romieubca03d52011-01-03 15:07:31 +00002959 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002960 rtl_writephy(tp, 0x1f, 0x0002);
2961 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002962
françois romieu4da19632011-01-03 15:07:55 +00002963 rtl_writephy(tp, 0x1f, 0x0005);
2964 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002965
2966 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002967
françois romieu4da19632011-01-03 15:07:55 +00002968 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002969}
2970
françois romieu4da19632011-01-03 15:07:55 +00002971static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002972{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002973 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002974 { 0x1f, 0x0002 },
2975 { 0x10, 0x0008 },
2976 { 0x0d, 0x006c },
2977
2978 { 0x1f, 0x0000 },
2979 { 0x0d, 0xf880 },
2980
2981 { 0x1f, 0x0001 },
2982 { 0x17, 0x0cc0 },
2983
2984 { 0x1f, 0x0001 },
2985 { 0x0b, 0xa4d8 },
2986 { 0x09, 0x281c },
2987 { 0x07, 0x2883 },
2988 { 0x0a, 0x6b35 },
2989 { 0x1d, 0x3da4 },
2990 { 0x1c, 0xeffd },
2991 { 0x14, 0x7f52 },
2992 { 0x18, 0x7fc6 },
2993 { 0x08, 0x0601 },
2994 { 0x06, 0x4063 },
2995 { 0x10, 0xf074 },
2996 { 0x1f, 0x0003 },
2997 { 0x13, 0x0789 },
2998 { 0x12, 0xf4bd },
2999 { 0x1a, 0x04fd },
3000 { 0x14, 0x84b0 },
3001 { 0x1f, 0x0000 },
3002 { 0x00, 0x9200 },
3003
3004 { 0x1f, 0x0005 },
3005 { 0x01, 0x0340 },
3006 { 0x1f, 0x0001 },
3007 { 0x04, 0x4000 },
3008 { 0x03, 0x1d21 },
3009 { 0x02, 0x0c32 },
3010 { 0x01, 0x0200 },
3011 { 0x00, 0x5554 },
3012 { 0x04, 0x4800 },
3013 { 0x04, 0x4000 },
3014 { 0x04, 0xf000 },
3015 { 0x03, 0xdf01 },
3016 { 0x02, 0xdf20 },
3017 { 0x01, 0x101a },
3018 { 0x00, 0xa0ff },
3019 { 0x04, 0xf800 },
3020 { 0x04, 0xf000 },
3021 { 0x1f, 0x0000 },
3022
3023 { 0x1f, 0x0007 },
3024 { 0x1e, 0x0023 },
3025 { 0x16, 0x0000 },
3026 { 0x1f, 0x0000 }
3027 };
3028
françois romieu4da19632011-01-03 15:07:55 +00003029 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02003030}
3031
françois romieue6de30d2011-01-03 15:08:37 +00003032static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
3033{
3034 static const struct phy_reg phy_reg_init[] = {
3035 { 0x1f, 0x0001 },
3036 { 0x17, 0x0cc0 },
3037
3038 { 0x1f, 0x0007 },
3039 { 0x1e, 0x002d },
3040 { 0x18, 0x0040 },
3041 { 0x1f, 0x0000 }
3042 };
3043
3044 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3045 rtl_patchphy(tp, 0x0d, 1 << 5);
3046}
3047
Hayes Wang70090422011-07-06 15:58:06 +08003048static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00003049{
3050 static const struct phy_reg phy_reg_init[] = {
3051 /* Enable Delay cap */
3052 { 0x1f, 0x0005 },
3053 { 0x05, 0x8b80 },
3054 { 0x06, 0xc896 },
3055 { 0x1f, 0x0000 },
3056
3057 /* Channel estimation fine tune */
3058 { 0x1f, 0x0001 },
3059 { 0x0b, 0x6c20 },
3060 { 0x07, 0x2872 },
3061 { 0x1c, 0xefff },
3062 { 0x1f, 0x0003 },
3063 { 0x14, 0x6420 },
3064 { 0x1f, 0x0000 },
3065
3066 /* Update PFM & 10M TX idle timer */
3067 { 0x1f, 0x0007 },
3068 { 0x1e, 0x002f },
3069 { 0x15, 0x1919 },
3070 { 0x1f, 0x0000 },
3071
3072 { 0x1f, 0x0007 },
3073 { 0x1e, 0x00ac },
3074 { 0x18, 0x0006 },
3075 { 0x1f, 0x0000 }
3076 };
3077
Francois Romieu15ecd032011-04-27 13:52:22 -07003078 rtl_apply_firmware(tp);
3079
hayeswang01dc7fe2011-03-21 01:50:28 +00003080 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3081
3082 /* DCO enable for 10M IDLE Power */
3083 rtl_writephy(tp, 0x1f, 0x0007);
3084 rtl_writephy(tp, 0x1e, 0x0023);
3085 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
3086 rtl_writephy(tp, 0x1f, 0x0000);
3087
3088 /* For impedance matching */
3089 rtl_writephy(tp, 0x1f, 0x0002);
3090 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003091 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003092
3093 /* PHY auto speed down */
3094 rtl_writephy(tp, 0x1f, 0x0007);
3095 rtl_writephy(tp, 0x1e, 0x002d);
3096 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
3097 rtl_writephy(tp, 0x1f, 0x0000);
3098 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3099
3100 rtl_writephy(tp, 0x1f, 0x0005);
3101 rtl_writephy(tp, 0x05, 0x8b86);
3102 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3103 rtl_writephy(tp, 0x1f, 0x0000);
3104
3105 rtl_writephy(tp, 0x1f, 0x0005);
3106 rtl_writephy(tp, 0x05, 0x8b85);
3107 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3108 rtl_writephy(tp, 0x1f, 0x0007);
3109 rtl_writephy(tp, 0x1e, 0x0020);
3110 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
3111 rtl_writephy(tp, 0x1f, 0x0006);
3112 rtl_writephy(tp, 0x00, 0x5a00);
3113 rtl_writephy(tp, 0x1f, 0x0000);
3114 rtl_writephy(tp, 0x0d, 0x0007);
3115 rtl_writephy(tp, 0x0e, 0x003c);
3116 rtl_writephy(tp, 0x0d, 0x4007);
3117 rtl_writephy(tp, 0x0e, 0x0000);
3118 rtl_writephy(tp, 0x0d, 0x0000);
3119}
3120
françois romieu9ecb9aa2012-12-07 11:20:21 +00003121static void rtl_rar_exgmac_set(struct rtl8169_private *tp, u8 *addr)
3122{
3123 const u16 w[] = {
3124 addr[0] | (addr[1] << 8),
3125 addr[2] | (addr[3] << 8),
3126 addr[4] | (addr[5] << 8)
3127 };
3128 const struct exgmac_reg e[] = {
3129 { .addr = 0xe0, ERIAR_MASK_1111, .val = w[0] | (w[1] << 16) },
3130 { .addr = 0xe4, ERIAR_MASK_1111, .val = w[2] },
3131 { .addr = 0xf0, ERIAR_MASK_1111, .val = w[0] << 16 },
3132 { .addr = 0xf4, ERIAR_MASK_1111, .val = w[1] | (w[2] << 16) }
3133 };
3134
3135 rtl_write_exgmac_batch(tp, e, ARRAY_SIZE(e));
3136}
3137
Hayes Wang70090422011-07-06 15:58:06 +08003138static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
3139{
3140 static const struct phy_reg phy_reg_init[] = {
3141 /* Enable Delay cap */
3142 { 0x1f, 0x0004 },
3143 { 0x1f, 0x0007 },
3144 { 0x1e, 0x00ac },
3145 { 0x18, 0x0006 },
3146 { 0x1f, 0x0002 },
3147 { 0x1f, 0x0000 },
3148 { 0x1f, 0x0000 },
3149
3150 /* Channel estimation fine tune */
3151 { 0x1f, 0x0003 },
3152 { 0x09, 0xa20f },
3153 { 0x1f, 0x0000 },
3154 { 0x1f, 0x0000 },
3155
3156 /* Green Setting */
3157 { 0x1f, 0x0005 },
3158 { 0x05, 0x8b5b },
3159 { 0x06, 0x9222 },
3160 { 0x05, 0x8b6d },
3161 { 0x06, 0x8000 },
3162 { 0x05, 0x8b76 },
3163 { 0x06, 0x8000 },
3164 { 0x1f, 0x0000 }
3165 };
3166
3167 rtl_apply_firmware(tp);
3168
3169 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3170
3171 /* For 4-corner performance improve */
3172 rtl_writephy(tp, 0x1f, 0x0005);
3173 rtl_writephy(tp, 0x05, 0x8b80);
3174 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
3175 rtl_writephy(tp, 0x1f, 0x0000);
3176
3177 /* PHY auto speed down */
3178 rtl_writephy(tp, 0x1f, 0x0004);
3179 rtl_writephy(tp, 0x1f, 0x0007);
3180 rtl_writephy(tp, 0x1e, 0x002d);
3181 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3182 rtl_writephy(tp, 0x1f, 0x0002);
3183 rtl_writephy(tp, 0x1f, 0x0000);
3184 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3185
3186 /* improve 10M EEE waveform */
3187 rtl_writephy(tp, 0x1f, 0x0005);
3188 rtl_writephy(tp, 0x05, 0x8b86);
3189 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3190 rtl_writephy(tp, 0x1f, 0x0000);
3191
3192 /* Improve 2-pair detection performance */
3193 rtl_writephy(tp, 0x1f, 0x0005);
3194 rtl_writephy(tp, 0x05, 0x8b85);
3195 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3196 rtl_writephy(tp, 0x1f, 0x0000);
3197
3198 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003199 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08003200 rtl_writephy(tp, 0x1f, 0x0005);
3201 rtl_writephy(tp, 0x05, 0x8b85);
3202 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3203 rtl_writephy(tp, 0x1f, 0x0004);
3204 rtl_writephy(tp, 0x1f, 0x0007);
3205 rtl_writephy(tp, 0x1e, 0x0020);
David S. Miller1805b2f2011-10-24 18:18:09 -04003206 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003207 rtl_writephy(tp, 0x1f, 0x0002);
3208 rtl_writephy(tp, 0x1f, 0x0000);
3209 rtl_writephy(tp, 0x0d, 0x0007);
3210 rtl_writephy(tp, 0x0e, 0x003c);
3211 rtl_writephy(tp, 0x0d, 0x4007);
3212 rtl_writephy(tp, 0x0e, 0x0000);
3213 rtl_writephy(tp, 0x0d, 0x0000);
3214
3215 /* Green feature */
3216 rtl_writephy(tp, 0x1f, 0x0003);
3217 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3218 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3219 rtl_writephy(tp, 0x1f, 0x0000);
hayeswange0c07552012-10-23 20:24:03 +00003220
françois romieu9ecb9aa2012-12-07 11:20:21 +00003221 /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */
3222 rtl_rar_exgmac_set(tp, tp->dev->dev_addr);
Hayes Wang70090422011-07-06 15:58:06 +08003223}
3224
Hayes Wang5f886e02012-03-30 14:33:03 +08003225static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3226{
3227 /* For 4-corner performance improve */
3228 rtl_writephy(tp, 0x1f, 0x0005);
3229 rtl_writephy(tp, 0x05, 0x8b80);
3230 rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3231 rtl_writephy(tp, 0x1f, 0x0000);
3232
3233 /* PHY auto speed down */
3234 rtl_writephy(tp, 0x1f, 0x0007);
3235 rtl_writephy(tp, 0x1e, 0x002d);
3236 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3237 rtl_writephy(tp, 0x1f, 0x0000);
3238 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3239
3240 /* Improve 10M EEE waveform */
3241 rtl_writephy(tp, 0x1f, 0x0005);
3242 rtl_writephy(tp, 0x05, 0x8b86);
3243 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3244 rtl_writephy(tp, 0x1f, 0x0000);
3245}
3246
Hayes Wangc2218922011-09-06 16:55:18 +08003247static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3248{
3249 static const struct phy_reg phy_reg_init[] = {
3250 /* Channel estimation fine tune */
3251 { 0x1f, 0x0003 },
3252 { 0x09, 0xa20f },
3253 { 0x1f, 0x0000 },
3254
3255 /* Modify green table for giga & fnet */
3256 { 0x1f, 0x0005 },
3257 { 0x05, 0x8b55 },
3258 { 0x06, 0x0000 },
3259 { 0x05, 0x8b5e },
3260 { 0x06, 0x0000 },
3261 { 0x05, 0x8b67 },
3262 { 0x06, 0x0000 },
3263 { 0x05, 0x8b70 },
3264 { 0x06, 0x0000 },
3265 { 0x1f, 0x0000 },
3266 { 0x1f, 0x0007 },
3267 { 0x1e, 0x0078 },
3268 { 0x17, 0x0000 },
3269 { 0x19, 0x00fb },
3270 { 0x1f, 0x0000 },
3271
3272 /* Modify green table for 10M */
3273 { 0x1f, 0x0005 },
3274 { 0x05, 0x8b79 },
3275 { 0x06, 0xaa00 },
3276 { 0x1f, 0x0000 },
3277
3278 /* Disable hiimpedance detection (RTCT) */
3279 { 0x1f, 0x0003 },
3280 { 0x01, 0x328a },
3281 { 0x1f, 0x0000 }
3282 };
3283
3284 rtl_apply_firmware(tp);
3285
3286 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3287
Hayes Wang5f886e02012-03-30 14:33:03 +08003288 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003289
3290 /* Improve 2-pair detection performance */
3291 rtl_writephy(tp, 0x1f, 0x0005);
3292 rtl_writephy(tp, 0x05, 0x8b85);
3293 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3294 rtl_writephy(tp, 0x1f, 0x0000);
3295}
3296
3297static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3298{
3299 rtl_apply_firmware(tp);
3300
Hayes Wang5f886e02012-03-30 14:33:03 +08003301 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003302}
3303
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003304static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3305{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003306 static const struct phy_reg phy_reg_init[] = {
3307 /* Channel estimation fine tune */
3308 { 0x1f, 0x0003 },
3309 { 0x09, 0xa20f },
3310 { 0x1f, 0x0000 },
3311
3312 /* Modify green table for giga & fnet */
3313 { 0x1f, 0x0005 },
3314 { 0x05, 0x8b55 },
3315 { 0x06, 0x0000 },
3316 { 0x05, 0x8b5e },
3317 { 0x06, 0x0000 },
3318 { 0x05, 0x8b67 },
3319 { 0x06, 0x0000 },
3320 { 0x05, 0x8b70 },
3321 { 0x06, 0x0000 },
3322 { 0x1f, 0x0000 },
3323 { 0x1f, 0x0007 },
3324 { 0x1e, 0x0078 },
3325 { 0x17, 0x0000 },
3326 { 0x19, 0x00aa },
3327 { 0x1f, 0x0000 },
3328
3329 /* Modify green table for 10M */
3330 { 0x1f, 0x0005 },
3331 { 0x05, 0x8b79 },
3332 { 0x06, 0xaa00 },
3333 { 0x1f, 0x0000 },
3334
3335 /* Disable hiimpedance detection (RTCT) */
3336 { 0x1f, 0x0003 },
3337 { 0x01, 0x328a },
3338 { 0x1f, 0x0000 }
3339 };
3340
3341
3342 rtl_apply_firmware(tp);
3343
3344 rtl8168f_hw_phy_config(tp);
3345
3346 /* Improve 2-pair detection performance */
3347 rtl_writephy(tp, 0x1f, 0x0005);
3348 rtl_writephy(tp, 0x05, 0x8b85);
3349 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3350 rtl_writephy(tp, 0x1f, 0x0000);
3351
3352 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3353
3354 /* Modify green table for giga */
3355 rtl_writephy(tp, 0x1f, 0x0005);
3356 rtl_writephy(tp, 0x05, 0x8b54);
3357 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3358 rtl_writephy(tp, 0x05, 0x8b5d);
3359 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3360 rtl_writephy(tp, 0x05, 0x8a7c);
3361 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3362 rtl_writephy(tp, 0x05, 0x8a7f);
3363 rtl_w1w0_phy(tp, 0x06, 0x0100, 0x0000);
3364 rtl_writephy(tp, 0x05, 0x8a82);
3365 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3366 rtl_writephy(tp, 0x05, 0x8a85);
3367 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3368 rtl_writephy(tp, 0x05, 0x8a88);
3369 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3370 rtl_writephy(tp, 0x1f, 0x0000);
3371
3372 /* uc same-seed solution */
3373 rtl_writephy(tp, 0x1f, 0x0005);
3374 rtl_writephy(tp, 0x05, 0x8b85);
3375 rtl_w1w0_phy(tp, 0x06, 0x8000, 0x0000);
3376 rtl_writephy(tp, 0x1f, 0x0000);
3377
3378 /* eee setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003379 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003380 rtl_writephy(tp, 0x1f, 0x0005);
3381 rtl_writephy(tp, 0x05, 0x8b85);
3382 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3383 rtl_writephy(tp, 0x1f, 0x0004);
3384 rtl_writephy(tp, 0x1f, 0x0007);
3385 rtl_writephy(tp, 0x1e, 0x0020);
3386 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
3387 rtl_writephy(tp, 0x1f, 0x0000);
3388 rtl_writephy(tp, 0x0d, 0x0007);
3389 rtl_writephy(tp, 0x0e, 0x003c);
3390 rtl_writephy(tp, 0x0d, 0x4007);
3391 rtl_writephy(tp, 0x0e, 0x0000);
3392 rtl_writephy(tp, 0x0d, 0x0000);
3393
3394 /* Green feature */
3395 rtl_writephy(tp, 0x1f, 0x0003);
3396 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3397 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3398 rtl_writephy(tp, 0x1f, 0x0000);
3399}
3400
Hayes Wangc5583862012-07-02 17:23:22 +08003401static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp)
3402{
Hayes Wangc5583862012-07-02 17:23:22 +08003403 rtl_apply_firmware(tp);
3404
hayeswang41f44d12013-04-01 22:23:36 +00003405 rtl_writephy(tp, 0x1f, 0x0a46);
3406 if (rtl_readphy(tp, 0x10) & 0x0100) {
3407 rtl_writephy(tp, 0x1f, 0x0bcc);
3408 rtl_w1w0_phy(tp, 0x12, 0x0000, 0x8000);
3409 } else {
3410 rtl_writephy(tp, 0x1f, 0x0bcc);
3411 rtl_w1w0_phy(tp, 0x12, 0x8000, 0x0000);
3412 }
Hayes Wangc5583862012-07-02 17:23:22 +08003413
hayeswang41f44d12013-04-01 22:23:36 +00003414 rtl_writephy(tp, 0x1f, 0x0a46);
3415 if (rtl_readphy(tp, 0x13) & 0x0100) {
3416 rtl_writephy(tp, 0x1f, 0x0c41);
3417 rtl_w1w0_phy(tp, 0x15, 0x0002, 0x0000);
3418 } else {
hayeswangfe7524c2013-04-01 22:23:37 +00003419 rtl_writephy(tp, 0x1f, 0x0c41);
3420 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0002);
hayeswang41f44d12013-04-01 22:23:36 +00003421 }
Hayes Wangc5583862012-07-02 17:23:22 +08003422
hayeswang41f44d12013-04-01 22:23:36 +00003423 /* Enable PHY auto speed down */
3424 rtl_writephy(tp, 0x1f, 0x0a44);
3425 rtl_w1w0_phy(tp, 0x11, 0x000c, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003426
hayeswangfe7524c2013-04-01 22:23:37 +00003427 rtl_writephy(tp, 0x1f, 0x0bcc);
3428 rtl_w1w0_phy(tp, 0x14, 0x0100, 0x0000);
3429 rtl_writephy(tp, 0x1f, 0x0a44);
3430 rtl_w1w0_phy(tp, 0x11, 0x00c0, 0x0000);
3431 rtl_writephy(tp, 0x1f, 0x0a43);
3432 rtl_writephy(tp, 0x13, 0x8084);
3433 rtl_w1w0_phy(tp, 0x14, 0x0000, 0x6000);
3434 rtl_w1w0_phy(tp, 0x10, 0x1003, 0x0000);
3435
hayeswang41f44d12013-04-01 22:23:36 +00003436 /* EEE auto-fallback function */
3437 rtl_writephy(tp, 0x1f, 0x0a4b);
3438 rtl_w1w0_phy(tp, 0x11, 0x0004, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003439
hayeswang41f44d12013-04-01 22:23:36 +00003440 /* Enable UC LPF tune function */
3441 rtl_writephy(tp, 0x1f, 0x0a43);
3442 rtl_writephy(tp, 0x13, 0x8012);
3443 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3444
3445 rtl_writephy(tp, 0x1f, 0x0c42);
3446 rtl_w1w0_phy(tp, 0x11, 0x4000, 0x2000);
3447
hayeswangfe7524c2013-04-01 22:23:37 +00003448 /* Improve SWR Efficiency */
3449 rtl_writephy(tp, 0x1f, 0x0bcd);
3450 rtl_writephy(tp, 0x14, 0x5065);
3451 rtl_writephy(tp, 0x14, 0xd065);
3452 rtl_writephy(tp, 0x1f, 0x0bc8);
3453 rtl_writephy(tp, 0x11, 0x5655);
3454 rtl_writephy(tp, 0x1f, 0x0bcd);
3455 rtl_writephy(tp, 0x14, 0x1065);
3456 rtl_writephy(tp, 0x14, 0x9065);
3457 rtl_writephy(tp, 0x14, 0x1065);
3458
hayeswang41f44d12013-04-01 22:23:36 +00003459 rtl_writephy(tp, 0x1f, 0x0000);
Hayes Wangc5583862012-07-02 17:23:22 +08003460}
3461
hayeswang57538c42013-04-01 22:23:40 +00003462static void rtl8168g_2_hw_phy_config(struct rtl8169_private *tp)
3463{
3464 rtl_apply_firmware(tp);
3465}
3466
françois romieu4da19632011-01-03 15:07:55 +00003467static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02003468{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003469 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003470 { 0x1f, 0x0003 },
3471 { 0x08, 0x441d },
3472 { 0x01, 0x9100 },
3473 { 0x1f, 0x0000 }
3474 };
3475
françois romieu4da19632011-01-03 15:07:55 +00003476 rtl_writephy(tp, 0x1f, 0x0000);
3477 rtl_patchphy(tp, 0x11, 1 << 12);
3478 rtl_patchphy(tp, 0x19, 1 << 13);
3479 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003480
françois romieu4da19632011-01-03 15:07:55 +00003481 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02003482}
3483
Hayes Wang5a5e4442011-02-22 17:26:21 +08003484static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
3485{
3486 static const struct phy_reg phy_reg_init[] = {
3487 { 0x1f, 0x0005 },
3488 { 0x1a, 0x0000 },
3489 { 0x1f, 0x0000 },
3490
3491 { 0x1f, 0x0004 },
3492 { 0x1c, 0x0000 },
3493 { 0x1f, 0x0000 },
3494
3495 { 0x1f, 0x0001 },
3496 { 0x15, 0x7701 },
3497 { 0x1f, 0x0000 }
3498 };
3499
3500 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01003501 rtl_writephy(tp, 0x1f, 0x0000);
3502 rtl_writephy(tp, 0x18, 0x0310);
3503 msleep(100);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003504
François Romieu953a12c2011-04-24 17:38:48 +02003505 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003506
3507 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3508}
3509
Hayes Wang7e18dca2012-03-30 14:33:02 +08003510static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
3511{
Hayes Wang7e18dca2012-03-30 14:33:02 +08003512 /* Disable ALDPS before setting firmware */
Francois Romieueef63cc2013-02-08 23:43:20 +01003513 rtl_writephy(tp, 0x1f, 0x0000);
3514 rtl_writephy(tp, 0x18, 0x0310);
3515 msleep(20);
Hayes Wang7e18dca2012-03-30 14:33:02 +08003516
3517 rtl_apply_firmware(tp);
3518
3519 /* EEE setting */
Francois Romieufdf6fc02012-07-06 22:40:38 +02003520 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08003521 rtl_writephy(tp, 0x1f, 0x0004);
3522 rtl_writephy(tp, 0x10, 0x401f);
3523 rtl_writephy(tp, 0x19, 0x7030);
3524 rtl_writephy(tp, 0x1f, 0x0000);
3525}
3526
Hayes Wang5598bfe2012-07-02 17:23:21 +08003527static void rtl8106e_hw_phy_config(struct rtl8169_private *tp)
3528{
Hayes Wang5598bfe2012-07-02 17:23:21 +08003529 static const struct phy_reg phy_reg_init[] = {
3530 { 0x1f, 0x0004 },
3531 { 0x10, 0xc07f },
3532 { 0x19, 0x7030 },
3533 { 0x1f, 0x0000 }
3534 };
3535
3536 /* Disable ALDPS before ram code */
Francois Romieueef63cc2013-02-08 23:43:20 +01003537 rtl_writephy(tp, 0x1f, 0x0000);
3538 rtl_writephy(tp, 0x18, 0x0310);
3539 msleep(100);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003540
3541 rtl_apply_firmware(tp);
3542
Francois Romieufdf6fc02012-07-06 22:40:38 +02003543 rtl_eri_write(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003544 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3545
Francois Romieufdf6fc02012-07-06 22:40:38 +02003546 rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
Hayes Wang5598bfe2012-07-02 17:23:21 +08003547}
3548
Francois Romieu5615d9f2007-08-17 17:50:46 +02003549static void rtl_hw_phy_config(struct net_device *dev)
3550{
3551 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003552
3553 rtl8169_print_mac_version(tp);
3554
3555 switch (tp->mac_version) {
3556 case RTL_GIGA_MAC_VER_01:
3557 break;
3558 case RTL_GIGA_MAC_VER_02:
3559 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00003560 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003561 break;
3562 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00003563 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003564 break;
françois romieu2e9558562009-08-10 19:44:19 +00003565 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00003566 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00003567 break;
françois romieu8c7006a2009-08-10 19:43:29 +00003568 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00003569 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00003570 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02003571 case RTL_GIGA_MAC_VER_07:
3572 case RTL_GIGA_MAC_VER_08:
3573 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00003574 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003575 break;
Francois Romieu236b8082008-05-30 16:11:48 +02003576 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00003577 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003578 break;
3579 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00003580 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003581 break;
3582 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00003583 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003584 break;
Francois Romieu867763c2007-08-17 18:21:58 +02003585 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00003586 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003587 break;
3588 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00003589 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003590 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02003591 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00003592 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003593 break;
Francois Romieu197ff762008-06-28 13:16:02 +02003594 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00003595 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02003596 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02003597 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00003598 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003599 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003600 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003601 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00003602 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02003603 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02003604 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00003605 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003606 break;
3607 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00003608 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003609 break;
3610 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00003611 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02003612 break;
françois romieue6de30d2011-01-03 15:08:37 +00003613 case RTL_GIGA_MAC_VER_28:
3614 rtl8168d_4_hw_phy_config(tp);
3615 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08003616 case RTL_GIGA_MAC_VER_29:
3617 case RTL_GIGA_MAC_VER_30:
3618 rtl8105e_hw_phy_config(tp);
3619 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02003620 case RTL_GIGA_MAC_VER_31:
3621 /* None. */
3622 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00003623 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00003624 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003625 rtl8168e_1_hw_phy_config(tp);
3626 break;
3627 case RTL_GIGA_MAC_VER_34:
3628 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00003629 break;
Hayes Wangc2218922011-09-06 16:55:18 +08003630 case RTL_GIGA_MAC_VER_35:
3631 rtl8168f_1_hw_phy_config(tp);
3632 break;
3633 case RTL_GIGA_MAC_VER_36:
3634 rtl8168f_2_hw_phy_config(tp);
3635 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003636
Hayes Wang7e18dca2012-03-30 14:33:02 +08003637 case RTL_GIGA_MAC_VER_37:
3638 rtl8402_hw_phy_config(tp);
3639 break;
3640
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003641 case RTL_GIGA_MAC_VER_38:
3642 rtl8411_hw_phy_config(tp);
3643 break;
3644
Hayes Wang5598bfe2012-07-02 17:23:21 +08003645 case RTL_GIGA_MAC_VER_39:
3646 rtl8106e_hw_phy_config(tp);
3647 break;
3648
Hayes Wangc5583862012-07-02 17:23:22 +08003649 case RTL_GIGA_MAC_VER_40:
3650 rtl8168g_1_hw_phy_config(tp);
3651 break;
hayeswang57538c42013-04-01 22:23:40 +00003652 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00003653 case RTL_GIGA_MAC_VER_43:
hayeswang57538c42013-04-01 22:23:40 +00003654 rtl8168g_2_hw_phy_config(tp);
3655 break;
Hayes Wangc5583862012-07-02 17:23:22 +08003656
3657 case RTL_GIGA_MAC_VER_41:
Francois Romieu5615d9f2007-08-17 17:50:46 +02003658 default:
3659 break;
3660 }
3661}
3662
Francois Romieuda78dbf2012-01-26 14:18:23 +01003663static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 struct timer_list *timer = &tp->timer;
3666 void __iomem *ioaddr = tp->mmio_addr;
3667 unsigned long timeout = RTL8169_PHY_TIMEOUT;
3668
Francois Romieubcf0bf92006-07-26 23:14:13 +02003669 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
françois romieu4da19632011-01-03 15:07:55 +00003671 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02003672 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 * A busy loop could burn quite a few cycles on nowadays CPU.
3674 * Let's delay the execution of the timer for a few ticks.
3675 */
3676 timeout = HZ/10;
3677 goto out_mod_timer;
3678 }
3679
3680 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01003681 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
Francois Romieuda78dbf2012-01-26 14:18:23 +01003683 netif_warn(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
françois romieu4da19632011-01-03 15:07:55 +00003685 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
3687out_mod_timer:
3688 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003689}
3690
3691static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
3692{
Francois Romieuda78dbf2012-01-26 14:18:23 +01003693 if (!test_and_set_bit(flag, tp->wk.flags))
3694 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003695}
3696
3697static void rtl8169_phy_timer(unsigned long __opaque)
3698{
3699 struct net_device *dev = (struct net_device *)__opaque;
3700 struct rtl8169_private *tp = netdev_priv(dev);
3701
Francois Romieu98ddf982012-01-31 10:47:34 +01003702 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703}
3704
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
3706 void __iomem *ioaddr)
3707{
3708 iounmap(ioaddr);
3709 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003710 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 pci_disable_device(pdev);
3712 free_netdev(dev);
3713}
3714
Francois Romieuffc46952012-07-06 14:19:23 +02003715DECLARE_RTL_COND(rtl_phy_reset_cond)
3716{
3717 return tp->phy_reset_pending(tp);
3718}
3719
Francois Romieubf793292006-11-01 00:53:05 +01003720static void rtl8169_phy_reset(struct net_device *dev,
3721 struct rtl8169_private *tp)
3722{
françois romieu4da19632011-01-03 15:07:55 +00003723 tp->phy_reset_enable(tp);
Francois Romieuffc46952012-07-06 14:19:23 +02003724 rtl_msleep_loop_wait_low(tp, &rtl_phy_reset_cond, 1, 100);
Francois Romieubf793292006-11-01 00:53:05 +01003725}
3726
David S. Miller8decf862011-09-22 03:23:13 -04003727static bool rtl_tbi_enabled(struct rtl8169_private *tp)
3728{
3729 void __iomem *ioaddr = tp->mmio_addr;
3730
3731 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
3732 (RTL_R8(PHYstatus) & TBI_Enable);
3733}
3734
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003735static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003737 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003738
Francois Romieu5615d9f2007-08-17 17:50:46 +02003739 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003740
Marcus Sundberg773328942008-07-10 21:28:08 +02003741 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
3742 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3743 RTL_W8(0x82, 0x01);
3744 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003745
Francois Romieu6dccd162007-02-13 23:38:05 +01003746 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
3747
3748 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3749 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003750
Francois Romieubcf0bf92006-07-26 23:14:13 +02003751 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003752 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3753 RTL_W8(0x82, 0x01);
3754 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00003755 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003756 }
3757
Francois Romieubf793292006-11-01 00:53:05 +01003758 rtl8169_phy_reset(dev, tp);
3759
Oliver Neukum54405cd2011-01-06 21:55:13 +01003760 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02003761 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3762 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3763 (tp->mii.supports_gmii ?
3764 ADVERTISED_1000baseT_Half |
3765 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003766
David S. Miller8decf862011-09-22 03:23:13 -04003767 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00003768 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003769}
3770
Francois Romieu773d2022007-01-31 23:47:43 +01003771static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
3772{
3773 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu773d2022007-01-31 23:47:43 +01003774
Francois Romieuda78dbf2012-01-26 14:18:23 +01003775 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003776
3777 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00003778
françois romieu9ecb9aa2012-12-07 11:20:21 +00003779 RTL_W32(MAC4, addr[4] | addr[5] << 8);
françois romieu908ba2b2010-04-26 11:42:58 +00003780 RTL_R32(MAC4);
3781
françois romieu9ecb9aa2012-12-07 11:20:21 +00003782 RTL_W32(MAC0, addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
françois romieu908ba2b2010-04-26 11:42:58 +00003783 RTL_R32(MAC0);
3784
françois romieu9ecb9aa2012-12-07 11:20:21 +00003785 if (tp->mac_version == RTL_GIGA_MAC_VER_34)
3786 rtl_rar_exgmac_set(tp, addr);
françois romieuc28aa382011-08-02 03:53:43 +00003787
Francois Romieu773d2022007-01-31 23:47:43 +01003788 RTL_W8(Cfg9346, Cfg9346_Lock);
3789
Francois Romieuda78dbf2012-01-26 14:18:23 +01003790 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003791}
3792
3793static int rtl_set_mac_address(struct net_device *dev, void *p)
3794{
3795 struct rtl8169_private *tp = netdev_priv(dev);
3796 struct sockaddr *addr = p;
3797
3798 if (!is_valid_ether_addr(addr->sa_data))
3799 return -EADDRNOTAVAIL;
3800
3801 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3802
3803 rtl_rar_set(tp, dev->dev_addr);
3804
3805 return 0;
3806}
3807
Francois Romieu5f787a12006-08-17 13:02:36 +02003808static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3809{
3810 struct rtl8169_private *tp = netdev_priv(dev);
3811 struct mii_ioctl_data *data = if_mii(ifr);
3812
Francois Romieu8b4ab282008-11-19 22:05:25 -08003813 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
3814}
Francois Romieu5f787a12006-08-17 13:02:36 +02003815
Francois Romieucecb5fd2011-04-01 10:21:07 +02003816static int rtl_xmii_ioctl(struct rtl8169_private *tp,
3817 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08003818{
Francois Romieu5f787a12006-08-17 13:02:36 +02003819 switch (cmd) {
3820 case SIOCGMIIPHY:
3821 data->phy_id = 32; /* Internal PHY */
3822 return 0;
3823
3824 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003825 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02003826 return 0;
3827
3828 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003829 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02003830 return 0;
3831 }
3832 return -EOPNOTSUPP;
3833}
3834
Francois Romieu8b4ab282008-11-19 22:05:25 -08003835static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3836{
3837 return -EOPNOTSUPP;
3838}
3839
Francois Romieufbac58f2007-10-04 22:51:38 +02003840static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3841{
3842 if (tp->features & RTL_FEATURE_MSI) {
3843 pci_disable_msi(pdev);
3844 tp->features &= ~RTL_FEATURE_MSI;
3845 }
3846}
3847
Bill Pembertonbaf63292012-12-03 09:23:28 -05003848static void rtl_init_mdio_ops(struct rtl8169_private *tp)
françois romieuc0e45c12011-01-03 15:08:04 +00003849{
3850 struct mdio_ops *ops = &tp->mdio_ops;
3851
3852 switch (tp->mac_version) {
3853 case RTL_GIGA_MAC_VER_27:
3854 ops->write = r8168dp_1_mdio_write;
3855 ops->read = r8168dp_1_mdio_read;
3856 break;
françois romieue6de30d2011-01-03 15:08:37 +00003857 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003858 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003859 ops->write = r8168dp_2_mdio_write;
3860 ops->read = r8168dp_2_mdio_read;
3861 break;
Hayes Wangc5583862012-07-02 17:23:22 +08003862 case RTL_GIGA_MAC_VER_40:
3863 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00003864 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00003865 case RTL_GIGA_MAC_VER_43:
Hayes Wangc5583862012-07-02 17:23:22 +08003866 ops->write = r8168g_mdio_write;
3867 ops->read = r8168g_mdio_read;
3868 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003869 default:
3870 ops->write = r8169_mdio_write;
3871 ops->read = r8169_mdio_read;
3872 break;
3873 }
3874}
3875
hayeswange2409d82013-03-31 17:02:04 +00003876static void rtl_speed_down(struct rtl8169_private *tp)
3877{
3878 u32 adv;
3879 int lpa;
3880
3881 rtl_writephy(tp, 0x1f, 0x0000);
3882 lpa = rtl_readphy(tp, MII_LPA);
3883
3884 if (lpa & (LPA_10HALF | LPA_10FULL))
3885 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full;
3886 else if (lpa & (LPA_100HALF | LPA_100FULL))
3887 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3888 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full;
3889 else
3890 adv = ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3891 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3892 (tp->mii.supports_gmii ?
3893 ADVERTISED_1000baseT_Half |
3894 ADVERTISED_1000baseT_Full : 0);
3895
3896 rtl8169_set_speed(tp->dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
3897 adv);
3898}
3899
David S. Miller1805b2f2011-10-24 18:18:09 -04003900static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
3901{
3902 void __iomem *ioaddr = tp->mmio_addr;
3903
3904 switch (tp->mac_version) {
Cyril Bruleboisb00e69d2012-10-31 14:00:46 +00003905 case RTL_GIGA_MAC_VER_25:
3906 case RTL_GIGA_MAC_VER_26:
David S. Miller1805b2f2011-10-24 18:18:09 -04003907 case RTL_GIGA_MAC_VER_29:
3908 case RTL_GIGA_MAC_VER_30:
3909 case RTL_GIGA_MAC_VER_32:
3910 case RTL_GIGA_MAC_VER_33:
3911 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08003912 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003913 case RTL_GIGA_MAC_VER_38:
Hayes Wang5598bfe2012-07-02 17:23:21 +08003914 case RTL_GIGA_MAC_VER_39:
Hayes Wangc5583862012-07-02 17:23:22 +08003915 case RTL_GIGA_MAC_VER_40:
3916 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00003917 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00003918 case RTL_GIGA_MAC_VER_43:
David S. Miller1805b2f2011-10-24 18:18:09 -04003919 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3920 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3921 break;
3922 default:
3923 break;
3924 }
3925}
3926
3927static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
3928{
3929 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
3930 return false;
3931
hayeswange2409d82013-03-31 17:02:04 +00003932 rtl_speed_down(tp);
David S. Miller1805b2f2011-10-24 18:18:09 -04003933 rtl_wol_suspend_quirk(tp);
3934
3935 return true;
3936}
3937
françois romieu065c27c2011-01-03 15:08:12 +00003938static void r810x_phy_power_down(struct rtl8169_private *tp)
3939{
3940 rtl_writephy(tp, 0x1f, 0x0000);
3941 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3942}
3943
3944static void r810x_phy_power_up(struct rtl8169_private *tp)
3945{
3946 rtl_writephy(tp, 0x1f, 0x0000);
3947 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3948}
3949
3950static void r810x_pll_power_down(struct rtl8169_private *tp)
3951{
Hayes Wang00042992012-03-30 14:33:00 +08003952 void __iomem *ioaddr = tp->mmio_addr;
3953
David S. Miller1805b2f2011-10-24 18:18:09 -04003954 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003955 return;
françois romieu065c27c2011-01-03 15:08:12 +00003956
3957 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003958
3959 switch (tp->mac_version) {
3960 case RTL_GIGA_MAC_VER_07:
3961 case RTL_GIGA_MAC_VER_08:
3962 case RTL_GIGA_MAC_VER_09:
3963 case RTL_GIGA_MAC_VER_10:
3964 case RTL_GIGA_MAC_VER_13:
3965 case RTL_GIGA_MAC_VER_16:
3966 break;
3967 default:
3968 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3969 break;
3970 }
françois romieu065c27c2011-01-03 15:08:12 +00003971}
3972
3973static void r810x_pll_power_up(struct rtl8169_private *tp)
3974{
Hayes Wang00042992012-03-30 14:33:00 +08003975 void __iomem *ioaddr = tp->mmio_addr;
3976
françois romieu065c27c2011-01-03 15:08:12 +00003977 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003978
3979 switch (tp->mac_version) {
3980 case RTL_GIGA_MAC_VER_07:
3981 case RTL_GIGA_MAC_VER_08:
3982 case RTL_GIGA_MAC_VER_09:
3983 case RTL_GIGA_MAC_VER_10:
3984 case RTL_GIGA_MAC_VER_13:
3985 case RTL_GIGA_MAC_VER_16:
3986 break;
3987 default:
3988 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3989 break;
3990 }
françois romieu065c27c2011-01-03 15:08:12 +00003991}
3992
3993static void r8168_phy_power_up(struct rtl8169_private *tp)
3994{
3995 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003996 switch (tp->mac_version) {
3997 case RTL_GIGA_MAC_VER_11:
3998 case RTL_GIGA_MAC_VER_12:
3999 case RTL_GIGA_MAC_VER_17:
4000 case RTL_GIGA_MAC_VER_18:
4001 case RTL_GIGA_MAC_VER_19:
4002 case RTL_GIGA_MAC_VER_20:
4003 case RTL_GIGA_MAC_VER_21:
4004 case RTL_GIGA_MAC_VER_22:
4005 case RTL_GIGA_MAC_VER_23:
4006 case RTL_GIGA_MAC_VER_24:
4007 case RTL_GIGA_MAC_VER_25:
4008 case RTL_GIGA_MAC_VER_26:
4009 case RTL_GIGA_MAC_VER_27:
4010 case RTL_GIGA_MAC_VER_28:
4011 case RTL_GIGA_MAC_VER_31:
4012 rtl_writephy(tp, 0x0e, 0x0000);
4013 break;
4014 default:
4015 break;
4016 }
françois romieu065c27c2011-01-03 15:08:12 +00004017 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
4018}
4019
4020static void r8168_phy_power_down(struct rtl8169_private *tp)
4021{
4022 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00004023 switch (tp->mac_version) {
4024 case RTL_GIGA_MAC_VER_32:
4025 case RTL_GIGA_MAC_VER_33:
hayeswangbeb330a2013-04-01 22:23:39 +00004026 case RTL_GIGA_MAC_VER_40:
4027 case RTL_GIGA_MAC_VER_41:
hayeswang01dc7fe2011-03-21 01:50:28 +00004028 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
4029 break;
4030
4031 case RTL_GIGA_MAC_VER_11:
4032 case RTL_GIGA_MAC_VER_12:
4033 case RTL_GIGA_MAC_VER_17:
4034 case RTL_GIGA_MAC_VER_18:
4035 case RTL_GIGA_MAC_VER_19:
4036 case RTL_GIGA_MAC_VER_20:
4037 case RTL_GIGA_MAC_VER_21:
4038 case RTL_GIGA_MAC_VER_22:
4039 case RTL_GIGA_MAC_VER_23:
4040 case RTL_GIGA_MAC_VER_24:
4041 case RTL_GIGA_MAC_VER_25:
4042 case RTL_GIGA_MAC_VER_26:
4043 case RTL_GIGA_MAC_VER_27:
4044 case RTL_GIGA_MAC_VER_28:
4045 case RTL_GIGA_MAC_VER_31:
4046 rtl_writephy(tp, 0x0e, 0x0200);
4047 default:
4048 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
4049 break;
4050 }
françois romieu065c27c2011-01-03 15:08:12 +00004051}
4052
4053static void r8168_pll_power_down(struct rtl8169_private *tp)
4054{
4055 void __iomem *ioaddr = tp->mmio_addr;
4056
Francois Romieucecb5fd2011-04-01 10:21:07 +02004057 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4058 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4059 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00004060 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00004061 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08004062 }
françois romieu065c27c2011-01-03 15:08:12 +00004063
Francois Romieucecb5fd2011-04-01 10:21:07 +02004064 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
4065 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00004066 (RTL_R16(CPlusCmd) & ASF)) {
4067 return;
4068 }
4069
hayeswang01dc7fe2011-03-21 01:50:28 +00004070 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
4071 tp->mac_version == RTL_GIGA_MAC_VER_33)
Francois Romieufdf6fc02012-07-06 22:40:38 +02004072 rtl_ephy_write(tp, 0x19, 0xff64);
hayeswang01dc7fe2011-03-21 01:50:28 +00004073
David S. Miller1805b2f2011-10-24 18:18:09 -04004074 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00004075 return;
françois romieu065c27c2011-01-03 15:08:12 +00004076
4077 r8168_phy_power_down(tp);
4078
4079 switch (tp->mac_version) {
4080 case RTL_GIGA_MAC_VER_25:
4081 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004082 case RTL_GIGA_MAC_VER_27:
4083 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004084 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004085 case RTL_GIGA_MAC_VER_32:
4086 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004087 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
4088 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004089 case RTL_GIGA_MAC_VER_40:
4090 case RTL_GIGA_MAC_VER_41:
4091 rtl_w1w0_eri(tp, 0x1a8, ERIAR_MASK_1111, 0x00000000,
4092 0xfc000000, ERIAR_EXGMAC);
4093 break;
françois romieu065c27c2011-01-03 15:08:12 +00004094 }
4095}
4096
4097static void r8168_pll_power_up(struct rtl8169_private *tp)
4098{
4099 void __iomem *ioaddr = tp->mmio_addr;
4100
françois romieu065c27c2011-01-03 15:08:12 +00004101 switch (tp->mac_version) {
4102 case RTL_GIGA_MAC_VER_25:
4103 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08004104 case RTL_GIGA_MAC_VER_27:
4105 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004106 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004107 case RTL_GIGA_MAC_VER_32:
4108 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00004109 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
4110 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004111 case RTL_GIGA_MAC_VER_40:
4112 case RTL_GIGA_MAC_VER_41:
4113 rtl_w1w0_eri(tp, 0x1a8, ERIAR_MASK_1111, 0xfc000000,
4114 0x00000000, ERIAR_EXGMAC);
4115 break;
françois romieu065c27c2011-01-03 15:08:12 +00004116 }
4117
4118 r8168_phy_power_up(tp);
4119}
4120
Francois Romieud58d46b2011-05-03 16:38:29 +02004121static void rtl_generic_op(struct rtl8169_private *tp,
4122 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00004123{
4124 if (op)
4125 op(tp);
4126}
4127
4128static void rtl_pll_power_down(struct rtl8169_private *tp)
4129{
Francois Romieud58d46b2011-05-03 16:38:29 +02004130 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00004131}
4132
4133static void rtl_pll_power_up(struct rtl8169_private *tp)
4134{
Francois Romieud58d46b2011-05-03 16:38:29 +02004135 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00004136}
4137
Bill Pembertonbaf63292012-12-03 09:23:28 -05004138static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
françois romieu065c27c2011-01-03 15:08:12 +00004139{
4140 struct pll_power_ops *ops = &tp->pll_power_ops;
4141
4142 switch (tp->mac_version) {
4143 case RTL_GIGA_MAC_VER_07:
4144 case RTL_GIGA_MAC_VER_08:
4145 case RTL_GIGA_MAC_VER_09:
4146 case RTL_GIGA_MAC_VER_10:
4147 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08004148 case RTL_GIGA_MAC_VER_29:
4149 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004150 case RTL_GIGA_MAC_VER_37:
Hayes Wang5598bfe2012-07-02 17:23:21 +08004151 case RTL_GIGA_MAC_VER_39:
hayeswang58152cd2013-04-01 22:23:42 +00004152 case RTL_GIGA_MAC_VER_43:
françois romieu065c27c2011-01-03 15:08:12 +00004153 ops->down = r810x_pll_power_down;
4154 ops->up = r810x_pll_power_up;
4155 break;
4156
4157 case RTL_GIGA_MAC_VER_11:
4158 case RTL_GIGA_MAC_VER_12:
4159 case RTL_GIGA_MAC_VER_17:
4160 case RTL_GIGA_MAC_VER_18:
4161 case RTL_GIGA_MAC_VER_19:
4162 case RTL_GIGA_MAC_VER_20:
4163 case RTL_GIGA_MAC_VER_21:
4164 case RTL_GIGA_MAC_VER_22:
4165 case RTL_GIGA_MAC_VER_23:
4166 case RTL_GIGA_MAC_VER_24:
4167 case RTL_GIGA_MAC_VER_25:
4168 case RTL_GIGA_MAC_VER_26:
4169 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00004170 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00004171 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00004172 case RTL_GIGA_MAC_VER_32:
4173 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004174 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08004175 case RTL_GIGA_MAC_VER_35:
4176 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004177 case RTL_GIGA_MAC_VER_38:
Hayes Wangc5583862012-07-02 17:23:22 +08004178 case RTL_GIGA_MAC_VER_40:
4179 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004180 case RTL_GIGA_MAC_VER_42:
françois romieu065c27c2011-01-03 15:08:12 +00004181 ops->down = r8168_pll_power_down;
4182 ops->up = r8168_pll_power_up;
4183 break;
4184
4185 default:
4186 ops->down = NULL;
4187 ops->up = NULL;
4188 break;
4189 }
4190}
4191
Hayes Wange542a222011-07-06 15:58:04 +08004192static void rtl_init_rxcfg(struct rtl8169_private *tp)
4193{
4194 void __iomem *ioaddr = tp->mmio_addr;
4195
4196 switch (tp->mac_version) {
4197 case RTL_GIGA_MAC_VER_01:
4198 case RTL_GIGA_MAC_VER_02:
4199 case RTL_GIGA_MAC_VER_03:
4200 case RTL_GIGA_MAC_VER_04:
4201 case RTL_GIGA_MAC_VER_05:
4202 case RTL_GIGA_MAC_VER_06:
4203 case RTL_GIGA_MAC_VER_10:
4204 case RTL_GIGA_MAC_VER_11:
4205 case RTL_GIGA_MAC_VER_12:
4206 case RTL_GIGA_MAC_VER_13:
4207 case RTL_GIGA_MAC_VER_14:
4208 case RTL_GIGA_MAC_VER_15:
4209 case RTL_GIGA_MAC_VER_16:
4210 case RTL_GIGA_MAC_VER_17:
4211 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
4212 break;
4213 case RTL_GIGA_MAC_VER_18:
4214 case RTL_GIGA_MAC_VER_19:
4215 case RTL_GIGA_MAC_VER_20:
4216 case RTL_GIGA_MAC_VER_21:
4217 case RTL_GIGA_MAC_VER_22:
4218 case RTL_GIGA_MAC_VER_23:
4219 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00004220 case RTL_GIGA_MAC_VER_34:
Hayes Wange542a222011-07-06 15:58:04 +08004221 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
4222 break;
hayeswangbeb330a2013-04-01 22:23:39 +00004223 case RTL_GIGA_MAC_VER_40:
4224 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004225 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004226 case RTL_GIGA_MAC_VER_43:
hayeswangbeb330a2013-04-01 22:23:39 +00004227 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST | RX_EARLY_OFF);
4228 break;
Hayes Wange542a222011-07-06 15:58:04 +08004229 default:
4230 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
4231 break;
4232 }
4233}
4234
Hayes Wang92fc43b2011-07-06 15:58:03 +08004235static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4236{
Timo Teräs9fba0812013-01-15 21:01:24 +00004237 tp->dirty_tx = tp->cur_tx = tp->cur_rx = 0;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004238}
4239
Francois Romieud58d46b2011-05-03 16:38:29 +02004240static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
4241{
françois romieu9c5028e2012-03-02 04:43:14 +00004242 void __iomem *ioaddr = tp->mmio_addr;
4243
4244 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004245 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00004246 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004247}
4248
4249static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
4250{
françois romieu9c5028e2012-03-02 04:43:14 +00004251 void __iomem *ioaddr = tp->mmio_addr;
4252
4253 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004254 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00004255 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02004256}
4257
4258static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
4259{
4260 void __iomem *ioaddr = tp->mmio_addr;
4261
4262 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4263 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
4264 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
4265}
4266
4267static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
4268{
4269 void __iomem *ioaddr = tp->mmio_addr;
4270
4271 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4272 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
4273 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
4274}
4275
4276static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
4277{
4278 void __iomem *ioaddr = tp->mmio_addr;
4279
4280 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4281}
4282
4283static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
4284{
4285 void __iomem *ioaddr = tp->mmio_addr;
4286
4287 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4288}
4289
4290static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
4291{
4292 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02004293
4294 RTL_W8(MaxTxPacketSize, 0x3f);
4295 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
4296 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01004297 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02004298}
4299
4300static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
4301{
4302 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02004303
4304 RTL_W8(MaxTxPacketSize, 0x0c);
4305 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
4306 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01004307 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02004308}
4309
4310static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
4311{
4312 rtl_tx_performance_tweak(tp->pci_dev,
4313 (0x2 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
4314}
4315
4316static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
4317{
4318 rtl_tx_performance_tweak(tp->pci_dev,
4319 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
4320}
4321
4322static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
4323{
4324 void __iomem *ioaddr = tp->mmio_addr;
4325
4326 r8168b_0_hw_jumbo_enable(tp);
4327
4328 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
4329}
4330
4331static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
4332{
4333 void __iomem *ioaddr = tp->mmio_addr;
4334
4335 r8168b_0_hw_jumbo_disable(tp);
4336
4337 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
4338}
4339
Bill Pembertonbaf63292012-12-03 09:23:28 -05004340static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
Francois Romieud58d46b2011-05-03 16:38:29 +02004341{
4342 struct jumbo_ops *ops = &tp->jumbo_ops;
4343
4344 switch (tp->mac_version) {
4345 case RTL_GIGA_MAC_VER_11:
4346 ops->disable = r8168b_0_hw_jumbo_disable;
4347 ops->enable = r8168b_0_hw_jumbo_enable;
4348 break;
4349 case RTL_GIGA_MAC_VER_12:
4350 case RTL_GIGA_MAC_VER_17:
4351 ops->disable = r8168b_1_hw_jumbo_disable;
4352 ops->enable = r8168b_1_hw_jumbo_enable;
4353 break;
4354 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
4355 case RTL_GIGA_MAC_VER_19:
4356 case RTL_GIGA_MAC_VER_20:
4357 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
4358 case RTL_GIGA_MAC_VER_22:
4359 case RTL_GIGA_MAC_VER_23:
4360 case RTL_GIGA_MAC_VER_24:
4361 case RTL_GIGA_MAC_VER_25:
4362 case RTL_GIGA_MAC_VER_26:
4363 ops->disable = r8168c_hw_jumbo_disable;
4364 ops->enable = r8168c_hw_jumbo_enable;
4365 break;
4366 case RTL_GIGA_MAC_VER_27:
4367 case RTL_GIGA_MAC_VER_28:
4368 ops->disable = r8168dp_hw_jumbo_disable;
4369 ops->enable = r8168dp_hw_jumbo_enable;
4370 break;
4371 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
4372 case RTL_GIGA_MAC_VER_32:
4373 case RTL_GIGA_MAC_VER_33:
4374 case RTL_GIGA_MAC_VER_34:
4375 ops->disable = r8168e_hw_jumbo_disable;
4376 ops->enable = r8168e_hw_jumbo_enable;
4377 break;
4378
4379 /*
4380 * No action needed for jumbo frames with 8169.
4381 * No jumbo for 810x at all.
4382 */
Hayes Wangc5583862012-07-02 17:23:22 +08004383 case RTL_GIGA_MAC_VER_40:
4384 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00004385 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00004386 case RTL_GIGA_MAC_VER_43:
Francois Romieud58d46b2011-05-03 16:38:29 +02004387 default:
4388 ops->disable = NULL;
4389 ops->enable = NULL;
4390 break;
4391 }
4392}
4393
Francois Romieuffc46952012-07-06 14:19:23 +02004394DECLARE_RTL_COND(rtl_chipcmd_cond)
4395{
4396 void __iomem *ioaddr = tp->mmio_addr;
4397
4398 return RTL_R8(ChipCmd) & CmdReset;
4399}
4400
Francois Romieu6f43adc2011-04-29 15:05:51 +02004401static void rtl_hw_reset(struct rtl8169_private *tp)
4402{
4403 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu6f43adc2011-04-29 15:05:51 +02004404
Francois Romieu6f43adc2011-04-29 15:05:51 +02004405 RTL_W8(ChipCmd, CmdReset);
4406
Francois Romieuffc46952012-07-06 14:19:23 +02004407 rtl_udelay_loop_wait_low(tp, &rtl_chipcmd_cond, 100, 100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02004408}
4409
Francois Romieub6ffd972011-06-17 17:00:05 +02004410static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
4411{
4412 struct rtl_fw *rtl_fw;
4413 const char *name;
4414 int rc = -ENOMEM;
4415
4416 name = rtl_lookup_firmware_name(tp);
4417 if (!name)
4418 goto out_no_firmware;
4419
4420 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
4421 if (!rtl_fw)
4422 goto err_warn;
4423
4424 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
4425 if (rc < 0)
4426 goto err_free;
4427
Francois Romieufd112f22011-06-18 00:10:29 +02004428 rc = rtl_check_firmware(tp, rtl_fw);
4429 if (rc < 0)
4430 goto err_release_firmware;
4431
Francois Romieub6ffd972011-06-17 17:00:05 +02004432 tp->rtl_fw = rtl_fw;
4433out:
4434 return;
4435
Francois Romieufd112f22011-06-18 00:10:29 +02004436err_release_firmware:
4437 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02004438err_free:
4439 kfree(rtl_fw);
4440err_warn:
4441 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
4442 name, rc);
4443out_no_firmware:
4444 tp->rtl_fw = NULL;
4445 goto out;
4446}
4447
François Romieu953a12c2011-04-24 17:38:48 +02004448static void rtl_request_firmware(struct rtl8169_private *tp)
4449{
Francois Romieub6ffd972011-06-17 17:00:05 +02004450 if (IS_ERR(tp->rtl_fw))
4451 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02004452}
4453
Hayes Wang92fc43b2011-07-06 15:58:03 +08004454static void rtl_rx_close(struct rtl8169_private *tp)
4455{
4456 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004457
Francois Romieu1687b562011-07-19 17:21:29 +02004458 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004459}
4460
Francois Romieuffc46952012-07-06 14:19:23 +02004461DECLARE_RTL_COND(rtl_npq_cond)
4462{
4463 void __iomem *ioaddr = tp->mmio_addr;
4464
4465 return RTL_R8(TxPoll) & NPQ;
4466}
4467
4468DECLARE_RTL_COND(rtl_txcfg_empty_cond)
4469{
4470 void __iomem *ioaddr = tp->mmio_addr;
4471
4472 return RTL_R32(TxConfig) & TXCFG_EMPTY;
4473}
4474
françois romieue6de30d2011-01-03 15:08:37 +00004475static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476{
françois romieue6de30d2011-01-03 15:08:37 +00004477 void __iomem *ioaddr = tp->mmio_addr;
4478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00004480 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481
Hayes Wang92fc43b2011-07-06 15:58:03 +08004482 rtl_rx_close(tp);
4483
Hayes Wang5d2e1952011-02-22 17:26:22 +08004484 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00004485 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4486 tp->mac_version == RTL_GIGA_MAC_VER_31) {
Francois Romieuffc46952012-07-06 14:19:23 +02004487 rtl_udelay_loop_wait_low(tp, &rtl_npq_cond, 20, 42*42);
Hayes Wangc2218922011-09-06 16:55:18 +08004488 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
4489 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
Hayes Wang7e18dca2012-03-30 14:33:02 +08004490 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004491 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
Hayes Wangc5583862012-07-02 17:23:22 +08004492 tp->mac_version == RTL_GIGA_MAC_VER_40 ||
4493 tp->mac_version == RTL_GIGA_MAC_VER_41 ||
hayeswang57538c42013-04-01 22:23:40 +00004494 tp->mac_version == RTL_GIGA_MAC_VER_42 ||
hayeswang58152cd2013-04-01 22:23:42 +00004495 tp->mac_version == RTL_GIGA_MAC_VER_43 ||
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004496 tp->mac_version == RTL_GIGA_MAC_VER_38) {
David S. Miller8decf862011-09-22 03:23:13 -04004497 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Francois Romieuffc46952012-07-06 14:19:23 +02004498 rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004499 } else {
4500 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
4501 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00004502 }
4503
Hayes Wang92fc43b2011-07-06 15:58:03 +08004504 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505}
4506
Francois Romieu7f796d832007-06-11 23:04:41 +02004507static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004508{
4509 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01004510
4511 /* Set DMA burst size and Interframe Gap Time */
4512 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4513 (InterFrameGap << TxInterFrameGapShift));
4514}
4515
Francois Romieu07ce4062007-02-23 23:36:39 +01004516static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517{
4518 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
Francois Romieu07ce4062007-02-23 23:36:39 +01004520 tp->hw_start(dev);
4521
Francois Romieuda78dbf2012-01-26 14:18:23 +01004522 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004523}
4524
Francois Romieu7f796d832007-06-11 23:04:41 +02004525static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
4526 void __iomem *ioaddr)
4527{
4528 /*
4529 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
4530 * register to be written before TxDescAddrLow to work.
4531 * Switching from MMIO to I/O access fixes the issue as well.
4532 */
4533 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004534 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004535 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004536 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004537}
4538
4539static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
4540{
4541 u16 cmd;
4542
4543 cmd = RTL_R16(CPlusCmd);
4544 RTL_W16(CPlusCmd, cmd);
4545 return cmd;
4546}
4547
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07004548static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02004549{
4550 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00004551 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02004552}
4553
Francois Romieu6dccd162007-02-13 23:38:05 +01004554static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
4555{
Francois Romieu37441002011-06-17 22:58:54 +02004556 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01004557 u32 mac_version;
4558 u32 clk;
4559 u32 val;
4560 } cfg2_info [] = {
4561 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
4562 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
4563 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
4564 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02004565 };
4566 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01004567 unsigned int i;
4568 u32 clk;
4569
4570 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01004571 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01004572 if ((p->mac_version == mac_version) && (p->clk == clk)) {
4573 RTL_W32(0x7c, p->val);
4574 break;
4575 }
4576 }
4577}
4578
Francois Romieue6b763e2012-03-08 09:35:39 +01004579static void rtl_set_rx_mode(struct net_device *dev)
4580{
4581 struct rtl8169_private *tp = netdev_priv(dev);
4582 void __iomem *ioaddr = tp->mmio_addr;
4583 u32 mc_filter[2]; /* Multicast hash filter */
4584 int rx_mode;
4585 u32 tmp = 0;
4586
4587 if (dev->flags & IFF_PROMISC) {
4588 /* Unconditionally log net taps. */
4589 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
4590 rx_mode =
4591 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4592 AcceptAllPhys;
4593 mc_filter[1] = mc_filter[0] = 0xffffffff;
4594 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
4595 (dev->flags & IFF_ALLMULTI)) {
4596 /* Too many to filter perfectly -- accept all multicasts. */
4597 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4598 mc_filter[1] = mc_filter[0] = 0xffffffff;
4599 } else {
4600 struct netdev_hw_addr *ha;
4601
4602 rx_mode = AcceptBroadcast | AcceptMyPhys;
4603 mc_filter[1] = mc_filter[0] = 0;
4604 netdev_for_each_mc_addr(ha, dev) {
4605 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
4606 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4607 rx_mode |= AcceptMulticast;
4608 }
4609 }
4610
4611 if (dev->features & NETIF_F_RXALL)
4612 rx_mode |= (AcceptErr | AcceptRunt);
4613
4614 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
4615
4616 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
4617 u32 data = mc_filter[0];
4618
4619 mc_filter[0] = swab32(mc_filter[1]);
4620 mc_filter[1] = swab32(data);
4621 }
4622
Nathan Walp04817762012-11-01 12:08:47 +00004623 if (tp->mac_version == RTL_GIGA_MAC_VER_35)
4624 mc_filter[1] = mc_filter[0] = 0xffffffff;
4625
Francois Romieue6b763e2012-03-08 09:35:39 +01004626 RTL_W32(MAR0 + 4, mc_filter[1]);
4627 RTL_W32(MAR0 + 0, mc_filter[0]);
4628
4629 RTL_W32(RxConfig, tmp);
4630}
4631
Francois Romieu07ce4062007-02-23 23:36:39 +01004632static void rtl_hw_start_8169(struct net_device *dev)
4633{
4634 struct rtl8169_private *tp = netdev_priv(dev);
4635 void __iomem *ioaddr = tp->mmio_addr;
4636 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01004637
Francois Romieu9cb427b2006-11-02 00:10:16 +01004638 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
4639 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
4640 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4641 }
4642
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02004644 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4645 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4646 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4647 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004648 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4649
Hayes Wange542a222011-07-06 15:58:04 +08004650 rtl_init_rxcfg(tp);
4651
françois romieuf0298f82011-01-03 15:07:42 +00004652 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004654 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
Francois Romieucecb5fd2011-04-01 10:21:07 +02004656 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4657 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4658 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4659 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02004660 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
Francois Romieu7f796d832007-06-11 23:04:41 +02004662 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004663
Francois Romieucecb5fd2011-04-01 10:21:07 +02004664 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4665 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02004666 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02004668 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 }
4670
Francois Romieubcf0bf92006-07-26 23:14:13 +02004671 RTL_W16(CPlusCmd, tp->cp_cmd);
4672
Francois Romieu6dccd162007-02-13 23:38:05 +01004673 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
4674
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 /*
4676 * Undocumented corner. Supposedly:
4677 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4678 */
4679 RTL_W16(IntrMitigate, 0x0000);
4680
Francois Romieu7f796d832007-06-11 23:04:41 +02004681 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01004682
Francois Romieucecb5fd2011-04-01 10:21:07 +02004683 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
4684 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
4685 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
4686 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02004687 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4688 rtl_set_rx_tx_config_registers(tp);
4689 }
4690
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02004692
4693 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4694 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695
4696 RTL_W32(RxMissed, 0);
4697
Francois Romieu07ce4062007-02-23 23:36:39 +01004698 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699
4700 /* no early-rx interrupts */
4701 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01004702}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004704static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
4705{
4706 if (tp->csi_ops.write)
Francois Romieu52989f02012-07-06 13:37:00 +02004707 tp->csi_ops.write(tp, addr, value);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004708}
4709
4710static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
4711{
Francois Romieu52989f02012-07-06 13:37:00 +02004712 return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004713}
4714
4715static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02004716{
4717 u32 csi;
4718
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004719 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
4720 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00004721}
4722
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004723static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00004724{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004725 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00004726}
4727
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004728static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00004729{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004730 rtl_csi_access_enable(tp, 0x27000000);
4731}
4732
Francois Romieuffc46952012-07-06 14:19:23 +02004733DECLARE_RTL_COND(rtl_csiar_cond)
4734{
4735 void __iomem *ioaddr = tp->mmio_addr;
4736
4737 return RTL_R32(CSIAR) & CSIAR_FLAG;
4738}
4739
Francois Romieu52989f02012-07-06 13:37:00 +02004740static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004741{
Francois Romieu52989f02012-07-06 13:37:00 +02004742 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004743
4744 RTL_W32(CSIDR, value);
4745 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4746 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4747
Francois Romieuffc46952012-07-06 14:19:23 +02004748 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004749}
4750
Francois Romieu52989f02012-07-06 13:37:00 +02004751static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004752{
Francois Romieu52989f02012-07-06 13:37:00 +02004753 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004754
4755 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
4756 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4757
Francois Romieuffc46952012-07-06 14:19:23 +02004758 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
4759 RTL_R32(CSIDR) : ~0;
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004760}
4761
Francois Romieu52989f02012-07-06 13:37:00 +02004762static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
Hayes Wang7e18dca2012-03-30 14:33:02 +08004763{
Francois Romieu52989f02012-07-06 13:37:00 +02004764 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004765
4766 RTL_W32(CSIDR, value);
4767 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4768 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
4769 CSIAR_FUNC_NIC);
4770
Francois Romieuffc46952012-07-06 14:19:23 +02004771 rtl_udelay_loop_wait_low(tp, &rtl_csiar_cond, 10, 100);
Hayes Wang7e18dca2012-03-30 14:33:02 +08004772}
4773
Francois Romieu52989f02012-07-06 13:37:00 +02004774static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
Hayes Wang7e18dca2012-03-30 14:33:02 +08004775{
Francois Romieu52989f02012-07-06 13:37:00 +02004776 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004777
4778 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
4779 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4780
Francois Romieuffc46952012-07-06 14:19:23 +02004781 return rtl_udelay_loop_wait_high(tp, &rtl_csiar_cond, 10, 100) ?
4782 RTL_R32(CSIDR) : ~0;
Hayes Wang7e18dca2012-03-30 14:33:02 +08004783}
4784
Bill Pembertonbaf63292012-12-03 09:23:28 -05004785static void rtl_init_csi_ops(struct rtl8169_private *tp)
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004786{
4787 struct csi_ops *ops = &tp->csi_ops;
4788
4789 switch (tp->mac_version) {
4790 case RTL_GIGA_MAC_VER_01:
4791 case RTL_GIGA_MAC_VER_02:
4792 case RTL_GIGA_MAC_VER_03:
4793 case RTL_GIGA_MAC_VER_04:
4794 case RTL_GIGA_MAC_VER_05:
4795 case RTL_GIGA_MAC_VER_06:
4796 case RTL_GIGA_MAC_VER_10:
4797 case RTL_GIGA_MAC_VER_11:
4798 case RTL_GIGA_MAC_VER_12:
4799 case RTL_GIGA_MAC_VER_13:
4800 case RTL_GIGA_MAC_VER_14:
4801 case RTL_GIGA_MAC_VER_15:
4802 case RTL_GIGA_MAC_VER_16:
4803 case RTL_GIGA_MAC_VER_17:
4804 ops->write = NULL;
4805 ops->read = NULL;
4806 break;
4807
Hayes Wang7e18dca2012-03-30 14:33:02 +08004808 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004809 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004810 ops->write = r8402_csi_write;
4811 ops->read = r8402_csi_read;
4812 break;
4813
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004814 default:
4815 ops->write = r8169_csi_write;
4816 ops->read = r8169_csi_read;
4817 break;
4818 }
Francois Romieudacf8152008-08-02 20:44:13 +02004819}
4820
4821struct ephy_info {
4822 unsigned int offset;
4823 u16 mask;
4824 u16 bits;
4825};
4826
Francois Romieufdf6fc02012-07-06 22:40:38 +02004827static void rtl_ephy_init(struct rtl8169_private *tp, const struct ephy_info *e,
4828 int len)
Francois Romieudacf8152008-08-02 20:44:13 +02004829{
4830 u16 w;
4831
4832 while (len-- > 0) {
Francois Romieufdf6fc02012-07-06 22:40:38 +02004833 w = (rtl_ephy_read(tp, e->offset) & ~e->mask) | e->bits;
4834 rtl_ephy_write(tp, e->offset, w);
Francois Romieudacf8152008-08-02 20:44:13 +02004835 e++;
4836 }
4837}
4838
Francois Romieub726e492008-06-28 12:22:59 +02004839static void rtl_disable_clock_request(struct pci_dev *pdev)
4840{
Jiang Liu7d7903b2012-07-24 17:20:16 +08004841 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL,
4842 PCI_EXP_LNKCTL_CLKREQ_EN);
Francois Romieub726e492008-06-28 12:22:59 +02004843}
4844
françois romieue6de30d2011-01-03 15:08:37 +00004845static void rtl_enable_clock_request(struct pci_dev *pdev)
4846{
Jiang Liu7d7903b2012-07-24 17:20:16 +08004847 pcie_capability_set_word(pdev, PCI_EXP_LNKCTL,
4848 PCI_EXP_LNKCTL_CLKREQ_EN);
françois romieue6de30d2011-01-03 15:08:37 +00004849}
4850
Francois Romieub726e492008-06-28 12:22:59 +02004851#define R8168_CPCMD_QUIRK_MASK (\
4852 EnableBist | \
4853 Mac_dbgo_oe | \
4854 Force_half_dup | \
4855 Force_rxflow_en | \
4856 Force_txflow_en | \
4857 Cxpl_dbg_sel | \
4858 ASF | \
4859 PktCntrDisable | \
4860 Mac_dbgo_sel)
4861
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004862static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004863{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004864 void __iomem *ioaddr = tp->mmio_addr;
4865 struct pci_dev *pdev = tp->pci_dev;
4866
Francois Romieub726e492008-06-28 12:22:59 +02004867 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4868
4869 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4870
françois romieufaf1e782013-02-27 13:01:57 +00004871 if (tp->dev->mtu <= ETH_DATA_LEN) {
4872 rtl_tx_performance_tweak(pdev, (0x5 << MAX_READ_REQUEST_SHIFT) |
4873 PCI_EXP_DEVCTL_NOSNOOP_EN);
4874 }
Francois Romieu219a1e92008-06-28 11:58:39 +02004875}
4876
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004877static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004878{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004879 void __iomem *ioaddr = tp->mmio_addr;
4880
4881 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004882
françois romieuf0298f82011-01-03 15:07:42 +00004883 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02004884
4885 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02004886}
4887
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004888static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004889{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004890 void __iomem *ioaddr = tp->mmio_addr;
4891 struct pci_dev *pdev = tp->pci_dev;
4892
Francois Romieub726e492008-06-28 12:22:59 +02004893 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4894
4895 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4896
françois romieufaf1e782013-02-27 13:01:57 +00004897 if (tp->dev->mtu <= ETH_DATA_LEN)
4898 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02004899
4900 rtl_disable_clock_request(pdev);
4901
4902 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02004903}
4904
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004905static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004906{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004907 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004908 { 0x01, 0, 0x0001 },
4909 { 0x02, 0x0800, 0x1000 },
4910 { 0x03, 0, 0x0042 },
4911 { 0x06, 0x0080, 0x0000 },
4912 { 0x07, 0, 0x2000 }
4913 };
4914
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004915 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004916
Francois Romieufdf6fc02012-07-06 22:40:38 +02004917 rtl_ephy_init(tp, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
Francois Romieub726e492008-06-28 12:22:59 +02004918
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004919 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004920}
4921
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004922static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02004923{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004924 void __iomem *ioaddr = tp->mmio_addr;
4925 struct pci_dev *pdev = tp->pci_dev;
4926
4927 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004928
4929 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4930
françois romieufaf1e782013-02-27 13:01:57 +00004931 if (tp->dev->mtu <= ETH_DATA_LEN)
4932 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieuef3386f2008-06-29 12:24:30 +02004933
4934 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4935}
4936
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004937static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004938{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004939 void __iomem *ioaddr = tp->mmio_addr;
4940 struct pci_dev *pdev = tp->pci_dev;
4941
4942 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004943
4944 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4945
4946 /* Magic. */
4947 RTL_W8(DBG_REG, 0x20);
4948
françois romieuf0298f82011-01-03 15:07:42 +00004949 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004950
françois romieufaf1e782013-02-27 13:01:57 +00004951 if (tp->dev->mtu <= ETH_DATA_LEN)
4952 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004953
4954 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4955}
4956
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004957static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004958{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004959 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004960 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004961 { 0x02, 0x0800, 0x1000 },
4962 { 0x03, 0, 0x0002 },
4963 { 0x06, 0x0080, 0x0000 }
4964 };
4965
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004966 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004967
4968 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
4969
Francois Romieufdf6fc02012-07-06 22:40:38 +02004970 rtl_ephy_init(tp, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
Francois Romieub726e492008-06-28 12:22:59 +02004971
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004972 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004973}
4974
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004975static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004976{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004977 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004978 { 0x01, 0, 0x0001 },
4979 { 0x03, 0x0400, 0x0220 }
4980 };
4981
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004982 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004983
Francois Romieufdf6fc02012-07-06 22:40:38 +02004984 rtl_ephy_init(tp, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
Francois Romieub726e492008-06-28 12:22:59 +02004985
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004986 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004987}
4988
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004989static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02004990{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004991 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02004992}
4993
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004994static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02004995{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004996 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004997
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004998 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004999}
5000
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005001static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02005002{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005003 void __iomem *ioaddr = tp->mmio_addr;
5004 struct pci_dev *pdev = tp->pci_dev;
5005
5006 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02005007
5008 rtl_disable_clock_request(pdev);
5009
françois romieuf0298f82011-01-03 15:07:42 +00005010 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02005011
françois romieufaf1e782013-02-27 13:01:57 +00005012 if (tp->dev->mtu <= ETH_DATA_LEN)
5013 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu5b538df2008-07-20 16:22:45 +02005014
5015 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
5016}
5017
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005018static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00005019{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005020 void __iomem *ioaddr = tp->mmio_addr;
5021 struct pci_dev *pdev = tp->pci_dev;
5022
5023 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005024
françois romieufaf1e782013-02-27 13:01:57 +00005025 if (tp->dev->mtu <= ETH_DATA_LEN)
5026 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang4804b3b2011-03-21 01:50:29 +00005027
5028 RTL_W8(MaxTxPacketSize, TxPacketMax);
5029
5030 rtl_disable_clock_request(pdev);
5031}
5032
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005033static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00005034{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005035 void __iomem *ioaddr = tp->mmio_addr;
5036 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00005037 static const struct ephy_info e_info_8168d_4[] = {
5038 { 0x0b, ~0, 0x48 },
5039 { 0x19, 0x20, 0x50 },
5040 { 0x0c, ~0, 0x20 }
5041 };
5042 int i;
5043
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005044 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00005045
5046 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5047
5048 RTL_W8(MaxTxPacketSize, TxPacketMax);
5049
5050 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
5051 const struct ephy_info *e = e_info_8168d_4 + i;
5052 u16 w;
5053
Francois Romieufdf6fc02012-07-06 22:40:38 +02005054 w = rtl_ephy_read(tp, e->offset);
5055 rtl_ephy_write(tp, 0x03, (w & e->mask) | e->bits);
françois romieue6de30d2011-01-03 15:08:37 +00005056 }
5057
5058 rtl_enable_clock_request(pdev);
5059}
5060
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005061static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00005062{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005063 void __iomem *ioaddr = tp->mmio_addr;
5064 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005065 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00005066 { 0x00, 0x0200, 0x0100 },
5067 { 0x00, 0x0000, 0x0004 },
5068 { 0x06, 0x0002, 0x0001 },
5069 { 0x06, 0x0000, 0x0030 },
5070 { 0x07, 0x0000, 0x2000 },
5071 { 0x00, 0x0000, 0x0020 },
5072 { 0x03, 0x5800, 0x2000 },
5073 { 0x03, 0x0000, 0x0001 },
5074 { 0x01, 0x0800, 0x1000 },
5075 { 0x07, 0x0000, 0x4000 },
5076 { 0x1e, 0x0000, 0x2000 },
5077 { 0x19, 0xffff, 0xfe6c },
5078 { 0x0a, 0x0000, 0x0040 }
5079 };
5080
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005081 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005082
Francois Romieufdf6fc02012-07-06 22:40:38 +02005083 rtl_ephy_init(tp, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00005084
françois romieufaf1e782013-02-27 13:01:57 +00005085 if (tp->dev->mtu <= ETH_DATA_LEN)
5086 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
hayeswang01dc7fe2011-03-21 01:50:28 +00005087
5088 RTL_W8(MaxTxPacketSize, TxPacketMax);
5089
5090 rtl_disable_clock_request(pdev);
5091
5092 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02005093 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
5094 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00005095
Francois Romieucecb5fd2011-04-01 10:21:07 +02005096 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00005097}
5098
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005099static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08005100{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005101 void __iomem *ioaddr = tp->mmio_addr;
5102 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08005103 static const struct ephy_info e_info_8168e_2[] = {
5104 { 0x09, 0x0000, 0x0080 },
5105 { 0x19, 0x0000, 0x0224 }
5106 };
5107
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005108 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005109
Francois Romieufdf6fc02012-07-06 22:40:38 +02005110 rtl_ephy_init(tp, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
Hayes Wang70090422011-07-06 15:58:06 +08005111
françois romieufaf1e782013-02-27 13:01:57 +00005112 if (tp->dev->mtu <= ETH_DATA_LEN)
5113 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Hayes Wang70090422011-07-06 15:58:06 +08005114
Francois Romieufdf6fc02012-07-06 22:40:38 +02005115 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5116 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5117 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5118 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5119 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5120 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
5121 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5122 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang70090422011-07-06 15:58:06 +08005123
Hayes Wang3090bd92011-09-06 16:55:15 +08005124 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08005125
Francois Romieu4521e1a92012-11-01 16:46:28 +00005126 rtl_disable_clock_request(pdev);
5127
Hayes Wang70090422011-07-06 15:58:06 +08005128 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5129 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5130
5131 /* Adjust EEE LED frequency */
5132 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5133
5134 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
5135 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005136 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wang70090422011-07-06 15:58:06 +08005137}
5138
Hayes Wang5f886e02012-03-30 14:33:03 +08005139static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08005140{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005141 void __iomem *ioaddr = tp->mmio_addr;
5142 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08005143
Hayes Wang5f886e02012-03-30 14:33:03 +08005144 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005145
5146 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5147
Francois Romieufdf6fc02012-07-06 22:40:38 +02005148 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5149 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5150 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
5151 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5152 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5153 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5154 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5155 rtl_w1w0_eri(tp, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
5156 rtl_eri_write(tp, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
5157 rtl_eri_write(tp, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08005158
5159 RTL_W8(MaxTxPacketSize, EarlySize);
5160
Francois Romieu4521e1a92012-11-01 16:46:28 +00005161 rtl_disable_clock_request(pdev);
5162
Hayes Wangc2218922011-09-06 16:55:18 +08005163 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5164 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08005165 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005166 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
5167 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
Hayes Wangc2218922011-09-06 16:55:18 +08005168}
5169
Hayes Wang5f886e02012-03-30 14:33:03 +08005170static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
5171{
5172 void __iomem *ioaddr = tp->mmio_addr;
5173 static const struct ephy_info e_info_8168f_1[] = {
5174 { 0x06, 0x00c0, 0x0020 },
5175 { 0x08, 0x0001, 0x0002 },
5176 { 0x09, 0x0000, 0x0080 },
5177 { 0x19, 0x0000, 0x0224 }
5178 };
5179
5180 rtl_hw_start_8168f(tp);
5181
Francois Romieufdf6fc02012-07-06 22:40:38 +02005182 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wang5f886e02012-03-30 14:33:03 +08005183
Francois Romieufdf6fc02012-07-06 22:40:38 +02005184 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, ERIAR_EXGMAC);
Hayes Wang5f886e02012-03-30 14:33:03 +08005185
5186 /* Adjust EEE LED frequency */
5187 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5188}
5189
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005190static void rtl_hw_start_8411(struct rtl8169_private *tp)
5191{
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005192 static const struct ephy_info e_info_8168f_1[] = {
5193 { 0x06, 0x00c0, 0x0020 },
5194 { 0x0f, 0xffff, 0x5200 },
5195 { 0x1e, 0x0000, 0x4000 },
5196 { 0x19, 0x0000, 0x0224 }
5197 };
5198
5199 rtl_hw_start_8168f(tp);
5200
Francois Romieufdf6fc02012-07-06 22:40:38 +02005201 rtl_ephy_init(tp, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005202
Francois Romieufdf6fc02012-07-06 22:40:38 +02005203 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000, ERIAR_EXGMAC);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005204}
5205
Hayes Wangc5583862012-07-02 17:23:22 +08005206static void rtl_hw_start_8168g_1(struct rtl8169_private *tp)
5207{
5208 void __iomem *ioaddr = tp->mmio_addr;
5209 struct pci_dev *pdev = tp->pci_dev;
5210
hayeswangbeb330a2013-04-01 22:23:39 +00005211 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5212
Hayes Wangc5583862012-07-02 17:23:22 +08005213 rtl_eri_write(tp, 0xc8, ERIAR_MASK_0101, 0x080002, ERIAR_EXGMAC);
5214 rtl_eri_write(tp, 0xcc, ERIAR_MASK_0001, 0x38, ERIAR_EXGMAC);
5215 rtl_eri_write(tp, 0xd0, ERIAR_MASK_0001, 0x48, ERIAR_EXGMAC);
5216 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
5217
5218 rtl_csi_access_enable_1(tp);
5219
5220 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5221
5222 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5223 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
hayeswangbeb330a2013-04-01 22:23:39 +00005224 rtl_eri_write(tp, 0x2f8, ERIAR_MASK_0011, 0x1d8f, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08005225
5226 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieu4521e1a92012-11-01 16:46:28 +00005227 RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN);
Hayes Wangc5583862012-07-02 17:23:22 +08005228 RTL_W8(MaxTxPacketSize, EarlySize);
5229
5230 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5231 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5232
5233 /* Adjust EEE LED frequency */
5234 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
5235
hayeswangbeb330a2013-04-01 22:23:39 +00005236 rtl_w1w0_eri(tp, 0x2fc, ERIAR_MASK_0001, 0x01, 0x06, ERIAR_EXGMAC);
5237 rtl_w1w0_eri(tp, 0x1b0, ERIAR_MASK_0011, 0x0000, 0x1000, ERIAR_EXGMAC);
Hayes Wangc5583862012-07-02 17:23:22 +08005238}
5239
hayeswang57538c42013-04-01 22:23:40 +00005240static void rtl_hw_start_8168g_2(struct rtl8169_private *tp)
5241{
5242 void __iomem *ioaddr = tp->mmio_addr;
5243 static const struct ephy_info e_info_8168g_2[] = {
5244 { 0x00, 0x0000, 0x0008 },
5245 { 0x0c, 0x3df0, 0x0200 },
5246 { 0x19, 0xffff, 0xfc00 },
5247 { 0x1e, 0xffff, 0x20eb }
5248 };
5249
5250 rtl_hw_start_8168g_1(tp);
5251
5252 /* disable aspm and clock request before access ephy */
5253 RTL_W8(Config2, RTL_R8(Config2) & ~ClkReqEn);
5254 RTL_W8(Config5, RTL_R8(Config5) & ~ASPM_en);
5255 rtl_ephy_init(tp, e_info_8168g_2, ARRAY_SIZE(e_info_8168g_2));
5256}
5257
Francois Romieu07ce4062007-02-23 23:36:39 +01005258static void rtl_hw_start_8168(struct net_device *dev)
5259{
Francois Romieu2dd99532007-06-11 23:22:52 +02005260 struct rtl8169_private *tp = netdev_priv(dev);
5261 void __iomem *ioaddr = tp->mmio_addr;
5262
5263 RTL_W8(Cfg9346, Cfg9346_Unlock);
5264
françois romieuf0298f82011-01-03 15:07:42 +00005265 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02005266
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005267 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02005268
Francois Romieu0e485152007-02-20 00:00:26 +01005269 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02005270
5271 RTL_W16(CPlusCmd, tp->cp_cmd);
5272
Francois Romieu0e485152007-02-20 00:00:26 +01005273 RTL_W16(IntrMitigate, 0x5151);
5274
5275 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00005276 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01005277 tp->event_slow |= RxFIFOOver | PCSTimeout;
5278 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01005279 }
Francois Romieu2dd99532007-06-11 23:22:52 +02005280
5281 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5282
hayeswang1a964642013-04-01 22:23:41 +00005283 rtl_set_rx_tx_config_registers(tp);
Francois Romieu2dd99532007-06-11 23:22:52 +02005284
5285 RTL_R8(IntrMask);
5286
Francois Romieu219a1e92008-06-28 11:58:39 +02005287 switch (tp->mac_version) {
5288 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005289 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005290 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005291
5292 case RTL_GIGA_MAC_VER_12:
5293 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005294 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005295 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005296
5297 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005298 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005299 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005300
5301 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005302 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005303 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005304
5305 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005306 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005307 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005308
Francois Romieu197ff762008-06-28 13:16:02 +02005309 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005310 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005311 break;
Francois Romieu197ff762008-06-28 13:16:02 +02005312
Francois Romieu6fb07052008-06-29 11:54:28 +02005313 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005314 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005315 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02005316
Francois Romieuef3386f2008-06-29 12:24:30 +02005317 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005318 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005319 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02005320
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005321 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005322 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005323 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02005324
Francois Romieu5b538df2008-07-20 16:22:45 +02005325 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00005326 case RTL_GIGA_MAC_VER_26:
5327 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005328 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005329 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02005330
françois romieue6de30d2011-01-03 15:08:37 +00005331 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005332 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005333 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02005334
hayeswang4804b3b2011-03-21 01:50:29 +00005335 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005336 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00005337 break;
5338
hayeswang01dc7fe2011-03-21 01:50:28 +00005339 case RTL_GIGA_MAC_VER_32:
5340 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005341 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08005342 break;
5343 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005344 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00005345 break;
françois romieue6de30d2011-01-03 15:08:37 +00005346
Hayes Wangc2218922011-09-06 16:55:18 +08005347 case RTL_GIGA_MAC_VER_35:
5348 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005349 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08005350 break;
5351
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08005352 case RTL_GIGA_MAC_VER_38:
5353 rtl_hw_start_8411(tp);
5354 break;
5355
Hayes Wangc5583862012-07-02 17:23:22 +08005356 case RTL_GIGA_MAC_VER_40:
5357 case RTL_GIGA_MAC_VER_41:
5358 rtl_hw_start_8168g_1(tp);
5359 break;
hayeswang57538c42013-04-01 22:23:40 +00005360 case RTL_GIGA_MAC_VER_42:
5361 rtl_hw_start_8168g_2(tp);
5362 break;
Hayes Wangc5583862012-07-02 17:23:22 +08005363
Francois Romieu219a1e92008-06-28 11:58:39 +02005364 default:
5365 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
5366 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00005367 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02005368 }
Francois Romieu2dd99532007-06-11 23:22:52 +02005369
hayeswang1a964642013-04-01 22:23:41 +00005370 RTL_W8(Cfg9346, Cfg9346_Lock);
5371
Francois Romieu0e485152007-02-20 00:00:26 +01005372 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5373
hayeswang1a964642013-04-01 22:23:41 +00005374 rtl_set_rx_mode(dev);
Francois Romieub8363902008-06-01 12:31:57 +02005375
Francois Romieu2dd99532007-06-11 23:22:52 +02005376 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01005377}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378
Francois Romieu2857ffb2008-08-02 21:08:49 +02005379#define R810X_CPCMD_QUIRK_MASK (\
5380 EnableBist | \
5381 Mac_dbgo_oe | \
5382 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00005383 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02005384 Force_txflow_en | \
5385 Cxpl_dbg_sel | \
5386 ASF | \
5387 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005388 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005389
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005390static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005391{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005392 void __iomem *ioaddr = tp->mmio_addr;
5393 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005394 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02005395 { 0x01, 0, 0x6e65 },
5396 { 0x02, 0, 0x091f },
5397 { 0x03, 0, 0xc2f9 },
5398 { 0x06, 0, 0xafb5 },
5399 { 0x07, 0, 0x0e00 },
5400 { 0x19, 0, 0xec80 },
5401 { 0x01, 0, 0x2e65 },
5402 { 0x01, 0, 0x6e65 }
5403 };
5404 u8 cfg1;
5405
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005406 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005407
5408 RTL_W8(DBG_REG, FIX_NAK_1);
5409
5410 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5411
5412 RTL_W8(Config1,
5413 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
5414 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5415
5416 cfg1 = RTL_R8(Config1);
5417 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
5418 RTL_W8(Config1, cfg1 & ~LEDS0);
5419
Francois Romieufdf6fc02012-07-06 22:40:38 +02005420 rtl_ephy_init(tp, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
Francois Romieu2857ffb2008-08-02 21:08:49 +02005421}
5422
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005423static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005424{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005425 void __iomem *ioaddr = tp->mmio_addr;
5426 struct pci_dev *pdev = tp->pci_dev;
5427
5428 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005429
5430 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5431
5432 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
5433 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005434}
5435
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005436static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005437{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005438 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005439
Francois Romieufdf6fc02012-07-06 22:40:38 +02005440 rtl_ephy_write(tp, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005441}
5442
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005443static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005444{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005445 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005446 static const struct ephy_info e_info_8105e_1[] = {
5447 { 0x07, 0, 0x4000 },
5448 { 0x19, 0, 0x0200 },
5449 { 0x19, 0, 0x0020 },
5450 { 0x1e, 0, 0x2000 },
5451 { 0x03, 0, 0x0001 },
5452 { 0x19, 0, 0x0100 },
5453 { 0x19, 0, 0x0004 },
5454 { 0x0a, 0, 0x0020 }
5455 };
5456
Francois Romieucecb5fd2011-04-01 10:21:07 +02005457 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005458 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5459
Francois Romieucecb5fd2011-04-01 10:21:07 +02005460 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005461 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
5462
5463 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08005464 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005465
Francois Romieufdf6fc02012-07-06 22:40:38 +02005466 rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
Hayes Wang5a5e4442011-02-22 17:26:21 +08005467}
5468
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005469static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005470{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005471 rtl_hw_start_8105e_1(tp);
Francois Romieufdf6fc02012-07-06 22:40:38 +02005472 rtl_ephy_write(tp, 0x1e, rtl_ephy_read(tp, 0x1e) | 0x8000);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005473}
5474
Hayes Wang7e18dca2012-03-30 14:33:02 +08005475static void rtl_hw_start_8402(struct rtl8169_private *tp)
5476{
5477 void __iomem *ioaddr = tp->mmio_addr;
5478 static const struct ephy_info e_info_8402[] = {
5479 { 0x19, 0xffff, 0xff64 },
5480 { 0x1e, 0, 0x4000 }
5481 };
5482
5483 rtl_csi_access_enable_2(tp);
5484
5485 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5486 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5487
5488 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5489 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5490
Francois Romieufdf6fc02012-07-06 22:40:38 +02005491 rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402));
Hayes Wang7e18dca2012-03-30 14:33:02 +08005492
5493 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
5494
Francois Romieufdf6fc02012-07-06 22:40:38 +02005495 rtl_eri_write(tp, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
5496 rtl_eri_write(tp, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
5497 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5498 rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5499 rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5500 rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5501 rtl_w1w0_eri(tp, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00, ERIAR_EXGMAC);
Hayes Wang7e18dca2012-03-30 14:33:02 +08005502}
5503
Hayes Wang5598bfe2012-07-02 17:23:21 +08005504static void rtl_hw_start_8106(struct rtl8169_private *tp)
5505{
5506 void __iomem *ioaddr = tp->mmio_addr;
5507
5508 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5509 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5510
Francois Romieu4521e1a92012-11-01 16:46:28 +00005511 RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN);
Hayes Wang5598bfe2012-07-02 17:23:21 +08005512 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
5513 RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN);
5514}
5515
Francois Romieu07ce4062007-02-23 23:36:39 +01005516static void rtl_hw_start_8101(struct net_device *dev)
5517{
Francois Romieucdf1a602007-06-11 23:29:50 +02005518 struct rtl8169_private *tp = netdev_priv(dev);
5519 void __iomem *ioaddr = tp->mmio_addr;
5520 struct pci_dev *pdev = tp->pci_dev;
5521
Francois Romieuda78dbf2012-01-26 14:18:23 +01005522 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
5523 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00005524
Francois Romieucecb5fd2011-04-01 10:21:07 +02005525 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
Jiang Liu7d7903b2012-07-24 17:20:16 +08005526 tp->mac_version == RTL_GIGA_MAC_VER_16)
Bjorn Helgaas8200bc72012-08-22 10:29:42 -06005527 pcie_capability_set_word(pdev, PCI_EXP_DEVCTL,
5528 PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieucdf1a602007-06-11 23:29:50 +02005529
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005530 RTL_W8(Cfg9346, Cfg9346_Unlock);
5531
hayeswang1a964642013-04-01 22:23:41 +00005532 RTL_W8(MaxTxPacketSize, TxPacketMax);
5533
5534 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
5535
5536 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
5537 RTL_W16(CPlusCmd, tp->cp_cmd);
5538
5539 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5540
5541 rtl_set_rx_tx_config_registers(tp);
5542
Francois Romieu2857ffb2008-08-02 21:08:49 +02005543 switch (tp->mac_version) {
5544 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005545 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005546 break;
5547
5548 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005549 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005550 break;
5551
5552 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005553 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005554 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005555
5556 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005557 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005558 break;
5559 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005560 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005561 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005562
5563 case RTL_GIGA_MAC_VER_37:
5564 rtl_hw_start_8402(tp);
5565 break;
Hayes Wang5598bfe2012-07-02 17:23:21 +08005566
5567 case RTL_GIGA_MAC_VER_39:
5568 rtl_hw_start_8106(tp);
5569 break;
hayeswang58152cd2013-04-01 22:23:42 +00005570 case RTL_GIGA_MAC_VER_43:
5571 rtl_hw_start_8168g_2(tp);
5572 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02005573 }
5574
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005575 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02005576
Francois Romieucdf1a602007-06-11 23:29:50 +02005577 RTL_W16(IntrMitigate, 0x0000);
5578
Francois Romieucdf1a602007-06-11 23:29:50 +02005579 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieucdf1a602007-06-11 23:29:50 +02005580
Francois Romieucdf1a602007-06-11 23:29:50 +02005581 rtl_set_rx_mode(dev);
5582
hayeswang1a964642013-04-01 22:23:41 +00005583 RTL_R8(IntrMask);
5584
Francois Romieucdf1a602007-06-11 23:29:50 +02005585 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586}
5587
5588static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
5589{
Francois Romieud58d46b2011-05-03 16:38:29 +02005590 struct rtl8169_private *tp = netdev_priv(dev);
5591
5592 if (new_mtu < ETH_ZLEN ||
5593 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594 return -EINVAL;
5595
Francois Romieud58d46b2011-05-03 16:38:29 +02005596 if (new_mtu > ETH_DATA_LEN)
5597 rtl_hw_jumbo_enable(tp);
5598 else
5599 rtl_hw_jumbo_disable(tp);
5600
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00005602 netdev_update_features(dev);
5603
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005604 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605}
5606
5607static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
5608{
Al Viro95e09182007-12-22 18:55:39 +00005609 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
5611}
5612
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005613static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
5614 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005616 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005617 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005618
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005619 kfree(*data_buff);
5620 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 rtl8169_make_unusable_by_asic(desc);
5622}
5623
5624static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
5625{
5626 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
5627
5628 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
5629}
5630
5631static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
5632 u32 rx_buf_sz)
5633{
5634 desc->addr = cpu_to_le64(mapping);
5635 wmb();
5636 rtl8169_mark_to_asic(desc, rx_buf_sz);
5637}
5638
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005639static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005641 return (void *)ALIGN((long)data, 16);
5642}
5643
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005644static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
5645 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005646{
5647 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005649 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005650 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005651 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005653 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
5654 if (!data)
5655 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01005656
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005657 if (rtl8169_align(data) != data) {
5658 kfree(data);
5659 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
5660 if (!data)
5661 return NULL;
5662 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005663
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005664 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005665 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005666 if (unlikely(dma_mapping_error(d, mapping))) {
5667 if (net_ratelimit())
5668 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005669 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671
5672 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005673 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005674
5675err_out:
5676 kfree(data);
5677 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678}
5679
5680static void rtl8169_rx_clear(struct rtl8169_private *tp)
5681{
Francois Romieu07d3f512007-02-21 22:40:46 +01005682 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683
5684 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005685 if (tp->Rx_databuff[i]) {
5686 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 tp->RxDescArray + i);
5688 }
5689 }
5690}
5691
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005692static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005694 desc->opts1 |= cpu_to_le32(RingEnd);
5695}
Francois Romieu5b0384f2006-08-16 16:00:01 +02005696
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005697static int rtl8169_rx_fill(struct rtl8169_private *tp)
5698{
5699 unsigned int i;
5700
5701 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005702 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02005703
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005704 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005706
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005707 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005708 if (!data) {
5709 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005710 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005711 }
5712 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005715 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
5716 return 0;
5717
5718err_out:
5719 rtl8169_rx_clear(tp);
5720 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721}
5722
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723static int rtl8169_init_ring(struct net_device *dev)
5724{
5725 struct rtl8169_private *tp = netdev_priv(dev);
5726
5727 rtl8169_init_ring_indexes(tp);
5728
5729 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005730 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005732 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733}
5734
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005735static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736 struct TxDesc *desc)
5737{
5738 unsigned int len = tx_skb->len;
5739
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005740 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
5741
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 desc->opts1 = 0x00;
5743 desc->opts2 = 0x00;
5744 desc->addr = 0x00;
5745 tx_skb->len = 0;
5746}
5747
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005748static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
5749 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750{
5751 unsigned int i;
5752
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005753 for (i = 0; i < n; i++) {
5754 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 struct ring_info *tx_skb = tp->tx_skb + entry;
5756 unsigned int len = tx_skb->len;
5757
5758 if (len) {
5759 struct sk_buff *skb = tx_skb->skb;
5760
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005761 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762 tp->TxDescArray + entry);
5763 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00005764 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765 dev_kfree_skb(skb);
5766 tx_skb->skb = NULL;
5767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768 }
5769 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005770}
5771
5772static void rtl8169_tx_clear(struct rtl8169_private *tp)
5773{
5774 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775 tp->cur_tx = tp->dirty_tx = 0;
5776}
5777
Francois Romieu4422bcd2012-01-26 11:23:32 +01005778static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779{
David Howellsc4028952006-11-22 14:57:56 +00005780 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01005781 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782
Francois Romieuda78dbf2012-01-26 14:18:23 +01005783 napi_disable(&tp->napi);
5784 netif_stop_queue(dev);
5785 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786
françois romieuc7c2c392011-12-04 20:30:52 +00005787 rtl8169_hw_reset(tp);
5788
Francois Romieu56de4142011-03-15 17:29:31 +01005789 for (i = 0; i < NUM_RX_DESC; i++)
5790 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
5791
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00005793 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794
Francois Romieuda78dbf2012-01-26 14:18:23 +01005795 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01005796 rtl_hw_start(dev);
5797 netif_wake_queue(dev);
5798 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799}
5800
5801static void rtl8169_tx_timeout(struct net_device *dev)
5802{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005803 struct rtl8169_private *tp = netdev_priv(dev);
5804
5805 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806}
5807
5808static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07005809 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810{
5811 struct skb_shared_info *info = skb_shinfo(skb);
5812 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04005813 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005814 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815
5816 entry = tp->cur_tx;
5817 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00005818 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 dma_addr_t mapping;
5820 u32 status, len;
5821 void *addr;
5822
5823 entry = (entry + 1) % NUM_TX_DESC;
5824
5825 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00005826 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00005827 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005828 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005829 if (unlikely(dma_mapping_error(d, mapping))) {
5830 if (net_ratelimit())
5831 netif_err(tp, drv, tp->dev,
5832 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005833 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835
Francois Romieucecb5fd2011-04-01 10:21:07 +02005836 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005837 status = opts[0] | len |
5838 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839
5840 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07005841 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 txd->addr = cpu_to_le64(mapping);
5843
5844 tp->tx_skb[entry].len = len;
5845 }
5846
5847 if (cur_frag) {
5848 tp->tx_skb[entry].skb = skb;
5849 txd->opts1 |= cpu_to_le32(LastFrag);
5850 }
5851
5852 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005853
5854err_out:
5855 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
5856 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857}
5858
françois romieub423e9a2013-05-18 01:24:46 +00005859static bool rtl_skb_pad(struct sk_buff *skb)
5860{
5861 if (skb_padto(skb, ETH_ZLEN))
5862 return false;
5863 skb_put(skb, ETH_ZLEN - skb->len);
5864 return true;
5865}
5866
5867static bool rtl_test_hw_pad_bug(struct rtl8169_private *tp, struct sk_buff *skb)
5868{
5869 return skb->len < ETH_ZLEN && tp->mac_version == RTL_GIGA_MAC_VER_34;
5870}
5871
5872static inline bool rtl8169_tso_csum(struct rtl8169_private *tp,
Francois Romieu2b7b4312011-04-18 22:53:24 -07005873 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874{
Francois Romieu2b7b4312011-04-18 22:53:24 -07005875 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00005876 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005877 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878
Francois Romieu2b7b4312011-04-18 22:53:24 -07005879 if (mss) {
5880 opts[0] |= TD_LSO;
5881 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
5882 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005883 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884
françois romieub423e9a2013-05-18 01:24:46 +00005885 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
5886 return skb_checksum_help(skb) == 0 && rtl_skb_pad(skb);
5887
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005889 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005891 opts[offset] |= info->checksum.udp;
5892 else
5893 WARN_ON_ONCE(1);
françois romieub423e9a2013-05-18 01:24:46 +00005894 } else {
5895 if (unlikely(rtl_test_hw_pad_bug(tp, skb)))
5896 return rtl_skb_pad(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897 }
françois romieub423e9a2013-05-18 01:24:46 +00005898 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899}
5900
Stephen Hemminger613573252009-08-31 19:50:58 +00005901static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
5902 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903{
5904 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005905 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906 struct TxDesc *txd = tp->TxDescArray + entry;
5907 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005908 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909 dma_addr_t mapping;
5910 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005911 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005912 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02005913
Julien Ducourthial477206a2012-05-09 00:00:06 +02005914 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005915 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005916 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917 }
5918
5919 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005920 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921
françois romieub423e9a2013-05-18 01:24:46 +00005922 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb));
5923 opts[0] = DescOwn;
5924
5925 if (!rtl8169_tso_csum(tp, skb, opts))
5926 goto err_update_stats;
5927
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005928 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005929 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005930 if (unlikely(dma_mapping_error(d, mapping))) {
5931 if (net_ratelimit())
5932 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005933 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935
5936 tp->tx_skb[entry].len = len;
5937 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938
Francois Romieu2b7b4312011-04-18 22:53:24 -07005939 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005940 if (frags < 0)
5941 goto err_dma_1;
5942 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005943 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005944 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07005945 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005946 tp->tx_skb[entry].skb = skb;
5947 }
5948
Francois Romieu2b7b4312011-04-18 22:53:24 -07005949 txd->opts2 = cpu_to_le32(opts[1]);
5950
Richard Cochran5047fb52012-03-10 07:29:42 +00005951 skb_tx_timestamp(skb);
5952
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 wmb();
5954
Francois Romieucecb5fd2011-04-01 10:21:07 +02005955 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005956 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957 txd->opts1 = cpu_to_le32(status);
5958
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959 tp->cur_tx += frags + 1;
5960
David Dillow4c020a92010-03-03 16:33:10 +00005961 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962
Francois Romieucecb5fd2011-04-01 10:21:07 +02005963 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964
Francois Romieuda78dbf2012-01-26 14:18:23 +01005965 mmiowb();
5966
Julien Ducourthial477206a2012-05-09 00:00:06 +02005967 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01005968 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
5969 * not miss a ring update when it notices a stopped queue.
5970 */
5971 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01005973 /* Sync with rtl_tx:
5974 * - publish queue status and cur_tx ring index (write barrier)
5975 * - refresh dirty_tx ring index (read barrier).
5976 * May the current thread have a pessimistic view of the ring
5977 * status and forget to wake up queue, a racing rtl_tx thread
5978 * can't.
5979 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005980 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02005981 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982 netif_wake_queue(dev);
5983 }
5984
Stephen Hemminger613573252009-08-31 19:50:58 +00005985 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005987err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005988 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005989err_dma_0:
5990 dev_kfree_skb(skb);
Stefan Badere5195c12013-04-26 13:49:32 +00005991err_update_stats:
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005992 dev->stats.tx_dropped++;
5993 return NETDEV_TX_OK;
5994
5995err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005997 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00005998 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999}
6000
6001static void rtl8169_pcierr_interrupt(struct net_device *dev)
6002{
6003 struct rtl8169_private *tp = netdev_priv(dev);
6004 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005 u16 pci_status, pci_cmd;
6006
6007 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
6008 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
6009
Joe Perchesbf82c182010-02-09 11:49:50 +00006010 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
6011 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012
6013 /*
6014 * The recovery sequence below admits a very elaborated explanation:
6015 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01006016 * - I did not see what else could be done;
6017 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018 *
6019 * Feel free to adjust to your needs.
6020 */
Francois Romieua27993f2006-12-18 00:04:19 +01006021 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01006022 pci_cmd &= ~PCI_COMMAND_PARITY;
6023 else
6024 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
6025
6026 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027
6028 pci_write_config_word(pdev, PCI_STATUS,
6029 pci_status & (PCI_STATUS_DETECTED_PARITY |
6030 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
6031 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
6032
6033 /* The infamous DAC f*ckup only happens at boot time */
Timo Teräs9fba0812013-01-15 21:01:24 +00006034 if ((tp->cp_cmd & PCIDAC) && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00006035 void __iomem *ioaddr = tp->mmio_addr;
6036
Joe Perchesbf82c182010-02-09 11:49:50 +00006037 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038 tp->cp_cmd &= ~PCIDAC;
6039 RTL_W16(CPlusCmd, tp->cp_cmd);
6040 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 }
6042
françois romieue6de30d2011-01-03 15:08:37 +00006043 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01006044
Francois Romieu98ddf982012-01-31 10:47:34 +01006045 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046}
6047
Francois Romieuda78dbf2012-01-26 14:18:23 +01006048static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049{
6050 unsigned int dirty_tx, tx_left;
6051
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052 dirty_tx = tp->dirty_tx;
6053 smp_rmb();
6054 tx_left = tp->cur_tx - dirty_tx;
6055
6056 while (tx_left > 0) {
6057 unsigned int entry = dirty_tx % NUM_TX_DESC;
6058 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 u32 status;
6060
6061 rmb();
6062 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
6063 if (status & DescOwn)
6064 break;
6065
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006066 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
6067 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068 if (status & LastFrag) {
Francois Romieu17bcb682012-07-23 22:55:55 +02006069 u64_stats_update_begin(&tp->tx_stats.syncp);
6070 tp->tx_stats.packets++;
6071 tp->tx_stats.bytes += tx_skb->skb->len;
6072 u64_stats_update_end(&tp->tx_stats.syncp);
6073 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074 tx_skb->skb = NULL;
6075 }
6076 dirty_tx++;
6077 tx_left--;
6078 }
6079
6080 if (tp->dirty_tx != dirty_tx) {
6081 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01006082 /* Sync with rtl8169_start_xmit:
6083 * - publish dirty_tx ring index (write barrier)
6084 * - refresh cur_tx ring index and queue status (read barrier)
6085 * May the current thread miss the stopped queue condition,
6086 * a racing xmit thread can only have a right view of the
6087 * ring status.
6088 */
Francois Romieu1e874e02012-01-27 15:05:38 +01006089 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02006091 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092 netif_wake_queue(dev);
6093 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02006094 /*
6095 * 8168 hack: TxPoll requests are lost when the Tx packets are
6096 * too close. Let's kick an extra TxPoll request when a burst
6097 * of start_xmit activity is detected (if it is not detected,
6098 * it is slow enough). -- FR
6099 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006100 if (tp->cur_tx != dirty_tx) {
6101 void __iomem *ioaddr = tp->mmio_addr;
6102
Francois Romieud78ae2d2007-08-26 20:08:19 +02006103 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105 }
6106}
6107
Francois Romieu126fa4b2005-05-12 20:09:17 -04006108static inline int rtl8169_fragmented_frame(u32 status)
6109{
6110 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
6111}
6112
Eric Dumazetadea1ac72010-09-05 20:04:05 -07006113static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115 u32 status = opts1 & RxProtoMask;
6116
6117 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00006118 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119 skb->ip_summed = CHECKSUM_UNNECESSARY;
6120 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006121 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122}
6123
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006124static struct sk_buff *rtl8169_try_rx_copy(void *data,
6125 struct rtl8169_private *tp,
6126 int pkt_size,
6127 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02006129 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006130 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006132 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006133 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006134 prefetch(data);
6135 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
6136 if (skb)
6137 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00006138 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
6139
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006140 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141}
6142
Francois Romieuda78dbf2012-01-26 14:18:23 +01006143static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144{
6145 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006146 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148 cur_rx = tp->cur_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149
Timo Teräs9fba0812013-01-15 21:01:24 +00006150 for (rx_left = min(budget, NUM_RX_DESC); rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04006152 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153 u32 status;
6154
6155 rmb();
David S. Miller8decf862011-09-22 03:23:13 -04006156 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157
6158 if (status & DescOwn)
6159 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02006160 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00006161 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
6162 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02006163 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02006165 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02006167 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02006168 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01006169 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02006170 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02006171 }
Ben Greear6bbe0212012-02-10 15:04:33 +00006172 if ((status & (RxRUNT | RxCRC)) &&
6173 !(status & (RxRWT | RxFOVF)) &&
6174 (dev->features & NETIF_F_RXALL))
6175 goto process_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006177 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00006178 dma_addr_t addr;
6179 int pkt_size;
6180
6181process_pkt:
6182 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00006183 if (likely(!(dev->features & NETIF_F_RXFCS)))
6184 pkt_size = (status & 0x00003fff) - 4;
6185 else
6186 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187
Francois Romieu126fa4b2005-05-12 20:09:17 -04006188 /*
6189 * The driver does not support incoming fragmented
6190 * frames. They are seen as a symptom of over-mtu
6191 * sized frames.
6192 */
6193 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02006194 dev->stats.rx_dropped++;
6195 dev->stats.rx_length_errors++;
françois romieuce11ff52013-01-24 13:30:06 +00006196 goto release_descriptor;
Francois Romieu126fa4b2005-05-12 20:09:17 -04006197 }
6198
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006199 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
6200 tp, pkt_size, addr);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00006201 if (!skb) {
6202 dev->stats.rx_dropped++;
françois romieuce11ff52013-01-24 13:30:06 +00006203 goto release_descriptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204 }
6205
Eric Dumazetadea1ac72010-09-05 20:04:05 -07006206 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207 skb_put(skb, pkt_size);
6208 skb->protocol = eth_type_trans(skb, dev);
6209
Francois Romieu7a8fc772011-03-01 17:18:33 +01006210 rtl8169_rx_vlan_tag(desc, skb);
6211
Francois Romieu56de4142011-03-15 17:29:31 +01006212 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213
Junchang Wang8027aa22012-03-04 23:30:32 +01006214 u64_stats_update_begin(&tp->rx_stats.syncp);
6215 tp->rx_stats.packets++;
6216 tp->rx_stats.bytes += pkt_size;
6217 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218 }
françois romieuce11ff52013-01-24 13:30:06 +00006219release_descriptor:
6220 desc->opts2 = 0;
6221 wmb();
6222 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223 }
6224
6225 count = cur_rx - tp->cur_rx;
6226 tp->cur_rx = cur_rx;
6227
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228 return count;
6229}
6230
Francois Romieu07d3f512007-02-21 22:40:46 +01006231static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232{
Francois Romieu07d3f512007-02-21 22:40:46 +01006233 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01006236 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237
Francois Romieu9085cdfa2012-01-26 12:59:08 +01006238 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006239 if (status && status != 0xffff) {
6240 status &= RTL_EVENT_NAPI | tp->event_slow;
6241 if (status) {
6242 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00006243
Francois Romieuda78dbf2012-01-26 14:18:23 +01006244 rtl_irq_disable(tp);
6245 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248 return IRQ_RETVAL(handled);
6249}
6250
Francois Romieuda78dbf2012-01-26 14:18:23 +01006251/*
6252 * Workqueue context.
6253 */
6254static void rtl_slow_event_work(struct rtl8169_private *tp)
6255{
6256 struct net_device *dev = tp->dev;
6257 u16 status;
6258
6259 status = rtl_get_events(tp) & tp->event_slow;
6260 rtl_ack_events(tp, status);
6261
6262 if (unlikely(status & RxFIFOOver)) {
6263 switch (tp->mac_version) {
6264 /* Work around for rx fifo overflow */
6265 case RTL_GIGA_MAC_VER_11:
6266 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01006267 /* XXX - Hack alert. See rtl_task(). */
6268 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006269 default:
6270 break;
6271 }
6272 }
6273
6274 if (unlikely(status & SYSErr))
6275 rtl8169_pcierr_interrupt(dev);
6276
6277 if (status & LinkChg)
6278 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
6279
françois romieu7dbb4912012-06-09 10:53:16 +00006280 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006281}
6282
Francois Romieu4422bcd2012-01-26 11:23:32 +01006283static void rtl_task(struct work_struct *work)
6284{
Francois Romieuda78dbf2012-01-26 14:18:23 +01006285 static const struct {
6286 int bitnr;
6287 void (*action)(struct rtl8169_private *);
6288 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01006289 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006290 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
6291 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
6292 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
6293 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01006294 struct rtl8169_private *tp =
6295 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006296 struct net_device *dev = tp->dev;
6297 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01006298
Francois Romieuda78dbf2012-01-26 14:18:23 +01006299 rtl_lock_work(tp);
6300
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006301 if (!netif_running(dev) ||
6302 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01006303 goto out_unlock;
6304
6305 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
6306 bool pending;
6307
Francois Romieuda78dbf2012-01-26 14:18:23 +01006308 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006309 if (pending)
6310 rtl_work[i].action(tp);
6311 }
6312
6313out_unlock:
6314 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01006315}
6316
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006317static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006319 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
6320 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006321 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
6322 int work_done= 0;
6323 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324
Francois Romieuda78dbf2012-01-26 14:18:23 +01006325 status = rtl_get_events(tp);
6326 rtl_ack_events(tp, status & ~tp->event_slow);
6327
6328 if (status & RTL_EVENT_NAPI_RX)
6329 work_done = rtl_rx(dev, tp, (u32) budget);
6330
6331 if (status & RTL_EVENT_NAPI_TX)
6332 rtl_tx(dev, tp);
6333
6334 if (status & tp->event_slow) {
6335 enable_mask &= ~tp->event_slow;
6336
6337 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
6338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006340 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006341 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00006342
Francois Romieuda78dbf2012-01-26 14:18:23 +01006343 rtl_irq_enable(tp, enable_mask);
6344 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345 }
6346
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006347 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349
Francois Romieu523a6092008-09-10 22:28:56 +02006350static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
6351{
6352 struct rtl8169_private *tp = netdev_priv(dev);
6353
6354 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
6355 return;
6356
6357 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
6358 RTL_W32(RxMissed, 0);
6359}
6360
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361static void rtl8169_down(struct net_device *dev)
6362{
6363 struct rtl8169_private *tp = netdev_priv(dev);
6364 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365
Francois Romieu4876cc12011-03-11 21:07:11 +01006366 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01006368 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006369 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370
Hayes Wang92fc43b2011-07-06 15:58:03 +08006371 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006372 /*
6373 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01006374 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
6375 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00006376 */
Francois Romieu523a6092008-09-10 22:28:56 +02006377 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01006380 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382 rtl8169_tx_clear(tp);
6383
6384 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00006385
6386 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387}
6388
6389static int rtl8169_close(struct net_device *dev)
6390{
6391 struct rtl8169_private *tp = netdev_priv(dev);
6392 struct pci_dev *pdev = tp->pci_dev;
6393
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006394 pm_runtime_get_sync(&pdev->dev);
6395
Francois Romieucecb5fd2011-04-01 10:21:07 +02006396 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08006397 rtl8169_update_counters(dev);
6398
Francois Romieuda78dbf2012-01-26 14:18:23 +01006399 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006400 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006401
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006403 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006405 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00006407 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6408 tp->RxPhyAddr);
6409 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6410 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411 tp->TxDescArray = NULL;
6412 tp->RxDescArray = NULL;
6413
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006414 pm_runtime_put_sync(&pdev->dev);
6415
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416 return 0;
6417}
6418
Francois Romieudc1c00c2012-03-08 10:06:18 +01006419#ifdef CONFIG_NET_POLL_CONTROLLER
6420static void rtl8169_netpoll(struct net_device *dev)
6421{
6422 struct rtl8169_private *tp = netdev_priv(dev);
6423
6424 rtl8169_interrupt(tp->pci_dev->irq, dev);
6425}
6426#endif
6427
Francois Romieudf43ac72012-03-08 09:48:40 +01006428static int rtl_open(struct net_device *dev)
6429{
6430 struct rtl8169_private *tp = netdev_priv(dev);
6431 void __iomem *ioaddr = tp->mmio_addr;
6432 struct pci_dev *pdev = tp->pci_dev;
6433 int retval = -ENOMEM;
6434
6435 pm_runtime_get_sync(&pdev->dev);
6436
6437 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02006438 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01006439 * dma_alloc_coherent provides more.
6440 */
6441 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
6442 &tp->TxPhyAddr, GFP_KERNEL);
6443 if (!tp->TxDescArray)
6444 goto err_pm_runtime_put;
6445
6446 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
6447 &tp->RxPhyAddr, GFP_KERNEL);
6448 if (!tp->RxDescArray)
6449 goto err_free_tx_0;
6450
6451 retval = rtl8169_init_ring(dev);
6452 if (retval < 0)
6453 goto err_free_rx_1;
6454
6455 INIT_WORK(&tp->wk.work, rtl_task);
6456
6457 smp_mb();
6458
6459 rtl_request_firmware(tp);
6460
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006461 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01006462 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
6463 dev->name, dev);
6464 if (retval < 0)
6465 goto err_release_fw_2;
6466
6467 rtl_lock_work(tp);
6468
6469 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
6470
6471 napi_enable(&tp->napi);
6472
6473 rtl8169_init_phy(dev, tp);
6474
6475 __rtl8169_set_features(dev, dev->features);
6476
6477 rtl_pll_power_up(tp);
6478
6479 rtl_hw_start(dev);
6480
6481 netif_start_queue(dev);
6482
6483 rtl_unlock_work(tp);
6484
6485 tp->saved_wolopts = 0;
6486 pm_runtime_put_noidle(&pdev->dev);
6487
6488 rtl8169_check_link_status(dev, tp, ioaddr);
6489out:
6490 return retval;
6491
6492err_release_fw_2:
6493 rtl_release_firmware(tp);
6494 rtl8169_rx_clear(tp);
6495err_free_rx_1:
6496 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6497 tp->RxPhyAddr);
6498 tp->RxDescArray = NULL;
6499err_free_tx_0:
6500 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6501 tp->TxPhyAddr);
6502 tp->TxDescArray = NULL;
6503err_pm_runtime_put:
6504 pm_runtime_put_noidle(&pdev->dev);
6505 goto out;
6506}
6507
Junchang Wang8027aa22012-03-04 23:30:32 +01006508static struct rtnl_link_stats64 *
6509rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510{
6511 struct rtl8169_private *tp = netdev_priv(dev);
6512 void __iomem *ioaddr = tp->mmio_addr;
Junchang Wang8027aa22012-03-04 23:30:32 +01006513 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514
Francois Romieuda78dbf2012-01-26 14:18:23 +01006515 if (netif_running(dev))
Francois Romieu523a6092008-09-10 22:28:56 +02006516 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02006517
Junchang Wang8027aa22012-03-04 23:30:32 +01006518 do {
6519 start = u64_stats_fetch_begin_bh(&tp->rx_stats.syncp);
6520 stats->rx_packets = tp->rx_stats.packets;
6521 stats->rx_bytes = tp->rx_stats.bytes;
6522 } while (u64_stats_fetch_retry_bh(&tp->rx_stats.syncp, start));
6523
6524
6525 do {
6526 start = u64_stats_fetch_begin_bh(&tp->tx_stats.syncp);
6527 stats->tx_packets = tp->tx_stats.packets;
6528 stats->tx_bytes = tp->tx_stats.bytes;
6529 } while (u64_stats_fetch_retry_bh(&tp->tx_stats.syncp, start));
6530
6531 stats->rx_dropped = dev->stats.rx_dropped;
6532 stats->tx_dropped = dev->stats.tx_dropped;
6533 stats->rx_length_errors = dev->stats.rx_length_errors;
6534 stats->rx_errors = dev->stats.rx_errors;
6535 stats->rx_crc_errors = dev->stats.rx_crc_errors;
6536 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
6537 stats->rx_missed_errors = dev->stats.rx_missed_errors;
6538
6539 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540}
6541
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006542static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01006543{
françois romieu065c27c2011-01-03 15:08:12 +00006544 struct rtl8169_private *tp = netdev_priv(dev);
6545
Francois Romieu5d06a992006-02-23 00:47:58 +01006546 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006547 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01006548
6549 netif_device_detach(dev);
6550 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006551
6552 rtl_lock_work(tp);
6553 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006554 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006555 rtl_unlock_work(tp);
6556
6557 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006558}
Francois Romieu5d06a992006-02-23 00:47:58 +01006559
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006560#ifdef CONFIG_PM
6561
6562static int rtl8169_suspend(struct device *device)
6563{
6564 struct pci_dev *pdev = to_pci_dev(device);
6565 struct net_device *dev = pci_get_drvdata(pdev);
6566
6567 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02006568
Francois Romieu5d06a992006-02-23 00:47:58 +01006569 return 0;
6570}
6571
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006572static void __rtl8169_resume(struct net_device *dev)
6573{
françois romieu065c27c2011-01-03 15:08:12 +00006574 struct rtl8169_private *tp = netdev_priv(dev);
6575
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006576 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00006577
6578 rtl_pll_power_up(tp);
6579
Artem Savkovcff4c162012-04-03 10:29:11 +00006580 rtl_lock_work(tp);
6581 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006582 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00006583 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006584
Francois Romieu98ddf982012-01-31 10:47:34 +01006585 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006586}
6587
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006588static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01006589{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006590 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01006591 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006592 struct rtl8169_private *tp = netdev_priv(dev);
6593
6594 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01006595
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006596 if (netif_running(dev))
6597 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01006598
Francois Romieu5d06a992006-02-23 00:47:58 +01006599 return 0;
6600}
6601
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006602static int rtl8169_runtime_suspend(struct device *device)
6603{
6604 struct pci_dev *pdev = to_pci_dev(device);
6605 struct net_device *dev = pci_get_drvdata(pdev);
6606 struct rtl8169_private *tp = netdev_priv(dev);
6607
6608 if (!tp->TxDescArray)
6609 return 0;
6610
Francois Romieuda78dbf2012-01-26 14:18:23 +01006611 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006612 tp->saved_wolopts = __rtl8169_get_wol(tp);
6613 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006614 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006615
6616 rtl8169_net_suspend(dev);
6617
6618 return 0;
6619}
6620
6621static int rtl8169_runtime_resume(struct device *device)
6622{
6623 struct pci_dev *pdev = to_pci_dev(device);
6624 struct net_device *dev = pci_get_drvdata(pdev);
6625 struct rtl8169_private *tp = netdev_priv(dev);
6626
6627 if (!tp->TxDescArray)
6628 return 0;
6629
Francois Romieuda78dbf2012-01-26 14:18:23 +01006630 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006631 __rtl8169_set_wol(tp, tp->saved_wolopts);
6632 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006633 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006634
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006635 rtl8169_init_phy(dev, tp);
6636
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006637 __rtl8169_resume(dev);
6638
6639 return 0;
6640}
6641
6642static int rtl8169_runtime_idle(struct device *device)
6643{
6644 struct pci_dev *pdev = to_pci_dev(device);
6645 struct net_device *dev = pci_get_drvdata(pdev);
6646 struct rtl8169_private *tp = netdev_priv(dev);
6647
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00006648 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006649}
6650
Alexey Dobriyan47145212009-12-14 18:00:08 -08006651static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02006652 .suspend = rtl8169_suspend,
6653 .resume = rtl8169_resume,
6654 .freeze = rtl8169_suspend,
6655 .thaw = rtl8169_resume,
6656 .poweroff = rtl8169_suspend,
6657 .restore = rtl8169_resume,
6658 .runtime_suspend = rtl8169_runtime_suspend,
6659 .runtime_resume = rtl8169_runtime_resume,
6660 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006661};
6662
6663#define RTL8169_PM_OPS (&rtl8169_pm_ops)
6664
6665#else /* !CONFIG_PM */
6666
6667#define RTL8169_PM_OPS NULL
6668
6669#endif /* !CONFIG_PM */
6670
David S. Miller1805b2f2011-10-24 18:18:09 -04006671static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
6672{
6673 void __iomem *ioaddr = tp->mmio_addr;
6674
6675 /* WoL fails with 8168b when the receiver is disabled. */
6676 switch (tp->mac_version) {
6677 case RTL_GIGA_MAC_VER_11:
6678 case RTL_GIGA_MAC_VER_12:
6679 case RTL_GIGA_MAC_VER_17:
6680 pci_clear_master(tp->pci_dev);
6681
6682 RTL_W8(ChipCmd, CmdRxEnb);
6683 /* PCI commit */
6684 RTL_R8(ChipCmd);
6685 break;
6686 default:
6687 break;
6688 }
6689}
6690
Francois Romieu1765f952008-09-13 17:21:40 +02006691static void rtl_shutdown(struct pci_dev *pdev)
6692{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006693 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00006694 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00006695 struct device *d = &pdev->dev;
6696
6697 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02006698
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006699 rtl8169_net_suspend(dev);
6700
Francois Romieucecb5fd2011-04-01 10:21:07 +02006701 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08006702 rtl_rar_set(tp, dev->perm_addr);
6703
Hayes Wang92fc43b2011-07-06 15:58:03 +08006704 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00006705
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006706 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04006707 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
6708 rtl_wol_suspend_quirk(tp);
6709 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00006710 }
6711
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006712 pci_wake_from_d3(pdev, true);
6713 pci_set_power_state(pdev, PCI_D3hot);
6714 }
françois romieu2a15cd22012-03-06 01:14:12 +00006715
6716 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006717}
Francois Romieu5d06a992006-02-23 00:47:58 +01006718
Bill Pembertonbaf63292012-12-03 09:23:28 -05006719static void rtl_remove_one(struct pci_dev *pdev)
Francois Romieue27566e2012-03-08 09:54:01 +01006720{
6721 struct net_device *dev = pci_get_drvdata(pdev);
6722 struct rtl8169_private *tp = netdev_priv(dev);
6723
6724 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6725 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6726 tp->mac_version == RTL_GIGA_MAC_VER_31) {
6727 rtl8168_driver_stop(tp);
6728 }
6729
6730 cancel_work_sync(&tp->wk.work);
6731
Devendra Nagaad1be8d2012-05-31 01:51:20 +00006732 netif_napi_del(&tp->napi);
6733
Francois Romieue27566e2012-03-08 09:54:01 +01006734 unregister_netdev(dev);
6735
6736 rtl_release_firmware(tp);
6737
6738 if (pci_dev_run_wake(pdev))
6739 pm_runtime_get_noresume(&pdev->dev);
6740
6741 /* restore original MAC address */
6742 rtl_rar_set(tp, dev->perm_addr);
6743
6744 rtl_disable_msi(pdev, tp);
6745 rtl8169_release_board(pdev, dev, tp->mmio_addr);
6746 pci_set_drvdata(pdev, NULL);
6747}
6748
Francois Romieufa9c3852012-03-08 10:01:50 +01006749static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01006750 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01006751 .ndo_stop = rtl8169_close,
6752 .ndo_get_stats64 = rtl8169_get_stats64,
6753 .ndo_start_xmit = rtl8169_start_xmit,
6754 .ndo_tx_timeout = rtl8169_tx_timeout,
6755 .ndo_validate_addr = eth_validate_addr,
6756 .ndo_change_mtu = rtl8169_change_mtu,
6757 .ndo_fix_features = rtl8169_fix_features,
6758 .ndo_set_features = rtl8169_set_features,
6759 .ndo_set_mac_address = rtl_set_mac_address,
6760 .ndo_do_ioctl = rtl8169_ioctl,
6761 .ndo_set_rx_mode = rtl_set_rx_mode,
6762#ifdef CONFIG_NET_POLL_CONTROLLER
6763 .ndo_poll_controller = rtl8169_netpoll,
6764#endif
6765
6766};
6767
Francois Romieu31fa8b12012-03-08 10:09:40 +01006768static const struct rtl_cfg_info {
6769 void (*hw_start)(struct net_device *);
6770 unsigned int region;
6771 unsigned int align;
6772 u16 event_slow;
6773 unsigned features;
6774 u8 default_ver;
6775} rtl_cfg_infos [] = {
6776 [RTL_CFG_0] = {
6777 .hw_start = rtl_hw_start_8169,
6778 .region = 1,
6779 .align = 0,
6780 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
6781 .features = RTL_FEATURE_GMII,
6782 .default_ver = RTL_GIGA_MAC_VER_01,
6783 },
6784 [RTL_CFG_1] = {
6785 .hw_start = rtl_hw_start_8168,
6786 .region = 2,
6787 .align = 8,
6788 .event_slow = SYSErr | LinkChg | RxOverflow,
6789 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
6790 .default_ver = RTL_GIGA_MAC_VER_11,
6791 },
6792 [RTL_CFG_2] = {
6793 .hw_start = rtl_hw_start_8101,
6794 .region = 2,
6795 .align = 8,
6796 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
6797 PCSTimeout,
6798 .features = RTL_FEATURE_MSI,
6799 .default_ver = RTL_GIGA_MAC_VER_13,
6800 }
6801};
6802
6803/* Cfg9346_Unlock assumed. */
6804static unsigned rtl_try_msi(struct rtl8169_private *tp,
6805 const struct rtl_cfg_info *cfg)
6806{
6807 void __iomem *ioaddr = tp->mmio_addr;
6808 unsigned msi = 0;
6809 u8 cfg2;
6810
6811 cfg2 = RTL_R8(Config2) & ~MSIEnable;
6812 if (cfg->features & RTL_FEATURE_MSI) {
6813 if (pci_enable_msi(tp->pci_dev)) {
6814 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
6815 } else {
6816 cfg2 |= MSIEnable;
6817 msi = RTL_FEATURE_MSI;
6818 }
6819 }
6820 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
6821 RTL_W8(Config2, cfg2);
6822 return msi;
6823}
6824
Hayes Wangc5583862012-07-02 17:23:22 +08006825DECLARE_RTL_COND(rtl_link_list_ready_cond)
6826{
6827 void __iomem *ioaddr = tp->mmio_addr;
6828
6829 return RTL_R8(MCU) & LINK_LIST_RDY;
6830}
6831
6832DECLARE_RTL_COND(rtl_rxtx_empty_cond)
6833{
6834 void __iomem *ioaddr = tp->mmio_addr;
6835
6836 return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
6837}
6838
Bill Pembertonbaf63292012-12-03 09:23:28 -05006839static void rtl_hw_init_8168g(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006840{
6841 void __iomem *ioaddr = tp->mmio_addr;
6842 u32 data;
6843
6844 tp->ocp_base = OCP_STD_PHY_BASE;
6845
6846 RTL_W32(MISC, RTL_R32(MISC) | RXDV_GATED_EN);
6847
6848 if (!rtl_udelay_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 42))
6849 return;
6850
6851 if (!rtl_udelay_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42))
6852 return;
6853
6854 RTL_W8(ChipCmd, RTL_R8(ChipCmd) & ~(CmdTxEnb | CmdRxEnb));
6855 msleep(1);
6856 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
6857
Hayes Wang5f8bcce2012-07-10 08:47:05 +02006858 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08006859 data &= ~(1 << 14);
6860 r8168_mac_ocp_write(tp, 0xe8de, data);
6861
6862 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
6863 return;
6864
Hayes Wang5f8bcce2012-07-10 08:47:05 +02006865 data = r8168_mac_ocp_read(tp, 0xe8de);
Hayes Wangc5583862012-07-02 17:23:22 +08006866 data |= (1 << 15);
6867 r8168_mac_ocp_write(tp, 0xe8de, data);
6868
6869 if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
6870 return;
6871}
6872
Bill Pembertonbaf63292012-12-03 09:23:28 -05006873static void rtl_hw_initialize(struct rtl8169_private *tp)
Hayes Wangc5583862012-07-02 17:23:22 +08006874{
6875 switch (tp->mac_version) {
6876 case RTL_GIGA_MAC_VER_40:
6877 case RTL_GIGA_MAC_VER_41:
hayeswang57538c42013-04-01 22:23:40 +00006878 case RTL_GIGA_MAC_VER_42:
hayeswang58152cd2013-04-01 22:23:42 +00006879 case RTL_GIGA_MAC_VER_43:
Hayes Wangc5583862012-07-02 17:23:22 +08006880 rtl_hw_init_8168g(tp);
6881 break;
6882
6883 default:
6884 break;
6885 }
6886}
6887
Bill Pembertonbaf63292012-12-03 09:23:28 -05006888static int
Francois Romieu3b6cf252012-03-08 09:59:04 +01006889rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
6890{
6891 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
6892 const unsigned int region = cfg->region;
6893 struct rtl8169_private *tp;
6894 struct mii_if_info *mii;
6895 struct net_device *dev;
6896 void __iomem *ioaddr;
6897 int chipset, i;
6898 int rc;
6899
6900 if (netif_msg_drv(&debug)) {
6901 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
6902 MODULENAME, RTL8169_VERSION);
6903 }
6904
6905 dev = alloc_etherdev(sizeof (*tp));
6906 if (!dev) {
6907 rc = -ENOMEM;
6908 goto out;
6909 }
6910
6911 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01006912 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006913 tp = netdev_priv(dev);
6914 tp->dev = dev;
6915 tp->pci_dev = pdev;
6916 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
6917
6918 mii = &tp->mii;
6919 mii->dev = dev;
6920 mii->mdio_read = rtl_mdio_read;
6921 mii->mdio_write = rtl_mdio_write;
6922 mii->phy_id_mask = 0x1f;
6923 mii->reg_num_mask = 0x1f;
6924 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
6925
6926 /* disable ASPM completely as that cause random device stop working
6927 * problems as well as full system hangs for some PCIe devices users */
6928 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6929 PCIE_LINK_STATE_CLKPM);
6930
6931 /* enable device (incl. PCI PM wakeup and hotplug setup) */
6932 rc = pci_enable_device(pdev);
6933 if (rc < 0) {
6934 netif_err(tp, probe, dev, "enable failure\n");
6935 goto err_out_free_dev_1;
6936 }
6937
6938 if (pci_set_mwi(pdev) < 0)
6939 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
6940
6941 /* make sure PCI base addr 1 is MMIO */
6942 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
6943 netif_err(tp, probe, dev,
6944 "region #%d not an MMIO resource, aborting\n",
6945 region);
6946 rc = -ENODEV;
6947 goto err_out_mwi_2;
6948 }
6949
6950 /* check for weird/broken PCI region reporting */
6951 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
6952 netif_err(tp, probe, dev,
6953 "Invalid PCI region size(s), aborting\n");
6954 rc = -ENODEV;
6955 goto err_out_mwi_2;
6956 }
6957
6958 rc = pci_request_regions(pdev, MODULENAME);
6959 if (rc < 0) {
6960 netif_err(tp, probe, dev, "could not request regions\n");
6961 goto err_out_mwi_2;
6962 }
6963
6964 tp->cp_cmd = RxChkSum;
6965
6966 if ((sizeof(dma_addr_t) > 4) &&
6967 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
6968 tp->cp_cmd |= PCIDAC;
6969 dev->features |= NETIF_F_HIGHDMA;
6970 } else {
6971 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6972 if (rc < 0) {
6973 netif_err(tp, probe, dev, "DMA configuration failed\n");
6974 goto err_out_free_res_3;
6975 }
6976 }
6977
6978 /* ioremap MMIO region */
6979 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
6980 if (!ioaddr) {
6981 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
6982 rc = -EIO;
6983 goto err_out_free_res_3;
6984 }
6985 tp->mmio_addr = ioaddr;
6986
6987 if (!pci_is_pcie(pdev))
6988 netif_info(tp, probe, dev, "not PCI Express\n");
6989
6990 /* Identify chip attached to board */
6991 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
6992
6993 rtl_init_rxcfg(tp);
6994
6995 rtl_irq_disable(tp);
6996
Hayes Wangc5583862012-07-02 17:23:22 +08006997 rtl_hw_initialize(tp);
6998
Francois Romieu3b6cf252012-03-08 09:59:04 +01006999 rtl_hw_reset(tp);
7000
7001 rtl_ack_events(tp, 0xffff);
7002
7003 pci_set_master(pdev);
7004
7005 /*
7006 * Pretend we are using VLANs; This bypasses a nasty bug where
7007 * Interrupts stop flowing on high load on 8110SCd controllers.
7008 */
7009 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
7010 tp->cp_cmd |= RxVlan;
7011
7012 rtl_init_mdio_ops(tp);
7013 rtl_init_pll_power_ops(tp);
7014 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08007015 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007016
7017 rtl8169_print_mac_version(tp);
7018
7019 chipset = tp->mac_version;
7020 tp->txd_version = rtl_chip_infos[chipset].txd_version;
7021
7022 RTL_W8(Cfg9346, Cfg9346_Unlock);
7023 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
7024 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
7025 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
7026 tp->features |= RTL_FEATURE_WOL;
7027 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
7028 tp->features |= RTL_FEATURE_WOL;
7029 tp->features |= rtl_try_msi(tp, cfg);
7030 RTL_W8(Cfg9346, Cfg9346_Lock);
7031
7032 if (rtl_tbi_enabled(tp)) {
7033 tp->set_speed = rtl8169_set_speed_tbi;
7034 tp->get_settings = rtl8169_gset_tbi;
7035 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
7036 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
7037 tp->link_ok = rtl8169_tbi_link_ok;
7038 tp->do_ioctl = rtl_tbi_ioctl;
7039 } else {
7040 tp->set_speed = rtl8169_set_speed_xmii;
7041 tp->get_settings = rtl8169_gset_xmii;
7042 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
7043 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
7044 tp->link_ok = rtl8169_xmii_link_ok;
7045 tp->do_ioctl = rtl_xmii_ioctl;
7046 }
7047
7048 mutex_init(&tp->wk.mutex);
7049
7050 /* Get MAC address */
7051 for (i = 0; i < ETH_ALEN; i++)
7052 dev->dev_addr[i] = RTL_R8(MAC0 + i);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007053
7054 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
7055 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01007056
7057 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
7058
7059 /* don't enable SG, IP_CSUM and TSO by default - it might not work
7060 * properly for all devices */
7061 dev->features |= NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00007062 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01007063
7064 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
Patrick McHardyf6469682013-04-19 02:04:27 +00007065 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_TX |
7066 NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01007067 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
7068 NETIF_F_HIGHDMA;
7069
7070 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
7071 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
Patrick McHardyf6469682013-04-19 02:04:27 +00007072 dev->hw_features &= ~NETIF_F_HW_VLAN_CTAG_RX;
Francois Romieu3b6cf252012-03-08 09:59:04 +01007073
7074 dev->hw_features |= NETIF_F_RXALL;
7075 dev->hw_features |= NETIF_F_RXFCS;
7076
7077 tp->hw_start = cfg->hw_start;
7078 tp->event_slow = cfg->event_slow;
7079
7080 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
7081 ~(RxBOVF | RxFOVF) : ~0;
7082
7083 init_timer(&tp->timer);
7084 tp->timer.data = (unsigned long) dev;
7085 tp->timer.function = rtl8169_phy_timer;
7086
7087 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
7088
7089 rc = register_netdev(dev);
7090 if (rc < 0)
7091 goto err_out_msi_4;
7092
7093 pci_set_drvdata(pdev, dev);
7094
Francois Romieu92a7c4e2012-03-10 10:42:12 +01007095 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
7096 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
7097 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007098 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
7099 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
7100 "tx checksumming: %s]\n",
7101 rtl_chip_infos[chipset].jumbo_max,
7102 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
7103 }
7104
7105 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
7106 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
7107 tp->mac_version == RTL_GIGA_MAC_VER_31) {
7108 rtl8168_driver_start(tp);
7109 }
7110
7111 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
7112
7113 if (pci_dev_run_wake(pdev))
7114 pm_runtime_put_noidle(&pdev->dev);
7115
7116 netif_carrier_off(dev);
7117
7118out:
7119 return rc;
7120
7121err_out_msi_4:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00007122 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01007123 rtl_disable_msi(pdev, tp);
7124 iounmap(ioaddr);
7125err_out_free_res_3:
7126 pci_release_regions(pdev);
7127err_out_mwi_2:
7128 pci_clear_mwi(pdev);
7129 pci_disable_device(pdev);
7130err_out_free_dev_1:
7131 free_netdev(dev);
7132 goto out;
7133}
7134
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135static struct pci_driver rtl8169_pci_driver = {
7136 .name = MODULENAME,
7137 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01007138 .probe = rtl_init_one,
Bill Pembertonbaf63292012-12-03 09:23:28 -05007139 .remove = rtl_remove_one,
Francois Romieu1765f952008-09-13 17:21:40 +02007140 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00007141 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142};
7143
Devendra Naga3eeb7da2012-10-26 09:27:42 +00007144module_pci_driver(rtl8169_pci_driver);