blob: d7a04e0911012649f48b85bbf5521ee2dc05ddbe [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"
françois romieubca03d52011-01-03 15:07:31 +000049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#ifdef RTL8169_DEBUG
51#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020052 if (!(expr)) { \
53 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070054 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020055 }
Joe Perches06fa7352007-10-18 21:15:00 +020056#define dprintk(fmt, args...) \
57 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#else
59#define assert(expr) do {} while (0)
60#define dprintk(fmt, args...) do {} while (0)
61#endif /* RTL8169_DEBUG */
62
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020063#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070064 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020065
Julien Ducourthial477206a2012-05-09 00:00:06 +020066#define TX_SLOTS_AVAIL(tp) \
67 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
68
69/* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
70#define TX_FRAGS_READY_FOR(tp,nr_frags) \
71 (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
74 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050075static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Francois Romieu9c14cea2008-07-05 00:21:15 +020077#define MAX_READ_REQUEST_SHIFT 12
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
80#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
81
82#define R8169_REGS_SIZE 256
83#define R8169_NAPI_WEIGHT 64
84#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
85#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
86#define RX_BUF_SIZE 1536 /* Rx Buffer size */
87#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
88#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
89
90#define RTL8169_TX_TIMEOUT (6*HZ)
91#define RTL8169_PHY_TIMEOUT (10*HZ)
92
françois romieuea8dbdd2009-03-15 01:10:50 +000093#define RTL_EEPROM_SIG cpu_to_le32(0x8129)
94#define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
Francois Romieue1564ec2008-10-16 22:46:13 +020095#define RTL_EEPROM_SIG_ADDR 0x0000
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* write/read MMIO register */
98#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
99#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
100#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
101#define RTL_R8(reg) readb (ioaddr + (reg))
102#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +0000103#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105enum mac_version {
Francois Romieu85bffe62011-04-27 08:22:39 +0200106 RTL_GIGA_MAC_VER_01 = 0,
107 RTL_GIGA_MAC_VER_02,
108 RTL_GIGA_MAC_VER_03,
109 RTL_GIGA_MAC_VER_04,
110 RTL_GIGA_MAC_VER_05,
111 RTL_GIGA_MAC_VER_06,
112 RTL_GIGA_MAC_VER_07,
113 RTL_GIGA_MAC_VER_08,
114 RTL_GIGA_MAC_VER_09,
115 RTL_GIGA_MAC_VER_10,
116 RTL_GIGA_MAC_VER_11,
117 RTL_GIGA_MAC_VER_12,
118 RTL_GIGA_MAC_VER_13,
119 RTL_GIGA_MAC_VER_14,
120 RTL_GIGA_MAC_VER_15,
121 RTL_GIGA_MAC_VER_16,
122 RTL_GIGA_MAC_VER_17,
123 RTL_GIGA_MAC_VER_18,
124 RTL_GIGA_MAC_VER_19,
125 RTL_GIGA_MAC_VER_20,
126 RTL_GIGA_MAC_VER_21,
127 RTL_GIGA_MAC_VER_22,
128 RTL_GIGA_MAC_VER_23,
129 RTL_GIGA_MAC_VER_24,
130 RTL_GIGA_MAC_VER_25,
131 RTL_GIGA_MAC_VER_26,
132 RTL_GIGA_MAC_VER_27,
133 RTL_GIGA_MAC_VER_28,
134 RTL_GIGA_MAC_VER_29,
135 RTL_GIGA_MAC_VER_30,
136 RTL_GIGA_MAC_VER_31,
137 RTL_GIGA_MAC_VER_32,
138 RTL_GIGA_MAC_VER_33,
Hayes Wang70090422011-07-06 15:58:06 +0800139 RTL_GIGA_MAC_VER_34,
Hayes Wangc2218922011-09-06 16:55:18 +0800140 RTL_GIGA_MAC_VER_35,
141 RTL_GIGA_MAC_VER_36,
Hayes Wang7e18dca2012-03-30 14:33:02 +0800142 RTL_GIGA_MAC_VER_37,
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800143 RTL_GIGA_MAC_VER_38,
Francois Romieu85bffe62011-04-27 08:22:39 +0200144 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145};
146
Francois Romieu2b7b4312011-04-18 22:53:24 -0700147enum rtl_tx_desc_version {
148 RTL_TD_0 = 0,
149 RTL_TD_1 = 1,
150};
151
Francois Romieud58d46b2011-05-03 16:38:29 +0200152#define JUMBO_1K ETH_DATA_LEN
153#define JUMBO_4K (4*1024 - ETH_HLEN - 2)
154#define JUMBO_6K (6*1024 - ETH_HLEN - 2)
155#define JUMBO_7K (7*1024 - ETH_HLEN - 2)
156#define JUMBO_9K (9*1024 - ETH_HLEN - 2)
157
158#define _R(NAME,TD,FW,SZ,B) { \
159 .name = NAME, \
160 .txd_version = TD, \
161 .fw_name = FW, \
162 .jumbo_max = SZ, \
163 .jumbo_tx_csum = B \
164}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800166static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700168 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200169 const char *fw_name;
Francois Romieud58d46b2011-05-03 16:38:29 +0200170 u16 jumbo_max;
171 bool jumbo_tx_csum;
Francois Romieu85bffe62011-04-27 08:22:39 +0200172} rtl_chip_infos[] = {
173 /* PCI devices. */
174 [RTL_GIGA_MAC_VER_01] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200175 _R("RTL8169", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200176 [RTL_GIGA_MAC_VER_02] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200177 _R("RTL8169s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200178 [RTL_GIGA_MAC_VER_03] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200179 _R("RTL8110s", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200180 [RTL_GIGA_MAC_VER_04] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200181 _R("RTL8169sb/8110sb", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200182 [RTL_GIGA_MAC_VER_05] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200183 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200184 [RTL_GIGA_MAC_VER_06] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200185 _R("RTL8169sc/8110sc", RTL_TD_0, NULL, JUMBO_7K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200186 /* PCI-E devices. */
187 [RTL_GIGA_MAC_VER_07] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200188 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200189 [RTL_GIGA_MAC_VER_08] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200190 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200191 [RTL_GIGA_MAC_VER_09] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200192 _R("RTL8102e", RTL_TD_1, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200193 [RTL_GIGA_MAC_VER_10] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200194 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200195 [RTL_GIGA_MAC_VER_11] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200196 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200197 [RTL_GIGA_MAC_VER_12] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200198 _R("RTL8168b/8111b", RTL_TD_0, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200199 [RTL_GIGA_MAC_VER_13] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200200 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200201 [RTL_GIGA_MAC_VER_14] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200202 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200203 [RTL_GIGA_MAC_VER_15] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200204 _R("RTL8100e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200205 [RTL_GIGA_MAC_VER_16] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200206 _R("RTL8101e", RTL_TD_0, NULL, JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200207 [RTL_GIGA_MAC_VER_17] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200208 _R("RTL8168b/8111b", RTL_TD_1, NULL, JUMBO_4K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200209 [RTL_GIGA_MAC_VER_18] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200210 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200211 [RTL_GIGA_MAC_VER_19] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200212 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200213 [RTL_GIGA_MAC_VER_20] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200214 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200215 [RTL_GIGA_MAC_VER_21] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200216 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200217 [RTL_GIGA_MAC_VER_22] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200218 _R("RTL8168c/8111c", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200219 [RTL_GIGA_MAC_VER_23] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200220 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200221 [RTL_GIGA_MAC_VER_24] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200222 _R("RTL8168cp/8111cp", RTL_TD_1, NULL, JUMBO_6K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200223 [RTL_GIGA_MAC_VER_25] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200224 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1,
225 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200226 [RTL_GIGA_MAC_VER_26] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200227 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2,
228 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200229 [RTL_GIGA_MAC_VER_27] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200230 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200231 [RTL_GIGA_MAC_VER_28] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200232 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200233 [RTL_GIGA_MAC_VER_29] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200234 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1,
235 JUMBO_1K, true),
Francois Romieu85bffe62011-04-27 08:22:39 +0200236 [RTL_GIGA_MAC_VER_30] =
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_31] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200240 _R("RTL8168dp/8111dp", RTL_TD_1, NULL, JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200241 [RTL_GIGA_MAC_VER_32] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200242 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1,
243 JUMBO_9K, false),
Francois Romieu85bffe62011-04-27 08:22:39 +0200244 [RTL_GIGA_MAC_VER_33] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200245 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2,
246 JUMBO_9K, false),
Hayes Wang70090422011-07-06 15:58:06 +0800247 [RTL_GIGA_MAC_VER_34] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200248 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3,
249 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800250 [RTL_GIGA_MAC_VER_35] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200251 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_1,
252 JUMBO_9K, false),
Hayes Wangc2218922011-09-06 16:55:18 +0800253 [RTL_GIGA_MAC_VER_36] =
Francois Romieud58d46b2011-05-03 16:38:29 +0200254 _R("RTL8168f/8111f", RTL_TD_1, FIRMWARE_8168F_2,
255 JUMBO_9K, false),
Hayes Wang7e18dca2012-03-30 14:33:02 +0800256 [RTL_GIGA_MAC_VER_37] =
257 _R("RTL8402", RTL_TD_1, FIRMWARE_8402_1,
258 JUMBO_1K, true),
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800259 [RTL_GIGA_MAC_VER_38] =
260 _R("RTL8411", RTL_TD_1, FIRMWARE_8411_1,
261 JUMBO_9K, false),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262};
263#undef _R
264
Francois Romieubcf0bf92006-07-26 23:14:13 +0200265enum cfg_version {
266 RTL_CFG_0 = 0x00,
267 RTL_CFG_1,
268 RTL_CFG_2
269};
270
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000271static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200272 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200273 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200274 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100275 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200276 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
277 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Lennart Sorensen93a3aa22011-07-28 13:18:11 +0000278 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200279 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200280 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
281 { PCI_VENDOR_ID_LINKSYS, 0x1032,
282 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100283 { 0x0001, 0x8168,
284 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 {0,},
286};
287
288MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
289
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000290static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700291static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200292static struct {
293 u32 msg_enable;
294} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Francois Romieu07d3f512007-02-21 22:40:46 +0100296enum rtl_registers {
297 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100298 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100299 MAR0 = 8, /* Multicast filter. */
300 CounterAddrLow = 0x10,
301 CounterAddrHigh = 0x14,
302 TxDescStartAddrLow = 0x20,
303 TxDescStartAddrHigh = 0x24,
304 TxHDescStartAddrLow = 0x28,
305 TxHDescStartAddrHigh = 0x2c,
306 FLASH = 0x30,
307 ERSR = 0x36,
308 ChipCmd = 0x37,
309 TxPoll = 0x38,
310 IntrMask = 0x3c,
311 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700312
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800313 TxConfig = 0x40,
314#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
315#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
316
317 RxConfig = 0x44,
318#define RX128_INT_EN (1 << 15) /* 8111c and later */
319#define RX_MULTI_EN (1 << 14) /* 8111c only */
320#define RXCFG_FIFO_SHIFT 13
321 /* No threshold before first PCI xfer */
322#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
323#define RXCFG_DMA_SHIFT 8
324 /* Unlimited maximum PCI burst. */
325#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700326
Francois Romieu07d3f512007-02-21 22:40:46 +0100327 RxMissed = 0x4c,
328 Cfg9346 = 0x50,
329 Config0 = 0x51,
330 Config1 = 0x52,
331 Config2 = 0x53,
Francois Romieud387b422012-04-17 11:12:01 +0200332#define PME_SIGNAL (1 << 5) /* 8168c and later */
333
Francois Romieu07d3f512007-02-21 22:40:46 +0100334 Config3 = 0x54,
335 Config4 = 0x55,
336 Config5 = 0x56,
337 MultiIntr = 0x5c,
338 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100339 PHYstatus = 0x6c,
340 RxMaxSize = 0xda,
341 CPlusCmd = 0xe0,
342 IntrMitigate = 0xe2,
343 RxDescAddrLow = 0xe4,
344 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000345 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
346
347#define NoEarlyTx 0x3f /* Max value : no early transmit. */
348
349 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
350
351#define TxPacketMax (8064 >> 7)
Hayes Wang3090bd92011-09-06 16:55:15 +0800352#define EarlySize 0x27
françois romieuf0298f82011-01-03 15:07:42 +0000353
Francois Romieu07d3f512007-02-21 22:40:46 +0100354 FuncEvent = 0xf0,
355 FuncEventMask = 0xf4,
356 FuncPresetState = 0xf8,
357 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
Francois Romieuf162a5d2008-06-01 22:37:49 +0200360enum rtl8110_registers {
361 TBICSR = 0x64,
362 TBI_ANAR = 0x68,
363 TBI_LPAR = 0x6a,
364};
365
366enum rtl8168_8101_registers {
367 CSIDR = 0x64,
368 CSIAR = 0x68,
369#define CSIAR_FLAG 0x80000000
370#define CSIAR_WRITE_CMD 0x80000000
371#define CSIAR_BYTE_ENABLE 0x0f
372#define CSIAR_BYTE_ENABLE_SHIFT 12
373#define CSIAR_ADDR_MASK 0x0fff
Hayes Wang7e18dca2012-03-30 14:33:02 +0800374#define CSIAR_FUNC_CARD 0x00000000
375#define CSIAR_FUNC_SDIO 0x00010000
376#define CSIAR_FUNC_NIC 0x00020000
françois romieu065c27c2011-01-03 15:08:12 +0000377 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200378 EPHYAR = 0x80,
379#define EPHYAR_FLAG 0x80000000
380#define EPHYAR_WRITE_CMD 0x80000000
381#define EPHYAR_REG_MASK 0x1f
382#define EPHYAR_REG_SHIFT 16
383#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800384 DLLPR = 0xd0,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800385#define PFM_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200386 DBG_REG = 0xd1,
387#define FIX_NAK_1 (1 << 4)
388#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800389 TWSI = 0xd2,
390 MCU = 0xd3,
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800391#define NOW_IS_OOB (1 << 7)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800392#define EN_NDP (1 << 3)
393#define EN_OOB_RESET (1 << 2)
françois romieudaf9df62009-10-07 12:44:20 +0000394 EFUSEAR = 0xdc,
395#define EFUSEAR_FLAG 0x80000000
396#define EFUSEAR_WRITE_CMD 0x80000000
397#define EFUSEAR_READ_CMD 0x00000000
398#define EFUSEAR_REG_MASK 0x03ff
399#define EFUSEAR_REG_SHIFT 8
400#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200401};
402
françois romieuc0e45c12011-01-03 15:08:04 +0000403enum rtl8168_registers {
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800404 LED_FREQ = 0x1a,
405 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000406 ERIDR = 0x70,
407 ERIAR = 0x74,
408#define ERIAR_FLAG 0x80000000
409#define ERIAR_WRITE_CMD 0x80000000
410#define ERIAR_READ_CMD 0x00000000
411#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000412#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800413#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
414#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
415#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
416#define ERIAR_MASK_SHIFT 12
417#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
418#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
419#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000420 EPHY_RXER_NUM = 0x7c,
421 OCPDR = 0xb0, /* OCP GPHY access */
422#define OCPDR_WRITE_CMD 0x80000000
423#define OCPDR_READ_CMD 0x00000000
424#define OCPDR_REG_MASK 0x7f
425#define OCPDR_GPHY_REG_SHIFT 16
426#define OCPDR_DATA_MASK 0xffff
427 OCPAR = 0xb4,
428#define OCPAR_FLAG 0x80000000
429#define OCPAR_GPHY_WRITE_CMD 0x8000f060
430#define OCPAR_GPHY_READ_CMD 0x0000f060
hayeswang01dc7fe2011-03-21 01:50:28 +0000431 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
432 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200433#define TXPLA_RST (1 << 29)
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800434#define PWM_EN (1 << 22)
françois romieuc0e45c12011-01-03 15:08:04 +0000435};
436
Francois Romieu07d3f512007-02-21 22:40:46 +0100437enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100439 SYSErr = 0x8000,
440 PCSTimeout = 0x4000,
441 SWInt = 0x0100,
442 TxDescUnavail = 0x0080,
443 RxFIFOOver = 0x0040,
444 LinkChg = 0x0020,
445 RxOverflow = 0x0010,
446 TxErr = 0x0008,
447 TxOK = 0x0004,
448 RxErr = 0x0002,
449 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* RxStatusDesc */
David S. Miller8decf862011-09-22 03:23:13 -0400452 RxBOVF = (1 << 24),
Francois Romieu9dccf612006-05-14 12:31:17 +0200453 RxFOVF = (1 << 23),
454 RxRWT = (1 << 22),
455 RxRES = (1 << 21),
456 RxRUNT = (1 << 20),
457 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 /* ChipCmdBits */
Hayes Wang4f6b00e52011-07-06 15:58:02 +0800460 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100461 CmdReset = 0x10,
462 CmdRxEnb = 0x08,
463 CmdTxEnb = 0x04,
464 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Francois Romieu275391a2007-02-23 23:50:28 +0100466 /* TXPoll register p.5 */
467 HPQ = 0x80, /* Poll cmd on the high prio queue */
468 NPQ = 0x40, /* Poll cmd on the low prio queue */
469 FSWInt = 0x01, /* Forced software interrupt */
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100472 Cfg9346_Lock = 0x00,
473 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100476 AcceptErr = 0x20,
477 AcceptRunt = 0x10,
478 AcceptBroadcast = 0x08,
479 AcceptMulticast = 0x04,
480 AcceptMyPhys = 0x02,
481 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200482#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 /* TxConfigBits */
485 TxInterFrameGapShift = 24,
486 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
487
Francois Romieu5d06a992006-02-23 00:47:58 +0100488 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200489 LEDS1 = (1 << 7),
490 LEDS0 = (1 << 6),
Francois Romieuf162a5d2008-06-01 22:37:49 +0200491 Speed_down = (1 << 4),
492 MEMMAP = (1 << 3),
493 IOMAP = (1 << 2),
494 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100495 PMEnable = (1 << 0), /* Power Management Enable */
496
Francois Romieu6dccd162007-02-13 23:38:05 +0100497 /* Config2 register p. 25 */
françois romieu2ca6cf02011-12-15 08:37:43 +0000498 MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */
Francois Romieu6dccd162007-02-13 23:38:05 +0100499 PCI_Clock_66MHz = 0x01,
500 PCI_Clock_33MHz = 0x00,
501
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100502 /* Config3 register p.25 */
503 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
504 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieud58d46b2011-05-03 16:38:29 +0200505 Jumbo_En0 = (1 << 2), /* 8168 only. Reserved in the 8168b */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200506 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100507
Francois Romieud58d46b2011-05-03 16:38:29 +0200508 /* Config4 register */
509 Jumbo_En1 = (1 << 1), /* 8168 only. Reserved in the 8168b */
510
Francois Romieu5d06a992006-02-23 00:47:58 +0100511 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100512 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
513 MWF = (1 << 5), /* Accept Multicast wakeup frame */
514 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200515 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100516 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100517 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 /* TBICSR p.28 */
520 TBIReset = 0x80000000,
521 TBILoopback = 0x40000000,
522 TBINwEnable = 0x20000000,
523 TBINwRestart = 0x10000000,
524 TBILinkOk = 0x02000000,
525 TBINwComplete = 0x01000000,
526
527 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200528 EnableBist = (1 << 15), // 8168 8101
529 Mac_dbgo_oe = (1 << 14), // 8168 8101
530 Normal_mode = (1 << 13), // unused
531 Force_half_dup = (1 << 12), // 8168 8101
532 Force_rxflow_en = (1 << 11), // 8168 8101
533 Force_txflow_en = (1 << 10), // 8168 8101
534 Cxpl_dbg_sel = (1 << 9), // 8168 8101
535 ASF = (1 << 8), // 8168 8101
536 PktCntrDisable = (1 << 7), // 8168 8101
537 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 RxVlan = (1 << 6),
539 RxChkSum = (1 << 5),
540 PCIDAC = (1 << 4),
541 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100542 INTT_0 = 0x0000, // 8168
543 INTT_1 = 0x0001, // 8168
544 INTT_2 = 0x0002, // 8168
545 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100548 TBI_Enable = 0x80,
549 TxFlowCtrl = 0x40,
550 RxFlowCtrl = 0x20,
551 _1000bpsF = 0x10,
552 _100bps = 0x08,
553 _10bps = 0x04,
554 LinkStatus = 0x02,
555 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100558 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200559
560 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100561 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562};
563
Francois Romieu2b7b4312011-04-18 22:53:24 -0700564enum rtl_desc_bit {
565 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
567 RingEnd = (1 << 30), /* End of descriptor ring */
568 FirstFrag = (1 << 29), /* First segment of a packet */
569 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700570};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Francois Romieu2b7b4312011-04-18 22:53:24 -0700572/* Generic case. */
573enum rtl_tx_desc_bit {
574 /* First doubleword. */
575 TD_LSO = (1 << 27), /* Large Send Offload */
576#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Francois Romieu2b7b4312011-04-18 22:53:24 -0700578 /* Second doubleword. */
579 TxVlanTag = (1 << 17), /* Add VLAN tag */
580};
581
582/* 8169, 8168b and 810x except 8102e. */
583enum rtl_tx_desc_bit_0 {
584 /* First doubleword. */
585#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
586 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
587 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
588 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
589};
590
591/* 8102e, 8168c and beyond. */
592enum rtl_tx_desc_bit_1 {
593 /* Second doubleword. */
594#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
595 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
596 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
597 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
598};
599
600static const struct rtl_tx_desc_info {
601 struct {
602 u32 udp;
603 u32 tcp;
604 } checksum;
605 u16 mss_shift;
606 u16 opts_offset;
607} tx_desc_info [] = {
608 [RTL_TD_0] = {
609 .checksum = {
610 .udp = TD0_IP_CS | TD0_UDP_CS,
611 .tcp = TD0_IP_CS | TD0_TCP_CS
612 },
613 .mss_shift = TD0_MSS_SHIFT,
614 .opts_offset = 0
615 },
616 [RTL_TD_1] = {
617 .checksum = {
618 .udp = TD1_IP_CS | TD1_UDP_CS,
619 .tcp = TD1_IP_CS | TD1_TCP_CS
620 },
621 .mss_shift = TD1_MSS_SHIFT,
622 .opts_offset = 1
623 }
624};
625
626enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* Rx private */
628 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
629 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
630
631#define RxProtoUDP (PID1)
632#define RxProtoTCP (PID0)
633#define RxProtoIP (PID1 | PID0)
634#define RxProtoMask RxProtoIP
635
636 IPFail = (1 << 16), /* IP checksum failed */
637 UDPFail = (1 << 15), /* UDP/IP checksum failed */
638 TCPFail = (1 << 14), /* TCP/IP checksum failed */
639 RxVlanTag = (1 << 16), /* VLAN tag available */
640};
641
642#define RsvdMask 0x3fffc000
643
644struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200645 __le32 opts1;
646 __le32 opts2;
647 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648};
649
650struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200651 __le32 opts1;
652 __le32 opts2;
653 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654};
655
656struct ring_info {
657 struct sk_buff *skb;
658 u32 len;
659 u8 __pad[sizeof(void *) - sizeof(u32)];
660};
661
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200662enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200663 RTL_FEATURE_WOL = (1 << 0),
664 RTL_FEATURE_MSI = (1 << 1),
665 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200666};
667
Ivan Vecera355423d2009-02-06 21:49:57 -0800668struct rtl8169_counters {
669 __le64 tx_packets;
670 __le64 rx_packets;
671 __le64 tx_errors;
672 __le32 rx_errors;
673 __le16 rx_missed;
674 __le16 align_errors;
675 __le32 tx_one_collision;
676 __le32 tx_multi_collision;
677 __le64 rx_unicast;
678 __le64 rx_broadcast;
679 __le32 rx_multicast;
680 __le16 tx_aborted;
681 __le16 tx_underun;
682};
683
Francois Romieuda78dbf2012-01-26 14:18:23 +0100684enum rtl_flag {
Francois Romieu6c4a70c2012-01-31 10:56:44 +0100685 RTL_FLAG_TASK_ENABLED,
Francois Romieuda78dbf2012-01-26 14:18:23 +0100686 RTL_FLAG_TASK_SLOW_PENDING,
687 RTL_FLAG_TASK_RESET_PENDING,
688 RTL_FLAG_TASK_PHY_PENDING,
689 RTL_FLAG_MAX
690};
691
Junchang Wang8027aa22012-03-04 23:30:32 +0100692struct rtl8169_stats {
693 u64 packets;
694 u64 bytes;
695 struct u64_stats_sync syncp;
696};
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698struct rtl8169_private {
699 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200700 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000701 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700702 struct napi_struct napi;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200703 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700704 u16 txd_version;
705 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
707 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
708 u32 dirty_rx;
709 u32 dirty_tx;
Junchang Wang8027aa22012-03-04 23:30:32 +0100710 struct rtl8169_stats rx_stats;
711 struct rtl8169_stats tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
713 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
714 dma_addr_t TxPhyAddr;
715 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000716 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 struct timer_list timer;
719 u16 cp_cmd;
Francois Romieuda78dbf2012-01-26 14:18:23 +0100720
721 u16 event_slow;
françois romieuc0e45c12011-01-03 15:08:04 +0000722
723 struct mdio_ops {
724 void (*write)(void __iomem *, int, int);
725 int (*read)(void __iomem *, int);
726 } mdio_ops;
727
françois romieu065c27c2011-01-03 15:08:12 +0000728 struct pll_power_ops {
729 void (*down)(struct rtl8169_private *);
730 void (*up)(struct rtl8169_private *);
731 } pll_power_ops;
732
Francois Romieud58d46b2011-05-03 16:38:29 +0200733 struct jumbo_ops {
734 void (*enable)(struct rtl8169_private *);
735 void (*disable)(struct rtl8169_private *);
736 } jumbo_ops;
737
Hayes Wangbeb1fe12012-03-30 14:33:01 +0800738 struct csi_ops {
739 void (*write)(void __iomem *, int, int);
740 u32 (*read)(void __iomem *, int);
741 } csi_ops;
742
Oliver Neukum54405cd2011-01-06 21:55:13 +0100743 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200744 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000745 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100746 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000747 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800749 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu4422bcd2012-01-26 11:23:32 +0100750
751 struct {
Francois Romieuda78dbf2012-01-26 14:18:23 +0100752 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
753 struct mutex mutex;
Francois Romieu4422bcd2012-01-26 11:23:32 +0100754 struct work_struct work;
755 } wk;
756
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200757 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200758
759 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800760 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000761 u32 saved_wolopts;
David S. Miller8decf862011-09-22 03:23:13 -0400762 u32 opts1_mask;
françois romieuf1e02ed2011-01-13 13:07:53 +0000763
Francois Romieub6ffd972011-06-17 17:00:05 +0200764 struct rtl_fw {
765 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200766
767#define RTL_VER_SIZE 32
768
769 char version[RTL_VER_SIZE];
770
771 struct rtl_fw_phy_action {
772 __le32 *code;
773 size_t size;
774 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200775 } *rtl_fw;
Phil Carmody497888c2011-07-14 15:07:13 +0300776#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777};
778
Ralf Baechle979b6c12005-06-13 14:30:40 -0700779MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700782MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200783module_param_named(debug, debug.msg_enable, int, 0);
784MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785MODULE_LICENSE("GPL");
786MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000787MODULE_FIRMWARE(FIRMWARE_8168D_1);
788MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000789MODULE_FIRMWARE(FIRMWARE_8168E_1);
790MODULE_FIRMWARE(FIRMWARE_8168E_2);
David S. Miller8decf862011-09-22 03:23:13 -0400791MODULE_FIRMWARE(FIRMWARE_8168E_3);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800792MODULE_FIRMWARE(FIRMWARE_8105E_1);
Hayes Wangc2218922011-09-06 16:55:18 +0800793MODULE_FIRMWARE(FIRMWARE_8168F_1);
794MODULE_FIRMWARE(FIRMWARE_8168F_2);
Hayes Wang7e18dca2012-03-30 14:33:02 +0800795MODULE_FIRMWARE(FIRMWARE_8402_1);
Hayes Wangb3d7b2f2012-03-30 14:48:06 +0800796MODULE_FIRMWARE(FIRMWARE_8411_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Francois Romieuda78dbf2012-01-26 14:18:23 +0100798static void rtl_lock_work(struct rtl8169_private *tp)
799{
800 mutex_lock(&tp->wk.mutex);
801}
802
803static void rtl_unlock_work(struct rtl8169_private *tp)
804{
805 mutex_unlock(&tp->wk.mutex);
806}
807
Francois Romieud58d46b2011-05-03 16:38:29 +0200808static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
809{
810 int cap = pci_pcie_cap(pdev);
811
812 if (cap) {
813 u16 ctl;
814
815 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
816 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
817 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
818 }
819}
820
françois romieub646d902011-01-03 15:08:21 +0000821static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
822{
823 void __iomem *ioaddr = tp->mmio_addr;
824 int i;
825
826 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
827 for (i = 0; i < 20; i++) {
828 udelay(100);
829 if (RTL_R32(OCPAR) & OCPAR_FLAG)
830 break;
831 }
832 return RTL_R32(OCPDR);
833}
834
835static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
836{
837 void __iomem *ioaddr = tp->mmio_addr;
838 int i;
839
840 RTL_W32(OCPDR, data);
841 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
842 for (i = 0; i < 20; i++) {
843 udelay(100);
844 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
845 break;
846 }
847}
848
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800849static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000850{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800851 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000852 int i;
853
854 RTL_W8(ERIDR, cmd);
855 RTL_W32(ERIAR, 0x800010e8);
856 msleep(2);
857 for (i = 0; i < 5; i++) {
858 udelay(100);
Francois Romieu1e4e82b2011-06-24 19:52:13 +0200859 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
françois romieub646d902011-01-03 15:08:21 +0000860 break;
861 }
862
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800863 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000864}
865
866#define OOB_CMD_RESET 0x00
867#define OOB_CMD_DRIVER_START 0x05
868#define OOB_CMD_DRIVER_STOP 0x06
869
Francois Romieucecb5fd2011-04-01 10:21:07 +0200870static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
871{
872 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
873}
874
françois romieub646d902011-01-03 15:08:21 +0000875static void rtl8168_driver_start(struct rtl8169_private *tp)
876{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200877 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000878 int i;
879
880 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
881
Francois Romieucecb5fd2011-04-01 10:21:07 +0200882 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000883
françois romieub646d902011-01-03 15:08:21 +0000884 for (i = 0; i < 10; i++) {
885 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000886 if (ocp_read(tp, 0x0f, reg) & 0x00000800)
françois romieub646d902011-01-03 15:08:21 +0000887 break;
888 }
889}
890
891static void rtl8168_driver_stop(struct rtl8169_private *tp)
892{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200893 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000894 int i;
895
896 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
897
Francois Romieucecb5fd2011-04-01 10:21:07 +0200898 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000899
françois romieub646d902011-01-03 15:08:21 +0000900 for (i = 0; i < 10; i++) {
901 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000902 if ((ocp_read(tp, 0x0f, reg) & 0x00000800) == 0)
françois romieub646d902011-01-03 15:08:21 +0000903 break;
904 }
905}
906
hayeswang4804b3b2011-03-21 01:50:29 +0000907static int r8168dp_check_dash(struct rtl8169_private *tp)
908{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200909 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000910
Francois Romieucecb5fd2011-04-01 10:21:07 +0200911 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +0000912}
françois romieub646d902011-01-03 15:08:21 +0000913
françois romieu4da19632011-01-03 15:07:55 +0000914static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 int i;
917
Francois Romieua6baf3a2007-11-08 23:23:21 +0100918 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Francois Romieu23714082006-01-29 00:49:09 +0100920 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100921 /*
922 * Check if the RTL8169 has completed writing to the specified
923 * MII register.
924 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200925 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 break;
Francois Romieu23714082006-01-29 00:49:09 +0100927 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700929 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700930 * According to hardware specs a 20us delay is required after write
931 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700932 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700933 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
françois romieu4da19632011-01-03 15:07:55 +0000936static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 int i, value = -1;
939
Francois Romieua6baf3a2007-11-08 23:23:21 +0100940 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Francois Romieu23714082006-01-29 00:49:09 +0100942 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100943 /*
944 * Check if the RTL8169 has completed retrieving data from
945 * the specified MII register.
946 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100948 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 break;
950 }
Francois Romieu23714082006-01-29 00:49:09 +0100951 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700953 /*
954 * According to hardware specs a 20us delay is required after read
955 * complete indication, but before sending next command.
956 */
957 udelay(20);
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return value;
960}
961
françois romieuc0e45c12011-01-03 15:08:04 +0000962static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
963{
964 int i;
965
966 RTL_W32(OCPDR, data |
967 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
968 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
969 RTL_W32(EPHY_RXER_NUM, 0);
970
971 for (i = 0; i < 100; i++) {
972 mdelay(1);
973 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
974 break;
975 }
976}
977
978static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
979{
980 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
981 (value & OCPDR_DATA_MASK));
982}
983
984static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
985{
986 int i;
987
988 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
989
990 mdelay(1);
991 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
992 RTL_W32(EPHY_RXER_NUM, 0);
993
994 for (i = 0; i < 100; i++) {
995 mdelay(1);
996 if (RTL_R32(OCPAR) & OCPAR_FLAG)
997 break;
998 }
999
1000 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
1001}
1002
françois romieue6de30d2011-01-03 15:08:37 +00001003#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
1004
1005static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1006{
1007 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1008}
1009
1010static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1011{
1012 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1013}
1014
1015static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
1016{
1017 r8168dp_2_mdio_start(ioaddr);
1018
1019 r8169_mdio_write(ioaddr, reg_addr, value);
1020
1021 r8168dp_2_mdio_stop(ioaddr);
1022}
1023
1024static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
1025{
1026 int value;
1027
1028 r8168dp_2_mdio_start(ioaddr);
1029
1030 value = r8169_mdio_read(ioaddr, reg_addr);
1031
1032 r8168dp_2_mdio_stop(ioaddr);
1033
1034 return value;
1035}
1036
françois romieu4da19632011-01-03 15:07:55 +00001037static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +02001038{
françois romieuc0e45c12011-01-03 15:08:04 +00001039 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +02001040}
1041
françois romieu4da19632011-01-03 15:07:55 +00001042static int rtl_readphy(struct rtl8169_private *tp, int location)
1043{
françois romieuc0e45c12011-01-03 15:08:04 +00001044 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +00001045}
1046
1047static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1048{
1049 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1050}
1051
1052static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +00001053{
1054 int val;
1055
françois romieu4da19632011-01-03 15:07:55 +00001056 val = rtl_readphy(tp, reg_addr);
1057 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +00001058}
1059
Francois Romieuccdffb92008-07-26 14:26:06 +02001060static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1061 int val)
1062{
1063 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001064
françois romieu4da19632011-01-03 15:07:55 +00001065 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +02001066}
1067
1068static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1069{
1070 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001071
françois romieu4da19632011-01-03 15:07:55 +00001072 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +02001073}
1074
Francois Romieudacf8152008-08-02 20:44:13 +02001075static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
1076{
1077 unsigned int i;
1078
1079 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1080 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1081
1082 for (i = 0; i < 100; i++) {
1083 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
1084 break;
1085 udelay(10);
1086 }
1087}
1088
1089static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
1090{
1091 u16 value = 0xffff;
1092 unsigned int i;
1093
1094 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1095
1096 for (i = 0; i < 100; i++) {
1097 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
1098 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
1099 break;
1100 }
1101 udelay(10);
1102 }
1103
1104 return value;
1105}
1106
Hayes Wang133ac402011-07-06 15:58:05 +08001107static
1108void rtl_eri_write(void __iomem *ioaddr, int addr, u32 mask, u32 val, int type)
1109{
1110 unsigned int i;
1111
1112 BUG_ON((addr & 3) || (mask == 0));
1113 RTL_W32(ERIDR, val);
1114 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1115
1116 for (i = 0; i < 100; i++) {
1117 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
1118 break;
1119 udelay(100);
1120 }
1121}
1122
1123static u32 rtl_eri_read(void __iomem *ioaddr, int addr, int type)
1124{
1125 u32 value = ~0x00;
1126 unsigned int i;
1127
1128 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1129
1130 for (i = 0; i < 100; i++) {
1131 if (RTL_R32(ERIAR) & ERIAR_FLAG) {
1132 value = RTL_R32(ERIDR);
1133 break;
1134 }
1135 udelay(100);
1136 }
1137
1138 return value;
1139}
1140
1141static void
1142rtl_w1w0_eri(void __iomem *ioaddr, int addr, u32 mask, u32 p, u32 m, int type)
1143{
1144 u32 val;
1145
1146 val = rtl_eri_read(ioaddr, addr, type);
1147 rtl_eri_write(ioaddr, addr, mask, (val & ~m) | p, type);
1148}
1149
françois romieuc28aa382011-08-02 03:53:43 +00001150struct exgmac_reg {
1151 u16 addr;
1152 u16 mask;
1153 u32 val;
1154};
1155
1156static void rtl_write_exgmac_batch(void __iomem *ioaddr,
1157 const struct exgmac_reg *r, int len)
1158{
1159 while (len-- > 0) {
1160 rtl_eri_write(ioaddr, r->addr, r->mask, r->val, ERIAR_EXGMAC);
1161 r++;
1162 }
1163}
1164
françois romieudaf9df62009-10-07 12:44:20 +00001165static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
1166{
1167 u8 value = 0xff;
1168 unsigned int i;
1169
1170 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1171
1172 for (i = 0; i < 300; i++) {
1173 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
1174 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
1175 break;
1176 }
1177 udelay(100);
1178 }
1179
1180 return value;
1181}
1182
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001183static u16 rtl_get_events(struct rtl8169_private *tp)
1184{
1185 void __iomem *ioaddr = tp->mmio_addr;
1186
1187 return RTL_R16(IntrStatus);
1188}
1189
1190static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1191{
1192 void __iomem *ioaddr = tp->mmio_addr;
1193
1194 RTL_W16(IntrStatus, bits);
1195 mmiowb();
1196}
1197
1198static void rtl_irq_disable(struct rtl8169_private *tp)
1199{
1200 void __iomem *ioaddr = tp->mmio_addr;
1201
1202 RTL_W16(IntrMask, 0);
1203 mmiowb();
1204}
1205
Francois Romieu3e990ff2012-01-26 12:50:01 +01001206static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1207{
1208 void __iomem *ioaddr = tp->mmio_addr;
1209
1210 RTL_W16(IntrMask, bits);
1211}
1212
Francois Romieuda78dbf2012-01-26 14:18:23 +01001213#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
1214#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
1215#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1216
1217static void rtl_irq_enable_all(struct rtl8169_private *tp)
1218{
1219 rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1220}
1221
françois romieu811fd302011-12-04 20:30:45 +00001222static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
françois romieu811fd302011-12-04 20:30:45 +00001224 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Francois Romieu9085cdfa2012-01-26 12:59:08 +01001226 rtl_irq_disable(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001227 rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
françois romieu811fd302011-12-04 20:30:45 +00001228 RTL_R8(ChipCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
françois romieu4da19632011-01-03 15:07:55 +00001231static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
françois romieu4da19632011-01-03 15:07:55 +00001233 void __iomem *ioaddr = tp->mmio_addr;
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return RTL_R32(TBICSR) & TBIReset;
1236}
1237
françois romieu4da19632011-01-03 15:07:55 +00001238static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
françois romieu4da19632011-01-03 15:07:55 +00001240 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
1243static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1244{
1245 return RTL_R32(TBICSR) & TBILinkOk;
1246}
1247
1248static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1249{
1250 return RTL_R8(PHYstatus) & LinkStatus;
1251}
1252
françois romieu4da19632011-01-03 15:07:55 +00001253static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
françois romieu4da19632011-01-03 15:07:55 +00001255 void __iomem *ioaddr = tp->mmio_addr;
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1258}
1259
françois romieu4da19632011-01-03 15:07:55 +00001260static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 unsigned int val;
1263
françois romieu4da19632011-01-03 15:07:55 +00001264 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1265 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
Hayes Wang70090422011-07-06 15:58:06 +08001268static void rtl_link_chg_patch(struct rtl8169_private *tp)
1269{
1270 void __iomem *ioaddr = tp->mmio_addr;
1271 struct net_device *dev = tp->dev;
1272
1273 if (!netif_running(dev))
1274 return;
1275
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001276 if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1277 tp->mac_version == RTL_GIGA_MAC_VER_38) {
Hayes Wang70090422011-07-06 15:58:06 +08001278 if (RTL_R8(PHYstatus) & _1000bpsF) {
1279 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1280 0x00000011, ERIAR_EXGMAC);
1281 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1282 0x00000005, ERIAR_EXGMAC);
1283 } else if (RTL_R8(PHYstatus) & _100bps) {
1284 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1285 0x0000001f, ERIAR_EXGMAC);
1286 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1287 0x00000005, ERIAR_EXGMAC);
1288 } else {
1289 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1290 0x0000001f, ERIAR_EXGMAC);
1291 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1292 0x0000003f, ERIAR_EXGMAC);
1293 }
1294 /* Reset packet filter */
1295 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
1296 ERIAR_EXGMAC);
1297 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
1298 ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08001299 } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1300 tp->mac_version == RTL_GIGA_MAC_VER_36) {
1301 if (RTL_R8(PHYstatus) & _1000bpsF) {
1302 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1303 0x00000011, ERIAR_EXGMAC);
1304 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1305 0x00000005, ERIAR_EXGMAC);
1306 } else {
1307 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1308 0x0000001f, ERIAR_EXGMAC);
1309 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1310 0x0000003f, ERIAR_EXGMAC);
1311 }
Hayes Wang7e18dca2012-03-30 14:33:02 +08001312 } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1313 if (RTL_R8(PHYstatus) & _10bps) {
1314 rtl_eri_write(ioaddr, 0x1d0, ERIAR_MASK_0011,
1315 0x4d02, ERIAR_EXGMAC);
1316 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_0011,
1317 0x0060, ERIAR_EXGMAC);
1318 } else {
1319 rtl_eri_write(ioaddr, 0x1d0, ERIAR_MASK_0011,
1320 0x0000, ERIAR_EXGMAC);
1321 }
Hayes Wang70090422011-07-06 15:58:06 +08001322 }
1323}
1324
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001325static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001326 struct rtl8169_private *tp,
1327 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001330 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001331 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001332 if (pm)
1333 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001335 if (net_ratelimit())
1336 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001337 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001339 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001340 if (pm)
hayeswang10953db2011-11-07 20:44:37 +00001341 pm_schedule_suspend(&tp->pci_dev->dev, 5000);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343}
1344
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001345static void rtl8169_check_link_status(struct net_device *dev,
1346 struct rtl8169_private *tp,
1347 void __iomem *ioaddr)
1348{
1349 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1350}
1351
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001352#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1353
1354static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1355{
1356 void __iomem *ioaddr = tp->mmio_addr;
1357 u8 options;
1358 u32 wolopts = 0;
1359
1360 options = RTL_R8(Config1);
1361 if (!(options & PMEnable))
1362 return 0;
1363
1364 options = RTL_R8(Config3);
1365 if (options & LinkUp)
1366 wolopts |= WAKE_PHY;
1367 if (options & MagicPacket)
1368 wolopts |= WAKE_MAGIC;
1369
1370 options = RTL_R8(Config5);
1371 if (options & UWF)
1372 wolopts |= WAKE_UCAST;
1373 if (options & BWF)
1374 wolopts |= WAKE_BCAST;
1375 if (options & MWF)
1376 wolopts |= WAKE_MCAST;
1377
1378 return wolopts;
1379}
1380
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001381static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1382{
1383 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001384
Francois Romieuda78dbf2012-01-26 14:18:23 +01001385 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001386
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001387 wol->supported = WAKE_ANY;
1388 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001389
Francois Romieuda78dbf2012-01-26 14:18:23 +01001390 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001391}
1392
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001393static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001394{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001395 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001396 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001397 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001398 u32 opt;
1399 u16 reg;
1400 u8 mask;
1401 } cfg[] = {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001402 { WAKE_PHY, Config3, LinkUp },
1403 { WAKE_MAGIC, Config3, MagicPacket },
1404 { WAKE_UCAST, Config5, UWF },
1405 { WAKE_BCAST, Config5, BWF },
1406 { WAKE_MCAST, Config5, MWF },
1407 { WAKE_ANY, Config5, LanWake }
1408 };
Francois Romieu851e6022012-04-17 11:10:11 +02001409 u8 options;
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001410
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001411 RTL_W8(Cfg9346, Cfg9346_Unlock);
1412
1413 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
Francois Romieu851e6022012-04-17 11:10:11 +02001414 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001415 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001416 options |= cfg[i].mask;
1417 RTL_W8(cfg[i].reg, options);
1418 }
1419
Francois Romieu851e6022012-04-17 11:10:11 +02001420 switch (tp->mac_version) {
1421 case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1422 options = RTL_R8(Config1) & ~PMEnable;
1423 if (wolopts)
1424 options |= PMEnable;
1425 RTL_W8(Config1, options);
1426 break;
1427 default:
Francois Romieud387b422012-04-17 11:12:01 +02001428 options = RTL_R8(Config2) & ~PME_SIGNAL;
1429 if (wolopts)
1430 options |= PME_SIGNAL;
1431 RTL_W8(Config2, options);
Francois Romieu851e6022012-04-17 11:10:11 +02001432 break;
1433 }
1434
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001435 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001436}
1437
1438static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1439{
1440 struct rtl8169_private *tp = netdev_priv(dev);
1441
Francois Romieuda78dbf2012-01-26 14:18:23 +01001442 rtl_lock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001443
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001444 if (wol->wolopts)
1445 tp->features |= RTL_FEATURE_WOL;
1446 else
1447 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001448 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001449
1450 rtl_unlock_work(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001451
françois romieuea809072010-11-08 13:23:58 +00001452 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1453
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001454 return 0;
1455}
1456
Francois Romieu31bd2042011-04-26 18:58:59 +02001457static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1458{
Francois Romieu85bffe62011-04-27 08:22:39 +02001459 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001460}
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462static void rtl8169_get_drvinfo(struct net_device *dev,
1463 struct ethtool_drvinfo *info)
1464{
1465 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001466 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Rick Jones68aad782011-11-07 13:29:27 +00001468 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1469 strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1470 strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001471 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
Rick Jones8ac72d12011-11-22 14:06:26 +00001472 if (!IS_ERR_OR_NULL(rtl_fw))
1473 strlcpy(info->fw_version, rtl_fw->version,
1474 sizeof(info->fw_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
1477static int rtl8169_get_regs_len(struct net_device *dev)
1478{
1479 return R8169_REGS_SIZE;
1480}
1481
1482static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001483 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
1485 struct rtl8169_private *tp = netdev_priv(dev);
1486 void __iomem *ioaddr = tp->mmio_addr;
1487 int ret = 0;
1488 u32 reg;
1489
1490 reg = RTL_R32(TBICSR);
1491 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1492 (duplex == DUPLEX_FULL)) {
1493 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1494 } else if (autoneg == AUTONEG_ENABLE)
1495 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1496 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001497 netif_warn(tp, link, dev,
1498 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 ret = -EOPNOTSUPP;
1500 }
1501
1502 return ret;
1503}
1504
1505static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001506 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
1508 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001509 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001510 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Hayes Wang716b50a2011-02-22 17:26:18 +08001512 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001515 int auto_nego;
1516
françois romieu4da19632011-01-03 15:07:55 +00001517 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001518 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1519 ADVERTISE_100HALF | ADVERTISE_100FULL);
1520
1521 if (adv & ADVERTISED_10baseT_Half)
1522 auto_nego |= ADVERTISE_10HALF;
1523 if (adv & ADVERTISED_10baseT_Full)
1524 auto_nego |= ADVERTISE_10FULL;
1525 if (adv & ADVERTISED_100baseT_Half)
1526 auto_nego |= ADVERTISE_100HALF;
1527 if (adv & ADVERTISED_100baseT_Full)
1528 auto_nego |= ADVERTISE_100FULL;
1529
françois romieu3577aa12009-05-19 10:46:48 +00001530 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1531
françois romieu4da19632011-01-03 15:07:55 +00001532 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001533 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1534
1535 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001536 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001537 if (adv & ADVERTISED_1000baseT_Half)
1538 giga_ctrl |= ADVERTISE_1000HALF;
1539 if (adv & ADVERTISED_1000baseT_Full)
1540 giga_ctrl |= ADVERTISE_1000FULL;
1541 } else if (adv & (ADVERTISED_1000baseT_Half |
1542 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001543 netif_info(tp, link, dev,
1544 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001545 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
françois romieu3577aa12009-05-19 10:46:48 +00001548 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001549
françois romieu4da19632011-01-03 15:07:55 +00001550 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1551 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001552 } else {
1553 giga_ctrl = 0;
1554
1555 if (speed == SPEED_10)
1556 bmcr = 0;
1557 else if (speed == SPEED_100)
1558 bmcr = BMCR_SPEED100;
1559 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001560 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001561
1562 if (duplex == DUPLEX_FULL)
1563 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001564 }
1565
françois romieu4da19632011-01-03 15:07:55 +00001566 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001567
Francois Romieucecb5fd2011-04-01 10:21:07 +02001568 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1569 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001570 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001571 rtl_writephy(tp, 0x17, 0x2138);
1572 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001573 } else {
françois romieu4da19632011-01-03 15:07:55 +00001574 rtl_writephy(tp, 0x17, 0x2108);
1575 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001576 }
1577 }
1578
Oliver Neukum54405cd2011-01-06 21:55:13 +01001579 rc = 0;
1580out:
1581 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
1584static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001585 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
1587 struct rtl8169_private *tp = netdev_priv(dev);
1588 int ret;
1589
Oliver Neukum54405cd2011-01-06 21:55:13 +01001590 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001591 if (ret < 0)
1592 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Francois Romieu4876cc12011-03-11 21:07:11 +01001594 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1595 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001597 }
1598out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return ret;
1600}
1601
1602static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1603{
1604 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 int ret;
1606
Francois Romieu4876cc12011-03-11 21:07:11 +01001607 del_timer_sync(&tp->timer);
1608
Francois Romieuda78dbf2012-01-26 14:18:23 +01001609 rtl_lock_work(tp);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001610 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001611 cmd->duplex, cmd->advertising);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001612 rtl_unlock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return ret;
1615}
1616
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001617static netdev_features_t rtl8169_fix_features(struct net_device *dev,
1618 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
Francois Romieud58d46b2011-05-03 16:38:29 +02001620 struct rtl8169_private *tp = netdev_priv(dev);
1621
Francois Romieu2b7b4312011-04-18 22:53:24 -07001622 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001623 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Francois Romieud58d46b2011-05-03 16:38:29 +02001625 if (dev->mtu > JUMBO_1K &&
1626 !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
1627 features &= ~NETIF_F_IP_CSUM;
1628
Michał Mirosław350fb322011-04-08 06:35:56 +00001629 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
Francois Romieuda78dbf2012-01-26 14:18:23 +01001632static void __rtl8169_set_features(struct net_device *dev,
1633 netdev_features_t features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
1635 struct rtl8169_private *tp = netdev_priv(dev);
Ben Greear6bbe0212012-02-10 15:04:33 +00001636 netdev_features_t changed = features ^ dev->features;
Francois Romieuda78dbf2012-01-26 14:18:23 +01001637 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Ben Greear6bbe0212012-02-10 15:04:33 +00001639 if (!(changed & (NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)))
1640 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Ben Greear6bbe0212012-02-10 15:04:33 +00001642 if (changed & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)) {
1643 if (features & NETIF_F_RXCSUM)
1644 tp->cp_cmd |= RxChkSum;
1645 else
1646 tp->cp_cmd &= ~RxChkSum;
Michał Mirosław350fb322011-04-08 06:35:56 +00001647
Ben Greear6bbe0212012-02-10 15:04:33 +00001648 if (dev->features & NETIF_F_HW_VLAN_RX)
1649 tp->cp_cmd |= RxVlan;
1650 else
1651 tp->cp_cmd &= ~RxVlan;
1652
1653 RTL_W16(CPlusCmd, tp->cp_cmd);
1654 RTL_R16(CPlusCmd);
1655 }
1656 if (changed & NETIF_F_RXALL) {
1657 int tmp = (RTL_R32(RxConfig) & ~(AcceptErr | AcceptRunt));
1658 if (features & NETIF_F_RXALL)
1659 tmp |= (AcceptErr | AcceptRunt);
1660 RTL_W32(RxConfig, tmp);
1661 }
Francois Romieuda78dbf2012-01-26 14:18:23 +01001662}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Francois Romieuda78dbf2012-01-26 14:18:23 +01001664static int rtl8169_set_features(struct net_device *dev,
1665 netdev_features_t features)
1666{
1667 struct rtl8169_private *tp = netdev_priv(dev);
1668
1669 rtl_lock_work(tp);
1670 __rtl8169_set_features(dev, features);
1671 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 return 0;
1674}
1675
Francois Romieuda78dbf2012-01-26 14:18:23 +01001676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1678 struct sk_buff *skb)
1679{
Jesse Grosseab6d182010-10-20 13:56:03 +00001680 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1682}
1683
Francois Romieu7a8fc772011-03-01 17:18:33 +01001684static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Francois Romieu7a8fc772011-03-01 17:18:33 +01001688 if (opts2 & RxVlanTag)
1689 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Eric Dumazet2edae082010-09-06 18:46:39 +00001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 desc->opts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692}
1693
Francois Romieuccdffb92008-07-26 14:26:06 +02001694static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
1696 struct rtl8169_private *tp = netdev_priv(dev);
1697 void __iomem *ioaddr = tp->mmio_addr;
1698 u32 status;
1699
1700 cmd->supported =
1701 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1702 cmd->port = PORT_FIBRE;
1703 cmd->transceiver = XCVR_INTERNAL;
1704
1705 status = RTL_R32(TBICSR);
1706 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1707 cmd->autoneg = !!(status & TBINwEnable);
1708
David Decotigny70739492011-04-27 18:32:40 +00001709 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001711
1712 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713}
1714
Francois Romieuccdffb92008-07-26 14:26:06 +02001715static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
1717 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Francois Romieuccdffb92008-07-26 14:26:06 +02001719 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720}
1721
1722static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1723{
1724 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +02001725 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Francois Romieuda78dbf2012-01-26 14:18:23 +01001727 rtl_lock_work(tp);
Francois Romieuccdffb92008-07-26 14:26:06 +02001728 rc = tp->get_settings(dev, cmd);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001729 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Francois Romieuccdffb92008-07-26 14:26:06 +02001731 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
1734static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1735 void *p)
1736{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001737 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Francois Romieu5b0384f2006-08-16 16:00:01 +02001739 if (regs->len > R8169_REGS_SIZE)
1740 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Francois Romieuda78dbf2012-01-26 14:18:23 +01001742 rtl_lock_work(tp);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001743 memcpy_fromio(p, tp->mmio_addr, regs->len);
Francois Romieuda78dbf2012-01-26 14:18:23 +01001744 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001747static u32 rtl8169_get_msglevel(struct net_device *dev)
1748{
1749 struct rtl8169_private *tp = netdev_priv(dev);
1750
1751 return tp->msg_enable;
1752}
1753
1754static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1755{
1756 struct rtl8169_private *tp = netdev_priv(dev);
1757
1758 tp->msg_enable = value;
1759}
1760
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001761static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1762 "tx_packets",
1763 "rx_packets",
1764 "tx_errors",
1765 "rx_errors",
1766 "rx_missed",
1767 "align_errors",
1768 "tx_single_collisions",
1769 "tx_multi_collisions",
1770 "unicast",
1771 "broadcast",
1772 "multicast",
1773 "tx_aborted",
1774 "tx_underrun",
1775};
1776
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001777static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001778{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001779 switch (sset) {
1780 case ETH_SS_STATS:
1781 return ARRAY_SIZE(rtl8169_gstrings);
1782 default:
1783 return -EOPNOTSUPP;
1784 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001785}
1786
Ivan Vecera355423d2009-02-06 21:49:57 -08001787static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001788{
1789 struct rtl8169_private *tp = netdev_priv(dev);
1790 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001791 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001792 struct rtl8169_counters *counters;
1793 dma_addr_t paddr;
1794 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001795 int wait = 1000;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001796
Ivan Vecera355423d2009-02-06 21:49:57 -08001797 /*
1798 * Some chips are unable to dump tally counters when the receiver
1799 * is disabled.
1800 */
1801 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1802 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001803
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001804 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001805 if (!counters)
1806 return;
1807
1808 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001809 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001810 RTL_W32(CounterAddrLow, cmd);
1811 RTL_W32(CounterAddrLow, cmd | CounterDump);
1812
Ivan Vecera355423d2009-02-06 21:49:57 -08001813 while (wait--) {
1814 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
Ivan Vecera355423d2009-02-06 21:49:57 -08001815 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001816 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001817 }
1818 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001819 }
1820
1821 RTL_W32(CounterAddrLow, 0);
1822 RTL_W32(CounterAddrHigh, 0);
1823
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001824 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001825}
1826
Ivan Vecera355423d2009-02-06 21:49:57 -08001827static void rtl8169_get_ethtool_stats(struct net_device *dev,
1828 struct ethtool_stats *stats, u64 *data)
1829{
1830 struct rtl8169_private *tp = netdev_priv(dev);
1831
1832 ASSERT_RTNL();
1833
1834 rtl8169_update_counters(dev);
1835
1836 data[0] = le64_to_cpu(tp->counters.tx_packets);
1837 data[1] = le64_to_cpu(tp->counters.rx_packets);
1838 data[2] = le64_to_cpu(tp->counters.tx_errors);
1839 data[3] = le32_to_cpu(tp->counters.rx_errors);
1840 data[4] = le16_to_cpu(tp->counters.rx_missed);
1841 data[5] = le16_to_cpu(tp->counters.align_errors);
1842 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1843 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1844 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1845 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1846 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1847 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1848 data[12] = le16_to_cpu(tp->counters.tx_underun);
1849}
1850
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001851static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1852{
1853 switch(stringset) {
1854 case ETH_SS_STATS:
1855 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1856 break;
1857 }
1858}
1859
Jeff Garzik7282d492006-09-13 14:30:00 -04001860static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 .get_drvinfo = rtl8169_get_drvinfo,
1862 .get_regs_len = rtl8169_get_regs_len,
1863 .get_link = ethtool_op_get_link,
1864 .get_settings = rtl8169_get_settings,
1865 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001866 .get_msglevel = rtl8169_get_msglevel,
1867 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001869 .get_wol = rtl8169_get_wol,
1870 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001871 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001872 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001873 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Richard Cochrane1593bb2012-04-03 22:59:35 +00001874 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875};
1876
Francois Romieu07d3f512007-02-21 22:40:46 +01001877static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02001878 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Francois Romieu5d320a22011-05-08 17:47:36 +02001880 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01001881 /*
1882 * The driver currently handles the 8168Bf and the 8168Be identically
1883 * but they can be identified more specifically through the test below
1884 * if needed:
1885 *
1886 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001887 *
1888 * Same thing for the 8101Eb and the 8101Ec:
1889 *
1890 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001891 */
Francois Romieu37441002011-06-17 22:58:54 +02001892 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001894 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 int mac_version;
1896 } mac_info[] = {
Hayes Wangc2218922011-09-06 16:55:18 +08001897 /* 8168F family. */
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08001898 { 0x7c800000, 0x48800000, RTL_GIGA_MAC_VER_38 },
Hayes Wangc2218922011-09-06 16:55:18 +08001899 { 0x7cf00000, 0x48100000, RTL_GIGA_MAC_VER_36 },
1900 { 0x7cf00000, 0x48000000, RTL_GIGA_MAC_VER_35 },
1901
hayeswang01dc7fe2011-03-21 01:50:28 +00001902 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08001903 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00001904 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
1905 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
1906 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
1907
Francois Romieu5b538df2008-07-20 16:22:45 +02001908 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001909 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1910 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001911 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001912
françois romieue6de30d2011-01-03 15:08:37 +00001913 /* 8168DP family. */
1914 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1915 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00001916 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00001917
Francois Romieuef808d52008-06-29 13:10:54 +02001918 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001919 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001920 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001921 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001922 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001923 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1924 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001925 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001926 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001927 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001928
1929 /* 8168B family. */
1930 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1931 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1932 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1933 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1934
1935 /* 8101 family. */
Hayes Wang7e18dca2012-03-30 14:33:02 +08001936 { 0x7c800000, 0x44000000, RTL_GIGA_MAC_VER_37 },
hayeswang36a0e6c2011-03-21 01:50:30 +00001937 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08001938 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
1939 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
1940 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001941 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1942 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1943 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1944 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1945 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1946 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001947 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001948 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001949 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001950 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1951 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001952 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1953 /* FIXME: where did these entries come from ? -- FR */
1954 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1955 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1956
1957 /* 8110 family. */
1958 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1959 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1960 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1961 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1962 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1963 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1964
Jean Delvaref21b75e2009-05-26 20:54:48 -07001965 /* Catch-all */
1966 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02001967 };
1968 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 u32 reg;
1970
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001971 reg = RTL_R32(TxConfig);
1972 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 p++;
1974 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02001975
1976 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
1977 netif_notice(tp, probe, dev,
1978 "unknown MAC, using family default\n");
1979 tp->mac_version = default_version;
1980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981}
1982
1983static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1984{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001985 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986}
1987
Francois Romieu867763c2007-08-17 18:21:58 +02001988struct phy_reg {
1989 u16 reg;
1990 u16 val;
1991};
1992
françois romieu4da19632011-01-03 15:07:55 +00001993static void rtl_writephy_batch(struct rtl8169_private *tp,
1994 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001995{
1996 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001997 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001998 regs++;
1999 }
2000}
2001
françois romieubca03d52011-01-03 15:07:31 +00002002#define PHY_READ 0x00000000
2003#define PHY_DATA_OR 0x10000000
2004#define PHY_DATA_AND 0x20000000
2005#define PHY_BJMPN 0x30000000
2006#define PHY_READ_EFUSE 0x40000000
2007#define PHY_READ_MAC_BYTE 0x50000000
2008#define PHY_WRITE_MAC_BYTE 0x60000000
2009#define PHY_CLEAR_READCOUNT 0x70000000
2010#define PHY_WRITE 0x80000000
2011#define PHY_READCOUNT_EQ_SKIP 0x90000000
2012#define PHY_COMP_EQ_SKIPN 0xa0000000
2013#define PHY_COMP_NEQ_SKIPN 0xb0000000
2014#define PHY_WRITE_PREVIOUS 0xc0000000
2015#define PHY_SKIPN 0xd0000000
2016#define PHY_DELAY_MS 0xe0000000
2017#define PHY_WRITE_ERI_WORD 0xf0000000
2018
Hayes Wang960aee62011-06-18 11:37:48 +02002019struct fw_info {
2020 u32 magic;
2021 char version[RTL_VER_SIZE];
2022 __le32 fw_start;
2023 __le32 fw_len;
2024 u8 chksum;
2025} __packed;
2026
Francois Romieu1c361ef2011-06-17 17:16:24 +02002027#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2028
2029static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00002030{
Francois Romieub6ffd972011-06-17 17:00:05 +02002031 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02002032 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002033 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2034 char *version = rtl_fw->version;
2035 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00002036
Francois Romieu1c361ef2011-06-17 17:16:24 +02002037 if (fw->size < FW_OPCODE_SIZE)
2038 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02002039
2040 if (!fw_info->magic) {
2041 size_t i, size, start;
2042 u8 checksum = 0;
2043
2044 if (fw->size < sizeof(*fw_info))
2045 goto out;
2046
2047 for (i = 0; i < fw->size; i++)
2048 checksum += fw->data[i];
2049 if (checksum != 0)
2050 goto out;
2051
2052 start = le32_to_cpu(fw_info->fw_start);
2053 if (start > fw->size)
2054 goto out;
2055
2056 size = le32_to_cpu(fw_info->fw_len);
2057 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2058 goto out;
2059
2060 memcpy(version, fw_info->version, RTL_VER_SIZE);
2061
2062 pa->code = (__le32 *)(fw->data + start);
2063 pa->size = size;
2064 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02002065 if (fw->size % FW_OPCODE_SIZE)
2066 goto out;
2067
2068 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2069
2070 pa->code = (__le32 *)fw->data;
2071 pa->size = fw->size / FW_OPCODE_SIZE;
2072 }
2073 version[RTL_VER_SIZE - 1] = 0;
2074
2075 rc = true;
2076out:
2077 return rc;
2078}
2079
Francois Romieufd112f22011-06-18 00:10:29 +02002080static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2081 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02002082{
Francois Romieufd112f22011-06-18 00:10:29 +02002083 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02002084 size_t index;
2085
Francois Romieu1c361ef2011-06-17 17:16:24 +02002086 for (index = 0; index < pa->size; index++) {
2087 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00002088 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00002089
hayeswang42b82dc2011-01-10 02:07:25 +00002090 switch(action & 0xf0000000) {
2091 case PHY_READ:
2092 case PHY_DATA_OR:
2093 case PHY_DATA_AND:
2094 case PHY_READ_EFUSE:
2095 case PHY_CLEAR_READCOUNT:
2096 case PHY_WRITE:
2097 case PHY_WRITE_PREVIOUS:
2098 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00002099 break;
2100
hayeswang42b82dc2011-01-10 02:07:25 +00002101 case PHY_BJMPN:
2102 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02002103 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002104 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002105 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002106 }
2107 break;
2108 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002109 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002110 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002111 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002112 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002113 }
2114 break;
2115 case PHY_COMP_EQ_SKIPN:
2116 case PHY_COMP_NEQ_SKIPN:
2117 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02002118 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02002119 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002120 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02002121 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00002122 }
2123 break;
2124
2125 case PHY_READ_MAC_BYTE:
2126 case PHY_WRITE_MAC_BYTE:
2127 case PHY_WRITE_ERI_WORD:
2128 default:
Francois Romieufd112f22011-06-18 00:10:29 +02002129 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00002130 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02002131 goto out;
françois romieubca03d52011-01-03 15:07:31 +00002132 }
2133 }
Francois Romieufd112f22011-06-18 00:10:29 +02002134 rc = true;
2135out:
2136 return rc;
2137}
françois romieubca03d52011-01-03 15:07:31 +00002138
Francois Romieufd112f22011-06-18 00:10:29 +02002139static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2140{
2141 struct net_device *dev = tp->dev;
2142 int rc = -EINVAL;
2143
2144 if (!rtl_fw_format_ok(tp, rtl_fw)) {
2145 netif_err(tp, ifup, dev, "invalid firwmare\n");
2146 goto out;
2147 }
2148
2149 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2150 rc = 0;
2151out:
2152 return rc;
2153}
2154
2155static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2156{
2157 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2158 u32 predata, count;
2159 size_t index;
2160
2161 predata = count = 0;
hayeswang42b82dc2011-01-10 02:07:25 +00002162
Francois Romieu1c361ef2011-06-17 17:16:24 +02002163 for (index = 0; index < pa->size; ) {
2164 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00002165 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00002166 u32 regno = (action & 0x0fff0000) >> 16;
2167
2168 if (!action)
2169 break;
françois romieubca03d52011-01-03 15:07:31 +00002170
2171 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00002172 case PHY_READ:
2173 predata = rtl_readphy(tp, regno);
2174 count++;
2175 index++;
françois romieubca03d52011-01-03 15:07:31 +00002176 break;
hayeswang42b82dc2011-01-10 02:07:25 +00002177 case PHY_DATA_OR:
2178 predata |= data;
2179 index++;
2180 break;
2181 case PHY_DATA_AND:
2182 predata &= data;
2183 index++;
2184 break;
2185 case PHY_BJMPN:
2186 index -= regno;
2187 break;
2188 case PHY_READ_EFUSE:
2189 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
2190 index++;
2191 break;
2192 case PHY_CLEAR_READCOUNT:
2193 count = 0;
2194 index++;
2195 break;
2196 case PHY_WRITE:
2197 rtl_writephy(tp, regno, data);
2198 index++;
2199 break;
2200 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002201 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002202 break;
2203 case PHY_COMP_EQ_SKIPN:
2204 if (predata == data)
2205 index += regno;
2206 index++;
2207 break;
2208 case PHY_COMP_NEQ_SKIPN:
2209 if (predata != data)
2210 index += regno;
2211 index++;
2212 break;
2213 case PHY_WRITE_PREVIOUS:
2214 rtl_writephy(tp, regno, predata);
2215 index++;
2216 break;
2217 case PHY_SKIPN:
2218 index += regno + 1;
2219 break;
2220 case PHY_DELAY_MS:
2221 mdelay(data);
2222 index++;
2223 break;
2224
2225 case PHY_READ_MAC_BYTE:
2226 case PHY_WRITE_MAC_BYTE:
2227 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00002228 default:
2229 BUG();
2230 }
2231 }
2232}
2233
françois romieuf1e02ed2011-01-13 13:07:53 +00002234static void rtl_release_firmware(struct rtl8169_private *tp)
2235{
Francois Romieub6ffd972011-06-17 17:00:05 +02002236 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2237 release_firmware(tp->rtl_fw->fw);
2238 kfree(tp->rtl_fw);
2239 }
2240 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002241}
2242
François Romieu953a12c2011-04-24 17:38:48 +02002243static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002244{
Francois Romieub6ffd972011-06-17 17:00:05 +02002245 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002246
2247 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieub6ffd972011-06-17 17:00:05 +02002248 if (!IS_ERR_OR_NULL(rtl_fw))
2249 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002250}
2251
2252static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2253{
2254 if (rtl_readphy(tp, reg) != val)
2255 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2256 else
2257 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002258}
2259
françois romieu4da19632011-01-03 15:07:55 +00002260static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002262 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002263 { 0x1f, 0x0001 },
2264 { 0x06, 0x006e },
2265 { 0x08, 0x0708 },
2266 { 0x15, 0x4000 },
2267 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
françois romieu0b9b5712009-08-10 19:44:56 +00002269 { 0x1f, 0x0001 },
2270 { 0x03, 0x00a1 },
2271 { 0x02, 0x0008 },
2272 { 0x01, 0x0120 },
2273 { 0x00, 0x1000 },
2274 { 0x04, 0x0800 },
2275 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
françois romieu0b9b5712009-08-10 19:44:56 +00002277 { 0x03, 0xff41 },
2278 { 0x02, 0xdf60 },
2279 { 0x01, 0x0140 },
2280 { 0x00, 0x0077 },
2281 { 0x04, 0x7800 },
2282 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
françois romieu0b9b5712009-08-10 19:44:56 +00002284 { 0x03, 0x802f },
2285 { 0x02, 0x4f02 },
2286 { 0x01, 0x0409 },
2287 { 0x00, 0xf0f9 },
2288 { 0x04, 0x9800 },
2289 { 0x04, 0x9000 },
2290
2291 { 0x03, 0xdf01 },
2292 { 0x02, 0xdf20 },
2293 { 0x01, 0xff95 },
2294 { 0x00, 0xba00 },
2295 { 0x04, 0xa800 },
2296 { 0x04, 0xa000 },
2297
2298 { 0x03, 0xff41 },
2299 { 0x02, 0xdf20 },
2300 { 0x01, 0x0140 },
2301 { 0x00, 0x00bb },
2302 { 0x04, 0xb800 },
2303 { 0x04, 0xb000 },
2304
2305 { 0x03, 0xdf41 },
2306 { 0x02, 0xdc60 },
2307 { 0x01, 0x6340 },
2308 { 0x00, 0x007d },
2309 { 0x04, 0xd800 },
2310 { 0x04, 0xd000 },
2311
2312 { 0x03, 0xdf01 },
2313 { 0x02, 0xdf20 },
2314 { 0x01, 0x100a },
2315 { 0x00, 0xa0ff },
2316 { 0x04, 0xf800 },
2317 { 0x04, 0xf000 },
2318
2319 { 0x1f, 0x0000 },
2320 { 0x0b, 0x0000 },
2321 { 0x00, 0x9200 }
2322 };
2323
françois romieu4da19632011-01-03 15:07:55 +00002324 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325}
2326
françois romieu4da19632011-01-03 15:07:55 +00002327static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002328{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002329 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002330 { 0x1f, 0x0002 },
2331 { 0x01, 0x90d0 },
2332 { 0x1f, 0x0000 }
2333 };
2334
françois romieu4da19632011-01-03 15:07:55 +00002335 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002336}
2337
françois romieu4da19632011-01-03 15:07:55 +00002338static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002339{
2340 struct pci_dev *pdev = tp->pci_dev;
françois romieu2e9558562009-08-10 19:44:19 +00002341
Sergei Shtylyovccbae552011-07-22 05:37:24 +00002342 if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2343 (pdev->subsystem_device != 0xe000))
françois romieu2e9558562009-08-10 19:44:19 +00002344 return;
2345
françois romieu4da19632011-01-03 15:07:55 +00002346 rtl_writephy(tp, 0x1f, 0x0001);
2347 rtl_writephy(tp, 0x10, 0xf01b);
2348 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002349}
2350
françois romieu4da19632011-01-03 15:07:55 +00002351static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002352{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002353 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002354 { 0x1f, 0x0001 },
2355 { 0x04, 0x0000 },
2356 { 0x03, 0x00a1 },
2357 { 0x02, 0x0008 },
2358 { 0x01, 0x0120 },
2359 { 0x00, 0x1000 },
2360 { 0x04, 0x0800 },
2361 { 0x04, 0x9000 },
2362 { 0x03, 0x802f },
2363 { 0x02, 0x4f02 },
2364 { 0x01, 0x0409 },
2365 { 0x00, 0xf099 },
2366 { 0x04, 0x9800 },
2367 { 0x04, 0xa000 },
2368 { 0x03, 0xdf01 },
2369 { 0x02, 0xdf20 },
2370 { 0x01, 0xff95 },
2371 { 0x00, 0xba00 },
2372 { 0x04, 0xa800 },
2373 { 0x04, 0xf000 },
2374 { 0x03, 0xdf01 },
2375 { 0x02, 0xdf20 },
2376 { 0x01, 0x101a },
2377 { 0x00, 0xa0ff },
2378 { 0x04, 0xf800 },
2379 { 0x04, 0x0000 },
2380 { 0x1f, 0x0000 },
2381
2382 { 0x1f, 0x0001 },
2383 { 0x10, 0xf41b },
2384 { 0x14, 0xfb54 },
2385 { 0x18, 0xf5c7 },
2386 { 0x1f, 0x0000 },
2387
2388 { 0x1f, 0x0001 },
2389 { 0x17, 0x0cc0 },
2390 { 0x1f, 0x0000 }
2391 };
2392
françois romieu4da19632011-01-03 15:07:55 +00002393 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002394
françois romieu4da19632011-01-03 15:07:55 +00002395 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002396}
2397
françois romieu4da19632011-01-03 15:07:55 +00002398static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002399{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002400 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002401 { 0x1f, 0x0001 },
2402 { 0x04, 0x0000 },
2403 { 0x03, 0x00a1 },
2404 { 0x02, 0x0008 },
2405 { 0x01, 0x0120 },
2406 { 0x00, 0x1000 },
2407 { 0x04, 0x0800 },
2408 { 0x04, 0x9000 },
2409 { 0x03, 0x802f },
2410 { 0x02, 0x4f02 },
2411 { 0x01, 0x0409 },
2412 { 0x00, 0xf099 },
2413 { 0x04, 0x9800 },
2414 { 0x04, 0xa000 },
2415 { 0x03, 0xdf01 },
2416 { 0x02, 0xdf20 },
2417 { 0x01, 0xff95 },
2418 { 0x00, 0xba00 },
2419 { 0x04, 0xa800 },
2420 { 0x04, 0xf000 },
2421 { 0x03, 0xdf01 },
2422 { 0x02, 0xdf20 },
2423 { 0x01, 0x101a },
2424 { 0x00, 0xa0ff },
2425 { 0x04, 0xf800 },
2426 { 0x04, 0x0000 },
2427 { 0x1f, 0x0000 },
2428
2429 { 0x1f, 0x0001 },
2430 { 0x0b, 0x8480 },
2431 { 0x1f, 0x0000 },
2432
2433 { 0x1f, 0x0001 },
2434 { 0x18, 0x67c7 },
2435 { 0x04, 0x2000 },
2436 { 0x03, 0x002f },
2437 { 0x02, 0x4360 },
2438 { 0x01, 0x0109 },
2439 { 0x00, 0x3022 },
2440 { 0x04, 0x2800 },
2441 { 0x1f, 0x0000 },
2442
2443 { 0x1f, 0x0001 },
2444 { 0x17, 0x0cc0 },
2445 { 0x1f, 0x0000 }
2446 };
2447
françois romieu4da19632011-01-03 15:07:55 +00002448 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002449}
2450
françois romieu4da19632011-01-03 15:07:55 +00002451static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002452{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002453 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002454 { 0x10, 0xf41b },
2455 { 0x1f, 0x0000 }
2456 };
2457
françois romieu4da19632011-01-03 15:07:55 +00002458 rtl_writephy(tp, 0x1f, 0x0001);
2459 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002460
françois romieu4da19632011-01-03 15:07:55 +00002461 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002462}
2463
françois romieu4da19632011-01-03 15:07:55 +00002464static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002465{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002466 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002467 { 0x1f, 0x0001 },
2468 { 0x10, 0xf41b },
2469 { 0x1f, 0x0000 }
2470 };
2471
françois romieu4da19632011-01-03 15:07:55 +00002472 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002473}
2474
françois romieu4da19632011-01-03 15:07:55 +00002475static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002476{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002477 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002478 { 0x1f, 0x0000 },
2479 { 0x1d, 0x0f00 },
2480 { 0x1f, 0x0002 },
2481 { 0x0c, 0x1ec8 },
2482 { 0x1f, 0x0000 }
2483 };
2484
françois romieu4da19632011-01-03 15:07:55 +00002485 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002486}
2487
françois romieu4da19632011-01-03 15:07:55 +00002488static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002489{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002490 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002491 { 0x1f, 0x0001 },
2492 { 0x1d, 0x3d98 },
2493 { 0x1f, 0x0000 }
2494 };
2495
françois romieu4da19632011-01-03 15:07:55 +00002496 rtl_writephy(tp, 0x1f, 0x0000);
2497 rtl_patchphy(tp, 0x14, 1 << 5);
2498 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002499
françois romieu4da19632011-01-03 15:07:55 +00002500 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002501}
2502
françois romieu4da19632011-01-03 15:07:55 +00002503static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002504{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002505 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002506 { 0x1f, 0x0001 },
2507 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002508 { 0x1f, 0x0002 },
2509 { 0x00, 0x88d4 },
2510 { 0x01, 0x82b1 },
2511 { 0x03, 0x7002 },
2512 { 0x08, 0x9e30 },
2513 { 0x09, 0x01f0 },
2514 { 0x0a, 0x5500 },
2515 { 0x0c, 0x00c8 },
2516 { 0x1f, 0x0003 },
2517 { 0x12, 0xc096 },
2518 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002519 { 0x1f, 0x0000 },
2520 { 0x1f, 0x0000 },
2521 { 0x09, 0x2000 },
2522 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002523 };
2524
françois romieu4da19632011-01-03 15:07:55 +00002525 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002526
françois romieu4da19632011-01-03 15:07:55 +00002527 rtl_patchphy(tp, 0x14, 1 << 5);
2528 rtl_patchphy(tp, 0x0d, 1 << 5);
2529 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002530}
2531
françois romieu4da19632011-01-03 15:07:55 +00002532static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002533{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002534 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002535 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002536 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002537 { 0x03, 0x802f },
2538 { 0x02, 0x4f02 },
2539 { 0x01, 0x0409 },
2540 { 0x00, 0xf099 },
2541 { 0x04, 0x9800 },
2542 { 0x04, 0x9000 },
2543 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002544 { 0x1f, 0x0002 },
2545 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002546 { 0x06, 0x0761 },
2547 { 0x1f, 0x0003 },
2548 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002549 { 0x1f, 0x0000 }
2550 };
2551
françois romieu4da19632011-01-03 15:07:55 +00002552 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002553
françois romieu4da19632011-01-03 15:07:55 +00002554 rtl_patchphy(tp, 0x16, 1 << 0);
2555 rtl_patchphy(tp, 0x14, 1 << 5);
2556 rtl_patchphy(tp, 0x0d, 1 << 5);
2557 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002558}
2559
françois romieu4da19632011-01-03 15:07:55 +00002560static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002561{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002562 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002563 { 0x1f, 0x0001 },
2564 { 0x12, 0x2300 },
2565 { 0x1d, 0x3d98 },
2566 { 0x1f, 0x0002 },
2567 { 0x0c, 0x7eb8 },
2568 { 0x06, 0x5461 },
2569 { 0x1f, 0x0003 },
2570 { 0x16, 0x0f0a },
2571 { 0x1f, 0x0000 }
2572 };
2573
françois romieu4da19632011-01-03 15:07:55 +00002574 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002575
françois romieu4da19632011-01-03 15:07:55 +00002576 rtl_patchphy(tp, 0x16, 1 << 0);
2577 rtl_patchphy(tp, 0x14, 1 << 5);
2578 rtl_patchphy(tp, 0x0d, 1 << 5);
2579 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002580}
2581
françois romieu4da19632011-01-03 15:07:55 +00002582static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002583{
françois romieu4da19632011-01-03 15:07:55 +00002584 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002585}
2586
françois romieubca03d52011-01-03 15:07:31 +00002587static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002588{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002589 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002590 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002591 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002592 { 0x06, 0x4064 },
2593 { 0x07, 0x2863 },
2594 { 0x08, 0x059c },
2595 { 0x09, 0x26b4 },
2596 { 0x0a, 0x6a19 },
2597 { 0x0b, 0xdcc8 },
2598 { 0x10, 0xf06d },
2599 { 0x14, 0x7f68 },
2600 { 0x18, 0x7fd9 },
2601 { 0x1c, 0xf0ff },
2602 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002603 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002604 { 0x12, 0xf49f },
2605 { 0x13, 0x070b },
2606 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002607 { 0x14, 0x94c0 },
2608
2609 /*
2610 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002611 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002612 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002613 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002614 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002615 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002616 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002617 { 0x06, 0x5561 },
2618
2619 /*
2620 * Can not link to 1Gbps with bad cable
2621 * Decrease SNR threshold form 21.07dB to 19.04dB
2622 */
2623 { 0x1f, 0x0001 },
2624 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002625
2626 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002627 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002628 };
françois romieubca03d52011-01-03 15:07:31 +00002629 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002630
françois romieu4da19632011-01-03 15:07:55 +00002631 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002632
françois romieubca03d52011-01-03 15:07:31 +00002633 /*
2634 * Rx Error Issue
2635 * Fine Tune Switching regulator parameter
2636 */
françois romieu4da19632011-01-03 15:07:55 +00002637 rtl_writephy(tp, 0x1f, 0x0002);
2638 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2639 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002640
françois romieudaf9df62009-10-07 12:44:20 +00002641 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002642 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002643 { 0x1f, 0x0002 },
2644 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002645 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002646 { 0x05, 0x8330 },
2647 { 0x06, 0x669a },
2648 { 0x1f, 0x0002 }
2649 };
2650 int val;
2651
françois romieu4da19632011-01-03 15:07:55 +00002652 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002653
françois romieu4da19632011-01-03 15:07:55 +00002654 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002655
2656 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002657 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002658 0x0065, 0x0066, 0x0067, 0x0068,
2659 0x0069, 0x006a, 0x006b, 0x006c
2660 };
2661 int i;
2662
françois romieu4da19632011-01-03 15:07:55 +00002663 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002664
2665 val &= 0xff00;
2666 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002667 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002668 }
2669 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002670 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002671 { 0x1f, 0x0002 },
2672 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002673 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002674 { 0x05, 0x8330 },
2675 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002676 };
2677
françois romieu4da19632011-01-03 15:07:55 +00002678 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002679 }
2680
françois romieubca03d52011-01-03 15:07:31 +00002681 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002682 rtl_writephy(tp, 0x1f, 0x0002);
2683 rtl_patchphy(tp, 0x0d, 0x0300);
2684 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002685
françois romieubca03d52011-01-03 15:07:31 +00002686 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002687 rtl_writephy(tp, 0x1f, 0x0002);
2688 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2689 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002690
françois romieu4da19632011-01-03 15:07:55 +00002691 rtl_writephy(tp, 0x1f, 0x0005);
2692 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002693
2694 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002695
françois romieu4da19632011-01-03 15:07:55 +00002696 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002697}
2698
françois romieubca03d52011-01-03 15:07:31 +00002699static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002700{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002701 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002702 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002703 { 0x1f, 0x0001 },
2704 { 0x06, 0x4064 },
2705 { 0x07, 0x2863 },
2706 { 0x08, 0x059c },
2707 { 0x09, 0x26b4 },
2708 { 0x0a, 0x6a19 },
2709 { 0x0b, 0xdcc8 },
2710 { 0x10, 0xf06d },
2711 { 0x14, 0x7f68 },
2712 { 0x18, 0x7fd9 },
2713 { 0x1c, 0xf0ff },
2714 { 0x1d, 0x3d9c },
2715 { 0x1f, 0x0003 },
2716 { 0x12, 0xf49f },
2717 { 0x13, 0x070b },
2718 { 0x1a, 0x05ad },
2719 { 0x14, 0x94c0 },
2720
françois romieubca03d52011-01-03 15:07:31 +00002721 /*
2722 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002723 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002724 */
françois romieudaf9df62009-10-07 12:44:20 +00002725 { 0x1f, 0x0002 },
2726 { 0x06, 0x5561 },
2727 { 0x1f, 0x0005 },
2728 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002729 { 0x06, 0x5561 },
2730
2731 /*
2732 * Can not link to 1Gbps with bad cable
2733 * Decrease SNR threshold form 21.07dB to 19.04dB
2734 */
2735 { 0x1f, 0x0001 },
2736 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002737
2738 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002739 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002740 };
françois romieubca03d52011-01-03 15:07:31 +00002741 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002742
françois romieu4da19632011-01-03 15:07:55 +00002743 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002744
2745 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002746 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002747 { 0x1f, 0x0002 },
2748 { 0x05, 0x669a },
2749 { 0x1f, 0x0005 },
2750 { 0x05, 0x8330 },
2751 { 0x06, 0x669a },
2752
2753 { 0x1f, 0x0002 }
2754 };
2755 int val;
2756
françois romieu4da19632011-01-03 15:07:55 +00002757 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002758
françois romieu4da19632011-01-03 15:07:55 +00002759 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002760 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002761 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002762 0x0065, 0x0066, 0x0067, 0x0068,
2763 0x0069, 0x006a, 0x006b, 0x006c
2764 };
2765 int i;
2766
françois romieu4da19632011-01-03 15:07:55 +00002767 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002768
2769 val &= 0xff00;
2770 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002771 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002772 }
2773 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002774 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002775 { 0x1f, 0x0002 },
2776 { 0x05, 0x2642 },
2777 { 0x1f, 0x0005 },
2778 { 0x05, 0x8330 },
2779 { 0x06, 0x2642 }
2780 };
2781
françois romieu4da19632011-01-03 15:07:55 +00002782 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002783 }
2784
françois romieubca03d52011-01-03 15:07:31 +00002785 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002786 rtl_writephy(tp, 0x1f, 0x0002);
2787 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2788 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002789
françois romieubca03d52011-01-03 15:07:31 +00002790 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002791 rtl_writephy(tp, 0x1f, 0x0002);
2792 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002793
françois romieu4da19632011-01-03 15:07:55 +00002794 rtl_writephy(tp, 0x1f, 0x0005);
2795 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002796
2797 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002798
françois romieu4da19632011-01-03 15:07:55 +00002799 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002800}
2801
françois romieu4da19632011-01-03 15:07:55 +00002802static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002803{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002804 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002805 { 0x1f, 0x0002 },
2806 { 0x10, 0x0008 },
2807 { 0x0d, 0x006c },
2808
2809 { 0x1f, 0x0000 },
2810 { 0x0d, 0xf880 },
2811
2812 { 0x1f, 0x0001 },
2813 { 0x17, 0x0cc0 },
2814
2815 { 0x1f, 0x0001 },
2816 { 0x0b, 0xa4d8 },
2817 { 0x09, 0x281c },
2818 { 0x07, 0x2883 },
2819 { 0x0a, 0x6b35 },
2820 { 0x1d, 0x3da4 },
2821 { 0x1c, 0xeffd },
2822 { 0x14, 0x7f52 },
2823 { 0x18, 0x7fc6 },
2824 { 0x08, 0x0601 },
2825 { 0x06, 0x4063 },
2826 { 0x10, 0xf074 },
2827 { 0x1f, 0x0003 },
2828 { 0x13, 0x0789 },
2829 { 0x12, 0xf4bd },
2830 { 0x1a, 0x04fd },
2831 { 0x14, 0x84b0 },
2832 { 0x1f, 0x0000 },
2833 { 0x00, 0x9200 },
2834
2835 { 0x1f, 0x0005 },
2836 { 0x01, 0x0340 },
2837 { 0x1f, 0x0001 },
2838 { 0x04, 0x4000 },
2839 { 0x03, 0x1d21 },
2840 { 0x02, 0x0c32 },
2841 { 0x01, 0x0200 },
2842 { 0x00, 0x5554 },
2843 { 0x04, 0x4800 },
2844 { 0x04, 0x4000 },
2845 { 0x04, 0xf000 },
2846 { 0x03, 0xdf01 },
2847 { 0x02, 0xdf20 },
2848 { 0x01, 0x101a },
2849 { 0x00, 0xa0ff },
2850 { 0x04, 0xf800 },
2851 { 0x04, 0xf000 },
2852 { 0x1f, 0x0000 },
2853
2854 { 0x1f, 0x0007 },
2855 { 0x1e, 0x0023 },
2856 { 0x16, 0x0000 },
2857 { 0x1f, 0x0000 }
2858 };
2859
françois romieu4da19632011-01-03 15:07:55 +00002860 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002861}
2862
françois romieue6de30d2011-01-03 15:08:37 +00002863static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2864{
2865 static const struct phy_reg phy_reg_init[] = {
2866 { 0x1f, 0x0001 },
2867 { 0x17, 0x0cc0 },
2868
2869 { 0x1f, 0x0007 },
2870 { 0x1e, 0x002d },
2871 { 0x18, 0x0040 },
2872 { 0x1f, 0x0000 }
2873 };
2874
2875 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2876 rtl_patchphy(tp, 0x0d, 1 << 5);
2877}
2878
Hayes Wang70090422011-07-06 15:58:06 +08002879static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00002880{
2881 static const struct phy_reg phy_reg_init[] = {
2882 /* Enable Delay cap */
2883 { 0x1f, 0x0005 },
2884 { 0x05, 0x8b80 },
2885 { 0x06, 0xc896 },
2886 { 0x1f, 0x0000 },
2887
2888 /* Channel estimation fine tune */
2889 { 0x1f, 0x0001 },
2890 { 0x0b, 0x6c20 },
2891 { 0x07, 0x2872 },
2892 { 0x1c, 0xefff },
2893 { 0x1f, 0x0003 },
2894 { 0x14, 0x6420 },
2895 { 0x1f, 0x0000 },
2896
2897 /* Update PFM & 10M TX idle timer */
2898 { 0x1f, 0x0007 },
2899 { 0x1e, 0x002f },
2900 { 0x15, 0x1919 },
2901 { 0x1f, 0x0000 },
2902
2903 { 0x1f, 0x0007 },
2904 { 0x1e, 0x00ac },
2905 { 0x18, 0x0006 },
2906 { 0x1f, 0x0000 }
2907 };
2908
Francois Romieu15ecd032011-04-27 13:52:22 -07002909 rtl_apply_firmware(tp);
2910
hayeswang01dc7fe2011-03-21 01:50:28 +00002911 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2912
2913 /* DCO enable for 10M IDLE Power */
2914 rtl_writephy(tp, 0x1f, 0x0007);
2915 rtl_writephy(tp, 0x1e, 0x0023);
2916 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2917 rtl_writephy(tp, 0x1f, 0x0000);
2918
2919 /* For impedance matching */
2920 rtl_writephy(tp, 0x1f, 0x0002);
2921 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002922 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00002923
2924 /* PHY auto speed down */
2925 rtl_writephy(tp, 0x1f, 0x0007);
2926 rtl_writephy(tp, 0x1e, 0x002d);
2927 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
2928 rtl_writephy(tp, 0x1f, 0x0000);
2929 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2930
2931 rtl_writephy(tp, 0x1f, 0x0005);
2932 rtl_writephy(tp, 0x05, 0x8b86);
2933 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2934 rtl_writephy(tp, 0x1f, 0x0000);
2935
2936 rtl_writephy(tp, 0x1f, 0x0005);
2937 rtl_writephy(tp, 0x05, 0x8b85);
2938 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2939 rtl_writephy(tp, 0x1f, 0x0007);
2940 rtl_writephy(tp, 0x1e, 0x0020);
2941 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
2942 rtl_writephy(tp, 0x1f, 0x0006);
2943 rtl_writephy(tp, 0x00, 0x5a00);
2944 rtl_writephy(tp, 0x1f, 0x0000);
2945 rtl_writephy(tp, 0x0d, 0x0007);
2946 rtl_writephy(tp, 0x0e, 0x003c);
2947 rtl_writephy(tp, 0x0d, 0x4007);
2948 rtl_writephy(tp, 0x0e, 0x0000);
2949 rtl_writephy(tp, 0x0d, 0x0000);
2950}
2951
Hayes Wang70090422011-07-06 15:58:06 +08002952static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
2953{
2954 static const struct phy_reg phy_reg_init[] = {
2955 /* Enable Delay cap */
2956 { 0x1f, 0x0004 },
2957 { 0x1f, 0x0007 },
2958 { 0x1e, 0x00ac },
2959 { 0x18, 0x0006 },
2960 { 0x1f, 0x0002 },
2961 { 0x1f, 0x0000 },
2962 { 0x1f, 0x0000 },
2963
2964 /* Channel estimation fine tune */
2965 { 0x1f, 0x0003 },
2966 { 0x09, 0xa20f },
2967 { 0x1f, 0x0000 },
2968 { 0x1f, 0x0000 },
2969
2970 /* Green Setting */
2971 { 0x1f, 0x0005 },
2972 { 0x05, 0x8b5b },
2973 { 0x06, 0x9222 },
2974 { 0x05, 0x8b6d },
2975 { 0x06, 0x8000 },
2976 { 0x05, 0x8b76 },
2977 { 0x06, 0x8000 },
2978 { 0x1f, 0x0000 }
2979 };
2980
2981 rtl_apply_firmware(tp);
2982
2983 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2984
2985 /* For 4-corner performance improve */
2986 rtl_writephy(tp, 0x1f, 0x0005);
2987 rtl_writephy(tp, 0x05, 0x8b80);
2988 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2989 rtl_writephy(tp, 0x1f, 0x0000);
2990
2991 /* PHY auto speed down */
2992 rtl_writephy(tp, 0x1f, 0x0004);
2993 rtl_writephy(tp, 0x1f, 0x0007);
2994 rtl_writephy(tp, 0x1e, 0x002d);
2995 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
2996 rtl_writephy(tp, 0x1f, 0x0002);
2997 rtl_writephy(tp, 0x1f, 0x0000);
2998 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2999
3000 /* improve 10M EEE waveform */
3001 rtl_writephy(tp, 0x1f, 0x0005);
3002 rtl_writephy(tp, 0x05, 0x8b86);
3003 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3004 rtl_writephy(tp, 0x1f, 0x0000);
3005
3006 /* Improve 2-pair detection performance */
3007 rtl_writephy(tp, 0x1f, 0x0005);
3008 rtl_writephy(tp, 0x05, 0x8b85);
3009 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3010 rtl_writephy(tp, 0x1f, 0x0000);
3011
3012 /* EEE setting */
3013 rtl_w1w0_eri(tp->mmio_addr, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003,
3014 ERIAR_EXGMAC);
3015 rtl_writephy(tp, 0x1f, 0x0005);
3016 rtl_writephy(tp, 0x05, 0x8b85);
3017 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3018 rtl_writephy(tp, 0x1f, 0x0004);
3019 rtl_writephy(tp, 0x1f, 0x0007);
3020 rtl_writephy(tp, 0x1e, 0x0020);
David S. Miller1805b2f2011-10-24 18:18:09 -04003021 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
Hayes Wang70090422011-07-06 15:58:06 +08003022 rtl_writephy(tp, 0x1f, 0x0002);
3023 rtl_writephy(tp, 0x1f, 0x0000);
3024 rtl_writephy(tp, 0x0d, 0x0007);
3025 rtl_writephy(tp, 0x0e, 0x003c);
3026 rtl_writephy(tp, 0x0d, 0x4007);
3027 rtl_writephy(tp, 0x0e, 0x0000);
3028 rtl_writephy(tp, 0x0d, 0x0000);
3029
3030 /* Green feature */
3031 rtl_writephy(tp, 0x1f, 0x0003);
3032 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3033 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3034 rtl_writephy(tp, 0x1f, 0x0000);
3035}
3036
Hayes Wang5f886e02012-03-30 14:33:03 +08003037static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3038{
3039 /* For 4-corner performance improve */
3040 rtl_writephy(tp, 0x1f, 0x0005);
3041 rtl_writephy(tp, 0x05, 0x8b80);
3042 rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3043 rtl_writephy(tp, 0x1f, 0x0000);
3044
3045 /* PHY auto speed down */
3046 rtl_writephy(tp, 0x1f, 0x0007);
3047 rtl_writephy(tp, 0x1e, 0x002d);
3048 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3049 rtl_writephy(tp, 0x1f, 0x0000);
3050 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3051
3052 /* Improve 10M EEE waveform */
3053 rtl_writephy(tp, 0x1f, 0x0005);
3054 rtl_writephy(tp, 0x05, 0x8b86);
3055 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3056 rtl_writephy(tp, 0x1f, 0x0000);
3057}
3058
Hayes Wangc2218922011-09-06 16:55:18 +08003059static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3060{
3061 static const struct phy_reg phy_reg_init[] = {
3062 /* Channel estimation fine tune */
3063 { 0x1f, 0x0003 },
3064 { 0x09, 0xa20f },
3065 { 0x1f, 0x0000 },
3066
3067 /* Modify green table for giga & fnet */
3068 { 0x1f, 0x0005 },
3069 { 0x05, 0x8b55 },
3070 { 0x06, 0x0000 },
3071 { 0x05, 0x8b5e },
3072 { 0x06, 0x0000 },
3073 { 0x05, 0x8b67 },
3074 { 0x06, 0x0000 },
3075 { 0x05, 0x8b70 },
3076 { 0x06, 0x0000 },
3077 { 0x1f, 0x0000 },
3078 { 0x1f, 0x0007 },
3079 { 0x1e, 0x0078 },
3080 { 0x17, 0x0000 },
3081 { 0x19, 0x00fb },
3082 { 0x1f, 0x0000 },
3083
3084 /* Modify green table for 10M */
3085 { 0x1f, 0x0005 },
3086 { 0x05, 0x8b79 },
3087 { 0x06, 0xaa00 },
3088 { 0x1f, 0x0000 },
3089
3090 /* Disable hiimpedance detection (RTCT) */
3091 { 0x1f, 0x0003 },
3092 { 0x01, 0x328a },
3093 { 0x1f, 0x0000 }
3094 };
3095
3096 rtl_apply_firmware(tp);
3097
3098 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3099
Hayes Wang5f886e02012-03-30 14:33:03 +08003100 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003101
3102 /* Improve 2-pair detection performance */
3103 rtl_writephy(tp, 0x1f, 0x0005);
3104 rtl_writephy(tp, 0x05, 0x8b85);
3105 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3106 rtl_writephy(tp, 0x1f, 0x0000);
3107}
3108
3109static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3110{
3111 rtl_apply_firmware(tp);
3112
Hayes Wang5f886e02012-03-30 14:33:03 +08003113 rtl8168f_hw_phy_config(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08003114}
3115
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003116static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3117{
3118 void __iomem *ioaddr = tp->mmio_addr;
3119 static const struct phy_reg phy_reg_init[] = {
3120 /* Channel estimation fine tune */
3121 { 0x1f, 0x0003 },
3122 { 0x09, 0xa20f },
3123 { 0x1f, 0x0000 },
3124
3125 /* Modify green table for giga & fnet */
3126 { 0x1f, 0x0005 },
3127 { 0x05, 0x8b55 },
3128 { 0x06, 0x0000 },
3129 { 0x05, 0x8b5e },
3130 { 0x06, 0x0000 },
3131 { 0x05, 0x8b67 },
3132 { 0x06, 0x0000 },
3133 { 0x05, 0x8b70 },
3134 { 0x06, 0x0000 },
3135 { 0x1f, 0x0000 },
3136 { 0x1f, 0x0007 },
3137 { 0x1e, 0x0078 },
3138 { 0x17, 0x0000 },
3139 { 0x19, 0x00aa },
3140 { 0x1f, 0x0000 },
3141
3142 /* Modify green table for 10M */
3143 { 0x1f, 0x0005 },
3144 { 0x05, 0x8b79 },
3145 { 0x06, 0xaa00 },
3146 { 0x1f, 0x0000 },
3147
3148 /* Disable hiimpedance detection (RTCT) */
3149 { 0x1f, 0x0003 },
3150 { 0x01, 0x328a },
3151 { 0x1f, 0x0000 }
3152 };
3153
3154
3155 rtl_apply_firmware(tp);
3156
3157 rtl8168f_hw_phy_config(tp);
3158
3159 /* Improve 2-pair detection performance */
3160 rtl_writephy(tp, 0x1f, 0x0005);
3161 rtl_writephy(tp, 0x05, 0x8b85);
3162 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3163 rtl_writephy(tp, 0x1f, 0x0000);
3164
3165 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3166
3167 /* Modify green table for giga */
3168 rtl_writephy(tp, 0x1f, 0x0005);
3169 rtl_writephy(tp, 0x05, 0x8b54);
3170 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3171 rtl_writephy(tp, 0x05, 0x8b5d);
3172 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3173 rtl_writephy(tp, 0x05, 0x8a7c);
3174 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3175 rtl_writephy(tp, 0x05, 0x8a7f);
3176 rtl_w1w0_phy(tp, 0x06, 0x0100, 0x0000);
3177 rtl_writephy(tp, 0x05, 0x8a82);
3178 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3179 rtl_writephy(tp, 0x05, 0x8a85);
3180 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3181 rtl_writephy(tp, 0x05, 0x8a88);
3182 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3183 rtl_writephy(tp, 0x1f, 0x0000);
3184
3185 /* uc same-seed solution */
3186 rtl_writephy(tp, 0x1f, 0x0005);
3187 rtl_writephy(tp, 0x05, 0x8b85);
3188 rtl_w1w0_phy(tp, 0x06, 0x8000, 0x0000);
3189 rtl_writephy(tp, 0x1f, 0x0000);
3190
3191 /* eee setting */
3192 rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
3193 rtl_writephy(tp, 0x1f, 0x0005);
3194 rtl_writephy(tp, 0x05, 0x8b85);
3195 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3196 rtl_writephy(tp, 0x1f, 0x0004);
3197 rtl_writephy(tp, 0x1f, 0x0007);
3198 rtl_writephy(tp, 0x1e, 0x0020);
3199 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
3200 rtl_writephy(tp, 0x1f, 0x0000);
3201 rtl_writephy(tp, 0x0d, 0x0007);
3202 rtl_writephy(tp, 0x0e, 0x003c);
3203 rtl_writephy(tp, 0x0d, 0x4007);
3204 rtl_writephy(tp, 0x0e, 0x0000);
3205 rtl_writephy(tp, 0x0d, 0x0000);
3206
3207 /* Green feature */
3208 rtl_writephy(tp, 0x1f, 0x0003);
3209 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3210 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3211 rtl_writephy(tp, 0x1f, 0x0000);
3212}
3213
françois romieu4da19632011-01-03 15:07:55 +00003214static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02003215{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003216 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003217 { 0x1f, 0x0003 },
3218 { 0x08, 0x441d },
3219 { 0x01, 0x9100 },
3220 { 0x1f, 0x0000 }
3221 };
3222
françois romieu4da19632011-01-03 15:07:55 +00003223 rtl_writephy(tp, 0x1f, 0x0000);
3224 rtl_patchphy(tp, 0x11, 1 << 12);
3225 rtl_patchphy(tp, 0x19, 1 << 13);
3226 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003227
françois romieu4da19632011-01-03 15:07:55 +00003228 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02003229}
3230
Hayes Wang5a5e4442011-02-22 17:26:21 +08003231static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
3232{
3233 static const struct phy_reg phy_reg_init[] = {
3234 { 0x1f, 0x0005 },
3235 { 0x1a, 0x0000 },
3236 { 0x1f, 0x0000 },
3237
3238 { 0x1f, 0x0004 },
3239 { 0x1c, 0x0000 },
3240 { 0x1f, 0x0000 },
3241
3242 { 0x1f, 0x0001 },
3243 { 0x15, 0x7701 },
3244 { 0x1f, 0x0000 }
3245 };
3246
3247 /* Disable ALDPS before ram code */
3248 rtl_writephy(tp, 0x1f, 0x0000);
3249 rtl_writephy(tp, 0x18, 0x0310);
3250 msleep(100);
3251
François Romieu953a12c2011-04-24 17:38:48 +02003252 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08003253
3254 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3255}
3256
Hayes Wang7e18dca2012-03-30 14:33:02 +08003257static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
3258{
3259 void __iomem *ioaddr = tp->mmio_addr;
3260
3261 /* Disable ALDPS before setting firmware */
3262 rtl_writephy(tp, 0x1f, 0x0000);
3263 rtl_writephy(tp, 0x18, 0x0310);
3264 msleep(20);
3265
3266 rtl_apply_firmware(tp);
3267
3268 /* EEE setting */
3269 rtl_eri_write(ioaddr, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
3270 rtl_writephy(tp, 0x1f, 0x0004);
3271 rtl_writephy(tp, 0x10, 0x401f);
3272 rtl_writephy(tp, 0x19, 0x7030);
3273 rtl_writephy(tp, 0x1f, 0x0000);
3274}
3275
Francois Romieu5615d9f2007-08-17 17:50:46 +02003276static void rtl_hw_phy_config(struct net_device *dev)
3277{
3278 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003279
3280 rtl8169_print_mac_version(tp);
3281
3282 switch (tp->mac_version) {
3283 case RTL_GIGA_MAC_VER_01:
3284 break;
3285 case RTL_GIGA_MAC_VER_02:
3286 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00003287 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003288 break;
3289 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00003290 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02003291 break;
françois romieu2e9558562009-08-10 19:44:19 +00003292 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00003293 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00003294 break;
françois romieu8c7006a2009-08-10 19:43:29 +00003295 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00003296 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00003297 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02003298 case RTL_GIGA_MAC_VER_07:
3299 case RTL_GIGA_MAC_VER_08:
3300 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00003301 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003302 break;
Francois Romieu236b8082008-05-30 16:11:48 +02003303 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00003304 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003305 break;
3306 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00003307 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003308 break;
3309 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00003310 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02003311 break;
Francois Romieu867763c2007-08-17 18:21:58 +02003312 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00003313 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003314 break;
3315 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00003316 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02003317 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02003318 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00003319 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02003320 break;
Francois Romieu197ff762008-06-28 13:16:02 +02003321 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00003322 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02003323 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02003324 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00003325 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02003326 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003327 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003328 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00003329 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02003330 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02003331 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00003332 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003333 break;
3334 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00003335 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00003336 break;
3337 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00003338 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02003339 break;
françois romieue6de30d2011-01-03 15:08:37 +00003340 case RTL_GIGA_MAC_VER_28:
3341 rtl8168d_4_hw_phy_config(tp);
3342 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08003343 case RTL_GIGA_MAC_VER_29:
3344 case RTL_GIGA_MAC_VER_30:
3345 rtl8105e_hw_phy_config(tp);
3346 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02003347 case RTL_GIGA_MAC_VER_31:
3348 /* None. */
3349 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00003350 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00003351 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003352 rtl8168e_1_hw_phy_config(tp);
3353 break;
3354 case RTL_GIGA_MAC_VER_34:
3355 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00003356 break;
Hayes Wangc2218922011-09-06 16:55:18 +08003357 case RTL_GIGA_MAC_VER_35:
3358 rtl8168f_1_hw_phy_config(tp);
3359 break;
3360 case RTL_GIGA_MAC_VER_36:
3361 rtl8168f_2_hw_phy_config(tp);
3362 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02003363
Hayes Wang7e18dca2012-03-30 14:33:02 +08003364 case RTL_GIGA_MAC_VER_37:
3365 rtl8402_hw_phy_config(tp);
3366 break;
3367
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003368 case RTL_GIGA_MAC_VER_38:
3369 rtl8411_hw_phy_config(tp);
3370 break;
3371
Francois Romieu5615d9f2007-08-17 17:50:46 +02003372 default:
3373 break;
3374 }
3375}
3376
Francois Romieuda78dbf2012-01-26 14:18:23 +01003377static void rtl_phy_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 struct timer_list *timer = &tp->timer;
3380 void __iomem *ioaddr = tp->mmio_addr;
3381 unsigned long timeout = RTL8169_PHY_TIMEOUT;
3382
Francois Romieubcf0bf92006-07-26 23:14:13 +02003383 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
françois romieu4da19632011-01-03 15:07:55 +00003385 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02003386 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 * A busy loop could burn quite a few cycles on nowadays CPU.
3388 * Let's delay the execution of the timer for a few ticks.
3389 */
3390 timeout = HZ/10;
3391 goto out_mod_timer;
3392 }
3393
3394 if (tp->link_ok(ioaddr))
Francois Romieuda78dbf2012-01-26 14:18:23 +01003395 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Francois Romieuda78dbf2012-01-26 14:18:23 +01003397 netif_warn(tp, link, tp->dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
françois romieu4da19632011-01-03 15:07:55 +00003399 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400
3401out_mod_timer:
3402 mod_timer(timer, jiffies + timeout);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003403}
3404
3405static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
3406{
Francois Romieuda78dbf2012-01-26 14:18:23 +01003407 if (!test_and_set_bit(flag, tp->wk.flags))
3408 schedule_work(&tp->wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01003409}
3410
3411static void rtl8169_phy_timer(unsigned long __opaque)
3412{
3413 struct net_device *dev = (struct net_device *)__opaque;
3414 struct rtl8169_private *tp = netdev_priv(dev);
3415
Francois Romieu98ddf982012-01-31 10:47:34 +01003416 rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417}
3418
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
3420 void __iomem *ioaddr)
3421{
3422 iounmap(ioaddr);
3423 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003424 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 pci_disable_device(pdev);
3426 free_netdev(dev);
3427}
3428
Francois Romieubf793292006-11-01 00:53:05 +01003429static void rtl8169_phy_reset(struct net_device *dev,
3430 struct rtl8169_private *tp)
3431{
Francois Romieu07d3f512007-02-21 22:40:46 +01003432 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01003433
françois romieu4da19632011-01-03 15:07:55 +00003434 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01003435 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00003436 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01003437 return;
3438 msleep(1);
3439 }
Joe Perchesbf82c182010-02-09 11:49:50 +00003440 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01003441}
3442
David S. Miller8decf862011-09-22 03:23:13 -04003443static bool rtl_tbi_enabled(struct rtl8169_private *tp)
3444{
3445 void __iomem *ioaddr = tp->mmio_addr;
3446
3447 return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
3448 (RTL_R8(PHYstatus) & TBI_Enable);
3449}
3450
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003451static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003453 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003454
Francois Romieu5615d9f2007-08-17 17:50:46 +02003455 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003456
Marcus Sundberg773328942008-07-10 21:28:08 +02003457 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
3458 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3459 RTL_W8(0x82, 0x01);
3460 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003461
Francois Romieu6dccd162007-02-13 23:38:05 +01003462 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
3463
3464 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3465 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003466
Francois Romieubcf0bf92006-07-26 23:14:13 +02003467 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003468 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3469 RTL_W8(0x82, 0x01);
3470 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00003471 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003472 }
3473
Francois Romieubf793292006-11-01 00:53:05 +01003474 rtl8169_phy_reset(dev, tp);
3475
Oliver Neukum54405cd2011-01-06 21:55:13 +01003476 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02003477 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3478 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3479 (tp->mii.supports_gmii ?
3480 ADVERTISED_1000baseT_Half |
3481 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003482
David S. Miller8decf862011-09-22 03:23:13 -04003483 if (rtl_tbi_enabled(tp))
Joe Perchesbf82c182010-02-09 11:49:50 +00003484 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003485}
3486
Francois Romieu773d2022007-01-31 23:47:43 +01003487static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
3488{
3489 void __iomem *ioaddr = tp->mmio_addr;
3490 u32 high;
3491 u32 low;
3492
3493 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
3494 high = addr[4] | (addr[5] << 8);
3495
Francois Romieuda78dbf2012-01-26 14:18:23 +01003496 rtl_lock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003497
3498 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00003499
Francois Romieu773d2022007-01-31 23:47:43 +01003500 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00003501 RTL_R32(MAC4);
3502
Francois Romieu78f1cd02010-03-27 19:35:46 -07003503 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00003504 RTL_R32(MAC0);
3505
françois romieuc28aa382011-08-02 03:53:43 +00003506 if (tp->mac_version == RTL_GIGA_MAC_VER_34) {
3507 const struct exgmac_reg e[] = {
3508 { .addr = 0xe0, ERIAR_MASK_1111, .val = low },
3509 { .addr = 0xe4, ERIAR_MASK_1111, .val = high },
3510 { .addr = 0xf0, ERIAR_MASK_1111, .val = low << 16 },
3511 { .addr = 0xf4, ERIAR_MASK_1111, .val = high << 16 |
3512 low >> 16 },
3513 };
3514
3515 rtl_write_exgmac_batch(ioaddr, e, ARRAY_SIZE(e));
3516 }
3517
Francois Romieu773d2022007-01-31 23:47:43 +01003518 RTL_W8(Cfg9346, Cfg9346_Lock);
3519
Francois Romieuda78dbf2012-01-26 14:18:23 +01003520 rtl_unlock_work(tp);
Francois Romieu773d2022007-01-31 23:47:43 +01003521}
3522
3523static int rtl_set_mac_address(struct net_device *dev, void *p)
3524{
3525 struct rtl8169_private *tp = netdev_priv(dev);
3526 struct sockaddr *addr = p;
3527
3528 if (!is_valid_ether_addr(addr->sa_data))
3529 return -EADDRNOTAVAIL;
3530
3531 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3532
3533 rtl_rar_set(tp, dev->dev_addr);
3534
3535 return 0;
3536}
3537
Francois Romieu5f787a12006-08-17 13:02:36 +02003538static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3539{
3540 struct rtl8169_private *tp = netdev_priv(dev);
3541 struct mii_ioctl_data *data = if_mii(ifr);
3542
Francois Romieu8b4ab282008-11-19 22:05:25 -08003543 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
3544}
Francois Romieu5f787a12006-08-17 13:02:36 +02003545
Francois Romieucecb5fd2011-04-01 10:21:07 +02003546static int rtl_xmii_ioctl(struct rtl8169_private *tp,
3547 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08003548{
Francois Romieu5f787a12006-08-17 13:02:36 +02003549 switch (cmd) {
3550 case SIOCGMIIPHY:
3551 data->phy_id = 32; /* Internal PHY */
3552 return 0;
3553
3554 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003555 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02003556 return 0;
3557
3558 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003559 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02003560 return 0;
3561 }
3562 return -EOPNOTSUPP;
3563}
3564
Francois Romieu8b4ab282008-11-19 22:05:25 -08003565static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3566{
3567 return -EOPNOTSUPP;
3568}
3569
Francois Romieufbac58f2007-10-04 22:51:38 +02003570static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3571{
3572 if (tp->features & RTL_FEATURE_MSI) {
3573 pci_disable_msi(pdev);
3574 tp->features &= ~RTL_FEATURE_MSI;
3575 }
3576}
3577
françois romieuc0e45c12011-01-03 15:08:04 +00003578static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
3579{
3580 struct mdio_ops *ops = &tp->mdio_ops;
3581
3582 switch (tp->mac_version) {
3583 case RTL_GIGA_MAC_VER_27:
3584 ops->write = r8168dp_1_mdio_write;
3585 ops->read = r8168dp_1_mdio_read;
3586 break;
françois romieue6de30d2011-01-03 15:08:37 +00003587 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003588 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003589 ops->write = r8168dp_2_mdio_write;
3590 ops->read = r8168dp_2_mdio_read;
3591 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003592 default:
3593 ops->write = r8169_mdio_write;
3594 ops->read = r8169_mdio_read;
3595 break;
3596 }
3597}
3598
David S. Miller1805b2f2011-10-24 18:18:09 -04003599static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
3600{
3601 void __iomem *ioaddr = tp->mmio_addr;
3602
3603 switch (tp->mac_version) {
3604 case RTL_GIGA_MAC_VER_29:
3605 case RTL_GIGA_MAC_VER_30:
3606 case RTL_GIGA_MAC_VER_32:
3607 case RTL_GIGA_MAC_VER_33:
3608 case RTL_GIGA_MAC_VER_34:
Hayes Wang7e18dca2012-03-30 14:33:02 +08003609 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003610 case RTL_GIGA_MAC_VER_38:
David S. Miller1805b2f2011-10-24 18:18:09 -04003611 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3612 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3613 break;
3614 default:
3615 break;
3616 }
3617}
3618
3619static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
3620{
3621 if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
3622 return false;
3623
3624 rtl_writephy(tp, 0x1f, 0x0000);
3625 rtl_writephy(tp, MII_BMCR, 0x0000);
3626
3627 rtl_wol_suspend_quirk(tp);
3628
3629 return true;
3630}
3631
françois romieu065c27c2011-01-03 15:08:12 +00003632static void r810x_phy_power_down(struct rtl8169_private *tp)
3633{
3634 rtl_writephy(tp, 0x1f, 0x0000);
3635 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3636}
3637
3638static void r810x_phy_power_up(struct rtl8169_private *tp)
3639{
3640 rtl_writephy(tp, 0x1f, 0x0000);
3641 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3642}
3643
3644static void r810x_pll_power_down(struct rtl8169_private *tp)
3645{
Hayes Wang00042992012-03-30 14:33:00 +08003646 void __iomem *ioaddr = tp->mmio_addr;
3647
David S. Miller1805b2f2011-10-24 18:18:09 -04003648 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003649 return;
françois romieu065c27c2011-01-03 15:08:12 +00003650
3651 r810x_phy_power_down(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003652
3653 switch (tp->mac_version) {
3654 case RTL_GIGA_MAC_VER_07:
3655 case RTL_GIGA_MAC_VER_08:
3656 case RTL_GIGA_MAC_VER_09:
3657 case RTL_GIGA_MAC_VER_10:
3658 case RTL_GIGA_MAC_VER_13:
3659 case RTL_GIGA_MAC_VER_16:
3660 break;
3661 default:
3662 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3663 break;
3664 }
françois romieu065c27c2011-01-03 15:08:12 +00003665}
3666
3667static void r810x_pll_power_up(struct rtl8169_private *tp)
3668{
Hayes Wang00042992012-03-30 14:33:00 +08003669 void __iomem *ioaddr = tp->mmio_addr;
3670
françois romieu065c27c2011-01-03 15:08:12 +00003671 r810x_phy_power_up(tp);
Hayes Wang00042992012-03-30 14:33:00 +08003672
3673 switch (tp->mac_version) {
3674 case RTL_GIGA_MAC_VER_07:
3675 case RTL_GIGA_MAC_VER_08:
3676 case RTL_GIGA_MAC_VER_09:
3677 case RTL_GIGA_MAC_VER_10:
3678 case RTL_GIGA_MAC_VER_13:
3679 case RTL_GIGA_MAC_VER_16:
3680 break;
3681 default:
3682 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3683 break;
3684 }
françois romieu065c27c2011-01-03 15:08:12 +00003685}
3686
3687static void r8168_phy_power_up(struct rtl8169_private *tp)
3688{
3689 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003690 switch (tp->mac_version) {
3691 case RTL_GIGA_MAC_VER_11:
3692 case RTL_GIGA_MAC_VER_12:
3693 case RTL_GIGA_MAC_VER_17:
3694 case RTL_GIGA_MAC_VER_18:
3695 case RTL_GIGA_MAC_VER_19:
3696 case RTL_GIGA_MAC_VER_20:
3697 case RTL_GIGA_MAC_VER_21:
3698 case RTL_GIGA_MAC_VER_22:
3699 case RTL_GIGA_MAC_VER_23:
3700 case RTL_GIGA_MAC_VER_24:
3701 case RTL_GIGA_MAC_VER_25:
3702 case RTL_GIGA_MAC_VER_26:
3703 case RTL_GIGA_MAC_VER_27:
3704 case RTL_GIGA_MAC_VER_28:
3705 case RTL_GIGA_MAC_VER_31:
3706 rtl_writephy(tp, 0x0e, 0x0000);
3707 break;
3708 default:
3709 break;
3710 }
françois romieu065c27c2011-01-03 15:08:12 +00003711 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3712}
3713
3714static void r8168_phy_power_down(struct rtl8169_private *tp)
3715{
3716 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003717 switch (tp->mac_version) {
3718 case RTL_GIGA_MAC_VER_32:
3719 case RTL_GIGA_MAC_VER_33:
3720 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3721 break;
3722
3723 case RTL_GIGA_MAC_VER_11:
3724 case RTL_GIGA_MAC_VER_12:
3725 case RTL_GIGA_MAC_VER_17:
3726 case RTL_GIGA_MAC_VER_18:
3727 case RTL_GIGA_MAC_VER_19:
3728 case RTL_GIGA_MAC_VER_20:
3729 case RTL_GIGA_MAC_VER_21:
3730 case RTL_GIGA_MAC_VER_22:
3731 case RTL_GIGA_MAC_VER_23:
3732 case RTL_GIGA_MAC_VER_24:
3733 case RTL_GIGA_MAC_VER_25:
3734 case RTL_GIGA_MAC_VER_26:
3735 case RTL_GIGA_MAC_VER_27:
3736 case RTL_GIGA_MAC_VER_28:
3737 case RTL_GIGA_MAC_VER_31:
3738 rtl_writephy(tp, 0x0e, 0x0200);
3739 default:
3740 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3741 break;
3742 }
françois romieu065c27c2011-01-03 15:08:12 +00003743}
3744
3745static void r8168_pll_power_down(struct rtl8169_private *tp)
3746{
3747 void __iomem *ioaddr = tp->mmio_addr;
3748
Francois Romieucecb5fd2011-04-01 10:21:07 +02003749 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3750 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3751 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003752 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003753 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003754 }
françois romieu065c27c2011-01-03 15:08:12 +00003755
Francois Romieucecb5fd2011-04-01 10:21:07 +02003756 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
3757 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00003758 (RTL_R16(CPlusCmd) & ASF)) {
3759 return;
3760 }
3761
hayeswang01dc7fe2011-03-21 01:50:28 +00003762 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3763 tp->mac_version == RTL_GIGA_MAC_VER_33)
3764 rtl_ephy_write(ioaddr, 0x19, 0xff64);
3765
David S. Miller1805b2f2011-10-24 18:18:09 -04003766 if (rtl_wol_pll_power_down(tp))
françois romieu065c27c2011-01-03 15:08:12 +00003767 return;
françois romieu065c27c2011-01-03 15:08:12 +00003768
3769 r8168_phy_power_down(tp);
3770
3771 switch (tp->mac_version) {
3772 case RTL_GIGA_MAC_VER_25:
3773 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003774 case RTL_GIGA_MAC_VER_27:
3775 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003776 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003777 case RTL_GIGA_MAC_VER_32:
3778 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003779 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3780 break;
3781 }
3782}
3783
3784static void r8168_pll_power_up(struct rtl8169_private *tp)
3785{
3786 void __iomem *ioaddr = tp->mmio_addr;
3787
françois romieu065c27c2011-01-03 15:08:12 +00003788 switch (tp->mac_version) {
3789 case RTL_GIGA_MAC_VER_25:
3790 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003791 case RTL_GIGA_MAC_VER_27:
3792 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003793 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003794 case RTL_GIGA_MAC_VER_32:
3795 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003796 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3797 break;
3798 }
3799
3800 r8168_phy_power_up(tp);
3801}
3802
Francois Romieud58d46b2011-05-03 16:38:29 +02003803static void rtl_generic_op(struct rtl8169_private *tp,
3804 void (*op)(struct rtl8169_private *))
françois romieu065c27c2011-01-03 15:08:12 +00003805{
3806 if (op)
3807 op(tp);
3808}
3809
3810static void rtl_pll_power_down(struct rtl8169_private *tp)
3811{
Francois Romieud58d46b2011-05-03 16:38:29 +02003812 rtl_generic_op(tp, tp->pll_power_ops.down);
françois romieu065c27c2011-01-03 15:08:12 +00003813}
3814
3815static void rtl_pll_power_up(struct rtl8169_private *tp)
3816{
Francois Romieud58d46b2011-05-03 16:38:29 +02003817 rtl_generic_op(tp, tp->pll_power_ops.up);
françois romieu065c27c2011-01-03 15:08:12 +00003818}
3819
3820static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
3821{
3822 struct pll_power_ops *ops = &tp->pll_power_ops;
3823
3824 switch (tp->mac_version) {
3825 case RTL_GIGA_MAC_VER_07:
3826 case RTL_GIGA_MAC_VER_08:
3827 case RTL_GIGA_MAC_VER_09:
3828 case RTL_GIGA_MAC_VER_10:
3829 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08003830 case RTL_GIGA_MAC_VER_29:
3831 case RTL_GIGA_MAC_VER_30:
Hayes Wang7e18dca2012-03-30 14:33:02 +08003832 case RTL_GIGA_MAC_VER_37:
françois romieu065c27c2011-01-03 15:08:12 +00003833 ops->down = r810x_pll_power_down;
3834 ops->up = r810x_pll_power_up;
3835 break;
3836
3837 case RTL_GIGA_MAC_VER_11:
3838 case RTL_GIGA_MAC_VER_12:
3839 case RTL_GIGA_MAC_VER_17:
3840 case RTL_GIGA_MAC_VER_18:
3841 case RTL_GIGA_MAC_VER_19:
3842 case RTL_GIGA_MAC_VER_20:
3843 case RTL_GIGA_MAC_VER_21:
3844 case RTL_GIGA_MAC_VER_22:
3845 case RTL_GIGA_MAC_VER_23:
3846 case RTL_GIGA_MAC_VER_24:
3847 case RTL_GIGA_MAC_VER_25:
3848 case RTL_GIGA_MAC_VER_26:
3849 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00003850 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003851 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003852 case RTL_GIGA_MAC_VER_32:
3853 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003854 case RTL_GIGA_MAC_VER_34:
Hayes Wangc2218922011-09-06 16:55:18 +08003855 case RTL_GIGA_MAC_VER_35:
3856 case RTL_GIGA_MAC_VER_36:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08003857 case RTL_GIGA_MAC_VER_38:
françois romieu065c27c2011-01-03 15:08:12 +00003858 ops->down = r8168_pll_power_down;
3859 ops->up = r8168_pll_power_up;
3860 break;
3861
3862 default:
3863 ops->down = NULL;
3864 ops->up = NULL;
3865 break;
3866 }
3867}
3868
Hayes Wange542a222011-07-06 15:58:04 +08003869static void rtl_init_rxcfg(struct rtl8169_private *tp)
3870{
3871 void __iomem *ioaddr = tp->mmio_addr;
3872
3873 switch (tp->mac_version) {
3874 case RTL_GIGA_MAC_VER_01:
3875 case RTL_GIGA_MAC_VER_02:
3876 case RTL_GIGA_MAC_VER_03:
3877 case RTL_GIGA_MAC_VER_04:
3878 case RTL_GIGA_MAC_VER_05:
3879 case RTL_GIGA_MAC_VER_06:
3880 case RTL_GIGA_MAC_VER_10:
3881 case RTL_GIGA_MAC_VER_11:
3882 case RTL_GIGA_MAC_VER_12:
3883 case RTL_GIGA_MAC_VER_13:
3884 case RTL_GIGA_MAC_VER_14:
3885 case RTL_GIGA_MAC_VER_15:
3886 case RTL_GIGA_MAC_VER_16:
3887 case RTL_GIGA_MAC_VER_17:
3888 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
3889 break;
3890 case RTL_GIGA_MAC_VER_18:
3891 case RTL_GIGA_MAC_VER_19:
3892 case RTL_GIGA_MAC_VER_20:
3893 case RTL_GIGA_MAC_VER_21:
3894 case RTL_GIGA_MAC_VER_22:
3895 case RTL_GIGA_MAC_VER_23:
3896 case RTL_GIGA_MAC_VER_24:
françois romieueb2dc352012-06-20 12:09:18 +00003897 case RTL_GIGA_MAC_VER_34:
Hayes Wange542a222011-07-06 15:58:04 +08003898 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
3899 break;
3900 default:
3901 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
3902 break;
3903 }
3904}
3905
Hayes Wang92fc43b2011-07-06 15:58:03 +08003906static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
3907{
3908 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
3909}
3910
Francois Romieud58d46b2011-05-03 16:38:29 +02003911static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
3912{
françois romieu9c5028e2012-03-02 04:43:14 +00003913 void __iomem *ioaddr = tp->mmio_addr;
3914
3915 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02003916 rtl_generic_op(tp, tp->jumbo_ops.enable);
françois romieu9c5028e2012-03-02 04:43:14 +00003917 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02003918}
3919
3920static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
3921{
françois romieu9c5028e2012-03-02 04:43:14 +00003922 void __iomem *ioaddr = tp->mmio_addr;
3923
3924 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieud58d46b2011-05-03 16:38:29 +02003925 rtl_generic_op(tp, tp->jumbo_ops.disable);
françois romieu9c5028e2012-03-02 04:43:14 +00003926 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieud58d46b2011-05-03 16:38:29 +02003927}
3928
3929static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
3930{
3931 void __iomem *ioaddr = tp->mmio_addr;
3932
3933 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3934 RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
3935 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
3936}
3937
3938static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
3939{
3940 void __iomem *ioaddr = tp->mmio_addr;
3941
3942 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3943 RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
3944 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
3945}
3946
3947static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
3948{
3949 void __iomem *ioaddr = tp->mmio_addr;
3950
3951 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3952}
3953
3954static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
3955{
3956 void __iomem *ioaddr = tp->mmio_addr;
3957
3958 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3959}
3960
3961static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
3962{
3963 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02003964
3965 RTL_W8(MaxTxPacketSize, 0x3f);
3966 RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3967 RTL_W8(Config4, RTL_R8(Config4) | 0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01003968 rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02003969}
3970
3971static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
3972{
3973 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieud58d46b2011-05-03 16:38:29 +02003974
3975 RTL_W8(MaxTxPacketSize, 0x0c);
3976 RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3977 RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
Francois Romieu4512ff92011-12-22 18:59:37 +01003978 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieud58d46b2011-05-03 16:38:29 +02003979}
3980
3981static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
3982{
3983 rtl_tx_performance_tweak(tp->pci_dev,
3984 (0x2 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
3985}
3986
3987static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
3988{
3989 rtl_tx_performance_tweak(tp->pci_dev,
3990 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
3991}
3992
3993static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
3994{
3995 void __iomem *ioaddr = tp->mmio_addr;
3996
3997 r8168b_0_hw_jumbo_enable(tp);
3998
3999 RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
4000}
4001
4002static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
4003{
4004 void __iomem *ioaddr = tp->mmio_addr;
4005
4006 r8168b_0_hw_jumbo_disable(tp);
4007
4008 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
4009}
4010
4011static void __devinit rtl_init_jumbo_ops(struct rtl8169_private *tp)
4012{
4013 struct jumbo_ops *ops = &tp->jumbo_ops;
4014
4015 switch (tp->mac_version) {
4016 case RTL_GIGA_MAC_VER_11:
4017 ops->disable = r8168b_0_hw_jumbo_disable;
4018 ops->enable = r8168b_0_hw_jumbo_enable;
4019 break;
4020 case RTL_GIGA_MAC_VER_12:
4021 case RTL_GIGA_MAC_VER_17:
4022 ops->disable = r8168b_1_hw_jumbo_disable;
4023 ops->enable = r8168b_1_hw_jumbo_enable;
4024 break;
4025 case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
4026 case RTL_GIGA_MAC_VER_19:
4027 case RTL_GIGA_MAC_VER_20:
4028 case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
4029 case RTL_GIGA_MAC_VER_22:
4030 case RTL_GIGA_MAC_VER_23:
4031 case RTL_GIGA_MAC_VER_24:
4032 case RTL_GIGA_MAC_VER_25:
4033 case RTL_GIGA_MAC_VER_26:
4034 ops->disable = r8168c_hw_jumbo_disable;
4035 ops->enable = r8168c_hw_jumbo_enable;
4036 break;
4037 case RTL_GIGA_MAC_VER_27:
4038 case RTL_GIGA_MAC_VER_28:
4039 ops->disable = r8168dp_hw_jumbo_disable;
4040 ops->enable = r8168dp_hw_jumbo_enable;
4041 break;
4042 case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
4043 case RTL_GIGA_MAC_VER_32:
4044 case RTL_GIGA_MAC_VER_33:
4045 case RTL_GIGA_MAC_VER_34:
4046 ops->disable = r8168e_hw_jumbo_disable;
4047 ops->enable = r8168e_hw_jumbo_enable;
4048 break;
4049
4050 /*
4051 * No action needed for jumbo frames with 8169.
4052 * No jumbo for 810x at all.
4053 */
4054 default:
4055 ops->disable = NULL;
4056 ops->enable = NULL;
4057 break;
4058 }
4059}
4060
Francois Romieu6f43adc2011-04-29 15:05:51 +02004061static void rtl_hw_reset(struct rtl8169_private *tp)
4062{
4063 void __iomem *ioaddr = tp->mmio_addr;
4064 int i;
4065
4066 /* Soft reset the chip. */
4067 RTL_W8(ChipCmd, CmdReset);
4068
4069 /* Check that the chip has finished the reset. */
4070 for (i = 0; i < 100; i++) {
4071 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
4072 break;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004073 udelay(100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02004074 }
4075}
4076
Francois Romieub6ffd972011-06-17 17:00:05 +02004077static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
4078{
4079 struct rtl_fw *rtl_fw;
4080 const char *name;
4081 int rc = -ENOMEM;
4082
4083 name = rtl_lookup_firmware_name(tp);
4084 if (!name)
4085 goto out_no_firmware;
4086
4087 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
4088 if (!rtl_fw)
4089 goto err_warn;
4090
4091 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
4092 if (rc < 0)
4093 goto err_free;
4094
Francois Romieufd112f22011-06-18 00:10:29 +02004095 rc = rtl_check_firmware(tp, rtl_fw);
4096 if (rc < 0)
4097 goto err_release_firmware;
4098
Francois Romieub6ffd972011-06-17 17:00:05 +02004099 tp->rtl_fw = rtl_fw;
4100out:
4101 return;
4102
Francois Romieufd112f22011-06-18 00:10:29 +02004103err_release_firmware:
4104 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02004105err_free:
4106 kfree(rtl_fw);
4107err_warn:
4108 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
4109 name, rc);
4110out_no_firmware:
4111 tp->rtl_fw = NULL;
4112 goto out;
4113}
4114
François Romieu953a12c2011-04-24 17:38:48 +02004115static void rtl_request_firmware(struct rtl8169_private *tp)
4116{
Francois Romieub6ffd972011-06-17 17:00:05 +02004117 if (IS_ERR(tp->rtl_fw))
4118 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02004119}
4120
Hayes Wang92fc43b2011-07-06 15:58:03 +08004121static void rtl_rx_close(struct rtl8169_private *tp)
4122{
4123 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08004124
Francois Romieu1687b562011-07-19 17:21:29 +02004125 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004126}
4127
françois romieue6de30d2011-01-03 15:08:37 +00004128static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129{
françois romieue6de30d2011-01-03 15:08:37 +00004130 void __iomem *ioaddr = tp->mmio_addr;
4131
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 /* Disable interrupts */
françois romieu811fd302011-12-04 20:30:45 +00004133 rtl8169_irq_mask_and_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Hayes Wang92fc43b2011-07-06 15:58:03 +08004135 rtl_rx_close(tp);
4136
Hayes Wang5d2e1952011-02-22 17:26:22 +08004137 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00004138 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4139 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieue6de30d2011-01-03 15:08:37 +00004140 while (RTL_R8(TxPoll) & NPQ)
4141 udelay(20);
Hayes Wangc2218922011-09-06 16:55:18 +08004142 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
4143 tp->mac_version == RTL_GIGA_MAC_VER_35 ||
Hayes Wang7e18dca2012-03-30 14:33:02 +08004144 tp->mac_version == RTL_GIGA_MAC_VER_36 ||
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004145 tp->mac_version == RTL_GIGA_MAC_VER_37 ||
4146 tp->mac_version == RTL_GIGA_MAC_VER_38) {
David S. Miller8decf862011-09-22 03:23:13 -04004147 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
Hayes Wang70090422011-07-06 15:58:06 +08004148 while (!(RTL_R32(TxConfig) & TXCFG_EMPTY))
4149 udelay(100);
Hayes Wang92fc43b2011-07-06 15:58:03 +08004150 } else {
4151 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
4152 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00004153 }
4154
Hayes Wang92fc43b2011-07-06 15:58:03 +08004155 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156}
4157
Francois Romieu7f796d832007-06-11 23:04:41 +02004158static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004159{
4160 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01004161
4162 /* Set DMA burst size and Interframe Gap Time */
4163 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4164 (InterFrameGap << TxInterFrameGapShift));
4165}
4166
Francois Romieu07ce4062007-02-23 23:36:39 +01004167static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168{
4169 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170
Francois Romieu07ce4062007-02-23 23:36:39 +01004171 tp->hw_start(dev);
4172
Francois Romieuda78dbf2012-01-26 14:18:23 +01004173 rtl_irq_enable_all(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004174}
4175
Francois Romieu7f796d832007-06-11 23:04:41 +02004176static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
4177 void __iomem *ioaddr)
4178{
4179 /*
4180 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
4181 * register to be written before TxDescAddrLow to work.
4182 * Switching from MMIO to I/O access fixes the issue as well.
4183 */
4184 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004185 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004186 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004187 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02004188}
4189
4190static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
4191{
4192 u16 cmd;
4193
4194 cmd = RTL_R16(CPlusCmd);
4195 RTL_W16(CPlusCmd, cmd);
4196 return cmd;
4197}
4198
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07004199static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02004200{
4201 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00004202 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02004203}
4204
Francois Romieu6dccd162007-02-13 23:38:05 +01004205static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
4206{
Francois Romieu37441002011-06-17 22:58:54 +02004207 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01004208 u32 mac_version;
4209 u32 clk;
4210 u32 val;
4211 } cfg2_info [] = {
4212 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
4213 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
4214 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
4215 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02004216 };
4217 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01004218 unsigned int i;
4219 u32 clk;
4220
4221 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01004222 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01004223 if ((p->mac_version == mac_version) && (p->clk == clk)) {
4224 RTL_W32(0x7c, p->val);
4225 break;
4226 }
4227 }
4228}
4229
Francois Romieue6b763e2012-03-08 09:35:39 +01004230static void rtl_set_rx_mode(struct net_device *dev)
4231{
4232 struct rtl8169_private *tp = netdev_priv(dev);
4233 void __iomem *ioaddr = tp->mmio_addr;
4234 u32 mc_filter[2]; /* Multicast hash filter */
4235 int rx_mode;
4236 u32 tmp = 0;
4237
4238 if (dev->flags & IFF_PROMISC) {
4239 /* Unconditionally log net taps. */
4240 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
4241 rx_mode =
4242 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4243 AcceptAllPhys;
4244 mc_filter[1] = mc_filter[0] = 0xffffffff;
4245 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
4246 (dev->flags & IFF_ALLMULTI)) {
4247 /* Too many to filter perfectly -- accept all multicasts. */
4248 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4249 mc_filter[1] = mc_filter[0] = 0xffffffff;
4250 } else {
4251 struct netdev_hw_addr *ha;
4252
4253 rx_mode = AcceptBroadcast | AcceptMyPhys;
4254 mc_filter[1] = mc_filter[0] = 0;
4255 netdev_for_each_mc_addr(ha, dev) {
4256 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
4257 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4258 rx_mode |= AcceptMulticast;
4259 }
4260 }
4261
4262 if (dev->features & NETIF_F_RXALL)
4263 rx_mode |= (AcceptErr | AcceptRunt);
4264
4265 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
4266
4267 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
4268 u32 data = mc_filter[0];
4269
4270 mc_filter[0] = swab32(mc_filter[1]);
4271 mc_filter[1] = swab32(data);
4272 }
4273
4274 RTL_W32(MAR0 + 4, mc_filter[1]);
4275 RTL_W32(MAR0 + 0, mc_filter[0]);
4276
4277 RTL_W32(RxConfig, tmp);
4278}
4279
Francois Romieu07ce4062007-02-23 23:36:39 +01004280static void rtl_hw_start_8169(struct net_device *dev)
4281{
4282 struct rtl8169_private *tp = netdev_priv(dev);
4283 void __iomem *ioaddr = tp->mmio_addr;
4284 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01004285
Francois Romieu9cb427b2006-11-02 00:10:16 +01004286 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
4287 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
4288 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4289 }
4290
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02004292 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4293 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4294 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4295 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004296 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4297
Hayes Wange542a222011-07-06 15:58:04 +08004298 rtl_init_rxcfg(tp);
4299
françois romieuf0298f82011-01-03 15:07:42 +00004300 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004302 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
Francois Romieucecb5fd2011-04-01 10:21:07 +02004304 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4305 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4306 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4307 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02004308 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309
Francois Romieu7f796d832007-06-11 23:04:41 +02004310 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004311
Francois Romieucecb5fd2011-04-01 10:21:07 +02004312 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4313 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02004314 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02004316 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 }
4318
Francois Romieubcf0bf92006-07-26 23:14:13 +02004319 RTL_W16(CPlusCmd, tp->cp_cmd);
4320
Francois Romieu6dccd162007-02-13 23:38:05 +01004321 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
4322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 /*
4324 * Undocumented corner. Supposedly:
4325 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4326 */
4327 RTL_W16(IntrMitigate, 0x0000);
4328
Francois Romieu7f796d832007-06-11 23:04:41 +02004329 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01004330
Francois Romieucecb5fd2011-04-01 10:21:07 +02004331 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
4332 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
4333 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
4334 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02004335 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4336 rtl_set_rx_tx_config_registers(tp);
4337 }
4338
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02004340
4341 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4342 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
4344 RTL_W32(RxMissed, 0);
4345
Francois Romieu07ce4062007-02-23 23:36:39 +01004346 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347
4348 /* no early-rx interrupts */
4349 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01004350}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004352static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
4353{
4354 if (tp->csi_ops.write)
4355 tp->csi_ops.write(tp->mmio_addr, addr, value);
4356}
4357
4358static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
4359{
4360 if (tp->csi_ops.read)
4361 return tp->csi_ops.read(tp->mmio_addr, addr);
4362 else
4363 return ~0;
4364}
4365
4366static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02004367{
4368 u32 csi;
4369
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004370 csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
4371 rtl_csi_write(tp, 0x070c, csi | bits);
françois romieu650e8d52011-01-03 15:08:29 +00004372}
4373
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004374static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00004375{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004376 rtl_csi_access_enable(tp, 0x17000000);
françois romieue6de30d2011-01-03 15:08:37 +00004377}
4378
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004379static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
françois romieu650e8d52011-01-03 15:08:29 +00004380{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004381 rtl_csi_access_enable(tp, 0x27000000);
4382}
4383
4384static void r8169_csi_write(void __iomem *ioaddr, int addr, int value)
4385{
4386 unsigned int i;
4387
4388 RTL_W32(CSIDR, value);
4389 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4390 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4391
4392 for (i = 0; i < 100; i++) {
4393 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
4394 break;
4395 udelay(10);
4396 }
4397}
4398
4399static u32 r8169_csi_read(void __iomem *ioaddr, int addr)
4400{
4401 u32 value = ~0x00;
4402 unsigned int i;
4403
4404 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
4405 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4406
4407 for (i = 0; i < 100; i++) {
4408 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
4409 value = RTL_R32(CSIDR);
4410 break;
4411 }
4412 udelay(10);
4413 }
4414
4415 return value;
4416}
4417
Hayes Wang7e18dca2012-03-30 14:33:02 +08004418static void r8402_csi_write(void __iomem *ioaddr, int addr, int value)
4419{
4420 unsigned int i;
4421
4422 RTL_W32(CSIDR, value);
4423 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4424 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
4425 CSIAR_FUNC_NIC);
4426
4427 for (i = 0; i < 100; i++) {
4428 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
4429 break;
4430 udelay(10);
4431 }
4432}
4433
4434static u32 r8402_csi_read(void __iomem *ioaddr, int addr)
4435{
4436 u32 value = ~0x00;
4437 unsigned int i;
4438
4439 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
4440 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4441
4442 for (i = 0; i < 100; i++) {
4443 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
4444 value = RTL_R32(CSIDR);
4445 break;
4446 }
4447 udelay(10);
4448 }
4449
4450 return value;
4451}
4452
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004453static void __devinit rtl_init_csi_ops(struct rtl8169_private *tp)
4454{
4455 struct csi_ops *ops = &tp->csi_ops;
4456
4457 switch (tp->mac_version) {
4458 case RTL_GIGA_MAC_VER_01:
4459 case RTL_GIGA_MAC_VER_02:
4460 case RTL_GIGA_MAC_VER_03:
4461 case RTL_GIGA_MAC_VER_04:
4462 case RTL_GIGA_MAC_VER_05:
4463 case RTL_GIGA_MAC_VER_06:
4464 case RTL_GIGA_MAC_VER_10:
4465 case RTL_GIGA_MAC_VER_11:
4466 case RTL_GIGA_MAC_VER_12:
4467 case RTL_GIGA_MAC_VER_13:
4468 case RTL_GIGA_MAC_VER_14:
4469 case RTL_GIGA_MAC_VER_15:
4470 case RTL_GIGA_MAC_VER_16:
4471 case RTL_GIGA_MAC_VER_17:
4472 ops->write = NULL;
4473 ops->read = NULL;
4474 break;
4475
Hayes Wang7e18dca2012-03-30 14:33:02 +08004476 case RTL_GIGA_MAC_VER_37:
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004477 case RTL_GIGA_MAC_VER_38:
Hayes Wang7e18dca2012-03-30 14:33:02 +08004478 ops->write = r8402_csi_write;
4479 ops->read = r8402_csi_read;
4480 break;
4481
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004482 default:
4483 ops->write = r8169_csi_write;
4484 ops->read = r8169_csi_read;
4485 break;
4486 }
Francois Romieudacf8152008-08-02 20:44:13 +02004487}
4488
4489struct ephy_info {
4490 unsigned int offset;
4491 u16 mask;
4492 u16 bits;
4493};
4494
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004495static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02004496{
4497 u16 w;
4498
4499 while (len-- > 0) {
4500 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
4501 rtl_ephy_write(ioaddr, e->offset, w);
4502 e++;
4503 }
4504}
4505
Francois Romieub726e492008-06-28 12:22:59 +02004506static void rtl_disable_clock_request(struct pci_dev *pdev)
4507{
Jon Masone44daad2011-06-27 07:46:31 +00004508 int cap = pci_pcie_cap(pdev);
Francois Romieub726e492008-06-28 12:22:59 +02004509
4510 if (cap) {
4511 u16 ctl;
4512
4513 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4514 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
4515 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4516 }
4517}
4518
françois romieue6de30d2011-01-03 15:08:37 +00004519static void rtl_enable_clock_request(struct pci_dev *pdev)
4520{
Jon Masone44daad2011-06-27 07:46:31 +00004521 int cap = pci_pcie_cap(pdev);
françois romieue6de30d2011-01-03 15:08:37 +00004522
4523 if (cap) {
4524 u16 ctl;
4525
4526 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4527 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
4528 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4529 }
4530}
4531
Francois Romieub726e492008-06-28 12:22:59 +02004532#define R8168_CPCMD_QUIRK_MASK (\
4533 EnableBist | \
4534 Mac_dbgo_oe | \
4535 Force_half_dup | \
4536 Force_rxflow_en | \
4537 Force_txflow_en | \
4538 Cxpl_dbg_sel | \
4539 ASF | \
4540 PktCntrDisable | \
4541 Mac_dbgo_sel)
4542
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004543static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004544{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004545 void __iomem *ioaddr = tp->mmio_addr;
4546 struct pci_dev *pdev = tp->pci_dev;
4547
Francois Romieub726e492008-06-28 12:22:59 +02004548 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4549
4550 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4551
Francois Romieu2e68ae42008-06-28 12:00:55 +02004552 rtl_tx_performance_tweak(pdev,
4553 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02004554}
4555
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004556static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004557{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004558 void __iomem *ioaddr = tp->mmio_addr;
4559
4560 rtl_hw_start_8168bb(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004561
françois romieuf0298f82011-01-03 15:07:42 +00004562 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02004563
4564 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02004565}
4566
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004567static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004568{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004569 void __iomem *ioaddr = tp->mmio_addr;
4570 struct pci_dev *pdev = tp->pci_dev;
4571
Francois Romieub726e492008-06-28 12:22:59 +02004572 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4573
4574 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4575
Francois Romieu219a1e92008-06-28 11:58:39 +02004576 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02004577
4578 rtl_disable_clock_request(pdev);
4579
4580 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02004581}
4582
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004583static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004584{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004585 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004586 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004587 { 0x01, 0, 0x0001 },
4588 { 0x02, 0x0800, 0x1000 },
4589 { 0x03, 0, 0x0042 },
4590 { 0x06, 0x0080, 0x0000 },
4591 { 0x07, 0, 0x2000 }
4592 };
4593
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004594 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004595
4596 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
4597
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004598 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004599}
4600
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004601static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02004602{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004603 void __iomem *ioaddr = tp->mmio_addr;
4604 struct pci_dev *pdev = tp->pci_dev;
4605
4606 rtl_csi_access_enable_2(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02004607
4608 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4609
4610 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4611
4612 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4613}
4614
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004615static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004616{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004617 void __iomem *ioaddr = tp->mmio_addr;
4618 struct pci_dev *pdev = tp->pci_dev;
4619
4620 rtl_csi_access_enable_2(tp);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004621
4622 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4623
4624 /* Magic. */
4625 RTL_W8(DBG_REG, 0x20);
4626
françois romieuf0298f82011-01-03 15:07:42 +00004627 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004628
4629 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4630
4631 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4632}
4633
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004634static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004635{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004636 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004637 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004638 { 0x02, 0x0800, 0x1000 },
4639 { 0x03, 0, 0x0002 },
4640 { 0x06, 0x0080, 0x0000 }
4641 };
4642
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004643 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004644
4645 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
4646
4647 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
4648
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004649 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004650}
4651
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004652static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
Francois Romieu219a1e92008-06-28 11:58:39 +02004653{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004654 void __iomem *ioaddr = tp->mmio_addr;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004655 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004656 { 0x01, 0, 0x0001 },
4657 { 0x03, 0x0400, 0x0220 }
4658 };
4659
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004660 rtl_csi_access_enable_2(tp);
Francois Romieub726e492008-06-28 12:22:59 +02004661
4662 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
4663
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004664 __rtl_hw_start_8168cp(tp);
Francois Romieu219a1e92008-06-28 11:58:39 +02004665}
4666
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004667static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02004668{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004669 rtl_hw_start_8168c_2(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02004670}
4671
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004672static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02004673{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004674 rtl_csi_access_enable_2(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004675
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004676 __rtl_hw_start_8168cp(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02004677}
4678
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004679static void rtl_hw_start_8168d(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02004680{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004681 void __iomem *ioaddr = tp->mmio_addr;
4682 struct pci_dev *pdev = tp->pci_dev;
4683
4684 rtl_csi_access_enable_2(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02004685
4686 rtl_disable_clock_request(pdev);
4687
françois romieuf0298f82011-01-03 15:07:42 +00004688 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02004689
4690 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4691
4692 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4693}
4694
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004695static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
hayeswang4804b3b2011-03-21 01:50:29 +00004696{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004697 void __iomem *ioaddr = tp->mmio_addr;
4698 struct pci_dev *pdev = tp->pci_dev;
4699
4700 rtl_csi_access_enable_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004701
4702 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4703
4704 RTL_W8(MaxTxPacketSize, TxPacketMax);
4705
4706 rtl_disable_clock_request(pdev);
4707}
4708
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004709static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
françois romieue6de30d2011-01-03 15:08:37 +00004710{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004711 void __iomem *ioaddr = tp->mmio_addr;
4712 struct pci_dev *pdev = tp->pci_dev;
françois romieue6de30d2011-01-03 15:08:37 +00004713 static const struct ephy_info e_info_8168d_4[] = {
4714 { 0x0b, ~0, 0x48 },
4715 { 0x19, 0x20, 0x50 },
4716 { 0x0c, ~0, 0x20 }
4717 };
4718 int i;
4719
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004720 rtl_csi_access_enable_1(tp);
françois romieue6de30d2011-01-03 15:08:37 +00004721
4722 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4723
4724 RTL_W8(MaxTxPacketSize, TxPacketMax);
4725
4726 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
4727 const struct ephy_info *e = e_info_8168d_4 + i;
4728 u16 w;
4729
4730 w = rtl_ephy_read(ioaddr, e->offset);
4731 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
4732 }
4733
4734 rtl_enable_clock_request(pdev);
4735}
4736
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004737static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00004738{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004739 void __iomem *ioaddr = tp->mmio_addr;
4740 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08004741 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00004742 { 0x00, 0x0200, 0x0100 },
4743 { 0x00, 0x0000, 0x0004 },
4744 { 0x06, 0x0002, 0x0001 },
4745 { 0x06, 0x0000, 0x0030 },
4746 { 0x07, 0x0000, 0x2000 },
4747 { 0x00, 0x0000, 0x0020 },
4748 { 0x03, 0x5800, 0x2000 },
4749 { 0x03, 0x0000, 0x0001 },
4750 { 0x01, 0x0800, 0x1000 },
4751 { 0x07, 0x0000, 0x4000 },
4752 { 0x1e, 0x0000, 0x2000 },
4753 { 0x19, 0xffff, 0xfe6c },
4754 { 0x0a, 0x0000, 0x0040 }
4755 };
4756
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004757 rtl_csi_access_enable_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00004758
Hayes Wang70090422011-07-06 15:58:06 +08004759 rtl_ephy_init(ioaddr, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00004760
4761 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4762
4763 RTL_W8(MaxTxPacketSize, TxPacketMax);
4764
4765 rtl_disable_clock_request(pdev);
4766
4767 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02004768 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
4769 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00004770
Francois Romieucecb5fd2011-04-01 10:21:07 +02004771 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00004772}
4773
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004774static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
Hayes Wang70090422011-07-06 15:58:06 +08004775{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004776 void __iomem *ioaddr = tp->mmio_addr;
4777 struct pci_dev *pdev = tp->pci_dev;
Hayes Wang70090422011-07-06 15:58:06 +08004778 static const struct ephy_info e_info_8168e_2[] = {
4779 { 0x09, 0x0000, 0x0080 },
4780 { 0x19, 0x0000, 0x0224 }
4781 };
4782
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004783 rtl_csi_access_enable_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08004784
4785 rtl_ephy_init(ioaddr, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
4786
4787 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4788
4789 rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4790 rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4791 rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
4792 rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
4793 rtl_eri_write(ioaddr, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
4794 rtl_eri_write(ioaddr, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
4795 rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4796 rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
4797 ERIAR_EXGMAC);
4798
Hayes Wang3090bd92011-09-06 16:55:15 +08004799 RTL_W8(MaxTxPacketSize, EarlySize);
Hayes Wang70090422011-07-06 15:58:06 +08004800
4801 rtl_disable_clock_request(pdev);
4802
4803 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
4804 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
4805
4806 /* Adjust EEE LED frequency */
4807 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
4808
4809 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
4810 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
4811 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4812}
4813
Hayes Wang5f886e02012-03-30 14:33:03 +08004814static void rtl_hw_start_8168f(struct rtl8169_private *tp)
Hayes Wangc2218922011-09-06 16:55:18 +08004815{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004816 void __iomem *ioaddr = tp->mmio_addr;
4817 struct pci_dev *pdev = tp->pci_dev;
Hayes Wangc2218922011-09-06 16:55:18 +08004818
Hayes Wang5f886e02012-03-30 14:33:03 +08004819 rtl_csi_access_enable_2(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08004820
4821 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4822
4823 rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4824 rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4825 rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
4826 rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
4827 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
4828 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
4829 rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4830 rtl_w1w0_eri(ioaddr, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4831 rtl_eri_write(ioaddr, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
4832 rtl_eri_write(ioaddr, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
Hayes Wangc2218922011-09-06 16:55:18 +08004833
4834 RTL_W8(MaxTxPacketSize, EarlySize);
4835
4836 rtl_disable_clock_request(pdev);
4837
4838 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
4839 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
Hayes Wangc2218922011-09-06 16:55:18 +08004840 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
4841 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
4842 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4843}
4844
Hayes Wang5f886e02012-03-30 14:33:03 +08004845static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
4846{
4847 void __iomem *ioaddr = tp->mmio_addr;
4848 static const struct ephy_info e_info_8168f_1[] = {
4849 { 0x06, 0x00c0, 0x0020 },
4850 { 0x08, 0x0001, 0x0002 },
4851 { 0x09, 0x0000, 0x0080 },
4852 { 0x19, 0x0000, 0x0224 }
4853 };
4854
4855 rtl_hw_start_8168f(tp);
4856
4857 rtl_ephy_init(ioaddr, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
4858
4859 rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
4860 ERIAR_EXGMAC);
4861
4862 /* Adjust EEE LED frequency */
4863 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
4864}
4865
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004866static void rtl_hw_start_8411(struct rtl8169_private *tp)
4867{
4868 void __iomem *ioaddr = tp->mmio_addr;
4869 static const struct ephy_info e_info_8168f_1[] = {
4870 { 0x06, 0x00c0, 0x0020 },
4871 { 0x0f, 0xffff, 0x5200 },
4872 { 0x1e, 0x0000, 0x4000 },
4873 { 0x19, 0x0000, 0x0224 }
4874 };
4875
4876 rtl_hw_start_8168f(tp);
4877
4878 rtl_ephy_init(ioaddr, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
4879
4880 rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000,
4881 ERIAR_EXGMAC);
4882}
4883
Francois Romieu07ce4062007-02-23 23:36:39 +01004884static void rtl_hw_start_8168(struct net_device *dev)
4885{
Francois Romieu2dd99532007-06-11 23:22:52 +02004886 struct rtl8169_private *tp = netdev_priv(dev);
4887 void __iomem *ioaddr = tp->mmio_addr;
4888
4889 RTL_W8(Cfg9346, Cfg9346_Unlock);
4890
françois romieuf0298f82011-01-03 15:07:42 +00004891 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02004892
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004893 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02004894
Francois Romieu0e485152007-02-20 00:00:26 +01004895 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02004896
4897 RTL_W16(CPlusCmd, tp->cp_cmd);
4898
Francois Romieu0e485152007-02-20 00:00:26 +01004899 RTL_W16(IntrMitigate, 0x5151);
4900
4901 /* Work around for RxFIFO overflow. */
françois romieu811fd302011-12-04 20:30:45 +00004902 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01004903 tp->event_slow |= RxFIFOOver | PCSTimeout;
4904 tp->event_slow &= ~RxOverflow;
Francois Romieu0e485152007-02-20 00:00:26 +01004905 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004906
4907 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4908
Francois Romieub8363902008-06-01 12:31:57 +02004909 rtl_set_rx_mode(dev);
4910
4911 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4912 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02004913
4914 RTL_R8(IntrMask);
4915
Francois Romieu219a1e92008-06-28 11:58:39 +02004916 switch (tp->mac_version) {
4917 case RTL_GIGA_MAC_VER_11:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004918 rtl_hw_start_8168bb(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004919 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004920
4921 case RTL_GIGA_MAC_VER_12:
4922 case RTL_GIGA_MAC_VER_17:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004923 rtl_hw_start_8168bef(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004924 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004925
4926 case RTL_GIGA_MAC_VER_18:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004927 rtl_hw_start_8168cp_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004928 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004929
4930 case RTL_GIGA_MAC_VER_19:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004931 rtl_hw_start_8168c_1(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004932 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004933
4934 case RTL_GIGA_MAC_VER_20:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004935 rtl_hw_start_8168c_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004936 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004937
Francois Romieu197ff762008-06-28 13:16:02 +02004938 case RTL_GIGA_MAC_VER_21:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004939 rtl_hw_start_8168c_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004940 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004941
Francois Romieu6fb07052008-06-29 11:54:28 +02004942 case RTL_GIGA_MAC_VER_22:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004943 rtl_hw_start_8168c_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004944 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004945
Francois Romieuef3386f2008-06-29 12:24:30 +02004946 case RTL_GIGA_MAC_VER_23:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004947 rtl_hw_start_8168cp_2(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004948 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004949
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004950 case RTL_GIGA_MAC_VER_24:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004951 rtl_hw_start_8168cp_3(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004952 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004953
Francois Romieu5b538df2008-07-20 16:22:45 +02004954 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00004955 case RTL_GIGA_MAC_VER_26:
4956 case RTL_GIGA_MAC_VER_27:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004957 rtl_hw_start_8168d(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004958 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004959
françois romieue6de30d2011-01-03 15:08:37 +00004960 case RTL_GIGA_MAC_VER_28:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004961 rtl_hw_start_8168d_4(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004962 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004963
hayeswang4804b3b2011-03-21 01:50:29 +00004964 case RTL_GIGA_MAC_VER_31:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004965 rtl_hw_start_8168dp(tp);
hayeswang4804b3b2011-03-21 01:50:29 +00004966 break;
4967
hayeswang01dc7fe2011-03-21 01:50:28 +00004968 case RTL_GIGA_MAC_VER_32:
4969 case RTL_GIGA_MAC_VER_33:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004970 rtl_hw_start_8168e_1(tp);
Hayes Wang70090422011-07-06 15:58:06 +08004971 break;
4972 case RTL_GIGA_MAC_VER_34:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004973 rtl_hw_start_8168e_2(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00004974 break;
françois romieue6de30d2011-01-03 15:08:37 +00004975
Hayes Wangc2218922011-09-06 16:55:18 +08004976 case RTL_GIGA_MAC_VER_35:
4977 case RTL_GIGA_MAC_VER_36:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08004978 rtl_hw_start_8168f_1(tp);
Hayes Wangc2218922011-09-06 16:55:18 +08004979 break;
4980
Hayes Wangb3d7b2f2012-03-30 14:48:06 +08004981 case RTL_GIGA_MAC_VER_38:
4982 rtl_hw_start_8411(tp);
4983 break;
4984
Francois Romieu219a1e92008-06-28 11:58:39 +02004985 default:
4986 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
4987 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00004988 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004989 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004990
Francois Romieu0e485152007-02-20 00:00:26 +01004991 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4992
Francois Romieub8363902008-06-01 12:31:57 +02004993 RTL_W8(Cfg9346, Cfg9346_Lock);
4994
Francois Romieu2dd99532007-06-11 23:22:52 +02004995 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu07ce4062007-02-23 23:36:39 +01004996}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
Francois Romieu2857ffb2008-08-02 21:08:49 +02004998#define R810X_CPCMD_QUIRK_MASK (\
4999 EnableBist | \
5000 Mac_dbgo_oe | \
5001 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00005002 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02005003 Force_txflow_en | \
5004 Cxpl_dbg_sel | \
5005 ASF | \
5006 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005007 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005008
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005009static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005010{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005011 void __iomem *ioaddr = tp->mmio_addr;
5012 struct pci_dev *pdev = tp->pci_dev;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08005013 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02005014 { 0x01, 0, 0x6e65 },
5015 { 0x02, 0, 0x091f },
5016 { 0x03, 0, 0xc2f9 },
5017 { 0x06, 0, 0xafb5 },
5018 { 0x07, 0, 0x0e00 },
5019 { 0x19, 0, 0xec80 },
5020 { 0x01, 0, 0x2e65 },
5021 { 0x01, 0, 0x6e65 }
5022 };
5023 u8 cfg1;
5024
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005025 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005026
5027 RTL_W8(DBG_REG, FIX_NAK_1);
5028
5029 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5030
5031 RTL_W8(Config1,
5032 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
5033 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5034
5035 cfg1 = RTL_R8(Config1);
5036 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
5037 RTL_W8(Config1, cfg1 & ~LEDS0);
5038
Francois Romieu2857ffb2008-08-02 21:08:49 +02005039 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
5040}
5041
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005042static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005043{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005044 void __iomem *ioaddr = tp->mmio_addr;
5045 struct pci_dev *pdev = tp->pci_dev;
5046
5047 rtl_csi_access_enable_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005048
5049 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5050
5051 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
5052 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005053}
5054
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005055static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02005056{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005057 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005058
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005059 rtl_ephy_write(tp->mmio_addr, 0x03, 0xc2f9);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005060}
5061
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005062static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005063{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005064 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005065 static const struct ephy_info e_info_8105e_1[] = {
5066 { 0x07, 0, 0x4000 },
5067 { 0x19, 0, 0x0200 },
5068 { 0x19, 0, 0x0020 },
5069 { 0x1e, 0, 0x2000 },
5070 { 0x03, 0, 0x0001 },
5071 { 0x19, 0, 0x0100 },
5072 { 0x19, 0, 0x0004 },
5073 { 0x0a, 0, 0x0020 }
5074 };
5075
Francois Romieucecb5fd2011-04-01 10:21:07 +02005076 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005077 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5078
Francois Romieucecb5fd2011-04-01 10:21:07 +02005079 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08005080 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
5081
5082 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e52011-07-06 15:58:02 +08005083 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005084
5085 rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
5086}
5087
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005088static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
Hayes Wang5a5e4442011-02-22 17:26:21 +08005089{
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005090 void __iomem *ioaddr = tp->mmio_addr;
5091
5092 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005093 rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
5094}
5095
Hayes Wang7e18dca2012-03-30 14:33:02 +08005096static void rtl_hw_start_8402(struct rtl8169_private *tp)
5097{
5098 void __iomem *ioaddr = tp->mmio_addr;
5099 static const struct ephy_info e_info_8402[] = {
5100 { 0x19, 0xffff, 0xff64 },
5101 { 0x1e, 0, 0x4000 }
5102 };
5103
5104 rtl_csi_access_enable_2(tp);
5105
5106 /* Force LAN exit from ASPM if Rx/Tx are not idle */
5107 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5108
5109 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5110 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5111
5112 rtl_ephy_init(ioaddr, e_info_8402, ARRAY_SIZE(e_info_8402));
5113
5114 rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
5115
5116 rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
5117 rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
5118 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5119 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5120 rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5121 rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5122 rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00,
5123 ERIAR_EXGMAC);
5124}
5125
Francois Romieu07ce4062007-02-23 23:36:39 +01005126static void rtl_hw_start_8101(struct net_device *dev)
5127{
Francois Romieucdf1a602007-06-11 23:29:50 +02005128 struct rtl8169_private *tp = netdev_priv(dev);
5129 void __iomem *ioaddr = tp->mmio_addr;
5130 struct pci_dev *pdev = tp->pci_dev;
5131
Francois Romieuda78dbf2012-01-26 14:18:23 +01005132 if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
5133 tp->event_slow &= ~RxFIFOOver;
françois romieu811fd302011-12-04 20:30:45 +00005134
Francois Romieucecb5fd2011-04-01 10:21:07 +02005135 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
5136 tp->mac_version == RTL_GIGA_MAC_VER_16) {
Jon Masone44daad2011-06-27 07:46:31 +00005137 int cap = pci_pcie_cap(pdev);
Francois Romieu9c14cea2008-07-05 00:21:15 +02005138
5139 if (cap) {
5140 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
5141 PCI_EXP_DEVCTL_NOSNOOP_EN);
5142 }
Francois Romieucdf1a602007-06-11 23:29:50 +02005143 }
5144
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005145 RTL_W8(Cfg9346, Cfg9346_Unlock);
5146
Francois Romieu2857ffb2008-08-02 21:08:49 +02005147 switch (tp->mac_version) {
5148 case RTL_GIGA_MAC_VER_07:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005149 rtl_hw_start_8102e_1(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005150 break;
5151
5152 case RTL_GIGA_MAC_VER_08:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005153 rtl_hw_start_8102e_3(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005154 break;
5155
5156 case RTL_GIGA_MAC_VER_09:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005157 rtl_hw_start_8102e_2(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02005158 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08005159
5160 case RTL_GIGA_MAC_VER_29:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005161 rtl_hw_start_8105e_1(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005162 break;
5163 case RTL_GIGA_MAC_VER_30:
Hayes Wangbeb1fe12012-03-30 14:33:01 +08005164 rtl_hw_start_8105e_2(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08005165 break;
Hayes Wang7e18dca2012-03-30 14:33:02 +08005166
5167 case RTL_GIGA_MAC_VER_37:
5168 rtl_hw_start_8402(tp);
5169 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02005170 }
5171
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005172 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02005173
françois romieuf0298f82011-01-03 15:07:42 +00005174 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02005175
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005176 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02005177
Hayes Wangd24e9aa2011-02-22 17:26:19 +08005178 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02005179 RTL_W16(CPlusCmd, tp->cp_cmd);
5180
5181 RTL_W16(IntrMitigate, 0x0000);
5182
5183 rtl_set_rx_tx_desc_registers(tp, ioaddr);
5184
5185 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5186 rtl_set_rx_tx_config_registers(tp);
5187
Francois Romieucdf1a602007-06-11 23:29:50 +02005188 RTL_R8(IntrMask);
5189
Francois Romieucdf1a602007-06-11 23:29:50 +02005190 rtl_set_rx_mode(dev);
5191
5192 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193}
5194
5195static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
5196{
Francois Romieud58d46b2011-05-03 16:38:29 +02005197 struct rtl8169_private *tp = netdev_priv(dev);
5198
5199 if (new_mtu < ETH_ZLEN ||
5200 new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 return -EINVAL;
5202
Francois Romieud58d46b2011-05-03 16:38:29 +02005203 if (new_mtu > ETH_DATA_LEN)
5204 rtl_hw_jumbo_enable(tp);
5205 else
5206 rtl_hw_jumbo_disable(tp);
5207
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00005209 netdev_update_features(dev);
5210
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005211 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212}
5213
5214static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
5215{
Al Viro95e09182007-12-22 18:55:39 +00005216 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
5218}
5219
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005220static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
5221 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005223 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005224 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005225
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005226 kfree(*data_buff);
5227 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228 rtl8169_make_unusable_by_asic(desc);
5229}
5230
5231static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
5232{
5233 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
5234
5235 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
5236}
5237
5238static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
5239 u32 rx_buf_sz)
5240{
5241 desc->addr = cpu_to_le64(mapping);
5242 wmb();
5243 rtl8169_mark_to_asic(desc, rx_buf_sz);
5244}
5245
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005246static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005248 return (void *)ALIGN((long)data, 16);
5249}
5250
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005251static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
5252 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005253{
5254 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005256 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005257 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005258 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005260 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
5261 if (!data)
5262 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01005263
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005264 if (rtl8169_align(data) != data) {
5265 kfree(data);
5266 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
5267 if (!data)
5268 return NULL;
5269 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005270
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005271 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00005272 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005273 if (unlikely(dma_mapping_error(d, mapping))) {
5274 if (net_ratelimit())
5275 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005276 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
5279 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005280 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005281
5282err_out:
5283 kfree(data);
5284 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285}
5286
5287static void rtl8169_rx_clear(struct rtl8169_private *tp)
5288{
Francois Romieu07d3f512007-02-21 22:40:46 +01005289 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290
5291 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005292 if (tp->Rx_databuff[i]) {
5293 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 tp->RxDescArray + i);
5295 }
5296 }
5297}
5298
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005299static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005301 desc->opts1 |= cpu_to_le32(RingEnd);
5302}
Francois Romieu5b0384f2006-08-16 16:00:01 +02005303
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005304static int rtl8169_rx_fill(struct rtl8169_private *tp)
5305{
5306 unsigned int i;
5307
5308 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005309 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02005310
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005311 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02005313
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005314 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005315 if (!data) {
5316 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005317 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005318 }
5319 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005322 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
5323 return 0;
5324
5325err_out:
5326 rtl8169_rx_clear(tp);
5327 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328}
5329
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330static int rtl8169_init_ring(struct net_device *dev)
5331{
5332 struct rtl8169_private *tp = netdev_priv(dev);
5333
5334 rtl8169_init_ring_indexes(tp);
5335
5336 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005337 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00005339 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340}
5341
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005342static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 struct TxDesc *desc)
5344{
5345 unsigned int len = tx_skb->len;
5346
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005347 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
5348
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 desc->opts1 = 0x00;
5350 desc->opts2 = 0x00;
5351 desc->addr = 0x00;
5352 tx_skb->len = 0;
5353}
5354
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005355static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
5356 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357{
5358 unsigned int i;
5359
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005360 for (i = 0; i < n; i++) {
5361 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 struct ring_info *tx_skb = tp->tx_skb + entry;
5363 unsigned int len = tx_skb->len;
5364
5365 if (len) {
5366 struct sk_buff *skb = tx_skb->skb;
5367
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005368 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 tp->TxDescArray + entry);
5370 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00005371 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 dev_kfree_skb(skb);
5373 tx_skb->skb = NULL;
5374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 }
5376 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005377}
5378
5379static void rtl8169_tx_clear(struct rtl8169_private *tp)
5380{
5381 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382 tp->cur_tx = tp->dirty_tx = 0;
Igor Maravic036dafa2012-03-05 00:01:25 +01005383 netdev_reset_queue(tp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384}
5385
Francois Romieu4422bcd2012-01-26 11:23:32 +01005386static void rtl_reset_work(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387{
David Howellsc4028952006-11-22 14:57:56 +00005388 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01005389 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390
Francois Romieuda78dbf2012-01-26 14:18:23 +01005391 napi_disable(&tp->napi);
5392 netif_stop_queue(dev);
5393 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394
françois romieuc7c2c392011-12-04 20:30:52 +00005395 rtl8169_hw_reset(tp);
5396
Francois Romieu56de4142011-03-15 17:29:31 +01005397 for (i = 0; i < NUM_RX_DESC; i++)
5398 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
5399
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400 rtl8169_tx_clear(tp);
françois romieuc7c2c392011-12-04 20:30:52 +00005401 rtl8169_init_ring_indexes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402
Francois Romieuda78dbf2012-01-26 14:18:23 +01005403 napi_enable(&tp->napi);
Francois Romieu56de4142011-03-15 17:29:31 +01005404 rtl_hw_start(dev);
5405 netif_wake_queue(dev);
5406 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407}
5408
5409static void rtl8169_tx_timeout(struct net_device *dev)
5410{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005411 struct rtl8169_private *tp = netdev_priv(dev);
5412
5413 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414}
5415
5416static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07005417 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418{
5419 struct skb_shared_info *info = skb_shinfo(skb);
5420 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04005421 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005422 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423
5424 entry = tp->cur_tx;
5425 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00005426 const skb_frag_t *frag = info->frags + cur_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 dma_addr_t mapping;
5428 u32 status, len;
5429 void *addr;
5430
5431 entry = (entry + 1) % NUM_TX_DESC;
5432
5433 txd = tp->TxDescArray + entry;
Eric Dumazet9e903e02011-10-18 21:00:24 +00005434 len = skb_frag_size(frag);
Ian Campbell929f6182011-08-31 00:47:06 +00005435 addr = skb_frag_address(frag);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005436 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005437 if (unlikely(dma_mapping_error(d, mapping))) {
5438 if (net_ratelimit())
5439 netif_err(tp, drv, tp->dev,
5440 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005441 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
Francois Romieucecb5fd2011-04-01 10:21:07 +02005444 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005445 status = opts[0] | len |
5446 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447
5448 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07005449 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 txd->addr = cpu_to_le64(mapping);
5451
5452 tp->tx_skb[entry].len = len;
5453 }
5454
5455 if (cur_frag) {
5456 tp->tx_skb[entry].skb = skb;
5457 txd->opts1 |= cpu_to_le32(LastFrag);
5458 }
5459
5460 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005461
5462err_out:
5463 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
5464 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465}
5466
Francois Romieu2b7b4312011-04-18 22:53:24 -07005467static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
5468 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469{
Francois Romieu2b7b4312011-04-18 22:53:24 -07005470 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00005471 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005472 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473
Francois Romieu2b7b4312011-04-18 22:53:24 -07005474 if (mss) {
5475 opts[0] |= TD_LSO;
5476 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
5477 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005478 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479
5480 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005481 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005483 opts[offset] |= info->checksum.udp;
5484 else
5485 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487}
5488
Stephen Hemminger613573252009-08-31 19:50:58 +00005489static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
5490 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491{
5492 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005493 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494 struct TxDesc *txd = tp->TxDescArray + entry;
5495 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005496 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 dma_addr_t mapping;
5498 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005499 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005500 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02005501
Julien Ducourthial477206a2012-05-09 00:00:06 +02005502 if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005503 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005504 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 }
5506
5507 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005508 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005510 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005511 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005512 if (unlikely(dma_mapping_error(d, mapping))) {
5513 if (net_ratelimit())
5514 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005515 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
5518 tp->tx_skb[entry].len = len;
5519 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520
Francois Romieu2b7b4312011-04-18 22:53:24 -07005521 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
5522 opts[0] = DescOwn;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005523
Francois Romieu2b7b4312011-04-18 22:53:24 -07005524 rtl8169_tso_csum(tp, skb, opts);
5525
5526 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005527 if (frags < 0)
5528 goto err_dma_1;
5529 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005530 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005531 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07005532 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005533 tp->tx_skb[entry].skb = skb;
5534 }
5535
Francois Romieu2b7b4312011-04-18 22:53:24 -07005536 txd->opts2 = cpu_to_le32(opts[1]);
5537
Igor Maravic036dafa2012-03-05 00:01:25 +01005538 netdev_sent_queue(dev, skb->len);
5539
Richard Cochran5047fb52012-03-10 07:29:42 +00005540 skb_tx_timestamp(skb);
5541
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542 wmb();
5543
Francois Romieucecb5fd2011-04-01 10:21:07 +02005544 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005545 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546 txd->opts1 = cpu_to_le32(status);
5547
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548 tp->cur_tx += frags + 1;
5549
David Dillow4c020a92010-03-03 16:33:10 +00005550 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551
Francois Romieucecb5fd2011-04-01 10:21:07 +02005552 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553
Francois Romieuda78dbf2012-01-26 14:18:23 +01005554 mmiowb();
5555
Julien Ducourthial477206a2012-05-09 00:00:06 +02005556 if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Francois Romieuae1f23f2012-01-31 00:00:19 +01005557 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
5558 * not miss a ring update when it notices a stopped queue.
5559 */
5560 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561 netif_stop_queue(dev);
Francois Romieuae1f23f2012-01-31 00:00:19 +01005562 /* Sync with rtl_tx:
5563 * - publish queue status and cur_tx ring index (write barrier)
5564 * - refresh dirty_tx ring index (read barrier).
5565 * May the current thread have a pessimistic view of the ring
5566 * status and forget to wake up queue, a racing rtl_tx thread
5567 * can't.
5568 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005569 smp_mb();
Julien Ducourthial477206a2012-05-09 00:00:06 +02005570 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571 netif_wake_queue(dev);
5572 }
5573
Stephen Hemminger613573252009-08-31 19:50:58 +00005574 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005576err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005577 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005578err_dma_0:
5579 dev_kfree_skb(skb);
5580 dev->stats.tx_dropped++;
5581 return NETDEV_TX_OK;
5582
5583err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005585 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00005586 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587}
5588
5589static void rtl8169_pcierr_interrupt(struct net_device *dev)
5590{
5591 struct rtl8169_private *tp = netdev_priv(dev);
5592 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593 u16 pci_status, pci_cmd;
5594
5595 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
5596 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
5597
Joe Perchesbf82c182010-02-09 11:49:50 +00005598 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
5599 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600
5601 /*
5602 * The recovery sequence below admits a very elaborated explanation:
5603 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01005604 * - I did not see what else could be done;
5605 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606 *
5607 * Feel free to adjust to your needs.
5608 */
Francois Romieua27993f2006-12-18 00:04:19 +01005609 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01005610 pci_cmd &= ~PCI_COMMAND_PARITY;
5611 else
5612 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
5613
5614 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615
5616 pci_write_config_word(pdev, PCI_STATUS,
5617 pci_status & (PCI_STATUS_DETECTED_PARITY |
5618 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
5619 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
5620
5621 /* The infamous DAC f*ckup only happens at boot time */
5622 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00005623 void __iomem *ioaddr = tp->mmio_addr;
5624
Joe Perchesbf82c182010-02-09 11:49:50 +00005625 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 tp->cp_cmd &= ~PCIDAC;
5627 RTL_W16(CPlusCmd, tp->cp_cmd);
5628 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629 }
5630
françois romieue6de30d2011-01-03 15:08:37 +00005631 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01005632
Francois Romieu98ddf982012-01-31 10:47:34 +01005633 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634}
5635
Igor Maravic036dafa2012-03-05 00:01:25 +01005636struct rtl_txc {
5637 int packets;
5638 int bytes;
5639};
5640
Francois Romieuda78dbf2012-01-26 14:18:23 +01005641static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642{
Igor Maravic036dafa2012-03-05 00:01:25 +01005643 struct rtl8169_stats *tx_stats = &tp->tx_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644 unsigned int dirty_tx, tx_left;
Igor Maravic036dafa2012-03-05 00:01:25 +01005645 struct rtl_txc txc = { 0, 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 dirty_tx = tp->dirty_tx;
5648 smp_rmb();
5649 tx_left = tp->cur_tx - dirty_tx;
5650
5651 while (tx_left > 0) {
5652 unsigned int entry = dirty_tx % NUM_TX_DESC;
5653 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654 u32 status;
5655
5656 rmb();
5657 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
5658 if (status & DescOwn)
5659 break;
5660
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005661 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
5662 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663 if (status & LastFrag) {
Igor Maravic036dafa2012-03-05 00:01:25 +01005664 struct sk_buff *skb = tx_skb->skb;
5665
5666 txc.packets++;
5667 txc.bytes += skb->len;
5668 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669 tx_skb->skb = NULL;
5670 }
5671 dirty_tx++;
5672 tx_left--;
5673 }
5674
Igor Maravic036dafa2012-03-05 00:01:25 +01005675 u64_stats_update_begin(&tx_stats->syncp);
5676 tx_stats->packets += txc.packets;
5677 tx_stats->bytes += txc.bytes;
5678 u64_stats_update_end(&tx_stats->syncp);
5679
5680 netdev_completed_queue(dev, txc.packets, txc.bytes);
5681
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682 if (tp->dirty_tx != dirty_tx) {
5683 tp->dirty_tx = dirty_tx;
Francois Romieuae1f23f2012-01-31 00:00:19 +01005684 /* Sync with rtl8169_start_xmit:
5685 * - publish dirty_tx ring index (write barrier)
5686 * - refresh cur_tx ring index and queue status (read barrier)
5687 * May the current thread miss the stopped queue condition,
5688 * a racing xmit thread can only have a right view of the
5689 * ring status.
5690 */
Francois Romieu1e874e02012-01-27 15:05:38 +01005691 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692 if (netif_queue_stopped(dev) &&
Julien Ducourthial477206a2012-05-09 00:00:06 +02005693 TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694 netif_wake_queue(dev);
5695 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02005696 /*
5697 * 8168 hack: TxPoll requests are lost when the Tx packets are
5698 * too close. Let's kick an extra TxPoll request when a burst
5699 * of start_xmit activity is detected (if it is not detected,
5700 * it is slow enough). -- FR
5701 */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005702 if (tp->cur_tx != dirty_tx) {
5703 void __iomem *ioaddr = tp->mmio_addr;
5704
Francois Romieud78ae2d2007-08-26 20:08:19 +02005705 RTL_W8(TxPoll, NPQ);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707 }
5708}
5709
Francois Romieu126fa4b2005-05-12 20:09:17 -04005710static inline int rtl8169_fragmented_frame(u32 status)
5711{
5712 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
5713}
5714
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005715static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717 u32 status = opts1 & RxProtoMask;
5718
5719 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00005720 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721 skb->ip_summed = CHECKSUM_UNNECESSARY;
5722 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005723 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724}
5725
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005726static struct sk_buff *rtl8169_try_rx_copy(void *data,
5727 struct rtl8169_private *tp,
5728 int pkt_size,
5729 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02005731 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005732 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005734 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005735 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005736 prefetch(data);
5737 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
5738 if (skb)
5739 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005740 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
5741
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005742 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743}
5744
Francois Romieuda78dbf2012-01-26 14:18:23 +01005745static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746{
5747 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005748 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750 cur_rx = tp->cur_rx;
5751 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02005752 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005754 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005756 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757 u32 status;
5758
5759 rmb();
David S. Miller8decf862011-09-22 03:23:13 -04005760 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761
5762 if (status & DescOwn)
5763 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005764 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005765 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
5766 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005767 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02005769 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02005771 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005772 if (status & RxFOVF) {
Francois Romieuda78dbf2012-01-26 14:18:23 +01005773 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005774 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005775 }
Ben Greear6bbe0212012-02-10 15:04:33 +00005776 if ((status & (RxRUNT | RxCRC)) &&
5777 !(status & (RxRWT | RxFOVF)) &&
5778 (dev->features & NETIF_F_RXALL))
5779 goto process_pkt;
5780
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005781 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005783 struct sk_buff *skb;
Ben Greear6bbe0212012-02-10 15:04:33 +00005784 dma_addr_t addr;
5785 int pkt_size;
5786
5787process_pkt:
5788 addr = le64_to_cpu(desc->addr);
Ben Greear79d0c1d2012-02-10 15:04:34 +00005789 if (likely(!(dev->features & NETIF_F_RXFCS)))
5790 pkt_size = (status & 0x00003fff) - 4;
5791 else
5792 pkt_size = status & 0x00003fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793
Francois Romieu126fa4b2005-05-12 20:09:17 -04005794 /*
5795 * The driver does not support incoming fragmented
5796 * frames. They are seen as a symptom of over-mtu
5797 * sized frames.
5798 */
5799 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02005800 dev->stats.rx_dropped++;
5801 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005802 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005803 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005804 }
5805
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005806 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
5807 tp, pkt_size, addr);
5808 rtl8169_mark_to_asic(desc, rx_buf_sz);
5809 if (!skb) {
5810 dev->stats.rx_dropped++;
5811 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812 }
5813
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005814 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 skb_put(skb, pkt_size);
5816 skb->protocol = eth_type_trans(skb, dev);
5817
Francois Romieu7a8fc772011-03-01 17:18:33 +01005818 rtl8169_rx_vlan_tag(desc, skb);
5819
Francois Romieu56de4142011-03-15 17:29:31 +01005820 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821
Junchang Wang8027aa22012-03-04 23:30:32 +01005822 u64_stats_update_begin(&tp->rx_stats.syncp);
5823 tp->rx_stats.packets++;
5824 tp->rx_stats.bytes += pkt_size;
5825 u64_stats_update_end(&tp->rx_stats.syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826 }
Francois Romieu6dccd162007-02-13 23:38:05 +01005827
5828 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00005829 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01005830 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
5831 desc->opts2 = 0;
5832 cur_rx++;
5833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834 }
5835
5836 count = cur_rx - tp->cur_rx;
5837 tp->cur_rx = cur_rx;
5838
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005839 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840
5841 return count;
5842}
5843
Francois Romieu07d3f512007-02-21 22:40:46 +01005844static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845{
Francois Romieu07d3f512007-02-21 22:40:46 +01005846 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848 int handled = 0;
Francois Romieu9085cdfa2012-01-26 12:59:08 +01005849 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850
Francois Romieu9085cdfa2012-01-26 12:59:08 +01005851 status = rtl_get_events(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005852 if (status && status != 0xffff) {
5853 status &= RTL_EVENT_NAPI | tp->event_slow;
5854 if (status) {
5855 handled = 1;
françois romieu811fd302011-12-04 20:30:45 +00005856
Francois Romieuda78dbf2012-01-26 14:18:23 +01005857 rtl_irq_disable(tp);
5858 napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861 return IRQ_RETVAL(handled);
5862}
5863
Francois Romieuda78dbf2012-01-26 14:18:23 +01005864/*
5865 * Workqueue context.
5866 */
5867static void rtl_slow_event_work(struct rtl8169_private *tp)
5868{
5869 struct net_device *dev = tp->dev;
5870 u16 status;
5871
5872 status = rtl_get_events(tp) & tp->event_slow;
5873 rtl_ack_events(tp, status);
5874
5875 if (unlikely(status & RxFIFOOver)) {
5876 switch (tp->mac_version) {
5877 /* Work around for rx fifo overflow */
5878 case RTL_GIGA_MAC_VER_11:
5879 netif_stop_queue(dev);
Francois Romieu934714d2012-01-31 11:09:21 +01005880 /* XXX - Hack alert. See rtl_task(). */
5881 set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005882 default:
5883 break;
5884 }
5885 }
5886
5887 if (unlikely(status & SYSErr))
5888 rtl8169_pcierr_interrupt(dev);
5889
5890 if (status & LinkChg)
5891 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
5892
françois romieu7dbb4912012-06-09 10:53:16 +00005893 rtl_irq_enable_all(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005894}
5895
Francois Romieu4422bcd2012-01-26 11:23:32 +01005896static void rtl_task(struct work_struct *work)
5897{
Francois Romieuda78dbf2012-01-26 14:18:23 +01005898 static const struct {
5899 int bitnr;
5900 void (*action)(struct rtl8169_private *);
5901 } rtl_work[] = {
Francois Romieu934714d2012-01-31 11:09:21 +01005902 /* XXX - keep rtl_slow_event_work() as first element. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005903 { RTL_FLAG_TASK_SLOW_PENDING, rtl_slow_event_work },
5904 { RTL_FLAG_TASK_RESET_PENDING, rtl_reset_work },
5905 { RTL_FLAG_TASK_PHY_PENDING, rtl_phy_work }
5906 };
Francois Romieu4422bcd2012-01-26 11:23:32 +01005907 struct rtl8169_private *tp =
5908 container_of(work, struct rtl8169_private, wk.work);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005909 struct net_device *dev = tp->dev;
5910 int i;
Francois Romieu4422bcd2012-01-26 11:23:32 +01005911
Francois Romieuda78dbf2012-01-26 14:18:23 +01005912 rtl_lock_work(tp);
5913
Francois Romieu6c4a70c2012-01-31 10:56:44 +01005914 if (!netif_running(dev) ||
5915 !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
Francois Romieuda78dbf2012-01-26 14:18:23 +01005916 goto out_unlock;
5917
5918 for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
5919 bool pending;
5920
Francois Romieuda78dbf2012-01-26 14:18:23 +01005921 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005922 if (pending)
5923 rtl_work[i].action(tp);
5924 }
5925
5926out_unlock:
5927 rtl_unlock_work(tp);
Francois Romieu4422bcd2012-01-26 11:23:32 +01005928}
5929
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005930static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005932 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
5933 struct net_device *dev = tp->dev;
Francois Romieuda78dbf2012-01-26 14:18:23 +01005934 u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
5935 int work_done= 0;
5936 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937
Francois Romieuda78dbf2012-01-26 14:18:23 +01005938 status = rtl_get_events(tp);
5939 rtl_ack_events(tp, status & ~tp->event_slow);
5940
5941 if (status & RTL_EVENT_NAPI_RX)
5942 work_done = rtl_rx(dev, tp, (u32) budget);
5943
5944 if (status & RTL_EVENT_NAPI_TX)
5945 rtl_tx(dev, tp);
5946
5947 if (status & tp->event_slow) {
5948 enable_mask &= ~tp->event_slow;
5949
5950 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
5951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005953 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005954 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00005955
Francois Romieuda78dbf2012-01-26 14:18:23 +01005956 rtl_irq_enable(tp, enable_mask);
5957 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958 }
5959
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005960 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962
Francois Romieu523a6092008-09-10 22:28:56 +02005963static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
5964{
5965 struct rtl8169_private *tp = netdev_priv(dev);
5966
5967 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
5968 return;
5969
5970 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
5971 RTL_W32(RxMissed, 0);
5972}
5973
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974static void rtl8169_down(struct net_device *dev)
5975{
5976 struct rtl8169_private *tp = netdev_priv(dev);
5977 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
Francois Romieu4876cc12011-03-11 21:07:11 +01005979 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005981 napi_disable(&tp->napi);
Francois Romieuda78dbf2012-01-26 14:18:23 +01005982 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983
Hayes Wang92fc43b2011-07-06 15:58:03 +08005984 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005985 /*
5986 * At this point device interrupts can not be enabled in any function,
Francois Romieu209e5ac2012-01-26 09:59:50 +01005987 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
5988 * and napi is disabled (rtl8169_poll).
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005989 */
Francois Romieu523a6092008-09-10 22:28:56 +02005990 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992 /* Give a racing hard_start_xmit a few cycles to complete. */
Francois Romieuda78dbf2012-01-26 14:18:23 +01005993 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995 rtl8169_tx_clear(tp);
5996
5997 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00005998
5999 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000}
6001
6002static int rtl8169_close(struct net_device *dev)
6003{
6004 struct rtl8169_private *tp = netdev_priv(dev);
6005 struct pci_dev *pdev = tp->pci_dev;
6006
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006007 pm_runtime_get_sync(&pdev->dev);
6008
Francois Romieucecb5fd2011-04-01 10:21:07 +02006009 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08006010 rtl8169_update_counters(dev);
6011
Francois Romieuda78dbf2012-01-26 14:18:23 +01006012 rtl_lock_work(tp);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006013 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006014
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015 rtl8169_down(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006016 rtl_unlock_work(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006018 free_irq(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00006020 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6021 tp->RxPhyAddr);
6022 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6023 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024 tp->TxDescArray = NULL;
6025 tp->RxDescArray = NULL;
6026
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006027 pm_runtime_put_sync(&pdev->dev);
6028
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029 return 0;
6030}
6031
Francois Romieudc1c00c2012-03-08 10:06:18 +01006032#ifdef CONFIG_NET_POLL_CONTROLLER
6033static void rtl8169_netpoll(struct net_device *dev)
6034{
6035 struct rtl8169_private *tp = netdev_priv(dev);
6036
6037 rtl8169_interrupt(tp->pci_dev->irq, dev);
6038}
6039#endif
6040
Francois Romieudf43ac72012-03-08 09:48:40 +01006041static int rtl_open(struct net_device *dev)
6042{
6043 struct rtl8169_private *tp = netdev_priv(dev);
6044 void __iomem *ioaddr = tp->mmio_addr;
6045 struct pci_dev *pdev = tp->pci_dev;
6046 int retval = -ENOMEM;
6047
6048 pm_runtime_get_sync(&pdev->dev);
6049
6050 /*
Jiri Kosinae75d6602012-04-08 21:48:52 +02006051 * Rx and Tx descriptors needs 256 bytes alignment.
Francois Romieudf43ac72012-03-08 09:48:40 +01006052 * dma_alloc_coherent provides more.
6053 */
6054 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
6055 &tp->TxPhyAddr, GFP_KERNEL);
6056 if (!tp->TxDescArray)
6057 goto err_pm_runtime_put;
6058
6059 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
6060 &tp->RxPhyAddr, GFP_KERNEL);
6061 if (!tp->RxDescArray)
6062 goto err_free_tx_0;
6063
6064 retval = rtl8169_init_ring(dev);
6065 if (retval < 0)
6066 goto err_free_rx_1;
6067
6068 INIT_WORK(&tp->wk.work, rtl_task);
6069
6070 smp_mb();
6071
6072 rtl_request_firmware(tp);
6073
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006074 retval = request_irq(pdev->irq, rtl8169_interrupt,
Francois Romieudf43ac72012-03-08 09:48:40 +01006075 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
6076 dev->name, dev);
6077 if (retval < 0)
6078 goto err_release_fw_2;
6079
6080 rtl_lock_work(tp);
6081
6082 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
6083
6084 napi_enable(&tp->napi);
6085
6086 rtl8169_init_phy(dev, tp);
6087
6088 __rtl8169_set_features(dev, dev->features);
6089
6090 rtl_pll_power_up(tp);
6091
6092 rtl_hw_start(dev);
6093
6094 netif_start_queue(dev);
6095
6096 rtl_unlock_work(tp);
6097
6098 tp->saved_wolopts = 0;
6099 pm_runtime_put_noidle(&pdev->dev);
6100
6101 rtl8169_check_link_status(dev, tp, ioaddr);
6102out:
6103 return retval;
6104
6105err_release_fw_2:
6106 rtl_release_firmware(tp);
6107 rtl8169_rx_clear(tp);
6108err_free_rx_1:
6109 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6110 tp->RxPhyAddr);
6111 tp->RxDescArray = NULL;
6112err_free_tx_0:
6113 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6114 tp->TxPhyAddr);
6115 tp->TxDescArray = NULL;
6116err_pm_runtime_put:
6117 pm_runtime_put_noidle(&pdev->dev);
6118 goto out;
6119}
6120
Junchang Wang8027aa22012-03-04 23:30:32 +01006121static struct rtnl_link_stats64 *
6122rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123{
6124 struct rtl8169_private *tp = netdev_priv(dev);
6125 void __iomem *ioaddr = tp->mmio_addr;
Junchang Wang8027aa22012-03-04 23:30:32 +01006126 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127
Francois Romieuda78dbf2012-01-26 14:18:23 +01006128 if (netif_running(dev))
Francois Romieu523a6092008-09-10 22:28:56 +02006129 rtl8169_rx_missed(dev, ioaddr);
Francois Romieu5b0384f2006-08-16 16:00:01 +02006130
Junchang Wang8027aa22012-03-04 23:30:32 +01006131 do {
6132 start = u64_stats_fetch_begin_bh(&tp->rx_stats.syncp);
6133 stats->rx_packets = tp->rx_stats.packets;
6134 stats->rx_bytes = tp->rx_stats.bytes;
6135 } while (u64_stats_fetch_retry_bh(&tp->rx_stats.syncp, start));
6136
6137
6138 do {
6139 start = u64_stats_fetch_begin_bh(&tp->tx_stats.syncp);
6140 stats->tx_packets = tp->tx_stats.packets;
6141 stats->tx_bytes = tp->tx_stats.bytes;
6142 } while (u64_stats_fetch_retry_bh(&tp->tx_stats.syncp, start));
6143
6144 stats->rx_dropped = dev->stats.rx_dropped;
6145 stats->tx_dropped = dev->stats.tx_dropped;
6146 stats->rx_length_errors = dev->stats.rx_length_errors;
6147 stats->rx_errors = dev->stats.rx_errors;
6148 stats->rx_crc_errors = dev->stats.rx_crc_errors;
6149 stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
6150 stats->rx_missed_errors = dev->stats.rx_missed_errors;
6151
6152 return stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153}
6154
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006155static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01006156{
françois romieu065c27c2011-01-03 15:08:12 +00006157 struct rtl8169_private *tp = netdev_priv(dev);
6158
Francois Romieu5d06a992006-02-23 00:47:58 +01006159 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006160 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01006161
6162 netif_device_detach(dev);
6163 netif_stop_queue(dev);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006164
6165 rtl_lock_work(tp);
6166 napi_disable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006167 clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006168 rtl_unlock_work(tp);
6169
6170 rtl_pll_power_down(tp);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006171}
Francois Romieu5d06a992006-02-23 00:47:58 +01006172
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006173#ifdef CONFIG_PM
6174
6175static int rtl8169_suspend(struct device *device)
6176{
6177 struct pci_dev *pdev = to_pci_dev(device);
6178 struct net_device *dev = pci_get_drvdata(pdev);
6179
6180 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02006181
Francois Romieu5d06a992006-02-23 00:47:58 +01006182 return 0;
6183}
6184
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006185static void __rtl8169_resume(struct net_device *dev)
6186{
françois romieu065c27c2011-01-03 15:08:12 +00006187 struct rtl8169_private *tp = netdev_priv(dev);
6188
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006189 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00006190
6191 rtl_pll_power_up(tp);
6192
Artem Savkovcff4c162012-04-03 10:29:11 +00006193 rtl_lock_work(tp);
6194 napi_enable(&tp->napi);
Francois Romieu6c4a70c2012-01-31 10:56:44 +01006195 set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
Artem Savkovcff4c162012-04-03 10:29:11 +00006196 rtl_unlock_work(tp);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006197
Francois Romieu98ddf982012-01-31 10:47:34 +01006198 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006199}
6200
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006201static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01006202{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006203 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01006204 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006205 struct rtl8169_private *tp = netdev_priv(dev);
6206
6207 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01006208
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006209 if (netif_running(dev))
6210 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01006211
Francois Romieu5d06a992006-02-23 00:47:58 +01006212 return 0;
6213}
6214
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006215static int rtl8169_runtime_suspend(struct device *device)
6216{
6217 struct pci_dev *pdev = to_pci_dev(device);
6218 struct net_device *dev = pci_get_drvdata(pdev);
6219 struct rtl8169_private *tp = netdev_priv(dev);
6220
6221 if (!tp->TxDescArray)
6222 return 0;
6223
Francois Romieuda78dbf2012-01-26 14:18:23 +01006224 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006225 tp->saved_wolopts = __rtl8169_get_wol(tp);
6226 __rtl8169_set_wol(tp, WAKE_ANY);
Francois Romieuda78dbf2012-01-26 14:18:23 +01006227 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006228
6229 rtl8169_net_suspend(dev);
6230
6231 return 0;
6232}
6233
6234static int rtl8169_runtime_resume(struct device *device)
6235{
6236 struct pci_dev *pdev = to_pci_dev(device);
6237 struct net_device *dev = pci_get_drvdata(pdev);
6238 struct rtl8169_private *tp = netdev_priv(dev);
6239
6240 if (!tp->TxDescArray)
6241 return 0;
6242
Francois Romieuda78dbf2012-01-26 14:18:23 +01006243 rtl_lock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006244 __rtl8169_set_wol(tp, tp->saved_wolopts);
6245 tp->saved_wolopts = 0;
Francois Romieuda78dbf2012-01-26 14:18:23 +01006246 rtl_unlock_work(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006247
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00006248 rtl8169_init_phy(dev, tp);
6249
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006250 __rtl8169_resume(dev);
6251
6252 return 0;
6253}
6254
6255static int rtl8169_runtime_idle(struct device *device)
6256{
6257 struct pci_dev *pdev = to_pci_dev(device);
6258 struct net_device *dev = pci_get_drvdata(pdev);
6259 struct rtl8169_private *tp = netdev_priv(dev);
6260
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00006261 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00006262}
6263
Alexey Dobriyan47145212009-12-14 18:00:08 -08006264static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02006265 .suspend = rtl8169_suspend,
6266 .resume = rtl8169_resume,
6267 .freeze = rtl8169_suspend,
6268 .thaw = rtl8169_resume,
6269 .poweroff = rtl8169_suspend,
6270 .restore = rtl8169_resume,
6271 .runtime_suspend = rtl8169_runtime_suspend,
6272 .runtime_resume = rtl8169_runtime_resume,
6273 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006274};
6275
6276#define RTL8169_PM_OPS (&rtl8169_pm_ops)
6277
6278#else /* !CONFIG_PM */
6279
6280#define RTL8169_PM_OPS NULL
6281
6282#endif /* !CONFIG_PM */
6283
David S. Miller1805b2f2011-10-24 18:18:09 -04006284static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
6285{
6286 void __iomem *ioaddr = tp->mmio_addr;
6287
6288 /* WoL fails with 8168b when the receiver is disabled. */
6289 switch (tp->mac_version) {
6290 case RTL_GIGA_MAC_VER_11:
6291 case RTL_GIGA_MAC_VER_12:
6292 case RTL_GIGA_MAC_VER_17:
6293 pci_clear_master(tp->pci_dev);
6294
6295 RTL_W8(ChipCmd, CmdRxEnb);
6296 /* PCI commit */
6297 RTL_R8(ChipCmd);
6298 break;
6299 default:
6300 break;
6301 }
6302}
6303
Francois Romieu1765f952008-09-13 17:21:40 +02006304static void rtl_shutdown(struct pci_dev *pdev)
6305{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006306 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00006307 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu2a15cd22012-03-06 01:14:12 +00006308 struct device *d = &pdev->dev;
6309
6310 pm_runtime_get_sync(d);
Francois Romieu1765f952008-09-13 17:21:40 +02006311
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006312 rtl8169_net_suspend(dev);
6313
Francois Romieucecb5fd2011-04-01 10:21:07 +02006314 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08006315 rtl_rar_set(tp, dev->perm_addr);
6316
Hayes Wang92fc43b2011-07-06 15:58:03 +08006317 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00006318
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006319 if (system_state == SYSTEM_POWER_OFF) {
David S. Miller1805b2f2011-10-24 18:18:09 -04006320 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
6321 rtl_wol_suspend_quirk(tp);
6322 rtl_wol_shutdown_quirk(tp);
françois romieuca52efd2009-07-24 12:34:19 +00006323 }
6324
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006325 pci_wake_from_d3(pdev, true);
6326 pci_set_power_state(pdev, PCI_D3hot);
6327 }
françois romieu2a15cd22012-03-06 01:14:12 +00006328
6329 pm_runtime_put_noidle(d);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006330}
Francois Romieu5d06a992006-02-23 00:47:58 +01006331
Francois Romieue27566e2012-03-08 09:54:01 +01006332static void __devexit rtl_remove_one(struct pci_dev *pdev)
6333{
6334 struct net_device *dev = pci_get_drvdata(pdev);
6335 struct rtl8169_private *tp = netdev_priv(dev);
6336
6337 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6338 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6339 tp->mac_version == RTL_GIGA_MAC_VER_31) {
6340 rtl8168_driver_stop(tp);
6341 }
6342
6343 cancel_work_sync(&tp->wk.work);
6344
Devendra Nagaad1be8d2012-05-31 01:51:20 +00006345 netif_napi_del(&tp->napi);
6346
Francois Romieue27566e2012-03-08 09:54:01 +01006347 unregister_netdev(dev);
6348
6349 rtl_release_firmware(tp);
6350
6351 if (pci_dev_run_wake(pdev))
6352 pm_runtime_get_noresume(&pdev->dev);
6353
6354 /* restore original MAC address */
6355 rtl_rar_set(tp, dev->perm_addr);
6356
6357 rtl_disable_msi(pdev, tp);
6358 rtl8169_release_board(pdev, dev, tp->mmio_addr);
6359 pci_set_drvdata(pdev, NULL);
6360}
6361
Francois Romieufa9c3852012-03-08 10:01:50 +01006362static const struct net_device_ops rtl_netdev_ops = {
Francois Romieudf43ac72012-03-08 09:48:40 +01006363 .ndo_open = rtl_open,
Francois Romieufa9c3852012-03-08 10:01:50 +01006364 .ndo_stop = rtl8169_close,
6365 .ndo_get_stats64 = rtl8169_get_stats64,
6366 .ndo_start_xmit = rtl8169_start_xmit,
6367 .ndo_tx_timeout = rtl8169_tx_timeout,
6368 .ndo_validate_addr = eth_validate_addr,
6369 .ndo_change_mtu = rtl8169_change_mtu,
6370 .ndo_fix_features = rtl8169_fix_features,
6371 .ndo_set_features = rtl8169_set_features,
6372 .ndo_set_mac_address = rtl_set_mac_address,
6373 .ndo_do_ioctl = rtl8169_ioctl,
6374 .ndo_set_rx_mode = rtl_set_rx_mode,
6375#ifdef CONFIG_NET_POLL_CONTROLLER
6376 .ndo_poll_controller = rtl8169_netpoll,
6377#endif
6378
6379};
6380
Francois Romieu31fa8b12012-03-08 10:09:40 +01006381static const struct rtl_cfg_info {
6382 void (*hw_start)(struct net_device *);
6383 unsigned int region;
6384 unsigned int align;
6385 u16 event_slow;
6386 unsigned features;
6387 u8 default_ver;
6388} rtl_cfg_infos [] = {
6389 [RTL_CFG_0] = {
6390 .hw_start = rtl_hw_start_8169,
6391 .region = 1,
6392 .align = 0,
6393 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
6394 .features = RTL_FEATURE_GMII,
6395 .default_ver = RTL_GIGA_MAC_VER_01,
6396 },
6397 [RTL_CFG_1] = {
6398 .hw_start = rtl_hw_start_8168,
6399 .region = 2,
6400 .align = 8,
6401 .event_slow = SYSErr | LinkChg | RxOverflow,
6402 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
6403 .default_ver = RTL_GIGA_MAC_VER_11,
6404 },
6405 [RTL_CFG_2] = {
6406 .hw_start = rtl_hw_start_8101,
6407 .region = 2,
6408 .align = 8,
6409 .event_slow = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
6410 PCSTimeout,
6411 .features = RTL_FEATURE_MSI,
6412 .default_ver = RTL_GIGA_MAC_VER_13,
6413 }
6414};
6415
6416/* Cfg9346_Unlock assumed. */
6417static unsigned rtl_try_msi(struct rtl8169_private *tp,
6418 const struct rtl_cfg_info *cfg)
6419{
6420 void __iomem *ioaddr = tp->mmio_addr;
6421 unsigned msi = 0;
6422 u8 cfg2;
6423
6424 cfg2 = RTL_R8(Config2) & ~MSIEnable;
6425 if (cfg->features & RTL_FEATURE_MSI) {
6426 if (pci_enable_msi(tp->pci_dev)) {
6427 netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
6428 } else {
6429 cfg2 |= MSIEnable;
6430 msi = RTL_FEATURE_MSI;
6431 }
6432 }
6433 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
6434 RTL_W8(Config2, cfg2);
6435 return msi;
6436}
6437
Francois Romieu3b6cf252012-03-08 09:59:04 +01006438static int __devinit
6439rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
6440{
6441 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
6442 const unsigned int region = cfg->region;
6443 struct rtl8169_private *tp;
6444 struct mii_if_info *mii;
6445 struct net_device *dev;
6446 void __iomem *ioaddr;
6447 int chipset, i;
6448 int rc;
6449
6450 if (netif_msg_drv(&debug)) {
6451 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
6452 MODULENAME, RTL8169_VERSION);
6453 }
6454
6455 dev = alloc_etherdev(sizeof (*tp));
6456 if (!dev) {
6457 rc = -ENOMEM;
6458 goto out;
6459 }
6460
6461 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieufa9c3852012-03-08 10:01:50 +01006462 dev->netdev_ops = &rtl_netdev_ops;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006463 tp = netdev_priv(dev);
6464 tp->dev = dev;
6465 tp->pci_dev = pdev;
6466 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
6467
6468 mii = &tp->mii;
6469 mii->dev = dev;
6470 mii->mdio_read = rtl_mdio_read;
6471 mii->mdio_write = rtl_mdio_write;
6472 mii->phy_id_mask = 0x1f;
6473 mii->reg_num_mask = 0x1f;
6474 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
6475
6476 /* disable ASPM completely as that cause random device stop working
6477 * problems as well as full system hangs for some PCIe devices users */
6478 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6479 PCIE_LINK_STATE_CLKPM);
6480
6481 /* enable device (incl. PCI PM wakeup and hotplug setup) */
6482 rc = pci_enable_device(pdev);
6483 if (rc < 0) {
6484 netif_err(tp, probe, dev, "enable failure\n");
6485 goto err_out_free_dev_1;
6486 }
6487
6488 if (pci_set_mwi(pdev) < 0)
6489 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
6490
6491 /* make sure PCI base addr 1 is MMIO */
6492 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
6493 netif_err(tp, probe, dev,
6494 "region #%d not an MMIO resource, aborting\n",
6495 region);
6496 rc = -ENODEV;
6497 goto err_out_mwi_2;
6498 }
6499
6500 /* check for weird/broken PCI region reporting */
6501 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
6502 netif_err(tp, probe, dev,
6503 "Invalid PCI region size(s), aborting\n");
6504 rc = -ENODEV;
6505 goto err_out_mwi_2;
6506 }
6507
6508 rc = pci_request_regions(pdev, MODULENAME);
6509 if (rc < 0) {
6510 netif_err(tp, probe, dev, "could not request regions\n");
6511 goto err_out_mwi_2;
6512 }
6513
6514 tp->cp_cmd = RxChkSum;
6515
6516 if ((sizeof(dma_addr_t) > 4) &&
6517 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
6518 tp->cp_cmd |= PCIDAC;
6519 dev->features |= NETIF_F_HIGHDMA;
6520 } else {
6521 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6522 if (rc < 0) {
6523 netif_err(tp, probe, dev, "DMA configuration failed\n");
6524 goto err_out_free_res_3;
6525 }
6526 }
6527
6528 /* ioremap MMIO region */
6529 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
6530 if (!ioaddr) {
6531 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
6532 rc = -EIO;
6533 goto err_out_free_res_3;
6534 }
6535 tp->mmio_addr = ioaddr;
6536
6537 if (!pci_is_pcie(pdev))
6538 netif_info(tp, probe, dev, "not PCI Express\n");
6539
6540 /* Identify chip attached to board */
6541 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
6542
6543 rtl_init_rxcfg(tp);
6544
6545 rtl_irq_disable(tp);
6546
6547 rtl_hw_reset(tp);
6548
6549 rtl_ack_events(tp, 0xffff);
6550
6551 pci_set_master(pdev);
6552
6553 /*
6554 * Pretend we are using VLANs; This bypasses a nasty bug where
6555 * Interrupts stop flowing on high load on 8110SCd controllers.
6556 */
6557 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
6558 tp->cp_cmd |= RxVlan;
6559
6560 rtl_init_mdio_ops(tp);
6561 rtl_init_pll_power_ops(tp);
6562 rtl_init_jumbo_ops(tp);
Hayes Wangbeb1fe12012-03-30 14:33:01 +08006563 rtl_init_csi_ops(tp);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006564
6565 rtl8169_print_mac_version(tp);
6566
6567 chipset = tp->mac_version;
6568 tp->txd_version = rtl_chip_infos[chipset].txd_version;
6569
6570 RTL_W8(Cfg9346, Cfg9346_Unlock);
6571 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
6572 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
6573 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
6574 tp->features |= RTL_FEATURE_WOL;
6575 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
6576 tp->features |= RTL_FEATURE_WOL;
6577 tp->features |= rtl_try_msi(tp, cfg);
6578 RTL_W8(Cfg9346, Cfg9346_Lock);
6579
6580 if (rtl_tbi_enabled(tp)) {
6581 tp->set_speed = rtl8169_set_speed_tbi;
6582 tp->get_settings = rtl8169_gset_tbi;
6583 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
6584 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
6585 tp->link_ok = rtl8169_tbi_link_ok;
6586 tp->do_ioctl = rtl_tbi_ioctl;
6587 } else {
6588 tp->set_speed = rtl8169_set_speed_xmii;
6589 tp->get_settings = rtl8169_gset_xmii;
6590 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
6591 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
6592 tp->link_ok = rtl8169_xmii_link_ok;
6593 tp->do_ioctl = rtl_xmii_ioctl;
6594 }
6595
6596 mutex_init(&tp->wk.mutex);
6597
6598 /* Get MAC address */
6599 for (i = 0; i < ETH_ALEN; i++)
6600 dev->dev_addr[i] = RTL_R8(MAC0 + i);
6601 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
6602
6603 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
6604 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
Francois Romieu3b6cf252012-03-08 09:59:04 +01006605
6606 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
6607
6608 /* don't enable SG, IP_CSUM and TSO by default - it might not work
6609 * properly for all devices */
6610 dev->features |= NETIF_F_RXCSUM |
6611 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
6612
6613 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6614 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
6615 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6616 NETIF_F_HIGHDMA;
6617
6618 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
6619 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
6620 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
6621
6622 dev->hw_features |= NETIF_F_RXALL;
6623 dev->hw_features |= NETIF_F_RXFCS;
6624
6625 tp->hw_start = cfg->hw_start;
6626 tp->event_slow = cfg->event_slow;
6627
6628 tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
6629 ~(RxBOVF | RxFOVF) : ~0;
6630
6631 init_timer(&tp->timer);
6632 tp->timer.data = (unsigned long) dev;
6633 tp->timer.function = rtl8169_phy_timer;
6634
6635 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
6636
6637 rc = register_netdev(dev);
6638 if (rc < 0)
6639 goto err_out_msi_4;
6640
6641 pci_set_drvdata(pdev, dev);
6642
Francois Romieu92a7c4e2012-03-10 10:42:12 +01006643 netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
6644 rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
6645 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006646 if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
6647 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
6648 "tx checksumming: %s]\n",
6649 rtl_chip_infos[chipset].jumbo_max,
6650 rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
6651 }
6652
6653 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6654 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6655 tp->mac_version == RTL_GIGA_MAC_VER_31) {
6656 rtl8168_driver_start(tp);
6657 }
6658
6659 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
6660
6661 if (pci_dev_run_wake(pdev))
6662 pm_runtime_put_noidle(&pdev->dev);
6663
6664 netif_carrier_off(dev);
6665
6666out:
6667 return rc;
6668
6669err_out_msi_4:
Devendra Nagaad1be8d2012-05-31 01:51:20 +00006670 netif_napi_del(&tp->napi);
Francois Romieu3b6cf252012-03-08 09:59:04 +01006671 rtl_disable_msi(pdev, tp);
6672 iounmap(ioaddr);
6673err_out_free_res_3:
6674 pci_release_regions(pdev);
6675err_out_mwi_2:
6676 pci_clear_mwi(pdev);
6677 pci_disable_device(pdev);
6678err_out_free_dev_1:
6679 free_netdev(dev);
6680 goto out;
6681}
6682
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683static struct pci_driver rtl8169_pci_driver = {
6684 .name = MODULENAME,
6685 .id_table = rtl8169_pci_tbl,
Francois Romieu3b6cf252012-03-08 09:59:04 +01006686 .probe = rtl_init_one,
Francois Romieue27566e2012-03-08 09:54:01 +01006687 .remove = __devexit_p(rtl_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02006688 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00006689 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690};
6691
Francois Romieu07d3f512007-02-21 22:40:46 +01006692static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693{
Jeff Garzik29917622006-08-19 17:48:59 -04006694 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695}
6696
Francois Romieu07d3f512007-02-21 22:40:46 +01006697static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698{
6699 pci_unregister_driver(&rtl8169_pci_driver);
6700}
6701
6702module_init(rtl8169_init_module);
6703module_exit(rtl8169_cleanup_module);